/* ---- CSS VARIABLES ---- */

:root {
  --navy:       #1a3253;
  --navy-mid:   #22406a;
  --blue-mid:   #5480bd;
  --blue-light: #7eace7;
  --gold:       #c6922c;
  --gold-light: #fce1b0;
  --coral:      #ec8463;
  --teal:       #5eb0c2;
  --cream:      #f2f0ec;
  --peach:      #ffbeac;
  --purple:     #5560ab;
  --white:      #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-xl: 48px;

  --shadow-sm: 0 2px 12px rgba(26,50,83,0.10);
  --shadow-md: 0 8px 32px rgba(26,50,83,0.18);
  --shadow-lg: 0 16px 60px rgba(26,50,83,0.24);
  --shadow-gold: 0 8px 32px rgba(198,146,44,0.25);

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- BASE RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--navy);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.7;
}

/* ---- LOADER ---- */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  min-height: 100svh;
  padding: 24px;
  background: linear-gradient(135deg, var(--gold-light), rgba(94,176,194,0.2));
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner {
  text-align: center;
  position: relative;
  width: min(100%, 340px);
}
.loader-ring {
  width: clamp(76px, 24vw, 100px);
  height: clamp(76px, 24vw, 100px);
  border: 3px solid rgba(198,146,44,0.2);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spinRing 1.2s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spinRing { to { transform: rotate(360deg); } }

.loader-torch {
  position: absolute;
  top: clamp(38px, 12vw, 50px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(54px, 17vw, 78px);
  color: var(--gold);
  animation: pulseGlow 1.5s ease-in-out infinite;
}
.loader-logo {
  width: 100%;
  height: auto;
  display: block;
}
.loader-text {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 7vw, 1.6rem);
  line-height: 1.25;
  letter-spacing: clamp(0.08em, 1.2vw, 0.2em);
  overflow-wrap: anywhere;
  animation: fadeInOut 1.5s ease-in-out infinite;
}
.loader-subtitle {
  color: var(--gold);
  font-size: clamp(0.8rem, 4vw, 1rem);
}
@keyframes pulseGlow {
  0%, 100% { text-shadow: 0 0 8px var(--gold), 0 0 24px rgba(198,146,44,0.5); }
  50% { text-shadow: 0 0 20px var(--gold), 0 0 60px rgba(198,146,44,0.9); }
}
@keyframes fadeInOut {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@media (max-width: 480px) {
  #loader { padding: 18px; }

  .loader-ring { margin-bottom: 12px; }

  .loader-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
  }
}

/* ---- NAVBAR ---- */
#mainNav {
  background: transparent;
  transition: var(--transition);
  padding: 20px 0;
   z-index: 1000;
}
#mainNav.scrolled {
    background: linear-gradient(135deg, var(--gold-light), rgba(94,176,194,0.2));
  /* background: linear-gradient(135deg, var(--gold-light), rgba(94,176,194,0.2)); */
  backdrop-filter: blur(14px);
  /* padding: 12px 0; */
  box-shadow: 0 4px 32px rgba(26,50,83,0.35);
}
.nav-logo-circle img {
  height: 55px; width: 65px;
}

.navbar-brand { text-decoration: none; }
/* .nav-logo-circle {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), #e8a93c);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy);
  font-size: 0.85rem;
  box-shadow: var(--shadow-gold);
} */
.nav-brand-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
  margin-left: 8px;
}
.nav-brand-text span {
  color: var(--gold);
}

.navbar-nav .nav-link {
  color: var(--navy-mid) !important;
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 8px 14px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
}

.btn-cta-nav {
  background: linear-gradient(135deg, var(--gold), #e8a93c);
  color: var(--white) !important;
  border: none;
  padding: 9px 22px;
  border-radius: var(--radius-xl);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
  text-decoration: none;
}
.btn-cta-nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(198,146,44,0.4);
  color: var(--navy) !important;
}

/* Toggler */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 4px;
  box-shadow: none !important;
}
.toggler-icon {
  display: flex; flex-direction: column; gap: 5px; cursor: pointer;
}
.toggler-icon span {
  display: block; width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HERO SECTION ---- */
#hero {
  min-height: 100vh;
  /* background: linear-gradient(135deg, #0e2040 0%, var(--navy) 40%, #1f3d6b 70%, #230a9d 100%); */
  background: linear-gradient(135deg, var(--gold-light), rgba(94,176,194,0.2));
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}

.hero-badge { margin-top: 40px; }

/* Floating orbs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  pointer-events: none; z-index: 0;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(198,146,44,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
  animation: floatOrb 8s ease-in-out infinite;
}
.orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(94,176,194,0.12) 0%, transparent 70%);
  bottom: 100px; left: -80px;
  animation: floatOrb 10s ease-in-out infinite reverse;
}
.orb-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(236,132,99,0.1) 0%, transparent 70%);
  top: 50%; left: 50%;
  animation: floatOrb 6s ease-in-out infinite 2s;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0,0); }
  33% { transform: translate(30px, -30px); }
  66% { transform: translate(-20px, 20px); }
}

.hero-container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(198,146,44,0.15);
  border: 1px solid rgba(198,146,44,0.3);
  color: var(--gold-light);
  padding: 7px 18px; border-radius: var(--radius-xl);
  font-size: 0.82rem; letter-spacing: 0.08em;
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-title-accent {
  display: block;
  font-size: 0.55em;
  color: var(--blue-light);
  font-style: normal;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.hero-subtitle {
  color: var(--navy-mid);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 32px;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #e8a93c 100%);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex; align-items: center;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(198,146,44,0.5);
  color: var(--white);
}

.btn-hero-secondary {
  background: rgba(202, 74, 10, 0.08);
  color: var(--navy);
  border: 1.5px solid goldenrod;
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-weight: 500; font-size: 0.95rem;
  text-decoration: none;
  display: inline-flex; align-items: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-hero-secondary:hover {
  background: var(--gold);
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats { padding-top: 20px; border-top: 1px solid var(--gold); }
.stat-item { text-align: left; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  color: var(--navy-mid);
  font-size: 0.78rem; letter-spacing: 0.05em;
  margin: 4px 0 0;
  text-transform: uppercase;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--gold);
  align-self: center;
}

/* Hero Visual */
.hero-visual { display: flex; justify-content: center; padding: 60px 0; }
.hero-image-wrapper {
  position: relative;
  width: 380px; height: 380px;
  display: flex; align-items: center; justify-content: center;
}

/* .golden-ring {
  position: absolute; border-radius: 50%;
  border: 2px solid var(--gold);
}
.ring-outer {
  width: 360px; height: 360px;
  border-color: rgba(198,146,44,0.4);
  animation: rotateRing 20s linear infinite;
}
.ring-inner {
  width: 290px; height: 290px;
  border-color: rgba(198,146,44,0.7);
  animation: rotateRing 14s linear infinite reverse;
} */
@keyframes rotateRing { to { transform: rotate(360deg); } }

/* .hero-logo-display {
  width: 250px; height: 250px;
  background: radial-gradient(circle at 40% 40%, rgba(94,176,194,0.3), rgba(26,50,83,0.9));
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative;
  border: 1.5px solid rgba(198,146,44,0.5);
  box-shadow: 0 0 60px rgba(198,146,44,0.2), inset 0 0 40px rgba(26,50,83,0.8);
} */

/* .angel-silhouette {
  position: relative;
  text-align: center;
}
.hero-icon-main {
  font-size: 5rem;
  color: rgba(252,225,176,0.9);
  display: block;
  filter: drop-shadow(0 0 20px rgba(198,146,44,0.6));
  animation: angelFloat 4s ease-in-out infinite;
} */
/* @keyframes angelFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.torch-glow {
  position: absolute; top: -20px; right: -10px;
  color: var(--gold);
  font-size: 1.4rem;
  animation: torchFlicker 1.5s ease-in-out infinite;
  text-shadow: 0 0 12px var(--gold), 0 0 30px rgba(198,146,44,0.8);
}
@keyframes torchFlicker {
  0%, 100% { opacity: 1; transform: scale(1) rotate(-5deg); }
  50% { opacity: 0.7; transform: scale(1.1) rotate(5deg); }
} */

.logo-text-arc {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  color: rgba(252,225,176,0.6);
  text-transform: uppercase;
  margin-top: 8px;
}

/* Floating tags */
.float-tag {
  position: absolute;
  background: rgba(26,50,83,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(198,146,44,0.3);
  color: var(--gold-light);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.tag-1 { top: 20px; left: -70px; animation: tagFloat 5s ease-in-out infinite; }
.tag-2 { bottom: 100px; left: -80px; animation: tagFloat 5s ease-in-out infinite 1.5s; }
.tag-3 { top: 50px; right: -90px; animation: tagFloat 5s ease-in-out infinite 3s; }
@keyframes tagFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Scroll indicator */
/* .scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeUp 2s ease-in-out infinite;
  z-index: 2;
}
.scroll-mouse {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 11px;
  display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(10px); opacity: 0; }
}
@keyframes fadeUp {
  0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(-5px); }
} */

/* ---- MARQUEE STRIP ---- */
.marquee-strip {
  background: linear-gradient(90deg, var(--gold) 0%, #e8a93c 50%, var(--gold) 100%);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 48px; align-items: center;
  white-space: nowrap;
  animation: marqueeScroll 15s linear infinite;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}
.marquee-track .dot { color: var(--navy); opacity: 0.5; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---- SECTION UTILITIES ---- */
.section-padding { padding: 100px 0; }
.bg-deep { background: linear-gradient(135deg, #264d91 0%, var(--navy) 60%, #2a65b7 100%); }
.bg-warm { background: linear-gradient(135deg, #f8f5f0 0%, var(--cream) 100%); }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
}
.section-label.light { color: var(--gold); }
.section-label.light::before { background: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--coral); }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold); }

.section-body { color: #192c4e; font-size: 1.02rem; line-height: 1.8; margin-bottom: 14px; margin-top: 14px; }
.section-body.light { color: rgba(255,255,255,0.72); }

/* ---- ABOUT SECTION ---- */

/* .about-image-stack {
  position: relative;
  height: 650px;
  display: flex; align-items: center; justify-content: center;
}
.about-card-bg {
  position: absolute; inset: 20px 0 0 20px;
  background: linear-gradient(135deg, var(--gold-light), rgba(94,176,194,0.2));
  border-radius: var(--radius-lg);
  z-index: 0;
} */
/* .about-img-main {
  position: relative; z-index: 1;
  width: 100%; height: 600px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.placeholder-img {
  background-image: url(images/author.jpeg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; 
  display: flex;
  flex-direction: column;
  align-items: center; justify-content: center;
  color: rgba(107, 103, 103, 0.5);
  gap: 12px;
} */
/* .placeholder-img i { font-size: 4rem; color: var(--gold); opacity: 0.6; } */
/* .placeholder-img p { font-size: 0.85rem; letter-spacing: 0.05em; } */

/* founder */
    /* ── ABOUT ── */
    .about-section { background: white; }

    .about-photo-wrap {
      position: relative;
      display: inline-block;
    }

    .about-photo-wrap img {
      width: 340px;
      max-width: 100%;
      border-radius: 18px;
      object-fit: cover;
      height: 420px;
      box-shadow: 0 20px 60px rgba(26,50,83,0.18);
    }

    .about-photo-wrap::before {
      content: '';
      position: absolute;
      top: -18px; left: -18px;
      width: 100%; height: 100%;
      border: 2px solid goldenrod;
      border-radius: 18px;
      z-index: 0;
    }

    .about-photo-wrap img { position: relative; z-index: 1; }

    .about-photo-wrap .gold-ring {
      position: absolute;
      bottom: -22px; right: -22px;
      width: 100px; height: 100px;
      border: 3px solid rgba(198,146,44,0.3);
      border-radius: 50%;
      z-index: 0;
    }

        .founder-quote {
      border-left: 4px solid var(--gold);
      background: linear-gradient(135deg, var(--gold-light), rgba(94,176,194,0.2));
      padding-left: 1.5rem;
      margin: 2rem 0;
    }
    .founder-quote blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.2rem, 2vw, 1.5rem);
      font-style: italic;
      color: var(--gold);
      margin: 0;
    }

    .tag-pill {
      display: inline-block;
      background: #C5D8D1;
      color: #1a3253;
      padding: 0.3rem 0.9rem;
      border-radius: 2rem;
      font-size: 0.8rem;
      font-weight: 500;
      margin: 0.2rem;
    }

/* update */

    /* ============================================================
       ABOUT LIGHTWORKS
    ============================================================ */
    #about {
      padding: 7rem 0;
      background: var(--sand);
      position: relative;
      overflow: hidden;
    }

     .big-bg-text {
      position: absolute;
      top: -2rem;
      right: -1rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(6rem, 14vw, 14rem);
      font-weight: 600;
      color: rgba(122,158,142,0.07);
      line-height: 1;
      user-select: none;
      pointer-events: none;
      white-space: nowrap;
    }

    .about-highlight {
       background: linear-gradient(135deg, var(--gold-light), rgba(94,176,194,0.2));
      border-radius: var(--radius-lg);
      padding: 2rem 2.5rem;
      box-shadow: var(--shadow-card);
      border-left: 4px solid var(--gold);
    }

/* update */

/* .about-badge-float {
  position: absolute; bottom: 20px; right: -20px; z-index: 2;
   background: white;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
  max-width: 200px;
} */
/* .about-badge-float i {
  font-size: 1.5rem; color: var(--gold);
} */
/* .about-badge-float strong { display: block; font-size: 0.9rem; color: var(--navy); }
.about-badge-float small { color: var(--blue-mid); font-size: 0.72rem; } */


/* mission vison */
    /* #about {
      padding: 7rem 0;
      background: var(--sand);
      position: relative;
      overflow: hidden;
    }

     .big-bg-text {
      position: absolute;
      top: -2rem;
      right: -1rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(6rem, 14vw, 14rem);
      font-weight: 600;
      color: rgba(122,158,142,0.07);
      line-height: 1;
      user-select: none;
      pointer-events: none;
      white-space: nowrap;
    }

    .about-highlight {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2rem 2.5rem;
      box-shadow: var(--shadow-card);
      border-left: 4px solid var(--sage);
    } */
/* mission */
.golden-ring-deco {
  position: absolute; top: -20px; left: -20px; z-index: 0;
  width: 120px; height: 120px;
  border: 2px solid rgba(198,146,44,0.4);
  border-radius: 50%;
}

.about-feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  border: 1px solid rgba(26,50,83,0.06);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(236,132,99,0.2);
}
.feature-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, rgba(236,132,99,0.12), rgba(198,146,44,0.12));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
  font-size: 1.1rem; color: var(--coral);
}
.about-feature-card h6 { font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.about-feature-card p { font-size: 0.85rem; color: #6b7a8d; margin: 0; }

.btn-primary-brand {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4e87 100%);
  color: var(--white);
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-xl);
  font-weight: 600; font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex; align-items: center;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}
.btn-primary-brand:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  background: linear-gradient(135deg, var(--gold) 0%, #e8a93c 100%);
}
/* videos */

.video-section {
  background: linear-gradient(135deg, #0e2040 0%, var(--navy) 60%, #1a3b6a 100%);
}
.video-card {
  display: flex; align-items: center; justify-content: center; gap: 20px;
}

.video-player {
  height: 400px;
}

.vido-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 18px;
}
.vido-section-title em { font-style: italic; color: var(--coral); }

.section-subtitle {
  color: #6c757d;
}

.video-wrapper {
  background: #ffffff0a;
  padding: 10px;
  border-radius: 12px;
}

video {
  border-radius: 10px;
}

.video-controls button {
  border-radius: 30px;
  padding: 8px 20px;
}

    /* ============================================================
       PROGRAMS SECTION — PARENTS & EDUCATORS
    ============================================================ */

        :root {
      --sage:       #22406a;
      --sage-dark:  #1a3253;
      --sage-light: #C5D8D1;
      --sand:       #F5F0E8;
      --sand-dark:  #E8DFD0;
      --gold:       #C4973B;
      --gold-light: #E8C97A;
      --charcoal:   #1a3253;
      --muted:     #22406a;
      --white:      #FAFAF8;
      --radius-lg:  1.5rem;
      --radius-sm:  0.75rem;
      --shadow-soft: 0 8px 40px rgba(44,56,48,0.08);
      --shadow-card: 0 4px 24px rgba(44,56,48,0.10);
      --transition:  all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    #programs { padding: 7rem 0; background: var(--sand); }

    .program-block {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-card);
      height: 100%;
      transition: var(--transition);
    }
    .program-block:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 56px rgba(44,56,48,0.14);
    }

    .program-img {
      height: 240px;
      overflow: hidden;
      position: relative;
    }
    .program-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
    }
    .program-block:hover .program-img img { transform: scale(1.06); }

    .program-img .program-tag {
      position: absolute;
      top: 1rem;
      left: 1rem;
      background: var(--gold);
      color: #fff;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.3rem 0.8rem;
      border-radius: 2rem;
    }

    .program-body { padding: 2rem 2.5rem; }
    .program-body h3 { margin-bottom: 0.75rem;  }

    .principle-list {
      list-style: none;
      padding: 0;
      margin: 1.25rem 0;
    }
    .principle-list li {
      padding: 0.4rem 0;
      padding-left: 1.5rem;
      position: relative;
      font-size: 0.92rem;
      color: var(--muted);
    }
    .principle-list li::before {
      content: '✦';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-size: 0.6rem;
      top: 0.6rem;
    }

    .benefits-grid-sm {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.5rem;
      margin-top: 1.25rem;
    }
    .benefit-item-sm {
      background: var(--sand);
      border-radius: var(--radius-sm);
      padding: 0.6rem 0.8rem;
      font-size: 0.83rem;
      color: var(--sage-dark);
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 0.4rem;
    }
    .benefit-item-sm::before { content: '→'; color: var(--gold); font-size: 0.75rem; }

    /* ============================================================
       CARE PROGRAM HIGHLIGHT
    ============================================================ */
    .care-banner {
      background: linear-gradient(120deg, var(--charcoal) 0%, #3F5E52 100%);
      border-radius: var(--radius-lg);
      padding: 2.5rem 3rem;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .care-banner::after {
      content: 'CARE';
      position: absolute;
      right: -1rem;
      bottom: -1.5rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 8rem;
      font-weight: 700;
      opacity: 0.06;
      line-height: 1;
    }
    .care-banner h4 { color: var(--gold-light); font-size: 1.6rem; }
    .care-banner p  { color: rgba(255,255,255,0.7); }


    /* ── BOOKS ── */
    .books-section { background: var(--cream);margin-top: 100px; }

    .book-card {
      background: var(--white);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 6px 28px rgba(26,50,83,0.09);
      transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
      height: 95%;
      border: 1px solid rgba(26,50,83,0.06);
      margin-bottom: 20px;
    }

    .book-card:hover {
      transform: translateY(-10px) scale(1.01);
      box-shadow: 0 24px 60px rgba(26,50,83,0.18);
    }

    .book-card:hover .book-cover img {
      transform: scale(1.07);
    }

    .book-cover {
      height: 240px;
      overflow: hidden;
      position: relative;
    }

    .book-cover img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .book-cover-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(26,50,83,0.55) 0%, transparent 60%);
    }

    .book-tag {
      position: absolute;
      top: 14px; left: 14px;
      background: var(--gold);
      color: var(--navy);
      font-size: 0.65rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 0.28rem 0.75rem;
      border-radius: 50px;
    }

    .book-body { padding: 1.6rem; }

    .book-body h5 {
      font-family: 'Playfair Display', serif;
      font-size: 1.18rem;
      color: var(--navy);
      margin-bottom: 0.6rem;
    }

    .book-body p {
      font-size: 0.86rem;
      color: #666;
      line-height: 1.75;
      margin-bottom: 1.1rem;
    }

    .btn-book {
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--navy);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border-bottom: 1.5px solid var(--gold);
      padding-bottom: 2px;
      transition: gap 0.2s ease, color 0.2s ease;
    }

    .btn-book:hover { color: var(--gold); gap: 0.7rem; }

/* ---- MISSION / VISION CARDS ---- */

.mission-card {
  display: flex;
  justify-content: space-evenly;
}
.mvb-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  width: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.mvb-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
  border-color: rgba(198,146,44,0.3);
}
/* .mvb-featured {
  background: rgba(198,146,44,0.1);
  border-color: rgba(198,146,44,0.4);
} */
.mvb-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), #e8a93c);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--navy);
  margin-bottom: 20px;
  box-shadow: var(--shadow-gold);
}
.mvb-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700; color: var(--white);
  margin-bottom: 14px;
}
.mvb-card p { color: rgba(255,255,255,0.65); font-size: 0.94rem; line-height: 1.8; }
.mvb-glow {
  position: absolute; bottom: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(198,146,44,0.2), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}


/* ---- VALUE CARDS ---- */

.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid rgba(26,50,83,0.06);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(236,132,99,0.2);
}
.value-card-highlight {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4e87 100%);
  border: none;
}
.value-card-highlight h5, .value-card-highlight p { color: var(--white); }
.value-card-highlight p { opacity: 0.75; }
.value-card-highlight .value-icon { background: rgba(255,255,255,0.15); color: var(--gold); }

.value-number {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 700;
  color: rgba(26,50,83,0.06);
  position: absolute; top: -10px; right: 20px;
  line-height: 1;
  pointer-events: none;
}
.value-card-highlight .value-number { color: rgba(255,255,255,0.07); }

.value-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, rgba(236,132,99,0.12), rgba(198,146,44,0.12));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--coral);
  margin-bottom: 20px;
}
.value-card h5 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
}
.value-card p { color: #6b7a8d; font-size: 0.92rem; line-height: 1.75; margin: 0; }
.value-card-highlight h5 { color: white; }
.value-card-highlight p { color: white; }

/* ---- SERVICES ---- */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid rgba(26,50,83,0.06);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--navy), #2a4e87);
  color: var(--white);
}
.service-card-featured {
  background: linear-gradient(135deg, var(--navy) 0%, #2a4e87 100%);
  border: none;
  color: var(--white);
}
.service-card-featured h5, .service-card-featured p { color: var(--white); }
.service-card-featured p { opacity: 0.72; }
.service-card-featured .service-icon-wrap {
  background: rgba(255,255,255,0.12);
  color: var(--gold);
}
.service-card-featured:hover .service-icon-wrap {
  background: var(--gold);
  color: var(--navy);
}

.service-icon-wrap {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, rgba(84,128,189,0.12), rgba(94,176,194,0.12));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; color: var(--blue-mid);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card h5 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--navy); margin-bottom: 10px;
}
.service-card p { color: #6b7a8d; font-size: 0.9rem; line-height: 1.75; margin: 0; }
.service-card-featured h5 { color: var(--white); }
.service-card-featured p { color: var(--white); }

.service-arrow {
  position: absolute; bottom: 24px; right: 24px;
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--gold), #e8a93c);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 0.7rem;
  opacity: 0; transform: translateX(-10px);
  transition: var(--transition);
}

/* ---- LOGO STORY ---- */
.story-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}
.story-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(198,146,44,0.3);
  transform: translateY(-6px);
}
.story-card-center {
  background: rgba(198,146,44,0.08);
  border-color: rgba(198,146,44,0.35);
}
.story-symbol {
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}
.story-symbol.gold { background: rgba(198,146,44,0.2); color: var(--gold); }
.story-symbol.coral { background: rgba(236,132,99,0.2); color: var(--coral); }
.story-symbol.blue { background: rgba(94,176,194,0.2); color: var(--teal); }
.story-card h5 {
  font-family: var(--font-display);
  font-size: 1.15rem; color: var(--white);
  margin-bottom: 14px;
}
.story-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.8; }

/* ---- CLIENTS ---- */
.clients-grid {
  display: flex; flex-wrap: wrap; gap: 14px;
}
.client-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid rgba(26,50,83,0.08);
  color: var(--navy);
  padding: 12px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.9rem; font-weight: 500;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.client-pill:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--navy);
}
.client-pill:hover i { color: var(--gold); }
.client-pill i { color: var(--coral); font-size: 0.95rem; }

/* ---- GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.g-large { grid-column: span 2; grid-row: span 2; }
.g-tall { grid-row: span 2;grid-column: span 2; }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  transition: var(--transition);
}
.gallery-placeholder i { font-size: 3rem; opacity: 0.5; }
.gallery-placeholder span { font-size: 0.8rem; letter-spacing: 0.05em; opacity: 0.5; }
.gp-1 { background-image: url(images/Gr.png);   background-size: cover;background-position: center; background-repeat: no-repeat; }
.gp-2 { background-image: url(images/breath.png);   background-size: cover;background-position: center; background-repeat: no-repeat; }
.gp-3 { background-image: url(images/mindfulness-child.png);   background-size: cover;background-position: center; background-repeat: no-repeat; }
.gp-4 { background-image: url(images/Sessions.png);   background-size: cover;background-position: center; background-repeat: no-repeat; }
.gp-5 { background-image: url(images/educatorimpact.png);   background-size: cover;background-position: center; background-repeat: no-repeat; }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(88, 117, 157, 0.75);
  display: flex; align-items: flex-end; padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.gallery-overlay span {
  color: var(--white);
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }

/* extra gallery */

.media-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  padding: 20px;
  padding-left: 7%;
  padding-right: 7%;
}

.media-item {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; /* matches 4000x2252 */
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.media-item img,
.media-item video {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  transition: transform 0.3s ease;
}

.media-item:hover img,
.media-item:hover video {
  transform: scale(1.05);
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}

.modal-content {
  display: block;
  margin: auto;
  max-width: 90%;
  max-height: 90%;
}

.close {
  position: absolute;
  top: 80px;
  right: 40px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

/* ---- TESTIMONIALS ---- */
.testimonial-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-6px);
  border-color: rgba(198,146,44,0.3);
}
.testimonial-featured {
  background: rgba(198,146,44,0.1);
  border-color: rgba(198,146,44,0.4);
}
.testi-quote {
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 16px;
}
.testimonial-card p {
  color: rgba(255,255,255,0.72);
  font-size: 0.94rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.testi-avatar {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); font-size: 1rem;
}
.testi-avatar-gold { background: rgba(198,146,44,0.3); color: var(--gold); }
.testi-author strong { display: block; color: var(--white); font-size: 0.92rem; }
.testi-author small { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.testi-stars { color: var(--gold); font-size: 0.75rem; gap: 3px; }

/* Founder Quote */


.founder-quote {
  display: flex;
  justify-content: space-evenly;
  margin-top: 60px;
  text-align: center;
  position: relative;
  padding: 50px 40px;
  background: rgba(198,146,44,0.06);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(198,146,44,0.25);
}
.founder-quote img{
  height: 230px;
  width: auto;
  border-radius: 1rem;
}
.fq-ring {
  position: absolute; top: -30px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 60px;
  border: 2px solid var(--gold);
  border-radius: 50%;
}
.fq-ring::after {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold); font-size: 1.2rem;
}
/* blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 20px;
  border: none;
}
cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
} */

.founder-quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* mobile friendly */
  position: relative;
  padding: 20px;
}

.founder-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--gold);
}

.quote-content {
  max-width: 700px;
  text-align: left;
  position: relative;
}

blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
  margin: 0 0 10px;
  border: none;
}

cite {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.founder-quote {
  background: rgba(255,255,255,0.03);
  padding: 40px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
}
/* blockquote::before {
  content: "“";
  font-size: 3rem;
  color: var(--gold);
  position: absolute;
  left: -10px;
  top: -10px;
} */
.founder-quote {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.founder-quote:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
@media (max-width: 600px) {
  .founder-quote {
    flex-direction: column;
    text-align: center;
  }

  .quote-content {
    text-align: center;
  }
}

/* ---- CONTACT ---- */
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.contact-info-item {
  display: flex; align-items: flex-start; gap: 16px;
}
.ci-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: linear-gradient(135deg, rgba(236,132,99,0.12), rgba(198,146,44,0.12));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--coral); font-size: 1rem;
}
.contact-info-item strong { display: block; color: var(--navy); font-size: 0.88rem; font-weight: 600; }
.contact-info-item p { color: #6b7a8d; font-size: 0.88rem; margin: 3px 0 0; }
.contact-info-item a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
.contact-info-item a:hover { color: var(--coral); }

/* .social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 40px; height: 40px;
  background: var(--white);
  border: 1px solid rgba(26,50,83,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.social-btn:hover {
  background: var(--navy);
  color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.social-btn.sm { width: 34px; height: 34px; font-size: 0.78rem; } */

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26,50,83,0.06);
}
.contact-form-card h5 {
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--navy);
  margin-bottom: 28px;
}
.form-group-custom { display: flex; flex-direction: column; gap: 6px; }
.form-group-custom label {
  font-size: 0.82rem; font-weight: 600;
  color: var(--navy); letter-spacing: 0.03em;
}
.form-control-custom {
  width: 100%;
  background: #f8f9fc;
  border: 1.5px solid rgba(26,50,83,0.1);
  border-radius: var(--radius-sm);
  padding: 11px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem; color: var(--navy);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-control-custom:focus {
  border-color: var(--blue-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(84,128,189,0.12);
}
.form-control-custom.error { border-color: var(--coral); }
textarea.form-control-custom { resize: vertical; min-height: 110px; }

.field-error {
  font-size: 0.76rem; color: var(--coral);
  min-height: 16px; display: block;
}

.btn-submit-form {
  width: 100%;
  background: linear-gradient(135deg, var(--navy) 0%, #2a4e87 100%);
  color: var(--white);
  border: none;
  padding: 15px 28px;
  border-radius: var(--radius-xl);
  font-size: 1rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  cursor: pointer;
  position: relative; overflow: hidden;
}
.btn-submit-form::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, #e8a93c 100%);
  opacity: 0;
  transition: var(--transition);
}
.btn-submit-form:hover::before { opacity: 1; }
.btn-submit-form .btn-text, .btn-submit-form i { position: relative; z-index: 1; }
.btn-submit-form:hover { transform: translateY(-3px); box-shadow: var(--shadow-gold); }

.form-success-msg {
  text-align: center; padding: 40px 20px;
  color: var(--navy);
}
.form-success-msg i { font-size: 3rem; color: #48bb78; margin-bottom: 12px; display: block; }
.form-success-msg p { font-size: 1rem; }

/* ---- FOOTER ---- */
#footer {
   background: linear-gradient(135deg, var(--gold-light), rgba(94,176,194,0.2));
}
.footer-top { padding: 70px 0 50px; }
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 700;
  color: var(--navy);
}
.footer-brand .footer-logo span { color: var(--navy);margin-left: 10px;  }
.footer-brand p {
  color: var(--navy-mid);
  font-size: 0.9rem; line-height: 1.8;
  max-width: 300px;
}
.footer-tagline {
  display: flex; align-items: center; gap: 10px;
  margin-top: 20px;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold);
}
.golden-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.footer-heading {
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color:var(--gold);
  margin-bottom: 20px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: var(--navy-mid);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact-info p {
  color: var(--navy-mid);
  font-size: 0.88rem;
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-contact-info i { color: var(--coral); margin-top: 3px; flex-shrink: 0; transition: var(--transition); }
.footer-contact-info a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}
.footer-contact-info p:hover,
.footer-contact-info a:hover { color: var(--gold); }
.footer-contact-info p:hover i { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
}
.footer-bottom p {
  color: var(--navy-mid);
  font-size: 0.82rem; margin: 0;
}

/* ---- BACK TO TOP ---- */
#backToTop {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--gold), #e8a93c);
  color: var(--white);
  border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  opacity: 0; transform: translateY(20px);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
#backToTop.visible { opacity: 1; transform: translateY(0); }
#backToTop:hover { transform: translateY(-4px) scale(1.08); }

/* ---- RESPONSIVE ---- */
@media (max-width: 991.98px) {
  .hero-title {margin-top: 100px; }
  .hero-badge { margin-top: 100px; }
  .herologo {width: 270px; height: 260px; }
  .section-padding { padding: 70px 0; }
  .hero-visual { padding: 30px 0 40px; }
  .hero-image-wrapper { width: 280px; height: 280px; }
  .ring-outer { width: 260px; height: 260px; }
  .ring-inner { width: 210px; height: 210px; }
  .hero-logo-display { width: 190px; height: 190px; }
  .hero-icon-main { font-size: 3.5rem; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .g-large { grid-column: span 2; grid-row: span 1; }
  .g-tall { grid-row: span 1; }
  .navbar-collapse {
      background: linear-gradient(135deg, var(--gold-light), rgba(94,176,194,0.2));
    padding: 20px;
    border-radius: var(--radius-md);
    margin-top: 10px;
    backdrop-filter: blur(20px);
  }
}

@media (max-width: 767.98px) {
  .hero-badge { margin-top: 100px; }
  .herologo {width: 220px; height: 210px; }
  .hero-title { font-size: 2.2rem; margin-top: 100px; }
  .section-title { font-size: 1.8rem; }
  .hero-stats { flex-direction: column; gap: 16px; margin-left: 40px; }
  .stat-divider { display: none; }
  /* .about-image-stack { height: 320px; } */
  /* .about-img-main {height:320px ; } */
  .gallery-grid {grid-template-columns: 1fr;grid-template-rows: auto;}
  .g-large, .g-tall { grid-column: span 1; grid-row: span 1; }
  .gallery-item { height: 200px; }
  .contact-form-card { padding: 24px; }
  .founder-quote { padding: 40px 20px; }
  .hero-image-wrapper { width: 220px; height: 220px; }
  .ring-outer { width: 200px; height: 200px; }
  .ring-inner { width: 165px; height: 165px; }
  /* .hero-logo-display { width: 150px; height: 150px; } */
  .float-tag { display: none; }
  .hero-actions { gap: 12px; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .nav-brand-text {font-size: 0.85rem;font-weight: 700;letter-spacing: 0.05em;margin-left: 2px;}
.nav-brand-text span {color: var(--gold);font-size: 0.75rem;font-weight: 700;}
#mainNav {padding: 10px 0;}
#mainNav.scrolled {padding: 8px 0;}
.nav-logo-circle img {
  height: 40px; width: 100%;
}
}



.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #e8a93c);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.social-btn:hover {
  transform: translateY(-3px) scale(1.05);
  color: var(--navy);
}
