/* =======================================================
   ADVAYA NEURODIVERSITY CENTRE — Main Design System
   ======================================================= */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Nunito:wght@300;400;500;600;700;800&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  /* Brand Colors */
  --primary:       #098250;
  --primary-light: #10a866;
  --primary-dark:  #066a40;
  --blue:          #009EEF;
  --blue-light:    #2bb5ff;
  --blue-dark:     #0080c8;
  --dark:          #082037;
  --dark-mid:      #0d3050;
  --white:         #ffffff;
  --light-bg:      #F7FAFC;
  --soft-grey:     #EEF4F7;
  --text-dark:     #1a2e3b;
  --text-mid:      #3d5a6e;
  --text-light:    #6b8fa6;
  --border:        rgba(9, 130, 80, 0.15);

  /* Gradients */
  --grad-hero:      linear-gradient(135deg, #082037 0%, #0a4a2a 50%, #009EEF 100%);
  --grad-primary:   linear-gradient(135deg, #098250 0%, #10a866 100%);
  --grad-blue:      linear-gradient(135deg, #009EEF 0%, #0080c8 100%);
  --grad-dark:      linear-gradient(135deg, #082037 0%, #0d3050 100%);
  --grad-glass:     linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
  --grad-section:   linear-gradient(180deg, #F7FAFC 0%, #ffffff 100%);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-warm:    'Nunito', 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 80px 0;
  --container-width: 1200px;
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;

  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(8,32,55,0.08);
  --shadow-md:   0 8px 30px rgba(8,32,55,0.12);
  --shadow-lg:   0 20px 60px rgba(8,32,55,0.16);
  --shadow-xl:   0 30px 80px rgba(8,32,55,0.20);
  --shadow-glow: 0 0 40px rgba(9,130,80,0.25);
  --shadow-blue: 0 0 40px rgba(0,158,239,0.25);

  /* Transitions */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition:  0.3s var(--ease-smooth);
  --transition-slow: 0.6s var(--ease-smooth);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol { list-style: none; }

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: inherit;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--dark);
  font-weight: 700;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.3rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p { color: var(--text-mid); line-height: 1.8; }

/* ---- Layout Utilities ---- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.container--wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}

.section--light { background: var(--light-bg); }
.section--grey  { background: var(--soft-grey); }
.section--dark  { background: var(--dark); color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.75); }

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section__header h2 {
  margin-bottom: 0.5rem;
}

.section__header p {
  font-size: 1.1rem;
}

.section__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-warm);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(9,130,80,0.08);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 0.5rem;
}

.section__tag--blue {
  color: var(--blue);
  background: rgba(0,158,239,0.08);
}

.section__tag--white {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-warm);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-spring);
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-smooth);
}

.btn:hover::before { transform: scaleX(1); }

.btn--primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(9,130,80,0.35);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(9,130,80,0.45);
}

.btn--blue {
  background: var(--grad-blue);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0,158,239,0.35);
}

.btn--blue:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,158,239,0.45);
}

.btn--outline {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--outline-white {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
  background: transparent;
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s var(--ease-spring);
}

.btn:hover svg { transform: translateX(4px); }

/* ---- Navbar ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(8, 32, 55, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(8,32,55,0.3);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.navbar__logo-text {
  display: flex;
  flex-direction: column;
}

.navbar__logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.navbar__logo-sub {
  font-family: var(--font-warm);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__link {
  font-family: var(--font-warm);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.navbar__link.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary-light);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

/* Dropdown */
.navbar__dropdown {
  position: relative;
}

.navbar__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s var(--ease-smooth);
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(20px);
}

/* Invisible bridge to prevent hover loss when moving to dropdown */
.navbar__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -20px; /* Covers the 12px gap + 8px transform offset */
  left: 0;
  width: 100%;
  height: 20px;
}

.navbar__dropdown:hover .navbar__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.navbar__dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-warm);
  font-size: 0.87rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}

.navbar__dropdown-link:hover {
  background: rgba(9,130,80,0.2);
  color: var(--white);
}

/* Mobile Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar__hamburger:hover { background: rgba(255,255,255,0.1); }

.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}

.navbar__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.navbar__hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.navbar__mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-smooth);
}

.navbar__mobile-menu.open {
  transform: translateX(0);
}

.navbar__mobile-link {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  opacity: 0.85;
  transition: var(--transition);
}

.navbar__mobile-link:hover {
  color: var(--primary-light);
  opacity: 1;
}

.navbar__mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  opacity: 0.7;
}

.navbar__mobile-close:hover { opacity: 1; }

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--grad-hero);
  overflow: hidden;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,32,55,0.95) 0%, rgba(8,32,55,0.7) 50%, rgba(0,60,90,0.85) 100%);
  z-index: 1;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
  padding: 120px 0 60px;
}

.hero__left {}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(9,130,80,0.2);
  border: 1px solid rgba(9,130,80,0.4);
  border-radius: 100px;
  padding: 8px 18px;
  font-family: var(--font-warm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #5ddba9;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5ddba9;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  color: var(--white);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero__title-accent {
  background: linear-gradient(135deg, #5ddba9 0%, #009EEF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-family: var(--font-warm);
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2.5rem;
  max-width: 500px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__trust-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-warm);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.hero__trust-icon {
  width: 20px;
  height: 20px;
  color: #5ddba9;
  flex-shrink: 0;
}

.hero__trust-divider {
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.2);
}

/* Hero Right */
.hero__right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.hero__image-wrapper {
  position: relative;
  width: 100%;
  max-width: 480px;
}

.hero__image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(9,130,80,0.2);
  aspect-ratio: 4/5;
  position: relative;
}

.hero__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}

.hero__image-frame:hover img { transform: scale(1.05); }

.hero__image-badge {
  position: absolute;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
}

.hero__image-badge--tl {
  top: 20px;
  left: -20px;
}

.hero__image-badge--br {
  bottom: 20px;
  right: -20px;
}

.hero__image-badge-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__image-badge-icon--green {
  background: rgba(9,130,80,0.3);
  color: #5ddba9;
}

.hero__image-badge-icon--blue {
  background: rgba(0,158,239,0.3);
  color: var(--blue-light);
}

.hero__image-badge-text {
  display: flex;
  flex-direction: column;
}

.hero__image-badge-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero__image-badge-label {
  font-family: var(--font-warm);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  white-space: nowrap;
}

/* Hero Stats */
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 480px;
}

.hero__stat {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.hero__stat:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}

.hero__stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}

.hero__stat-label {
  font-family: var(--font-warm);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-top: 4px;
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}

.hero__scroll:hover { opacity: 1; }

.hero__scroll-text {
  font-family: var(--font-warm);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
}

.hero__scroll-mouse {
  width: 24px;
  height: 36px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero__scroll-dot {
  width: 4px;
  height: 8px;
  background: var(--white);
  border-radius: 2px;
  animation: scroll-down 1.8s infinite;
}

@keyframes scroll-down {
  0%   { transform: translateY(0); opacity: 1; }
  80%  { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ================================================================
   HERO V2 — Premium Hero Section (Complete Redesign)
   ================================================================ */

/* --- Hero V2 Base --- */
.hero-v2 {
  position: relative;
  height: 100vh;
  min-height: 600px !important; /* override .hero min-height: 100vh */
  max-height: 1080px;
  overflow: hidden;
  display: flex;
  align-items: stretch !important; /* override .hero align-items: center */
  background: #061a2e !important; /* override .hero background */
}

/* --- Animated Mesh Background --- */
.hv2__bg-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 50%,  rgba(9,130,80,0.28)   0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%,  rgba(0,158,239,0.20)  0%, transparent 55%),
    radial-gradient(ellipse 70% 50% at 55% 85%,  rgba(9,130,80,0.15)   0%, transparent 50%),
    linear-gradient(140deg, #061a2e 0%, #082037 40%, #0a3040 70%, #051825 100%);
  animation: hv2-mesh-shift 18s ease-in-out infinite alternate;
}

@keyframes hv2-mesh-shift {
  0%   { filter: hue-rotate(0deg)   brightness(1);    }
  50%  { filter: hue-rotate(8deg)   brightness(1.06); }
  100% { filter: hue-rotate(-6deg)  brightness(0.97); }
}

/* --- Glowing Orbs --- */
.hv2__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 1;
}

.hv2__orb--1 {
  width: 500px;
  height: 500px;
  top: -160px;
  right: 5%;
  background: rgba(9, 130, 80, 0.22);
  animation: hv2-orb-float-1 20s ease-in-out infinite;
}

.hv2__orb--2 {
  width: 380px;
  height: 380px;
  bottom: -80px;
  left: -60px;
  background: rgba(0, 158, 239, 0.18);
  animation: hv2-orb-float-2 16s ease-in-out infinite;
}

.hv2__orb--3 {
  width: 260px;
  height: 260px;
  top: 40%;
  left: 42%;
  background: rgba(93, 219, 169, 0.08);
  animation: hv2-orb-float-3 24s ease-in-out infinite;
}

@keyframes hv2-orb-float-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-30px, 40px) scale(1.08); }
  70%       { transform: translate(20px, -20px) scale(0.95); }
}

@keyframes hv2-orb-float-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  35%       { transform: translate(40px, -30px) scale(1.05); }
  65%       { transform: translate(-20px, 20px) scale(0.97); }
}

@keyframes hv2-orb-float-3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50%       { transform: translate(-20px, -30px) scale(1.15); opacity: 1; }
}

/* --- Inner Grid Layout --- */
.hv2__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 52% 48%;
  height: 100%;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 3rem;
  gap: 0;
  align-items: center;
}

/* --- LEFT: Text Content --- */
.hv2__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 2.5rem 0 0;
  padding-top: 76px; /* navbar offset */
}

/* Admission Badge */
.hv2__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(9, 130, 80, 0.18);
  border: 1px solid rgba(93, 219, 169, 0.35);
  border-radius: 100px;
  padding: 8px 18px 8px 12px;
  font-family: var(--font-warm);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #7ee8bb;
  margin-bottom: 0.9rem;
  backdrop-filter: blur(12px);
  width: fit-content;
}

.hv2__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #5ddba9;
  flex-shrink: 0;
  animation: hv2-pulse-dot 2s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(93, 219, 169, 0.6);
}

@keyframes hv2-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 8px rgba(93,219,169,0.6); }
  50%       { opacity: 0.65; transform: scale(0.75); box-shadow: 0 0 4px rgba(93,219,169,0.3); }
}

/* Main Headline */
.hv2__title {
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.hv2__title-line {
  display: block;
}

.hv2__title-line--white {
  color: var(--white);
}

.hv2__title-line--accent {
  background: linear-gradient(135deg, #5ddba9 0%, #00d0ff 60%, #5ddba9 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hv2-shimmer-text 4s linear infinite;
}

@keyframes hv2-shimmer-text {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Subtitle */
.hv2__subtitle {
  font-family: var(--font-warm);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 1.3rem;
  max-width: 500px;
}

/* CTA Buttons */
.hv2__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}

.hv2__btn-primary {
  background: linear-gradient(135deg, #098250, #10a866);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(9,130,80,0.45), 0 0 0 0 rgba(9,130,80,0);
  border: none;
  transition: all 0.35s var(--ease-spring);
}

.hv2__btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 44px rgba(9,130,80,0.55), 0 0 30px rgba(9,130,80,0.3);
}

.hv2__btn-ghost {
  border: 1.5px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.35s var(--ease-spring);
}

.hv2__btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

/* Trust Chip Row */
.hv2__trust-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hv2__trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 100px;
  padding: 5px 11px 5px 8px;
  font-family: var(--font-warm);
  font-size: 0.74rem;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.25s var(--ease-smooth);
  white-space: nowrap;
}

.hv2__trust-chip:hover {
  background: rgba(9,130,80,0.18);
  border-color: rgba(93,219,169,0.3);
  color: rgba(255,255,255,0.95);
}

.hv2__trust-chip-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(9,130,80,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #5ddba9;
}

.hv2__trust-chip-icon svg {
  width: 12px;
  height: 12px;
}

/* --- RIGHT: Image Panel --- */
.hv2__right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding-top: 76px; /* navbar offset */
  gap: 1rem;
  padding-right: 0.5rem;
}

/* Image Panel Container */
.hv2__image-panel {
  position: relative;
  width: 100%;
  max-width: 420px;
  flex: 1 1 0;
  min-height: 0;
  max-height: calc(100vh - 76px - 100px); /* leave room for stats */
}

/* Decorative ring behind panel */
.hv2__image-ring {
  position: absolute;
  inset: -8px;
  border-radius: 28px;
  border: 1px solid rgba(93,219,169,0.2);
  pointer-events: none;
  animation: hv2-ring-pulse 4s ease-in-out infinite;
}

@keyframes hv2-ring-pulse {
  0%, 100% { border-color: rgba(93,219,169,0.2); transform: scale(1); }
  50%       { border-color: rgba(93,219,169,0.12); transform: scale(1.01); }
}

/* Image Frame */
.hv2__image-frame {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1.5px solid rgba(255,255,255,0.12);
  box-shadow:
    0 30px 60px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 0 50px rgba(9,130,80,0.15);
}

.hv2__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 8s ease;
}

.hv2__image-frame:hover img {
  transform: scale(1.04);
}

/* Bottom fade overlay on image */
.hv2__image-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(6,26,46,0.85) 0%, transparent 100%);
  pointer-events: none;
}

/* Floating Info Cards */
.hv2__float-card {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.06) inset;
  z-index: 2;
  min-width: 170px;
}

.hv2__float-card--tl {
  top: 22px;
  left: -28px;
}

.hv2__float-card--br {
  bottom: 28px;
  right: -28px;
}

.hv2__float-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hv2__float-card-icon--green {
  background: rgba(9,130,80,0.3);
  color: #5ddba9;
}

.hv2__float-card-icon--blue {
  background: rgba(0,158,239,0.3);
  color: #2bb5ff;
}

.hv2__float-card-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hv2__float-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hv2__float-card-sub {
  font-family: var(--font-warm);
  font-size: 0.7rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}

/* Stats Row */
.hv2__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 100%;
  max-width: 380px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 12px 8px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.hv2__stat {
  flex: 1;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.hv2__stat:hover .hv2__stat-num {
  color: #5ddba9;
}

.hv2__stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

.hv2__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  transition: color 0.3s ease;
}

.hv2__stat-label {
  display: block;
  font-family: var(--font-warm);
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 5px;
}

/* Scroll Indicator */
.hv2__scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

.hv2__scroll:hover { opacity: 1; }

.hv2__scroll-text {
  font-family: var(--font-warm);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.hv2__scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 11px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.hv2__scroll-dot {
  width: 3px;
  height: 7px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  animation: hv2-scroll-down 1.8s ease-in-out infinite;
}

@keyframes hv2-scroll-down {
  0%   { transform: translateY(0); opacity: 1; }
  75%  { transform: translateY(10px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---- Cards ---- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.4s var(--ease-smooth);
  border: 1px solid var(--border);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card--glass {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
}

.card--glass:hover {
  background: rgba(255,255,255,0.18);
}

.card__image {
  overflow: hidden;
  height: 240px;
  position: relative;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.card:hover .card__image img {
  transform: scale(1.08);
}

.card__body {
  padding: 28px;
}

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  flex-shrink: 0;
}

.card__icon--green { background: rgba(9,130,80,0.1); color: var(--primary); }
.card__icon--blue  { background: rgba(0,158,239,0.1); color: var(--blue); }
.card__icon--dark  { background: rgba(8,32,55,0.08);  color: var(--dark); }

.card__icon svg { width: 28px; height: 28px; }

.card__tag {
  font-family: var(--font-warm);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.card h3 { margin-bottom: 0.8rem; }
.card p  { font-size: 0.95rem; }

/* ---- Grid Layouts ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ---- Feature List ---- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(9,130,80,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item__icon svg { width: 20px; height: 20px; }

.feature-item__content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.feature-item__content p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ---- Counters ---- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 2rem;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.stat-item--light {
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.stat-item--dark {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-item__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-item--dark .stat-item__num {
  background: linear-gradient(135deg, #5ddba9 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item__suffix {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item__label {
  font-family: var(--font-warm);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
  display: block;
}

.stat-item--dark .stat-item__label {
  color: rgba(255,255,255,0.55);
}

/* ---- Section Divider (Wave) ---- */
.wave-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  line-height: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* ---- Testimonials ---- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__quote {
  font-size: 4rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
  position: absolute;
  top: 16px;
  left: 24px;
}

.testimonial-card__body {
  font-family: var(--font-warm);
  font-size: 0.98rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  font-style: italic;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.testimonial-card__avatar-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: var(--font-warm);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--text-light);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  color: #f59e0b;
  fill: #f59e0b;
}

/* ---- Program Cards ---- */
.program-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}

.program-card:hover {
  transform: translateY(-10px) rotateX(2deg);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

.program-card__header {
  padding: 32px 28px 24px;
  background: linear-gradient(135deg, rgba(9,130,80,0.05) 0%, rgba(0,158,239,0.05) 100%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.program-card__icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--grad-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(9,130,80,0.3);
}

.program-card__icon--blue {
  background: var(--grad-blue);
  box-shadow: 0 8px 24px rgba(0,158,239,0.3);
}

.program-card__icon svg { width: 30px; height: 30px; }

.program-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--dark);
}

.program-card__body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.program-card__desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  flex: 1;
}

.program-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.program-card__list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-warm);
  font-size: 0.85rem;
  color: var(--text-mid);
  font-weight: 500;
}

.program-card__list-item::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

/* ---- Accordion (FAQ) ---- */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.accordion-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(9,130,80,0.1);
}

.accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 20px 24px;
  background: var(--white);
  text-align: left;
  cursor: pointer;
  font-family: var(--font-warm);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  transition: var(--transition);
}

.accordion-item.open .accordion-btn {
  background: rgba(9,130,80,0.04);
  color: var(--primary-dark);
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--soft-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease-smooth);
  color: var(--text-mid);
}

.accordion-item.open .accordion-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.accordion-icon svg { width: 16px; height: 16px; }

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-smooth);
}

.accordion-body__inner {
  padding: 0 24px 20px;
  font-family: var(--font-warm);
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ---- Forms ---- */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-label {
  font-family: var(--font-warm);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.02em;
}

.form-label .required { color: #e53935; margin-left: 3px; }

.form-input,
.form-textarea,
.form-select {
  padding: 14px 18px;
  border: 2px solid var(--soft-grey);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  width: 100%;
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(9,130,80,0.1);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
  border-color: #e53935;
  box-shadow: 0 0 0 3px rgba(229,57,53,0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  font-size: 0.8rem;
  color: #e53935;
  font-weight: 600;
  display: none;
}

.form-error.visible { display: block; }

.form-success {
  padding: 20px 24px;
  background: rgba(9,130,80,0.08);
  border: 1px solid rgba(9,130,80,0.3);
  border-radius: var(--radius-md);
  font-family: var(--font-warm);
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 600;
  display: none;
  align-items: center;
  gap: 12px;
}

.form-success.visible { display: flex; }

/* ---- Contact Info ---- */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.contact-info-item:hover {
  background: var(--soft-grey);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(9,130,80,0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg { width: 22px; height: 22px; }

.contact-info-content h4 {
  font-size: 0.88rem;
  font-weight: 700;
  font-family: var(--font-warm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-info-content p,
.contact-info-content a {
  font-size: 0.98rem;
  color: var(--dark);
  font-weight: 600;
  transition: var(--transition);
}

.contact-info-content a:hover { color: var(--primary); }

/* ---- Timeline ---- */
.timeline {
  position: relative;
  padding-left: 2rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--blue));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -2.6rem;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px rgba(9,130,80,0.2);
  transition: var(--transition);
}

.timeline-item:hover .timeline-dot {
  background: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,158,239,0.2);
  transform: scale(1.3);
}

.timeline-year {
  font-family: var(--font-warm);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.timeline-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ---- Footer ---- */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.25rem;
}

.footer__logo img {
  height: 44px;
  width: auto;
  border-radius: 8px;
}

.footer__logo-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.footer__logo-sub {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer__tagline {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.footer__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer__social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.footer__social-link svg { width: 18px; height: 18px; }

.footer__col-title {
  font-family: var(--font-warm);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer__link {
  font-family: var(--font-warm);
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer__link:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  font-family: var(--font-warm);
  line-height: 1.6;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary-light);
}

.footer__bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-warm);
}

.footer__bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer__bottom-link {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-warm);
  transition: var(--transition);
}

.footer__bottom-link:hover { color: var(--white); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: var(--grad-hero);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-warm);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}

.page-hero__breadcrumb a { color: rgba(255,255,255,0.75); }
.page-hero__breadcrumb a:hover { color: var(--white); }
.page-hero__breadcrumb .sep { opacity: 0.4; }

/* ---- Badge / Pill ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: var(--font-warm);
}

.badge--green { background: rgba(9,130,80,0.1); color: var(--primary-dark); }
.badge--blue  { background: rgba(0,158,239,0.1); color: var(--blue-dark); }
.badge--dark  { background: rgba(8,32,55,0.08);  color: var(--dark); }

/* ---- Image with overlay ---- */
.img-overlay-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.img-overlay-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.img-overlay-wrap:hover img { transform: scale(1.05); }

.img-overlay-wrap__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  border-radius: 100px;
  padding: 6px 14px;
  font-family: var(--font-warm);
  font-size: 0.78rem;
  font-weight: 700;
}

/* ---- Highlight Box ---- */
.highlight-box {
  background: linear-gradient(135deg, rgba(9,130,80,0.06) 0%, rgba(0,158,239,0.06) 100%);
  border: 1px solid rgba(9,130,80,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.highlight-box--dark {
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255,255,255,0.1);
}

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--grad-primary);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.cta-banner h2, .cta-banner h3 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  max-width: 550px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* ---- Map Placeholder ---- */
.map-placeholder {
  width: 100%;
  height: 350px;
  background: var(--soft-grey);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  border: 2px dashed var(--border);
  color: var(--text-light);
  font-family: var(--font-warm);
  font-size: 0.95rem;
  font-weight: 600;
}

.map-placeholder svg { width: 40px; height: 40px; color: var(--primary); }

/* ---- Scroll Reveal (JS-driven) ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal--left {
  transform: translateX(-40px);
}

.reveal--left.revealed {
  transform: translateX(0);
}

.reveal--right {
  transform: translateX(40px);
}

.reveal--right.revealed {
  transform: translateX(0);
}

.reveal--scale {
  transform: scale(0.9);
}

.reveal--scale.revealed {
  transform: scale(1);
}

/* Stagger children */
.stagger-parent .reveal:nth-child(1) { transition-delay: 0ms; }
.stagger-parent .reveal:nth-child(2) { transition-delay: 100ms; }
.stagger-parent .reveal:nth-child(3) { transition-delay: 200ms; }
.stagger-parent .reveal:nth-child(4) { transition-delay: 300ms; }
.stagger-parent .reveal:nth-child(5) { transition-delay: 400ms; }
.stagger-parent .reveal:nth-child(6) { transition-delay: 500ms; }

/* ---- Floating Blob Shapes ---- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.12;
  pointer-events: none;
  animation: float-blob 12s ease-in-out infinite;
}

.blob--green {
  background: var(--primary);
}

.blob--blue {
  background: var(--blue);
  animation-delay: -6s;
}

.blob--teal {
  background: #00d4aa;
  animation-delay: -3s;
}

@keyframes float-blob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(30px, -20px) scale(1.05); }
  66%  { transform: translate(-20px, 15px) scale(0.97); }
}

/* ---- Decorative circles ---- */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(9,130,80,0.15);
  pointer-events: none;
  animation: spin-slow 30s linear infinite;
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-primary { color: var(--primary) !important; }
.text-blue   { color: var(--blue) !important; }
.text-muted  { color: var(--text-light) !important; }

.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }

.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }

.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

.relative { position: relative; }
.overflow-hidden { overflow: hidden; }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-warm);
  margin-bottom: 1rem;
}

.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--white); }

/* ---- Page transitions ---- */
.page-transition {
  animation: page-in 0.5s var(--ease-smooth);
}

@keyframes page-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Floating action button ---- */
.fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.fab__btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(9,130,80,0.4);
  transition: all 0.3s var(--ease-spring);
  cursor: pointer;
  border: none;
}

.fab__btn:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 16px 40px rgba(9,130,80,0.5);
}

.fab__btn svg { width: 24px; height: 24px; }

/* ---- Back to top ---- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(9,130,80,0.35);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease-smooth);
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(9,130,80,0.45);
}

.back-to-top svg { width: 20px; height: 20px; }

/* ---- Horizontal Rule ---- */
hr.divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
  margin: 3rem 0;
}
