/* ================================================================
   RWA SECTOR 56 FARIDABAD — DESIGN SYSTEM
   Aesthetic: Civic Authority meets Modern Indian Warmth
   Fonts: Cormorant Garamond (display) + Outfit (body)
   Palette: Deep Navy #0C1F3F | Saffron #E8791A | Ivory #F9F6F1
================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --navy:        #0C1F3F;
  --navy-mid:    #162D57;
  --navy-light:  #1E3F7A;
  --saffron:     #E8791A;
  --saffron-lt:  #F59E44;
  --ivory:       #F9F6F1;
  --ivory-dark:  #EDE8E0;
  --white:       #FFFFFF;
  --text:        #1A2B4A;
  --text-muted:  #6B7B9A;
  --border:      #DDE3EF;
  --card-bg:     #FFFFFF;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', sans-serif;

  --shadow-sm:   0 2px 12px rgba(12,31,63,.08);
  --shadow-md:   0 8px 32px rgba(12,31,63,.13);
  --shadow-lg:   0 20px 60px rgba(12,31,63,.18);
  --radius:      14px;
  --radius-sm:   8px;

  --transition:  .28s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ivory);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── TOPBAR ─────────────────────────────────────── */
.topbar {
  background: var(--navy);
  padding: 7px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,.6);
  letter-spacing: .02em;
}
.topbar a { color: var(--saffron-lt); transition: color var(--transition); }
.topbar a:hover { color: #fff; }
.topbar .sep { margin: 0 10px; opacity: .3; }

/* ─── NAVBAR ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(12,31,63,.07);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}
.brand-logo {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(12,31,63,.25);
  flex-shrink: 0;
}
.brand-logo svg { width: 32px; height: 32px; }
.brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
/*  color: var(--navy);*/
  line-height: 1.15;
  letter-spacing: -.01em;
}
.brand-name span {
  display: block;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 1px;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2px;
}
.nav-menu a {
  display: block;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--navy);
  background: var(--ivory);
}
.nav-menu a.active {
  color: var(--saffron);
  font-weight: 600;
}

.nav-cta {
  background: var(--saffron) !important;
  color: var(--white) !important;
  border-radius: 30px !important;
  padding: 8px 18px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 14px rgba(232,121,26,.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  background: #D16A10 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,121,26,.45) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  width: 40px; height: 40px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── PAGE HERO ──────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 52px 0 44px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 100% at 80% 50%, rgba(232,121,26,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 80% at 10% 80%, rgba(30,63,122,.6) 0%, transparent 60%);
}
/* Decorative diagonal stripe */
.page-hero::after {
  content: '';
  position: absolute;
  top: -40px; right: -60px;
  width: 300px; height: 300px;
  border: 1px solid rgba(232,121,26,.2);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--saffron-lt);
  background: rgba(232,121,26,.15);
  border: 1px solid rgba(232,121,26,.25);
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--saffron);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
  margin-top: 6px;
}
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--saffron-lt); }
.breadcrumb .sep { font-size: 10px; opacity: .4; }
.breadcrumb .current { color: var(--saffron-lt); }

/* ─── SECTION UTILITIES ──────────────────────────── */
.section { padding: 80px 0; }
.section-sm { padding: 52px 0; }
.section-alt { background: var(--white); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 10px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--saffron);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.section-title em { font-style: italic; color: var(--saffron); }

.section-sub {
  color: var(--text-muted);
  max-width: 540px;
  font-size: 15.5px;
  line-height: 1.7;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: .02em;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--saffron);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,121,26,.35);
}
.btn-primary:hover { background: #D16A10; box-shadow: 0 8px 24px rgba(232,121,26,.4); color: var(--white); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(12,31,63,.25);
}
.btn-navy:hover { background: var(--navy-mid); box-shadow: 0 8px 24px rgba(12,31,63,.3); color: var(--white); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); color: var(--white); }
.btn-sm { padding: 8px 18px; font-size: 13px; }
.btn-lg { padding: 15px 34px; font-size: 15.5px; }

/* ─── CARDS ──────────────────────────────────────── */
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* ─── GOAL CARDS (About / Home) ──────────────────── */
.goal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.goal-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.goal-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.goal-card:hover::after { transform: scaleX(1); }
.goal-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(232,121,26,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.goal-card h5 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}
.goal-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ─── TEAM CARDS ─────────────────────────────────── */
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.team-card-top {
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 28px 24px 24px;
  position: relative;
  overflow: hidden;
}
.team-card-top::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(232,121,26,.2);
}
.team-card-top::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -20px;
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.06);
}

.team-photo-wrap {
  width: 84px; height: 84px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.3);
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--navy-mid);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.team-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.team-role {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--saffron-lt);
  background: rgba(232,121,26,.18);
  border: 1px solid rgba(232,121,26,.25);
  padding: 3px 11px;
  border-radius: 20px;
  margin-bottom: 6px;
}
.team-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.team-card-body {
  padding: 20px 24px 22px;
}
.team-card-body p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.68;
  margin-bottom: 14px;
}
.team-since {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  background: var(--ivory);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ─── NOTICE CARDS ───────────────────────────────── */
.notice-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 22px 24px;
  display: flex;
  gap: 20px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.notice-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.notice-date {
  min-width: 54px;
  border-radius: 10px;
  padding: 10px 6px;
  text-align: center;
  flex-shrink: 0;
  background: var(--navy);
  color: var(--white);
}
.notice-date .day {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
}
.notice-date .mon {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .7;
  margin-top: 3px;
}
.notice-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--saffron);
  background: rgba(232,121,26,.1);
  padding: 2px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 6px;
}
.notice-card h6 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}
.notice-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ─── GALLERY ────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--navy-mid);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(12,31,63,.8) 0%, transparent 55%);
  opacity: 0;
  transition: opacity .3s;
  display: flex; align-items: flex-end;
  padding: 14px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-size: 12.5px;
  font-weight: 500;
}

/* ─── MEMBERSHIP BOX ─────────────────────────────── */
.membership-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: 20px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
}
.membership-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1px solid rgba(232,121,26,.2);
}
.membership-hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -40px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.05);
}
.price-pill {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: var(--saffron);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 14px;
  margin: 20px 0;
  box-shadow: 0 8px 28px rgba(232,121,26,.4);
}
.price-pill .amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}
.price-pill .label {
  font-size: 12px;
  font-weight: 600;
  opacity: .85;
  text-transform: uppercase;
  letter-spacing: .08em;
  align-self: flex-end;
  padding-bottom: 4px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14.5px;
  color: rgba(255,255,255,.82);
}
.feature-item .chk {
  color: var(--saffron-lt);
  font-size: 16px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* ─── STEP GUIDE ─────────────────────────────────── */
.step-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(12,31,63,.2);
}
.step-item h6 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.step-item p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ─── CONTACT ────────────────────────────────────── */
.contact-chip {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
  height: 100%;
}
.contact-chip:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.contact-chip-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(12,31,63,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-chip h6 { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 4px; }
.contact-chip p { font-size: 15px; font-weight: 600; color: var(--navy); margin: 0; }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 44px;
}
.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 7px;
}
.form-input {
  width: 100%;
  padding: 11px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--text);
  background: var(--ivory);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-input:focus {
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(12,31,63,.08);
}
textarea.form-input { resize: vertical; min-height: 120px; }

/* ─── EXECUTIVE TABLE ────────────────────────────── */
.exec-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.exec-table th {
  background: var(--navy);
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}
.exec-table td {
  padding: 14px 20px;
  font-size: 14.5px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.exec-table tr:last-child td { border-bottom: none; }
.exec-table tr:hover td { background: var(--ivory); }
.exec-table td:first-child { color: var(--text-muted); font-weight: 500; }
.exec-table .name { font-weight: 600; color: var(--navy); }
.role-chip {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 20px;
}
.role-chip.main { background: rgba(12,31,63,.08); color: var(--navy); }
.role-chip.support { background: rgba(232,121,26,.1); color: var(--saffron); }

/* ─── STAT BAR ───────────────────────────────────── */
.stat-bar {
  background: var(--navy);
  padding: 32px 0;
  overflow: hidden;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--saffron-lt);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-top: 5px;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.1);
  align-self: stretch;
}

/* ─── HOME HERO ──────────────────────────────────── */
.home-hero {
  background: var(--navy);
  min-height: 580px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.home-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 90% at 70% 60%, rgba(232,121,26,.15) 0%, transparent 65%),
    radial-gradient(ellipse 45% 70% at 5% 30%, rgba(30,63,122,.4) 0%, transparent 55%);
}
/* Geometric decorations */
.hero-deco-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(232,121,26,.15);
  pointer-events: none;
}
.hero-deco-ring:nth-child(1) { width: 400px; height: 400px; top: -100px; right: -80px; }
.hero-deco-ring:nth-child(2) { width: 250px; height: 250px; top: -30px; right: 40px; border-color: rgba(255,255,255,.05); }
.hero-deco-ring:nth-child(3) { width: 180px; height: 180px; bottom: 30px; left: 60px; border-color: rgba(232,121,26,.1); }
.home-hero .hero-content { position: relative; z-index: 2; }
.home-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 18px;
}
.home-hero h1 em { font-style: italic; color: var(--saffron-lt); }
.home-hero p {
  color: rgba(255,255,255,.7);
  font-size: 16px;
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 34px;
}
.hero-info-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 28px 26px;
}
.hero-info-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.hero-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.hero-info-row:first-child { padding-top: 0; }
.hero-info-icon {
  width: 38px; height: 38px;
  background: rgba(232,121,26,.2);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero-info-row .label { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .05em; }
.hero-info-row .val { font-size: 14.5px; font-weight: 600; color: var(--white); }

/* ─── ACTIVITY CARDS ─────────────────────────────── */
.activity-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.activity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--saffron));
}
.activity-card .ac-icon { font-size: 2rem; margin-bottom: 14px; }
.activity-card h5 { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.activity-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ─── CTA BAND ───────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(232,121,26,.15);
}

/* ─── FOOTER ─────────────────────────────────────── */
.footer {
  background: var(--navy);
  padding: 64px 0 0;
  color: rgba(255,255,255,.6);
}
.footer-brand .brand-logo { margin-bottom: 16px; }
.footer-desc {
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 280px;
  color: rgba(255,255,255,.55);
}
.footer-heading {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--saffron);
  border-radius: 2px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--saffron-lt); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
  margin-bottom: 12px;
}
.footer-contact-item .icon { color: var(--saffron); margin-top: 2px; flex-shrink: 0; font-size: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 48px;
  padding: 18px 0;
  font-size: 12px;
  color: rgba(255,255,255,.35);
  text-align: center;
}
.badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.badge-pill {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  padding: 4px 12px;
  border-radius: 20px;
}

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .6s ease both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .3s; }
.fade-up-4 { animation-delay: .4s; }
.fade-up-5 { animation-delay: .5s; }

/* reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 992px) {
  .nav-menu { display: none; flex-direction: column; width: 100%; padding: 12px 0; }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 11px 16px; border-radius: 8px; }
  .nav-toggle { display: flex; }
  .navbar-inner { flex-wrap: wrap; height: auto; padding: 12px 0; }
  .site-header .container { position: relative; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .home-hero { min-height: auto; padding: 60px 0 50px; }
}
@media (max-width: 576px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
  .membership-hero { padding: 32px 24px; }
  .section { padding: 56px 0; }
}
