/* =============================================
   GOLDEN CARE ALLIANCE — STYLESHEET
   Palette: Black / Gold / Cream / Beige
   Fonts: Playfair Display + Inter
============================================= */

:root {
  --black:        #111111;
  --black-mid:    #1E1C1A;
  --black-soft:   #2A2520;
  --gold:         #B59A30;
  --gold-light:   #D4BA50;
  --gold-pale:    #F0E8C8;
  --cream:        #F7F0E3;
  --beige:        #E8D9C3;
  --white:        #FFFFFF;
  --brown:        #4A3928;
  --brown-light:  #7A6252;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius:    4px;
  --radius-lg: 12px;
  --shadow:    0 4px 24px rgba(17,17,17,0.08);
  --shadow-lg: 0 12px 48px rgba(17,17,17,0.16);
  --shadow-gold: 0 8px 30px rgba(181,154,48,0.28);
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- UTILITIES ---- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.section-headline.light { color: var(--white); }
.section-headline em {
  font-style: italic;
  color: var(--gold);
}
.section-headline.light em { color: var(--gold-light); }

.section-sub {
  font-size: 1.05rem;
  color: var(--brown-light);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.78;
}
.section-sub.light { color: rgba(255,255,255,0.72); }
.section-sub a { color: var(--gold); text-decoration: none; }
.section-sub a:hover { text-decoration: underline; }

.section-header { text-align: center; margin-bottom: 4rem; }

.body-copy {
  font-size: 1rem;
  color: var(--brown-light);
  line-height: 1.82;
}
.body-copy strong { color: var(--brown); font-weight: 600; }

.divider-line {
  width: 56px;
  height: 2px;
  background: var(--gold);
  margin: 2rem 0;
}

.sub-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-primary.light {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}
.btn-primary.light:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  text-decoration: none;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-ghost:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-ghost.light {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-ghost.light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ---- ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.delay-1 { animation-delay: 0.18s; }
.delay-2 { animation-delay: 0.36s; }
.delay-3 { animation-delay: 0.54s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-reveal.visible { opacity: 1; transform: translateY(0); }
.scroll-reveal.delay-1 { transition-delay: 0.15s; }
.scroll-reveal.delay-2 { transition-delay: 0.3s; }
.scroll-reveal.delay-3 { transition-delay: 0.45s; }

/* ---- MOBILE STICKY CALL ---- */
.mobile-call-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gold);
  color: var(--black);
  text-align: center;
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  z-index: 2000;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  box-shadow: 0 -4px 20px rgba(181,154,48,0.3);
  letter-spacing: 0.02em;
}
.mobile-call-bar:hover { background: var(--gold-light); }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(247,240,227,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(181,154,48,0.15);
  transition: var(--transition);
}
.nav.scrolled {
  box-shadow: 0 2px 24px rgba(17,17,17,0.1);
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-phone {
  color: var(--brown) !important;
  font-weight: 600 !important;
  white-space: nowrap;
}
.nav-phone:hover { color: var(--gold) !important; }
.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius);
  transition: var(--transition) !important;
  white-space: nowrap;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 2px solid var(--gold);
  z-index: 999;
  padding: 1.5rem 2rem 2rem;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { list-style: none; }
.mobile-menu li { border-bottom: 1px solid var(--beige); }
.mobile-menu a {
  display: block;
  padding: 1rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-cta {
  background: var(--black);
  color: var(--white) !important;
  text-align: center;
  border-radius: var(--radius);
  margin-top: 1rem;
  padding: 0.85rem !important;
}
.mobile-phone-item { border-bottom: none !important; }
.mobile-phone-link {
  color: var(--gold) !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
}

/* ---- HERO ---- */
.hero-section {
  background: var(--cream);
  width: 100%;
}
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 8rem 2rem 5rem;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}
.hero-bg-texture {
  position: fixed;
  inset: 0;
  background-image: 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='%23B59A30' 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");
  pointer-events: none;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
  display: block;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--brown-light);
  line-height: 1.78;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}
.hero-secondary { margin-top: 0.25rem; }
.hero-attendant-link {
  font-size: 0.9rem;
  color: var(--brown-light);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.hero-attendant-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.hero-attendant-link strong { color: var(--brown); }

.hero-image-wrap { position: relative; z-index: 1; }
.hero-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.hero-tagline-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--black);
  color: var(--white);
  padding: 1.1rem 1.75rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--gold);
}
.badge-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

/* ---- MARQUEE ---- */
.marquee-strip {
  background: var(--black);
  color: var(--white);
  padding: 0.9rem 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.marquee-track .dot { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- ABOUT / WHAT IS CDS ---- */
.about {
  padding: 8rem 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.highlight-box {
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 1.75rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 2rem;
}
.highlight-box p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brown);
  line-height: 1.65;
}
.feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.feature-item:hover {
  background: var(--gold-pale);
  transform: translateX(4px);
}
.feature-icon {
  font-size: 1.4rem;
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

/* About section side image */
.about-side-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 1.5rem;
}
.about-side-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-side-img-wrap:hover .about-side-img {
  transform: scale(1.03);
}
.feature-item h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.feature-item p {
  font-size: 0.9rem;
  color: var(--brown-light);
  line-height: 1.7;
}

/* ---- THREE AUDIENCES ---- */
.audiences {
  padding: 7rem 0;
  background: var(--cream);
}
.audiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.audience-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.audience-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.audience-card.featured {
  background: var(--black);
  border-top-color: var(--gold);
}
.audience-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}
.audience-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
}
.audience-card.featured h3 { color: var(--white); }
.audience-card > p {
  font-size: 0.92rem;
  color: var(--brown-light);
  line-height: 1.72;
  margin-bottom: 1.25rem;
}
.audience-card.featured > p { color: rgba(255,255,255,0.68); }
.audience-list {
  list-style: none;
  margin: 0 0 2rem;
  flex: 1;
}
.audience-list li {
  font-size: 0.88rem;
  padding: 0.45rem 0 0.45rem 1.4rem;
  position: relative;
  color: var(--brown);
  border-bottom: 1px solid var(--beige);
  line-height: 1.5;
}
.audience-card.featured .audience-list li { color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.08); }
.audience-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.55rem;
}
.audience-btn { margin-top: auto; }

/* Center last two step cards in a 3-col grid at desktop */
.steps-grid > .step-card:nth-child(4) { grid-column: 1 / 2; }
.steps-grid > .step-card:nth-child(5) { grid-column: 2 / 3; }
@media (min-width: 1101px) {
  .steps-grid { justify-content: center; }
  .steps-grid > .step-card:nth-child(4) { grid-column-start: 1; }
  .steps-grid > .step-card:nth-child(5) { grid-column-start: 2; }
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  padding: 8rem 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.how-bg-texture {
  position: absolute;
  inset: 0;
  background-image: 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='%23B59A30' 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");
  pointer-events: none;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.step-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(181,154,48,0.2);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}
.step-card:hover {
  background: rgba(181,154,48,0.08);
  border-color: rgba(181,154,48,0.4);
}
.step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.55;
  line-height: 1;
}
.step-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.step-body p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
}
.steps-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

/* ---- SERVICES ---- */
.services {
  padding: 7rem 0;
  background: var(--beige);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  margin-bottom: 2.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: var(--transition);
}
.service-card:hover {
  border-top-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.service-icon-wrap {
  font-size: 2rem;
  margin-bottom: 1.1rem;
  display: block;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.service-list li {
  font-size: 0.87rem;
  color: var(--brown-light);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.6;
}
.service-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.8rem;
  top: 2px;
}
.services-disclaimer {
  background: rgba(17,17,17,0.05);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.87rem;
  color: var(--brown-light);
  line-height: 1.7;
  max-width: 820px;
  margin: 0 auto;
}

/* ---- ELIGIBILITY ---- */
.eligibility {
  padding: 7rem 0;
  background: var(--white);
}
.eligibility-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 5rem;
  align-items: start;
}
.eligibility-list {
  list-style: none;
  margin: 1.5rem 0 2rem;
}
.eligibility-list li {
  padding: 0.75rem 0 0.75rem 1.75rem;
  position: relative;
  font-size: 0.97rem;
  color: var(--black);
  border-bottom: 1px solid var(--beige);
  line-height: 1.5;
}
.eligibility-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  top: 0.75rem;
}
.eligibility-note {
  background: var(--gold-pale);
  border: 1px solid rgba(181,154,48,0.3);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: var(--brown);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.eligibility-note p em { font-style: italic; font-weight: 600; }
.eligibility-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.eligibility-callout {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--gold);
}
.eligibility-callout.alt {
  background: var(--black);
  border-left-color: var(--gold-light);
}
.eligibility-callout h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}
.eligibility-callout p {
  font-size: 0.92rem;
  color: var(--brown-light);
  line-height: 1.72;
}
.eligibility-callout.alt .section-eyebrow { color: var(--gold-light); }
.eligibility-callout.alt p { color: rgba(255,255,255,0.68); }
.quote-text {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-size: 1rem !important;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.7 !important;
}

/* ---- FOR CONSUMERS ---- */
.consumers {
  padding: 8rem 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.consumers::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='%23B59A30' 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");
  pointer-events: none;
}
.consumers-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.consumers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
.consumer-point {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(181,154,48,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: var(--transition);
}
.consumer-point:hover {
  background: rgba(181,154,48,0.1);
  border-color: rgba(181,154,48,0.4);
}
.point-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}
.consumer-point h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.consumer-point p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.72;
}
.consumers-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ---- FOR ATTENDANTS ---- */
.attendants {
  padding: 8rem 0;
  background: var(--cream);
}
.attendants-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}
.attendants-image-col { position: relative; }
.attendant-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}
.attendant-quote-card {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  background: var(--black);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 240px;
  border-top: 3px solid var(--gold);
}
.attendant-quote-card p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.55;
}
.attendant-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.4rem;
  margin: 0.75rem 0 1.25rem;
}
.who-item {
  font-size: 0.9rem;
  color: var(--brown);
  padding: 0.35rem 0;
}
.cannot-be {
  background: rgba(181,154,48,0.1);
  border-left: 3px solid var(--gold);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.88rem;
  color: var(--brown);
  margin-bottom: 1.5rem;
}
.attendants-list {
  list-style: none;
  margin: 0.75rem 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.attendants-list li {
  font-size: 0.92rem;
  color: var(--brown-light);
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}
.attendants-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 4px;
}
.attendant-note {
  background: var(--beige);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--brown-light);
  line-height: 1.65;
  margin-bottom: 2rem;
}
.attendant-apply-btn { display: inline-block; }

/* ---- TRANSFER TO GCA ---- */
.transfer {
  padding: 8rem 0;
  background: var(--black-mid);
  position: relative;
  overflow: hidden;
}
.transfer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 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='%23B59A30' fill-opacity='0.05'%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");
  pointer-events: none;
}
.transfer-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.transfer-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 4rem 0;
  text-align: left;
}
.transfer-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.t-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.transfer-point h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.transfer-point p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
}
.transfer-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- FAQ ---- */
.faq {
  padding: 8rem 0;
  background: var(--cream);
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--beige);
}
.faq-item:first-child { border-top: 1px solid var(--beige); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  text-align: left;
  line-height: 1.4;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  display: inline-block;
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}
.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.95rem;
  color: var(--brown-light);
  line-height: 1.82;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ---- CONTACT ---- */
.contact {
  padding: 7rem 0;
  background: var(--white);
}
.contact-top {
  text-align: center;
  margin-bottom: 4rem;
}
.contact-top .section-sub { margin: 0 auto; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.contact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.contact-item p { font-size: 0.97rem; color: var(--brown-light); line-height: 1.55; }
.contact-item a { color: var(--brown-light); text-decoration: none; transition: color 0.2s; }
.contact-item a:hover { color: var(--gold); }
.contact-note {
  background: #FFF8E1;
  border: 1px solid rgba(181,154,48,0.3);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  font-size: 0.87rem;
  color: var(--brown);
  line-height: 1.7;
  margin-top: 2rem;
}

/* FORM TABS */
.form-tabs {
  display: flex;
  border-bottom: 2px solid var(--beige);
  margin-bottom: 2rem;
}
.form-tab {
  flex: 1;
  padding: 0.9rem 1rem;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--brown-light);
  transition: var(--transition);
}
.form-tab:hover { color: var(--black); }
.form-tab.active {
  color: var(--black);
  border-bottom-color: var(--gold);
}
.form-panel { display: none; }
.form-panel.active { display: block; }

/* CONTACT FORM */
.contact-form-col {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.form-intro {
  font-size: 0.84rem;
  color: var(--brown-light);
  line-height: 1.65;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--beige);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-row-radio { gap: 1.5rem; }
.form-group { margin-bottom: 1.1rem; }
.form-group label {
  display: block;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--beige);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--black);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181,154,48,0.12);
}
.form-group textarea { resize: vertical; }
.radio-group label:first-child {
  display: block;
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.radio-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.5rem 0;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--brown);
  cursor: pointer;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.radio-label input { cursor: pointer; accent-color: var(--gold); }
.consent-group { margin-top: 0.5rem; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.84rem;
  color: var(--brown-light);
  line-height: 1.65;
  cursor: pointer;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.checkbox-label input { margin-top: 3px; flex-shrink: 0; cursor: pointer; accent-color: var(--gold); }
.req { color: var(--gold); }
.optional { font-style: italic; font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--brown-light); }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--brown-light);
  margin-top: 0.85rem;
  line-height: 1.6;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 5rem 0 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
}
.footer-logo {
  height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 0.75rem;
}
.footer-tagline-text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}
.footer-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold-light); }
.footer-nav-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--white); }
.footer-compliance {
  font-size: 0.8rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.38);
  max-width: 880px;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 1.25rem;
}
.footer-emergency {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}
.footer-emergency strong { color: rgba(255,255,255,0.75); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
}
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.65); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card:last-child { grid-column: span 2; max-width: 460px; margin: 0 auto; width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .mobile-call-bar { display: flex; }
  body { padding-bottom: 60px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 4rem;
    gap: 2.5rem;
    min-height: auto;
  }
  .hero-image-wrap { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .audiences-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card:last-child { grid-column: span 1; max-width: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .eligibility-grid { grid-template-columns: 1fr; gap: 3rem; }
  .consumers-grid { grid-template-columns: repeat(2, 1fr); }
  .attendants-grid { grid-template-columns: 1fr; gap: 3rem; }
  .attendants-image-col { display: none; }
  .transfer-points { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
}

@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .consumers-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; width: 100%; }
  .audiences-grid .btn-primary { width: auto; }
  .steps-cta, .transfer-cta, .consumers-cta-row { flex-direction: column; align-items: center; }
  .contact-form-col { padding: 1.75rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .attendant-quote-card { right: 0; bottom: -1.5rem; }
  .hero-tagline-badge { left: 0; bottom: -1rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .scroll-reveal { animation: none; transition: none; opacity: 1; transform: none; }
  .marquee-track { animation: none; }
}
