/* ============================================
   BHS CLASS — Landing Page Styles
   "Pre-Marriage Healing: Broken Home, Stronger Me"
   Color: Navy + Red Accent + Teal
   ============================================ */

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

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Navy palette */
  --navy-900: #0A1222;
  --navy-800: #0F1B33;
  --navy-700: #162544;
  --navy-600: #1E3155;
  --navy-500: #263D66;
  --navy-400: #3A5580;
  --navy-300: #5A7399;
  --navy-200: #8FA3BF;
  --navy-100: #C4D0E0;
  --navy-50:  #E8EDF4;

  /* Red accent */
  --red-600: #B52A1F;
  --red-500: #D43427;
  --red-400: #E74C3C;
  --red-300: #F07068;
  --red-200: #F5A09A;
  --red-100: #FCDAD8;

  /* Teal accent (from logo) */
  --teal-500: #1ABC9C;
  --teal-400: #26D4B0;
  --teal-300: #5EECC8;
  --teal-200: #A8F2DF;

  /* Neutral */
  --white: #FFFFFF;
  --cream: #F5F0EB;
  --cream-200: #EDE5DC;
  --text-primary: #F5F0EB;
  --text-secondary: #B0BEC5;
  --text-muted: #78909C;

  /* Gradients */
  --gradient-hero: linear-gradient(175deg, #0A1222 0%, #162544 40%, #1E3155 70%, #0F1B33 100%);
  --gradient-card: linear-gradient(135deg, rgba(30,49,85,0.6) 0%, rgba(15,27,51,0.8) 100%);
  --gradient-red: linear-gradient(135deg, #D43427 0%, #E74C3C 50%, #F07068 100%);
  --gradient-teal: linear-gradient(135deg, #1ABC9C 0%, #26D4B0 100%);

  /* Glass */
  --glass-bg: rgba(22, 37, 68, 0.45);
  --glass-border: rgba(90, 115, 153, 0.25);
  --glass-shadow: 0 8px 32px rgba(10, 18, 34, 0.4);

  /* Spacing */
  --section-padding: clamp(60px, 10vw, 120px);
  --container-width: 1140px;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 16px;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s var(--ease-smooth);
}

ul, ol {
  list-style: none;
}

/* ---------- Container ---------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section ---------- */
.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-400);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--gradient-red);
  border-radius: 2px;
}

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

.section-title em {
  font-style: italic;
  color: var(--red-400);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.8;
}

/* ---------- Texture Overlay ---------- */
.texture-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.5;
}

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

.navbar.scrolled {
  background: rgba(10, 18, 34, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
}

.nav-logo-circle {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--gradient-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--navy-900);
  text-align: center;
  line-height: 1.1;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s var(--ease-smooth);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-red);
  transition: width 0.3s var(--ease-smooth);
  border-radius: 2px;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  color: var(--white) !important;
  background: var(--gradient-red);
  padding: 10px 24px;
  border-radius: 50px;
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s var(--ease-smooth) !important;
  box-shadow: 0 4px 15px rgba(212, 52, 39, 0.3);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 52, 39, 0.45) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

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

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- HERO SECTION ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(212,52,39,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(26,188,156,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(22,37,68,0.8) 0%, transparent 100%);
  z-index: 1;
}

/* Decorative floating elements */
.hero-decor {
  position: absolute;
  z-index: 1;
  opacity: 0.12;
  pointer-events: none;
}

.hero-decor-1 {
  top: 15%;
  right: 8%;
  width: 200px;
  height: 200px;
  border: 2px solid var(--red-400);
  border-radius: var(--radius-full);
  animation: floatSlow 8s ease-in-out infinite;
}

.hero-decor-2 {
  bottom: 20%;
  left: 5%;
  width: 120px;
  height: 120px;
  border: 2px solid var(--teal-500);
  border-radius: var(--radius-full);
  animation: floatSlow 6s ease-in-out infinite reverse;
}

.hero-decor-3 {
  top: 30%;
  left: 12%;
  width: 8px;
  height: 8px;
  background: var(--red-400);
  border-radius: var(--radius-full);
  animation: pulseDot 3s ease-in-out infinite;
}

.hero-decor-4 {
  bottom: 35%;
  right: 15%;
  width: 6px;
  height: 6px;
  background: var(--teal-400);
  border-radius: var(--radius-full);
  animation: pulseDot 4s ease-in-out infinite 1s;
}

/* Botanical decorative SVG elements */
.hero-botanical {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 280px;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-botanical svg {
  position: absolute;
  bottom: -10px;
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 188, 156, 0.12);
  border: 1px solid rgba(26, 188, 156, 0.25);
  color: var(--teal-400);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 32px;
  animation: fadeInDown 0.8s var(--ease-smooth) both;
}

.hero-badge .pulse {
  width: 8px;
  height: 8px;
  background: var(--teal-400);
  border-radius: var(--radius-full);
  animation: pulseDot 2s ease-in-out infinite;
}

.hero-pretitle {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.1s both;
}

.hero-pretitle .red {
  color: var(--red-400);
}

.hero-pretitle .white {
  color: var(--white);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.2s both;
}

.hero-title em {
  font-style: italic;
  display: block;
  color: var(--cream);
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto 36px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.3s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.4s both;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  animation: fadeInUp 0.8s var(--ease-smooth) 0.5s both;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.hero-meta-item svg {
  width: 18px;
  height: 18px;
  color: var(--red-400);
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-bounce);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gradient-red);
  color: var(--white);
  box-shadow: 0 6px 25px rgba(212, 52, 39, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 52, 39, 0.5);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--red-400);
  color: var(--red-300);
  transform: translateY(-2px);
  background: rgba(212, 52, 39, 0.06);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* ---------- ABOUT SECTION ---------- */
.about {
  background: var(--navy-800);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-highlight-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.highlight-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform 0.35s var(--ease-bounce), border-color 0.3s;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: var(--red-400);
}

.highlight-card .icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.highlight-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}

/* ---------- TARGET SECTION ---------- */
.target {
  background: var(--navy-900);
  position: relative;
}

.target-header {
  text-align: center;
  margin-bottom: 56px;
}

.target-header .section-subtitle {
  margin: 0 auto;
}

.target-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.target-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  backdrop-filter: blur(12px);
  transition: all 0.35s var(--ease-smooth);
}

.target-card:hover {
  background: rgba(30, 49, 85, 0.6);
  border-color: rgba(231, 76, 60, 0.3);
  transform: translateY(-4px);
}

.target-card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}

.target-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- CURRICULUM SECTION ---------- */
.curriculum {
  background: var(--navy-800);
  position: relative;
}

.curriculum::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.curriculum-header {
  text-align: center;
  margin-bottom: 56px;
}

.curriculum-header .section-subtitle {
  margin: 0 auto;
}

.curriculum-timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.curriculum-timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--red-400), var(--teal-500));
  border-radius: 2px;
}

.curriculum-item {
  position: relative;
  padding-left: 72px;
  margin-bottom: 40px;
}

.curriculum-item:last-child {
  margin-bottom: 0;
}

.curriculum-item .timeline-dot {
  position: absolute;
  left: 18px;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: var(--navy-800);
  border: 3px solid var(--red-400);
  z-index: 2;
  transition: all 0.3s var(--ease-smooth);
}

.curriculum-item:nth-child(even) .timeline-dot {
  border-color: var(--teal-500);
}

.curriculum-item .timeline-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--red-400);
  border-radius: var(--radius-full);
  transform: translate(-50%, -50%);
}

.curriculum-item:nth-child(even) .timeline-dot::after {
  background: var(--teal-500);
}

.curriculum-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: all 0.35s var(--ease-smooth);
}

.curriculum-card:hover {
  border-color: rgba(231, 76, 60, 0.3);
  transform: translateX(4px);
}

.curriculum-card .materi-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-400);
  margin-bottom: 8px;
}

.curriculum-item:nth-child(even) .materi-number {
  color: var(--teal-400);
}

.curriculum-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.curriculum-card .narasumber {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.curriculum-card .narasumber svg {
  width: 14px;
  height: 14px;
}

.curriculum-card .focus {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.curriculum-card .topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.curriculum-card .topic-tag {
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.15);
  color: var(--red-200);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 50px;
}

.curriculum-item:nth-child(even) .topic-tag {
  background: rgba(26, 188, 156, 0.08);
  border: 1px solid rgba(26, 188, 156, 0.15);
  color: var(--teal-200);
}

/* Bonus Session */
.bonus-card {
  background: linear-gradient(135deg, rgba(26,188,156,0.08) 0%, rgba(22,37,68,0.5) 100%);
  border: 1px solid rgba(26,188,156,0.25);
}

.bonus-card .materi-number {
  color: var(--teal-400) !important;
}

/* ---------- OUTPUT SECTION ---------- */
.output {
  background: var(--navy-900);
  position: relative;
}

.output-header {
  text-align: center;
  margin-bottom: 56px;
}

.output-header .section-subtitle {
  margin: 0 auto;
}

.output-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.output-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: background 0.3s;
}

.output-item:hover {
  background: rgba(22, 37, 68, 0.4);
}

.output-item .check-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: rgba(231, 76, 60, 0.1);
  border: 1.5px solid rgba(231, 76, 60, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red-400);
  margin-top: 2px;
}

.output-item .check-icon svg {
  width: 14px;
  height: 14px;
}

.output-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- FACILITIES SECTION ---------- */
.facilities {
  background: var(--navy-800);
  position: relative;
}

.facilities::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.facilities-header {
  text-align: center;
  margin-bottom: 56px;
}

.facilities-header .section-subtitle {
  margin: 0 auto;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.facility-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: all 0.35s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.facility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-red);
  transform: scaleX(0);
  transition: transform 0.4s var(--ease-smooth);
  transform-origin: left;
}

.facility-card:hover::before {
  transform: scaleX(1);
}

.facility-card:hover {
  transform: translateY(-6px);
  border-color: rgba(231, 76, 60, 0.2);
  box-shadow: 0 12px 40px rgba(10, 18, 34, 0.5);
}

.facility-card .facility-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: var(--radius-md);
  background: rgba(231, 76, 60, 0.08);
  border: 1px solid rgba(231, 76, 60, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.facility-card h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.facility-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ---------- TIMELINE SECTION ---------- */
.timeline-section {
  background: var(--navy-900);
  position: relative;
}

.timeline-header {
  text-align: center;
  margin-bottom: 56px;
}

.timeline-header .section-subtitle {
  margin: 0 auto;
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  position: relative;
}

.timeline-track::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, var(--red-400), var(--teal-500));
  z-index: 0;
}

.timeline-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.timeline-step .step-dot {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-full);
  background: var(--navy-900);
  border: 3px solid var(--red-400);
  margin: 20px auto 20px;
  position: relative;
  transition: all 0.3s var(--ease-smooth);
}

.timeline-step:nth-child(even) .step-dot {
  border-color: var(--teal-500);
}

.timeline-step .step-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--red-400);
  border-radius: var(--radius-full);
  transform: translate(-50%, -50%);
}

.timeline-step:nth-child(even) .step-dot::after {
  background: var(--teal-500);
}

.timeline-step .step-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-400);
  margin-bottom: 4px;
}

.timeline-step:nth-child(even) .step-label {
  color: var(--teal-400);
}

.timeline-step h4 {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.timeline-step .step-date {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---------- PRICING SECTION ---------- */
.pricing {
  background: var(--navy-800);
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.pricing::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,52,39,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.pricing-card {
  background: var(--glass-bg);
  border: 1.5px solid rgba(231, 76, 60, 0.25);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  backdrop-filter: blur(16px);
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-red);
}

.pricing-card .price-label {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.pricing-card .price {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.pricing-card .price span {
  font-size: 0.4em;
  font-weight: 400;
  color: var(--text-secondary);
  vertical-align: top;
  position: relative;
  top: 12px;
}

.pricing-card .price-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.pricing-card .btn-primary {
  width: 100%;
  max-width: 320px;
  padding: 18px 36px;
  font-size: 1.05rem;
}

.pricing-card .price-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
  text-align: left;
}

.pricing-card .price-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.pricing-card .price-feature svg {
  width: 16px;
  height: 16px;
  color: var(--teal-400);
  flex-shrink: 0;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--navy-900);
  padding: 48px 0;
  position: relative;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo .nav-logo-circle {
  width: 48px;
  height: 48px;
  font-size: 0.6rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--white);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(22, 37, 68, 0.6);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease-smooth);
}

.footer-social a:hover {
  background: rgba(231, 76, 60, 0.1);
  border-color: var(--red-400);
  color: var(--red-400);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-text a {
  color: var(--red-400);
  font-weight: 500;
}

.footer-text a:hover {
  color: var(--red-300);
}

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

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

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
}

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

/* Staggered delays */
.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; }

/* ---------- Keyframe Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes floatSlow {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(3deg);
  }
}

@keyframes pulseDot {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.6);
  }
}

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

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 18, 34, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 40px;
    transition: right 0.4s var(--ease-smooth);
    border-left: 1px solid var(--glass-border);
    z-index: 1001;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1002;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .target-cards {
    grid-template-columns: 1fr;
  }

  .curriculum-timeline::before {
    left: 16px;
  }

  .curriculum-item {
    padding-left: 52px;
  }

  .curriculum-item .timeline-dot {
    left: 7px;
  }

  .output-grid {
    grid-template-columns: 1fr;
  }

  .facilities-grid {
    grid-template-columns: 1fr 1fr;
  }

  .timeline-track {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .timeline-track::before {
    display: none;
  }

  .pricing-card .price-features {
    grid-template-columns: 1fr;
  }

  .pricing-card {
    padding: 36px 24px;
  }

  .hero-meta {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .facilities-grid {
    grid-template-columns: 1fr;
  }

  .timeline-track {
    grid-template-columns: 1fr;
  }

  .about-highlight-cards {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .section {
    padding: 60px 0;
  }
}
