/* ============================================================
   AADHIRA SOCIETY — Main Stylesheet
   Premium Banking & Cooperative Society Design
   ============================================================ */

/* ---------- CSS VARIABLES ---------- */
:root {
  --primary:      #0E9B96;
  --primary-dark: #0B7A75;
  --primary-light:#E0F5F4;
  --gold:         #D4AF37;
  --gold-dark:    #B8960F;
  --white:        #FFFFFF;
  --off-white:    #FAF9F6;
  --text:         #111111;
  --text-muted:   #666666;
  --text-light:   #999999;
  --light-gray:   #F5F5F5;
  --border:       #E4E4E4;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 16px 48px rgba(0,0,0,0.13);
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --transition:   0.25s cubic-bezier(0.4,0,0.2,1);
  --max-width:    1200px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.65; font-size: 15px; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
input, textarea, select, button { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ---------- CONTAINER ---------- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; font-family: var(--font-body); font-weight: 600; }
p { margin-bottom: 1rem; }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }

/* ---------- SECTION HEADINGS ---------- */
.section-badge {
  display: inline-block; background: var(--primary-light); color: var(--primary);
  font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 12px;
}
.section-title { font-family: var(--font-display); margin-bottom: 16px; }
.section-title span { color: var(--primary); }
.section-desc { color: var(--text-muted); max-width: 580px; font-size: 1.02rem; }
.section-head { margin-bottom: 52px; }
.section-head.centered { text-align: center; }
.section-head.centered .section-desc { margin: 0 auto; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 26px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 0.92rem; transition: all var(--transition); cursor: pointer; border: 2px solid transparent;
  letter-spacing: 0.3px;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(14,155,150,0.3); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--off-white); color: var(--primary-dark); }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 15px 34px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none !important; }

/* ---------- BADGES ---------- */
.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; }
.badge-success { background: #d4edda; color: #155724; }
.badge-warning { background: #fff3cd; color: #856404; }
.badge-danger  { background: #f8d7da; color: #721c24; }
.badge-info    { background: #d1ecf1; color: #0c5460; }
.badge-primary { background: var(--primary-light); color: var(--primary-dark); }
.badge-secondary { background: #e2e3e5; color: #383d41; }

/* ---------- ALERTS ---------- */
.alert {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: var(--radius-sm); margin-bottom: 16px;
  font-size: 0.93rem; font-weight: 500; position: relative;
}
.alert-error   { background: #fff0f0; color: #c0392b; border-left: 4px solid #e74c3c; }
.alert-success { background: #f0fff4; color: #1a6b3a; border-left: 4px solid #27ae60; }
.alert-info    { background: #f0f8ff; color: #0c5460; border-left: 4px solid var(--primary); }
.alert-warning { background: #fffbf0; color: #856404; border-left: 4px solid var(--gold); }
.alert-close { margin-left: auto; cursor: pointer; opacity: 0.6; font-size: 1.1rem; background: none; border: none; }
.flash-messages { padding-top: 16px; }

/* ---------- FORMS ---------- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-weight: 600; font-size: 0.88rem; margin-bottom: 7px; color: var(--text); }
.form-label span.required { color: #e74c3c; margin-left: 3px; }
.form-control {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.93rem; color: var(--text);
  background: var(--white); transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(14,155,150,0.12); }
.form-control::placeholder { color: var(--text-light); }
.form-control.is-invalid { border-color: #e74c3c; }
.form-error { font-size: 0.8rem; color: #e74c3c; margin-top: 5px; }
.form-hint { font-size: 0.8rem; color: var(--text-muted); margin-top: 5px; }
textarea.form-control { resize: vertical; min-height: 110px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M0 0l6 8 6-8z' fill='%23666'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.input-group { position: relative; display: flex; align-items: center; }
.input-group .form-control { padding-left: 44px; }
.input-group .input-icon { position: absolute; left: 14px; color: var(--text-muted); }
.input-group .toggle-pass { position: absolute; right: 14px; color: var(--text-muted); cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media(max-width:600px) { .form-row { grid-template-columns: 1fr; } }

/* ---------- CARDS ---------- */
.card {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); overflow: hidden;
}
.card-body { padding: 24px; }
.card-header { padding: 18px 24px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.card-footer { padding: 16px 24px; border-top: 1px solid var(--border); background: var(--light-gray); }

/* ---------- TOPBAR ---------- */
.topbar { background: var(--primary-dark); color: rgba(255,255,255,0.85); font-size: 0.78rem; padding: 8px 0; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar-left span { display: flex; align-items: center; gap: 6px; }
.topbar-left span i { color: var(--gold); }

/* Language Switcher */
.lang-switcher { position: relative; }
.lang-current { cursor: pointer; display: flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: 4px; transition: background var(--transition); }
.lang-current:hover { background: rgba(255,255,255,0.1); }
.lang-dropdown { display: none; position: absolute; right: 0; top: calc(100% + 6px); background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow-md); min-width: 110px; overflow: hidden; z-index: 9999; }
.lang-dropdown a { display: block; padding: 9px 16px; color: var(--text); font-size: 0.85rem; transition: background var(--transition); }
.lang-dropdown a:hover, .lang-dropdown a.active { background: var(--primary-light); color: var(--primary); }
.lang-switcher:hover .lang-dropdown { display: block; }

/* ---------- HEADER ---------- */
.site-header {
  background: var(--white); position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08); padding: 0; transition: box-shadow var(--transition);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; gap: 20px; }
.site-logo a { display: flex; align-items: center; gap: 10px; }
.logo-mark {
  width: 44px; height: 44px; background: var(--primary); color: var(--white);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--text); letter-spacing: 1px; line-height: 1; }
.logo-sub { font-size: 0.68rem; color: var(--text-muted); letter-spacing: 0.5px; margin-top: 2px; }

/* Navigation */
.main-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-list > li { position: relative; }
.nav-list > li > a { display: flex; align-items: center; gap: 5px; padding: 8px 14px; border-radius: var(--radius-sm); font-weight: 500; font-size: 0.9rem; color: var(--text); transition: all var(--transition); }
.nav-list > li > a:hover, .nav-list > li > a.active { color: var(--primary); background: var(--primary-light); }
.nav-list > li > a.nav-signin { border: 1.5px solid var(--primary); color: var(--primary); }
.nav-list > li > a.nav-signin:hover { background: var(--primary); color: var(--white); }
.nav-list > li > a.nav-dashboard { background: var(--primary-light); color: var(--primary); }

/* Dropdown */
.has-dropdown .dropdown {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); min-width: 210px; border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); border: 1px solid var(--border); z-index: 999; overflow: hidden;
}
.has-dropdown .dropdown li a { display: flex; align-items: center; gap: 10px; padding: 11px 18px; color: var(--text); font-size: 0.88rem; font-weight: 500; transition: all var(--transition); }
.has-dropdown .dropdown li a i { color: var(--primary); width: 16px; }
.has-dropdown .dropdown li a:hover { background: var(--primary-light); color: var(--primary); }
.has-dropdown:hover .dropdown { display: block; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-cta { padding: 10px 20px !important; font-size: 0.88rem !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--text); border-radius: 2px; transition: all var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- HERO SECTION ---------- */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1ab8b3 100%);
  min-height: 88vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 80px 0;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-content { color: var(--white); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25); color: var(--white); font-size: 0.78rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 16px; border-radius: 20px; margin-bottom: 24px; }
.hero-badge::before { content:''; width:8px; height:8px; background: var(--gold); border-radius:50%; }
.hero-title { font-size: clamp(2.4rem, 5vw, 3.8rem); font-family: var(--font-display); font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.hero-title .highlight { color: var(--gold); }
.hero-desc { font-size: 1.05rem; opacity: 0.9; margin-bottom: 36px; max-width: 480px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 48px; }
.hero-stat { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-sm); padding: 16px; text-align: center; backdrop-filter: blur(10px); }
.hero-stat .stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--gold); }
.hero-stat .stat-label { font-size: 0.78rem; opacity: 0.8; margin-top: 4px; }

.hero-visual { display: flex; justify-content: center; align-items: center; }
.hero-card-stack { position: relative; width: 340px; height: 380px; }
.hero-card {
  position: absolute; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-lg); backdrop-filter: blur(16px); padding: 28px; color: var(--white);
}
.hero-card.card-main { width: 300px; top: 20px; left: 20px; z-index: 3; }
.hero-card.card-back { width: 280px; top: 0; left: 40px; z-index: 1; background: rgba(255,255,255,0.06); }
.hero-card .card-chip { width: 40px; height: 30px; background: var(--gold); border-radius: 5px; margin-bottom: 20px; }
.hero-card .card-balance { font-size: 0.75rem; opacity: 0.7; margin-bottom: 4px; }
.hero-card .card-amount { font-family: var(--font-display); font-size: 2rem; font-weight: 700; margin-bottom: 24px; }
.hero-card .card-footer-row { display: flex; justify-content: space-between; align-items: center; }
.hero-card .card-name { font-weight: 600; font-size: 0.9rem; }
.hero-card .card-interest { background: var(--gold); color: var(--white); font-size: 0.75rem; font-weight: 700; padding: 5px 12px; border-radius: 20px; }

/* ---------- PLAN / SCHEME CARDS ---------- */
.plan-card {
  background: var(--white); border-radius: var(--radius-md); border: 1.5px solid var(--border);
  padding: 32px 28px; transition: all var(--transition); position: relative; overflow: hidden;
}
.plan-card::before { content:''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--primary); }
.plan-card.featured { border-color: var(--primary); transform: scale(1.02); }
.plan-card.featured::before { background: var(--gold); }
.plan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.plan-card.featured:hover { transform: scale(1.02) translateY(-4px); }
.plan-icon { width: 56px; height: 56px; background: var(--primary-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; color: var(--primary); margin-bottom: 18px; }
.plan-name { font-family: var(--font-display); font-size: 1.25rem; margin-bottom: 8px; }
.plan-desc { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 20px; line-height: 1.6; }
.plan-rate { display: flex; align-items: baseline; gap: 4px; margin-bottom: 20px; }
.plan-rate .rate-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--primary); font-weight: 700; }
.plan-rate .rate-pct { font-size: 1.1rem; color: var(--primary); font-weight: 600; }
.plan-rate .rate-label { color: var(--text-muted); font-size: 0.82rem; margin-left: 6px; }
.plan-meta { display: flex; gap: 20px; margin-bottom: 22px; }
.plan-meta-item { text-align: center; }
.plan-meta-item .meta-val { font-weight: 700; color: var(--text); }
.plan-meta-item .meta-key { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.plan-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.plan-features { margin-bottom: 24px; }
.plan-features li { display: flex; align-items: center; gap: 8px; font-size: 0.87rem; padding: 4px 0; color: var(--text-muted); }
.plan-features li i { color: var(--primary); font-size: 0.75rem; }

/* ---------- STATS SECTION ---------- */
.stats-section { background: var(--primary-dark); padding: 72px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-item { text-align: center; color: var(--white); }
.stat-number { font-family: var(--font-display); font-size: 3rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-plus { color: var(--gold); }
.stat-label { font-size: 0.9rem; opacity: 0.8; margin-top: 8px; }

/* ---------- WHY CHOOSE US ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.why-card {
  background: var(--white); border-radius: var(--radius-md); padding: 32px 24px;
  text-align: center; border: 1.5px solid var(--border); transition: all var(--transition);
}
.why-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon { width: 72px; height: 72px; background: var(--primary-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; color: var(--primary); margin: 0 auto 20px; }
.why-card:hover .why-icon { background: var(--primary); color: var(--white); }
.why-title { font-size: 1.08rem; font-weight: 700; margin-bottom: 10px; }
.why-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ---------- HOW IT WORKS ---------- */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-grid::before { content:''; position: absolute; top: 36px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%); z-index: 0; }
.step-item { text-align: center; position: relative; z-index: 1; }
.step-num {
  width: 72px; height: 72px; border-radius: 50%; background: var(--primary); color: var(--white);
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px; border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--primary);
}
.step-title { font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.step-desc { font-size: 0.83rem; color: var(--text-muted); }

/* ---------- TESTIMONIALS ---------- */
.testimonials-section { background: var(--off-white); padding: 90px 0; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-md); padding: 36px 32px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border); position: relative;
}
.testimonial-card::before { content:'\201C'; font-family: var(--font-display); font-size: 5rem; color: var(--primary); opacity: 0.15; position: absolute; top: 10px; left: 24px; line-height: 1; }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; }
.testimonial-text { font-size: 0.97rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar { width: 50px; height: 50px; border-radius: 50%; background: var(--primary-light); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--primary); font-weight: 700; font-family: var(--font-display); }
.testimonial-name { font-weight: 700; font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; font-weight: 600; font-size: 0.97rem; color: var(--text);
  cursor: pointer; background: none; text-align: left; transition: color var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-question i { color: var(--primary); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 0 20px; color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }
.faq-item.open .faq-answer { display: block; }

/* ---------- GALLERY ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; background: var(--light-gray); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay { position: absolute; inset: 0; background: rgba(14,155,150,0.7); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--transition); }
.gallery-overlay i { color: var(--white); font-size: 1.8rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ---------- CONTACT SECTION ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-card { background: var(--primary-dark); color: var(--white); border-radius: var(--radius-md); padding: 40px 36px; }
.contact-info-card h3 { color: var(--white); margin-bottom: 10px; }
.contact-info-card p { opacity: 0.8; margin-bottom: 32px; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.12); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--gold); }
.contact-info-detail strong { display: block; font-size: 0.85rem; opacity: 0.7; margin-bottom: 3px; }
.contact-info-detail span { font-size: 0.95rem; }
.contact-form-card { background: var(--white); border-radius: var(--radius-md); padding: 40px 36px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); }

/* ---------- CTA SECTION ---------- */
.cta-section { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); padding: 90px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content:''; position: absolute; width: 400px; height: 400px; background: rgba(255,255,255,0.05); border-radius: 50%; top: -200px; right: -100px; }
.cta-section h2, .cta-section p { color: var(--white); }
.cta-section p { opacity: 0.85; max-width: 560px; margin: 0 auto 32px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- SECTIONS PADDING ---------- */
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ---------- CARDS GRID ---------- */
.cards-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cards-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cards-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }

/* ---------- AUTH PAGES ---------- */
.auth-page { min-height: 100vh; background: var(--off-white); display: flex; align-items: center; justify-content: center; padding: 40px 20px; }
.auth-container { display: grid; grid-template-columns: 1fr 1fr; max-width: 960px; width: 100%; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.auth-visual { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 48px 40px; display: flex; flex-direction: column; justify-content: space-between; }
.auth-visual-content h2 { color: var(--white); margin-bottom: 12px; }
.auth-visual-content p { color: rgba(255,255,255,0.8); font-size: 0.95rem; }
.auth-benefits { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; }
.auth-benefit { display: flex; align-items: center; gap: 12px; color: var(--white); font-size: 0.9rem; }
.auth-benefit i { color: var(--gold); }
.auth-form-side { padding: 48px 40px; }
.auth-form-side h2 { margin-bottom: 6px; }
.auth-form-side .auth-subtitle { color: var(--text-muted); margin-bottom: 32px; }
.auth-footer { margin-top: 24px; text-align: center; font-size: 0.88rem; color: var(--text-muted); }
.auth-footer a { color: var(--primary); font-weight: 600; }

/* ---------- DASHBOARD ---------- */
.dashboard-layout { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; background: var(--light-gray); }
.sidebar {
  background: var(--primary-dark); width: 260px; position: fixed; top: 0; left: 0; bottom: 0;
  display: flex; flex-direction: column; z-index: 900; transition: transform var(--transition); overflow-y: auto;
}
.sidebar-header { padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: space-between; }
.sidebar-logo { display: flex; align-items: center; gap: 10px; }
.sidebar-logo .logo-mark { background: rgba(255,255,255,0.2); font-size: 1.2rem; width: 38px; height: 38px; }
.sidebar-logo .logo-name { color: var(--white); font-size: 0.95rem; font-family: var(--font-display); }
.sidebar-logo .logo-sub { color: rgba(255,255,255,0.6); font-size: 0.65rem; }
.sidebar-user { padding: 20px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.sidebar-user-info { display: flex; align-items: center; gap: 12px; }
.sidebar-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; color: var(--white); font-weight: 700; }
.sidebar-user-name { color: var(--white); font-weight: 600; font-size: 0.92rem; }
.sidebar-member-id { color: rgba(255,255,255,0.6); font-size: 0.75rem; }
.sidebar-nav { padding: 12px 0; flex: 1; }
.sidebar-section-title { padding: 12px 24px 6px; font-size: 0.68rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; }
.sidebar-link {
  display: flex; align-items: center; gap: 12px; padding: 11px 24px; color: rgba(255,255,255,0.75);
  font-size: 0.88rem; font-weight: 500; transition: all var(--transition); position: relative;
}
.sidebar-link i { width: 18px; text-align: center; }
.sidebar-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.sidebar-link.active { color: var(--white); background: rgba(255,255,255,0.15); }
.sidebar-link.active::before { content:''; position: absolute; left: 0; top: 4px; bottom: 4px; width: 3px; background: var(--gold); border-radius: 0 2px 2px 0; }
.sidebar-link .badge { margin-left: auto; background: var(--gold); color: var(--text); font-size: 0.7rem; min-width: 20px; text-align: center; }

.main-content { margin-left: 260px; padding: 0; min-height: 100vh; display: flex; flex-direction: column; }
.content-header { background: var(--white); padding: 16px 28px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow-sm); }
.page-title-bar h2 { font-size: 1.3rem; font-family: var(--font-display); }
.breadcrumb { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.breadcrumb a { color: var(--primary); }
.header-actions-bar { display: flex; align-items: center; gap: 14px; }
.notif-btn { position: relative; width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--light-gray); color: var(--text-muted); transition: all var(--transition); font-size: 1rem; }
.notif-btn:hover { background: var(--primary-light); color: var(--primary); }
.notif-badge { position: absolute; top: -2px; right: -2px; background: #e74c3c; color: var(--white); border-radius: 50%; width: 18px; height: 18px; font-size: 0.65rem; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.user-menu-btn { display: flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: var(--radius-sm); cursor: pointer; transition: background var(--transition); }
.user-menu-btn:hover { background: var(--light-gray); }
.user-menu-btn img, .user-menu-btn .mini-avatar { width: 34px; height: 34px; border-radius: 50%; }
.mini-avatar { background: var(--primary-light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.85rem; }
.content-body { padding: 28px; flex: 1; }

/* Dashboard Stat Cards */
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 28px; }
.stat-card {
  background: var(--white); border-radius: var(--radius-md); padding: 22px 24px;
  border: 1px solid var(--border); position: relative; overflow: hidden; transition: box-shadow var(--transition);
}
.stat-card:hover { box-shadow: var(--shadow-md); }
.stat-card-accent { position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.stat-card-accent.green  { background: #27ae60; }
.stat-card-accent.blue   { background: #2980b9; }
.stat-card-accent.gold   { background: var(--gold); }
.stat-card-accent.teal   { background: var(--primary); }
.stat-card-accent.red    { background: #e74c3c; }
.stat-card-icon { width: 48px; height: 48px; border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; margin-bottom: 14px; }
.stat-card-label { font-size: 0.8rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.stat-card-value { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; color: var(--text); }

/* Data Tables */
.table-card { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border); overflow: hidden; }
.table-card-header { padding: 18px 22px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.table-card-title { font-weight: 700; font-size: 1rem; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { background: var(--light-gray); padding: 12px 16px; text-align: left; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.data-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); font-size: 0.88rem; vertical-align: middle; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--light-gray); }
.table-wrap { overflow-x: auto; }

/* Page Sections Dividers */
.section-divider { height: 1px; background: var(--border); margin: 28px 0; }

/* Notice Banner */
.notice-banner { background: var(--primary-light); border-left: 4px solid var(--primary); border-radius: var(--radius-sm); padding: 14px 18px; display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.notice-banner i { color: var(--primary); margin-top: 2px; }
.notice-banner strong { display: block; font-size: 0.88rem; color: var(--primary-dark); margin-bottom: 2px; }
.notice-banner p { font-size: 0.84rem; color: var(--text-muted); margin: 0; }

/* Empty State */
.empty-state { padding: 60px 20px; text-align: center; }
.empty-state i { font-size: 3rem; color: var(--text-light); margin-bottom: 16px; }
.empty-state h4 { color: var(--text-muted); margin-bottom: 8px; }
.empty-state p { color: var(--text-light); font-size: 0.88rem; }

/* ---------- ADMIN STYLES ---------- */
.admin-sidebar { background: #1a1f2e; }
.admin-sidebar .sidebar-link { color: rgba(255,255,255,0.65); }
.admin-sidebar .sidebar-link:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.admin-sidebar .sidebar-link.active { background: rgba(14,155,150,0.2); }
.admin-sidebar .sidebar-header { border-color: rgba(255,255,255,0.06); }
.admin-header { background: var(--white); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-desc { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .auth-container { grid-template-columns: 1fr; }
  .auth-visual { display: none; }
  .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .topbar-left span:nth-child(2), .topbar-left span:nth-child(3) { display: none; }
  .main-nav { display: none; position: fixed; inset: 0; background: var(--white); flex-direction: column; align-items: flex-start; justify-content: flex-start; padding: 80px 24px 24px; z-index: 999; overflow-y: auto; }
  .main-nav.open { display: flex; }
  .nav-list { flex-direction: column; width: 100%; gap: 0; }
  .nav-list > li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-list > li > a { padding: 15px 8px; }
  .has-dropdown .dropdown { position: static; box-shadow: none; border: none; padding-left: 16px; display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .hamburger { display: flex; }
  .header-cta { display: none; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .main-content { margin-left: 0; }
  .content-body { padding: 16px; }
  .cards-grid-3, .cards-grid-2 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .dash-stats { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .auth-form-side { padding: 32px 24px; }
  .content-header { padding: 12px 16px; }
}

/* ---------- UTILITIES ---------- */
.mt-1 { margin-top: 4px; } .mt-2 { margin-top: 8px; } .mt-3 { margin-top: 16px; } .mt-4 { margin-top: 24px; } .mt-5 { margin-top: 32px; }
.mb-1 { margin-bottom: 4px; } .mb-2 { margin-bottom: 8px; } .mb-3 { margin-bottom: 16px; } .mb-4 { margin-bottom: 24px; }
.p-3 { padding: 16px; } .p-4 { padding: 24px; }
.d-flex { display: flex; } .align-center { align-items: center; } .justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; } .gap-3 { gap: 16px; } .gap-4 { gap: 24px; }
.w-full { width: 100%; }
.hidden { display: none !important; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.text-sm { font-size: 0.85rem; }
.text-xs { font-size: 0.75rem; }
.truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.rounded { border-radius: var(--radius-sm); }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }

/* Animations */
@keyframes fadeInUp { from { opacity:0; transform: translateY(20px); } to { opacity:1; transform: translateY(0); } }
@keyframes countUp { from { opacity:0; } to { opacity:1; } }
.animate-in { animation: fadeInUp 0.5s ease forwards; }

/* ---------- FOOTER ---------- */
.site-footer { background: #0f1524; color: rgba(255,255,255,0.75); margin-top: 0; }
.footer-top { padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 48px; }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo .logo-mark { width: 44px; height: 44px; background: linear-gradient(135deg, var(--primary), var(--secondary)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: #fff; flex-shrink: 0; }
.footer-logo .logo-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: #fff; letter-spacing: 1.5px; }
.footer-logo .logo-sub { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; color: rgba(255,255,255,0.55); margin-bottom: 16px; }
.footer-reg { margin-bottom: 20px; }
.footer-reg small { font-size: 0.75rem; color: rgba(255,255,255,0.4); }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: all var(--transition); text-decoration: none; }
.social-links a:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.footer-col h4 { font-size: 0.88rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid rgba(255,255,255,0.1); }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.55); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color var(--transition); }
.footer-col ul li a i { font-size: 0.65rem; color: var(--primary); }
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact .contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact .contact-item i { color: var(--primary); font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; width: 16px; }
.footer-contact .contact-item span { font-size: 0.84rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin: 0; }
.footer-bottom p strong { color: rgba(255,255,255,0.55); }

/* ---------- NOTICE TICKER ---------- */
.notice-ticker { background: var(--primary); color: #fff; padding: 10px 0; overflow: hidden; position: relative; }
.notice-ticker-inner { display: flex; align-items: center; gap: 0; }
.ticker-label { background: var(--primary-dark); padding: 4px 16px; font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; flex-shrink: 0; margin-right: 24px; border-radius: 2px; white-space: nowrap; }
.ticker-content { display: flex; gap: 40px; animation: tickerScroll 30s linear infinite; white-space: nowrap; }
.ticker-item { font-size: 0.85rem; display: flex; align-items: center; gap: 8px; }
.ticker-item::before { content: '●'; font-size: 0.4rem; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ---------- PLAN CARDS (public pages) ---------- */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.plan-card { background: var(--white); border-radius: var(--radius-md); border: 2px solid var(--border); padding: 36px 28px; text-align: center; position: relative; transition: all 0.3s ease; }
.plan-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(14,155,150,0.12); }
.plan-card-featured { border-color: var(--primary); background: linear-gradient(160deg, #f0fdfc 0%, #fff 60%); }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); font-size: 0.72rem; font-weight: 700; padding: 4px 16px; border-radius: 20px; letter-spacing: 0.5px; text-transform: uppercase; white-space: nowrap; }
.plan-icon { width: 64px; height: 64px; background: var(--primary-light); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 1.6rem; color: var(--primary); }
.plan-card-featured .plan-icon { background: var(--primary); color: #fff; }
.plan-name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.plan-rate { font-size: 2.2rem; font-weight: 700; font-family: var(--font-display); color: var(--primary); line-height: 1; margin-bottom: 4px; }
.plan-rate span { font-size: 0.85rem; font-weight: 500; color: var(--text-muted); display: block; margin-top: 4px; }
.plan-duration { display: inline-block; background: var(--primary-light); color: var(--primary); font-size: 0.78rem; font-weight: 700; padding: 4px 14px; border-radius: 20px; margin-bottom: 16px; }
.plan-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 20px; line-height: 1.65; }
.plan-features { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.plan-features li { font-size: 0.84rem; color: var(--text); padding: 7px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.plan-features li:last-child { border: none; }
.plan-features li i { color: var(--primary); font-size: 0.8rem; flex-shrink: 0; }

/* ---------- ABOUT PAGE ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* ---------- CONTACT PAGE ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; align-items: start; }
.contact-info-card { background: var(--primary-dark); color: #fff; border-radius: var(--radius-md); padding: 36px 28px; }
.contact-info-card h3 { color: #fff; margin-bottom: 12px; }
.contact-info-card p { color: rgba(255,255,255,0.65); font-size: 0.88rem; margin-bottom: 28px; }
.contact-info-items { display: flex; flex-direction: column; gap: 20px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.12); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1rem; flex-shrink: 0; }
.contact-info-detail strong { display: block; color: #fff; font-size: 0.88rem; margin-bottom: 4px; }
.contact-info-detail span { font-size: 0.84rem; color: rgba(255,255,255,0.6); }
.contact-form-card { background: var(--white); border-radius: var(--radius-md); border: 1px solid var(--border); padding: 36px 28px; }

/* ---------- GALLERY PAGE ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; background: var(--light-gray); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.gallery-item:hover img { transform: scale(1.06); }

/* ---------- CTA SECTION ---------- */
.cta-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 80px 0; text-align: center; color: #fff; }
.cta-section h2 { color: #fff; font-size: 2rem; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1rem; margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-white { background: #fff; color: var(--primary); font-weight: 700; padding: 14px 32px; border-radius: 8px; text-decoration: none; transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-white:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); font-weight: 600; padding: 14px 32px; border-radius: 8px; text-decoration: none; transition: all var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ---------- MORE RESPONSIVE FIXES ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .plans-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section h2 { font-size: 1.5rem; }
}
@media (max-width: 480px) {
  .footer-top { padding: 40px 0 24px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
}
