/* ===== UNIVERSAL VISION DESIGNING - MASTER STYLESHEET ===== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,700;1,400&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --cream: #F8FAFF;
  --warm-white: #FFFFFF;
  --gold: #C79A33;
  --gold-light: #E5C775;
  --gold-pale: #FAF0D5;
  --teal: #1D4F8A;
  --teal-light: #5A82BF;
  --teal-pale: #DDE7F5;
  --teal-dark: #17345E;
  --text-dark: #102B48;
  --text-mid: #4E6D8E;
  --text-light: #7C92A7;
  --shadow-soft: 0 8px 40px rgba(29,79,138,0.10);
  --shadow-card: 0 4px 24px rgba(29,79,138,0.12);
  --shadow-hover: 0 16px 48px rgba(29,79,138,0.20);
  --radius: 16px;
  --radius-lg: 28px;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* ===== TYPOGRAPHY ===== */
.display-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--teal-dark);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 620px;
  line-height: 1.8;
}

.label-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal-dark) 100%);
  color: #fff;
  padding: 15px 34px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(29,79,138,0.30);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(29,79,138,0.40);
  color: #fff;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, #B3871E 100%);
  color: #fff;
  padding: 15px 34px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(183,135,30,0.35);
}
.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(183,135,30,0.50);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--teal);
  padding: 13px 32px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  border: 2px solid var(--teal);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all 0.5s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(29,79,138,0.10);
}
.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-img {
  height: 70px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--teal-dark);
  background: var(--teal-pale);
}
.nav-cta { margin-left: 16px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--teal-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SECTION WITH SLIDER ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 80% at 70% 50%, rgba(29,79,138,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(199,152,58,0.08) 0%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-text .eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--teal-dark);
  margin-bottom: 12px;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--teal);
  font-weight: 300;
  margin-bottom: 20px;
  font-style: italic;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 38px;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(29,79,138,0.25);
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(16,43,72,0.75) 0%,
    rgba(29,79,138,0.65) 50%,
    rgba(253,248,240,0.15) 100%
  );
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 4;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.slider-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 12px 35px rgba(0,0,0,0.3);
}

.slider-nav.prev { left: 20px; }
.slider-nav.next { right: 20px; }

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 4;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.dot.active,
.dot:hover {
  background: white;
  transform: scale(1.3);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.3);
}

.hero-wave-top {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 2;
}

/* ===== NAVBAR CONTRAST FIX (for dark hero backgrounds) ===== */
.navbar.over-hero {
  background: rgba(255,255,255,0.98) !important;
  backdrop-filter: blur(25px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

.navbar.over-hero .nav-links a {
  color: var(--teal-dark) !important;
}

.navbar.over-hero .nav-links a:hover,
.navbar.over-hero .nav-links a.active {
  color: var(--gold) !important;
  background: var(--teal-pale);
}

.navbar.over-hero .logo-main img {
  filter: none;
}

.navbar.over-hero .hamburger span {
  background: var(--teal-dark);
}

/* RESPONSIVE SLIDER */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    padding: 110px 24px 60px;
  }
  
  .hero-slider {
    max-width: 500px;
    margin: 0 auto;
    height: 60vh;
    min-height: 500px;
  }
  
  .slider-nav {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }
  
  .slider-nav.prev { left: 10px; }
  .slider-nav.next { right: 10px; }
  
  .slider-dots { bottom: 20px; }
  .dot { width: 10px; height: 10px; }
}


/* ===== SECTION WRAPPERS ===== */
.section {
  padding: 100px 0;
}
.section-sm {
  padding: 70px 0;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-header {
  margin-bottom: 64px;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-subtitle {
  margin: 16px auto 0;
}
.gold-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 18px 0;
}
.gold-divider.centered {
  margin: 18px auto;
}

/* ===== WAVE DIVIDERS ===== */
.wave-section {
  position: relative;
}
.wave-top, .wave-bottom {
  position: absolute;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.wave-top { top: -2px; }
.wave-bottom { bottom: -2px; }

/* ===== ABOUT STRIP ===== */
.about-strip {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.about-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: 0;
  width: 400px;
  height: 500px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
  pointer-events: none;
  overflow: hidden;
}
.about-strip-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-strip h2 {
  color: white;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 16px;
}
.about-strip p {
  color: rgba(255,255,255,0.78);
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 28px;
}
.strip-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.strip-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
}
.strip-feat-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-light);
  border-radius: 50%;
  flex-shrink: 0;
}
.strip-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.strip-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.strip-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}

/* ===== SERVICES CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  border: 1px solid rgba(29,79,138,0.07);
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}
.service-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.service-card:hover .service-card-img img {
  transform: scale(1.08);
}
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16,54,95,0.75) 100%);
}
.service-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(253,248,240,0.95);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}
.service-card-body {
  padding: 24px 26px 28px;
}
.service-card-body h3 {
  font-size: 1.35rem;
  color: var(--teal-dark);
  margin-bottom: 10px;
}
.service-card-body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 18px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: 0.04em;
}
.service-link:hover { color: var(--gold); gap: 10px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: linear-gradient(160deg, var(--teal-pale) 0%, var(--cream) 100%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
  border: 1px solid rgba(29,79,138,0.07);
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.quote-icon {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold-pale);
  margin-bottom: 14px;
  display: block;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 22px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-dark);
}
.author-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 8px; }

/* ===== GUIDE / COACH SECTION ===== */
.guide-section {
  background: var(--cream);
}
.guide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.guide-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.guide-img-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
  position: relative;
  box-shadow: var(--shadow-hover);
}
.guide-img-frame img {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.guide-decor {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--gold-pale), var(--teal-pale));
  border-radius: var(--radius-lg);
  z-index: -1;
}
.guide-cert {
  position: absolute;
  top: 30px;
  right: 0;
  background: white;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(29,79,138,0.15);
  border: 1px solid var(--teal-pale);
  max-width: 180px;
}
.guide-cert .cert-icon { font-size: 1.8rem; margin-bottom: 6px; }
.guide-cert strong { display: block; font-size: 0.82rem; color: var(--teal-dark); }
.guide-cert span { font-size: 0.72rem; color: var(--text-light); }
.guide-content .label-tag { margin-bottom: 14px; }
.guide-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--teal-dark);
  margin-bottom: 8px;
}
.guide-title-meta {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 22px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.guide-content p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.guide-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 32px;
}
.guide-skill-tag {
  background: var(--teal-pale);
  color: var(--teal-dark);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid rgba(29,79,138,0.12);
}

/* ===== FAQ ===== */
.faq-section { background: white; }
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.faq-intro h2 { margin-bottom: 16px; }
.faq-intro p { font-size: 1rem; color: var(--text-mid); line-height: 1.8; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(29,79,138,0.08);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { box-shadow: var(--shadow-card); }
.faq-q {
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 16px;
}
.faq-q h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--teal-dark);
}
.faq-toggle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-toggle {
  background: var(--teal);
  color: white;
  transform: rotate(45deg);
}
.faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}
.faq-a p {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.8;
  padding-bottom: 20px;
}
.faq-item.open .faq-a { max-height: 300px; }

/* ===== CTA SECTION ===== */
.cta-section {
  background:  linear-gradient(135deg, rgba(16,54,95,0.88) 0%, rgba(29,79,138,0.78) 50%, rgba(10,40,50,0.86) 100%),
    url('/Universalimage/cta.jpg') center/cover no-repeat;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 30px 0;
  z-index: 1;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: min(800px, 100vw);
  height: 800px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: white;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--teal-dark);
  padding: 15px 34px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.20);
  color: var(--teal-dark);
}

/* ===== FOOTER ===== */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-main { color: white; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin: 16px 0 24px;
  max-width: 300px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
}
.social-btn:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}
.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.footer-contact-item i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ===== PARALLAX ===== */
.parallax-section {
  position: relative;
  overflow: hidden;
}
.parallax-bg {
  position: absolute;
  inset: -30%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fade-in.visible { opacity: 1; }
.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 150px 0 80px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}
.contact-hero h1 { color: white; margin-bottom: 14px; }
.contact-hero p { color: rgba(255,255,255,0.78); font-size: 1.1rem; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(29,79,138,0.08);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(29,79,138,0.08);
}
.contact-item:last-of-type { border-bottom: none; }
.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-item-text a, .contact-item-text span {
  font-size: 0.95rem;
  color: var(--teal);
}

/* ===== CONTACT FORM ===== */
.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(29,79,138,0.07);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  margin-bottom: 22px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 1.5px solid rgba(29,79,138,0.15);
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 4px rgba(29,79,138,0.08);
}
.form-group textarea { resize: vertical; min-height: 130px; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--teal-pale) 100%);
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero-inner {
  text-align: center;
}
.page-hero h1 { color: var(--teal-dark); margin-bottom: 14px; }
.page-hero p {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--teal); }
.breadcrumb span { color: var(--text-light); }

/* ===== ABOUT PAGE ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border: 1px solid rgba(29,79,138,0.07);
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.value-icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
}
.value-card h3 { font-size: 1.15rem; color: var(--teal-dark); margin-bottom: 10px; }
.value-card p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.7; }

.timeline {
  position: relative;
  padding-left: 40px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), var(--gold));
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid white;
  box-shadow: 0 0 0 3px var(--teal-pale);
}
.timeline-item h3 { font-size: 1.1rem; color: var(--teal-dark); margin-bottom: 6px; }
.timeline-item p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; }
.timeline-year {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 8px;
}

/* ===== MAP ===== */
.map-section { background: var(--cream); }
.map-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 50px;
  align-items: stretch;
}
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--shadow-card);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--cream);
  z-index: 1100;
  padding: 80px 40px 40px;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: -10px 0 40px rgba(0,0,0,0.12);
}
.mobile-menu.open { right: 0; }
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-pale);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal-dark);
  font-size: 1.1rem;
}
.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav-links a {
  display: block;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
.mobile-nav-links a:hover, .mobile-nav-links a.active {
  background: var(--teal-pale);
  color: var(--teal);
}
.mobile-menu-cta { margin-top: 28px; }

/* ===== RESPONSIVE ===== */

/* ── 1280px: wide containers ── */
@media (max-width: 1280px) {
  .container { padding: 0 32px; }
  .hero-content { padding: 120px 32px 80px; }
}

/* ── 1100px: tablet landscape ── */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .guide-cert { right: -10px; }
}

/* ── 900px: tablet portrait ── */
@media (max-width: 900px) {
  /* Navbar */
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0.5rem 1.5rem; }

  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 110px 24px 60px;
    text-align: center;
  }
  .hero-visual { display: none; }
  .hero-text .eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
  }

  /* Sections */
  .about-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-strip { padding: 60px 0; }
  .strip-image-wrap { max-width: 480px; margin: 0 auto; }

  .guide-inner { grid-template-columns: 1fr; gap: 40px; }
  .guide-img-wrap { max-width: 420px; margin: 0 auto; }
  .guide-cert { top: 20px; right: 0; max-width: 160px; }
  .guide-decor { display: none; }

  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .programs-grid { grid-template-columns: 1fr; }
  .map-inner { grid-template-columns: 1fr; }
  .map-frame, .map-frame iframe { min-height: 320px; }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* Section headings */
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }
}

/* ── 768px: large phones / small tablets ── */
@media (max-width: 768px) {
  .mobile-menu { width: 280px; }

  /* About page hero */
  .about-hero-inner { grid-template-columns: 1fr; }
  .about-hero-img { display: none; }

  /* Services page */
  .service-detail-inner {
    grid-template-columns: 1fr !important;
    gap: 36px;
    direction: ltr !important;
  }
  .service-detail-section:nth-child(even) .service-detail-inner { direction: ltr !important; }

  /* Credentials */
  .credentials-inner { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Contact page */
  .contact-cards-strip { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .contact-main { grid-template-columns: 1fr; gap: 36px; }
  .social-links-grid { grid-template-columns: 1fr; }
  .map-info-bar { flex-direction: column; gap: 18px; }
  .contact-form-card { padding: 30px 24px; }

  /* CTA */
  .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-actions .btn-white,
  .cta-actions .btn-gold { width: 100%; max-width: 340px; justify-content: center; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  footer { padding: 60px 0 0; }
}

/* ── 680px: phones ── */
@media (max-width: 680px) {
  html { font-size: 15px; }

  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .section-sm { padding: 50px 0; }
  .section-header { margin-bottom: 40px; }

  /* Hero */
  .hero-content { padding: 96px 18px 56px; }
  .hero-title { font-size: clamp(2.2rem, 8vw, 3rem); }
  .hero-tagline { font-size: 1.2rem; }
  .hero-desc { font-size: 0.97rem; }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .hero-stats { flex-direction: column; gap: 18px; align-items: flex-start; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Values */
  .values-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px 18px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .footer-brand p { max-width: 100%; }

  /* Contact cards */
  .contact-cards-strip { grid-template-columns: 1fr 1fr; gap: 12px; }
  .contact-strip-card { padding: 20px 14px; }
  .csc-icon { width: 44px; height: 44px; }

  /* Buttons */
  .btn-primary, .btn-gold, .btn-outline, .btn-white {
    padding: 13px 26px;
    font-size: 0.9rem;
  }

  /* Page hero (inner pages) */
  .page-hero { padding: 120px 0 60px; }
  .contact-hero { padding: 120px 0 60px; }

  /* About hero */
  .about-hero { padding: 120px 0 70px; }
  .about-hero-inner { gap: 32px; }

  /* Services hero */
  .services-hero { padding: 110px 0 50px; }
}

/* ── 480px: small phones ── */
@media (max-width: 480px) {
  html { font-size: 14px; }

  .container { padding: 0 16px; }

  /* Navbar */
  .nav-inner { padding: 0.5rem 1rem; }
  .mobile-menu { width: 100%; border-radius: 0; }

  /* Hero */
  .hero-content { padding: 90px 16px 50px; }

  /* Typography */
  .display-title { font-size: clamp(1.9rem, 7vw, 2.4rem); }
  .section-title { font-size: clamp(1.7rem, 5vw, 2.2rem); }
  .section-subtitle { font-size: 0.97rem; }

  /* Contact cards: full width stack on very small */
  .contact-cards-strip { grid-template-columns: 1fr; }

  /* Map info bar */
  .map-info-bar { padding: 20px 18px; }

  /* Guide cert card hide on very small */
  .guide-cert { display: none; }

  /* FAQ */
  .faq-q { padding: 16px 18px; }
  .faq-a { padding: 0 18px; }

  /* Back to top */
  .back-to-top { bottom: 16px; right: 16px; width: 42px; height: 42px; }

  /* CTA section */
  .cta-section { padding: 24px 0; }
  .cta-section h2 { font-size: clamp(1.6rem, 5vw, 2rem); }
  .cta-section p { font-size: 0.97rem; }

  /* Footer */
  footer { padding: 48px 0 0; }
  .footer-social { flex-wrap: wrap; gap: 8px; }

  /* About page timeline */
  .timeline { padding-left: 28px; }
  .timeline-dot { left: -22px; }
}

/* ── 360px: very small phones (e.g. Galaxy A series) ── */
@media (max-width: 360px) {
  html { font-size: 13.5px; }
  .container { padding: 0 14px; }
  .hero-content { padding: 86px 14px 48px; }
  .contact-form-card { padding: 20px 14px; }
  .service-includes { padding: 16px 14px; }
  .mobile-menu { padding: 70px 24px 32px; }
}

/* ── Touch / pointer improvements ── */
@media (hover: none) and (pointer: coarse) {
  /* Increase tap target sizes */
  .nav-links a { padding: 10px 20px; }
  .mobile-nav-links a { padding: 16px 20px; }
  .faq-q { padding: 18px 22px; }
  .social-btn { width: 44px; height: 44px; }
  .btn-primary, .btn-gold, .btn-outline, .btn-white {
    min-height: 48px;
  }

  /* Disable parallax on touch for performance */
  .parallax-bg { transform: none !important; }

  /* Disable hover transforms on touch (prevents sticky hover states) */
  .service-card:hover { transform: none; }
  .testimonial-card:hover { transform: none; }
  .value-card:hover { transform: none; }
  .contact-strip-card:hover { transform: none; }
}

/* ── Print / accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .parallax-bg { transform: none !important; }
  .fade-up, .fade-in, .slide-left, .slide-right {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 12px; 
}

::-webkit-scrollbar-track {
  background: var(--cream); 
}

::-webkit-scrollbar-thumb {
  background-color: var(--teal); 
  border-radius: 20px; 
  border: 3px solid var(--cream); 
  transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--gold); 
}

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 25px rgba(42, 107, 124, 0.3);
  border: none;
  outline: none;
}

/* Icon Size */
.back-to-top i {
  font-size: 1.2rem;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(42, 107, 124, 0.4);
  background: var(--teal-dark);
}

@media (max-width: 680px) {
  .back-to-top {
    bottom: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
  }
}

/* ===== SAFE AREA / NOTCH SUPPORT (iPhone X+, Dynamic Island) ===== */
.navbar {
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}
.mobile-menu {
  padding-top: max(80px, calc(60px + env(safe-area-inset-top)));
  padding-bottom: max(40px, calc(24px + env(safe-area-inset-bottom)));
}
footer {
  padding-bottom: max(0px, env(safe-area-inset-bottom));
}
.back-to-top {
  bottom: max(30px, calc(16px + env(safe-area-inset-bottom)));
  right: max(30px, calc(16px + env(safe-area-inset-right)));
}

/* ===== RESPONSIVE HERO IMAGE FIX =====
   Restores hero images on mobile/tablet that were hidden by earlier
   breakpoint rules. Added as an additive override — no existing code changed.
   ========================================== */

/* ── Index page: show hero image below 900px ── */
@media (max-width: 900px) {
  .hero-visual {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
    padding-top: 110px;
  }
  .hero-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    width: 100%;
  }
  .hero-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
}

/* ── Index page: tighten up on small phones ── */
@media (max-width: 680px) {
  .hero-visual {
    max-width: 340px;
  }
  .hero-img-wrap {
    aspect-ratio: 3 / 2;
  }
}

@media (max-width: 480px) {
  .hero-visual {
    max-width: 100%;
  }
  .hero-img-wrap {
    aspect-ratio: 3 / 2;
    border-radius: var(--radius);
  }
}

/* ── About page: show hero image below 768px ── */
@media (max-width: 768px) {
  .about-hero-img {
    display: block;
    width: 100%;
  }
  .about-hero-img-frame {
    max-width: 320px;
    margin: 0 auto;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  }
  .about-hero-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
  .cert-badges {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
  }
  .cert-badge {
    min-width: unset;
    flex: 1 1 180px;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .about-hero-img-frame {
    max-width: 260px;
    aspect-ratio: 3 / 4;
  }
  .cert-badges {
    flex-direction: column;
    align-items: center;
  }
  .cert-badge {
    flex: unset;
    width: 100%;
    max-width: 260px;
  }
}
