/* =============================================
   Mara Events — styles.css
   ============================================= */

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

:root {
  --bg-light: #ffffff;
  --bg-mid: #f4f4f4;
  --bg-dark: #000;
  --bg-vip: #003279;
  --accent: #2174E9;
  --accent-hover: #002B67;
  --text-dark: #000000;
  --text-mid: #3c4c48;
  --text-muted: #6e807c;
  --text-light: #e8f0ef;
  --border: rgba(60, 76, 72, 0.15);
  --navy-deep: #0d2257;
  --navy-mid: #0f2a6a;
  --navy-light: #133380;
  --blue-btn: #1a5bc4;
  --blue-btn-hover: #2568d8;
  --white: #ffffff;
  --white-70: rgba(255,255,255,0.72);
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 36px rgba(0,0,0,0.14);
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font: 'Hanken Grotesk', sans-serif;

  --wa-phone: "2349011046473"; /* ← your WhatsApp number with country code */
  --wa-size: 60px;
  --wa-green: #25D366;
  --wa-green-dark: #128C50;
  --wa-offset-x: 28px;
  --wa-offset-y: 28px;
  --wa-shadow: 0 6px 28px rgba(37,211,102,0.45);
  --wa-shadow-hover: 0 10px 40px rgba(37,211,102,0.60);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

.container {
  /* max-width: 1200px; */
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Sections --- */
section {
  position: relative;
}

.dark-section {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-heading {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-dark);
}

.heading-regular {
  font-weight: 400;
}

.dark-section .section-heading,
.dark-section .heading-regular {
  color: var(--text-light);
}

.section-sub {
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 16px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  /* background: rgba(225, 242, 255, 0.97);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06); */
  background: rgba(255, 255, 255, 0.15); /* more transparent */
  backdrop-filter: blur(12px);          /* glass blur effect */
  -webkit-backdrop-filter: blur(12px);  /* Safari support */
  
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2); /* subtle glass edge */
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--bg-light);
}

.nav-logo sup {
  font-size: 10px;
  font-weight: 400;
  margin-left: 1px;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--accent);
  background-color: rgba(0, 150, 255, 0.1); /* light blue */
  padding: 6px 12px;
  border-radius: 6px;
}

.nav-links a {
  transition: all 0.3s ease;
}

.nav-cta {
  background: var(--bg-vip);
  color: var(--text-light) !important;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px !important;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  gap: 4px;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  padding: 12px 0;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--text-dark);
}

.mobile-cta {
  background: var(--text-dark);
  color: var(--text-light) !important;
  padding: 14px 20px !important;
  border-radius: var(--radius-sm);
  text-align: center;
  margin-top: 8px;
  font-weight: 600 !important;
  border: none !important;
}

.mobile-menu.open {
  display: flex;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 80px 0 60px;
  overflow: hidden;
  isolation: isolate;
}

/* Hero Carousel Track */

.hero-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-slides {
  display: flex;
  height: 100%;
  transition: transform 0.85s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

/* Individual Hero Slide */

.hero-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  height: 100%;
  overflow: hidden;
}

/* .hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transform: scale(1.05);
  transition: transform 7s ease-out;
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.hero-slide.is-active .hero-bg {
  transform: scale(1);
} 

/* OVERLAY */

/* .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
} */

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.10) 0%,
    rgba(0, 0, 0, 0.38) 45%,
    rgba(0, 0, 0, 0.70) 100%
  );
  box-shadow:
    inset 80px  0 60px -40px rgba(0, 0, 0, 0.22),
    inset -80px 0 60px -40px rgba(0, 0, 0, 0.22);
}

/* Hero Dots */

.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: 1.5px solid rgba(255,255,255,.6);
  transition: background .3s, width .3s, border-radius .3s;
  cursor: pointer;
}

.hero-dot.active {
  background: var(--text-light);
  width: 24px;
  border-radius: 4px;
  border-color: var(--text-light);
}

.hero-dot:hover {
  background: rgba(255,255,255,.6);
  width: 14px;
  border-radius: 4px;
}

/* Hero Contents */

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px;
  max-width: 720px;
} 

.hero-title {
  font-size: clamp(56px, 12vw, 120px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.9;
  color: #fff;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* .hero-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hero-meta-group {
  display: flex;
  gap: 48px;
}

.meta-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  line-height: 1.4;
} */

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 4px 20px 4px 4px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.hero-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--accent);
  border-radius: 100px;
  color: var(--text-dark);
  flex-shrink: 0;
}

.hero-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.hero-btn:hover .hero-btn-icon {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
}

.scroll-indicator span {
  display: block;
  width: 2px;
  height: 15px;
  background: rgba(255,255,255,0.6);
  margin: 3px 0;
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}


/* =============================================
   MISSION
   ============================================= */
.mission {
  background: var(--bg-light);
  padding: 80px 24px;
}

.mission-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

/* .attendee-avatars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
} */

.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--bg-light);
  margin-left: -12px;
  background: var(--bg-mid);
}

.attendee-avatars .avatar:first-child {
  margin-left: 0;
}

/* .av1 { background: linear-gradient(135deg, #9ab8a8, #5f8070); }
.av2 { background: linear-gradient(135deg, #a8a8b8, #686878); }
.av3 { background: linear-gradient(135deg, #b8a89a, #806858); }
.av4 { background: linear-gradient(135deg, #98b8b0, #587870); }
.av5 { background: linear-gradient(135deg, #b0a8b8, #707088); } */

.who {
  padding-bottom: 1rem;
  margin-left: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.mission-text {
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  text-transform: uppercase;
}

/* =============================================
   PARTNERS
   ============================================= */
.partners {
  background: var(--bg-mid);
  overflow: hidden;
  padding: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.partners-scroll {
  overflow: hidden;
  padding: 32px 0;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: scrollLeft 20s linear infinite;
  white-space: nowrap;
  width: max-content;
}

.partner-item {
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.3s;
  flex-shrink: 0;
}

.partner-item:hover {
  opacity: 1;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================
   ABOUT US (Dark)
   ============================================= */
.about-us {
  padding: 80px 24px;
}

.about-us-inner {
  max-width: 800px;
}

.about-us-tag {
  display: inline-block;
  background: var(--accent);
  color: var(--text-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.about-us-heading {
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-light);
  margin-bottom: 20px;
}

.about-us-desc {
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: rgba(232,240,239,0.75);
  max-width: 560px;
  margin-bottom: 12px;
}

.btn-outline-light {
  display: inline-block;
  border: 1.5px solid rgba(232,240,239,0.4);
  color: var(--text-light);
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: rgba(232,240,239,0.1);
  border-color: var(--text-light);
}

/* =============================================
   MAIN EVENTS
   ============================================= */
.events-section {
  padding: 80px 0 00;
  background: var(--bg-light);
}

.events-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}

.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-outline:hover {
  border-color: var(--text-dark);
  color: var(--text-dark);
}

/* Main Events Grid */
.main-events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}

.main-events-grid .event-card-body h3 {
  grid-column: 1 / -1;  
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-dark);
}

.main-events-grid .event-card-body p {
  grid-column: 1 / -1;
  font-size: 16px;
  font-weight: 200;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.event-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-mid);
  border: 1px solid var(--border);
  transition: var(--transition);
}

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

.event-card-img-wrap {
  aspect-ratio: 16/9;
  overflow: hidden;
}

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

.event-card:hover .event-card-img-wrap img {
  transform: scale(1.04);
}

.event-card-body {
  padding: 20px 24px;
}

.event-card-body h3 {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.events-header, .section-heading span{
  color: var(--accent);
}

.event-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  font-family: monospace;
  margin-bottom: 16px;
}

/* .dot {
  color: var(--accent);
} */

.event-card-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-hover);
  transition: var(--transition);
}

.event-card-link:hover {
  color: var(--text-dark);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 80px 0;
  background: var(--bg-mid);
}

.testimonials .section-heading {
  margin-bottom: 48px;
}

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

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
  min-width: 100%;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 48px;
  border: 1px solid var(--border);
}

.testimonial-stars {
  color: var(--accent);
  font-size: 20px;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.testimonial-quote {
  font-size: clamp(16px, 2.5vw, 22px);
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 36px;
  max-width: 700px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.testimonial-author div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author strong {
  font-size: 15px;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 13px;
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
}

.t-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  font-size: 22px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.t-btn:hover {
  background: var(--text-dark);
  color: #fff;
  border-color: var(--text-dark);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  transition: var(--transition);
}

.t-dot.active {
  background: var(--text-dark);
  width: 24px;
  border-radius: 4px;
}

/* =============================================
   BROCHURE & CATALOGUE
   ============================================= */

   .banner-brochure {
      position: relative;
      width: 100%;
      /* max-width: 1200px; */
      background: radial-gradient(ellipse at 60% 40%, var(--navy-light) 0%, var(--navy-mid) 40%, var(--navy-deep) 100%);
      border-radius: 4px;
      padding: 44px 80px 44px;
      text-align: center;
      overflow: hidden;
      /* box-shadow: 0 24px 80px rgba(10, 20, 70, 0.45); */
    }
 
    /* Subtle dot-grid texture overlay */
    .banner-brochure::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 22px 22px;
      pointer-events: none;
    }
 
    /* Soft glow highlight top-center */
    .banner-brochure::after {
      content: '';
      position: absolute;
      top: -60px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 260px;
      background: radial-gradient(ellipse, rgba(50,110,255,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
 
    .banner-brochure__content {
      position: relative;
      z-index: 1;
    }
 
    .banner-brochure__title {
      font-size: clamp(26px, 4vw, 40px);
      font-weight: 700;
      color: var(--text-light);
      line-height: 1;
      letter-spacing: -2px;
      margin-bottom: 10px;
    }
 
    .banner-brochure__body {
      font-size: clamp(14px, 1.6vw, 16px);
      font-weight: 200;
      color: var(--text-light);
      line-height: 1.3;
      max-width: 680px;
      margin: 0 auto 12px;
    }
 
    .banner-brochure__tagline {
      font-size: clamp(14px, 1.5vw, 16px);
      font-weight: 600;
      color: var(--text-light);
      margin-bottom: 36px;
    }

    .banner__btns {
      display: flex;
      justify-content: center;
      gap: 20px;
    }
 
    .banner__btn1 {
      display: inline-block;
      background: var(--accent);
      color: var(--text-light);
      font-size: 16px;
      font-weight: 600;
      padding: 14px 48px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      letter-spacing: 0.2px;
      text-decoration: none;
      transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
      box-shadow: 0 4px 20px rgba(26, 91, 196, 0.5);
    }
 
    .banner__btn1:hover, .banner__btn2:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(26, 91, 196, 0.65);
    }
 
    .banner__btn1:active, .banner__btn2:active {
      transform: translateY(0);
    }

    .banner__btn2 {
      display: inline-block;
      background: transparent;
      color: var(--text-light);
      font-size: 16px;
      font-weight: 600;
      padding: 14px 48px;
      border-radius: 4px;
      border: 1px solid var(--bg-light);
      cursor: pointer;
      letter-spacing: 0.2px;
      text-decoration: none;
      transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    }

/* =============================================
   SHOWCASE
   ============================================= */
.team {
  padding: 80px 0;
  background: var(--bg-light);
}

.cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    /* max-width: 960px; */
    width: 100%;
    padding: 0 20px;
    /* background: #111; */
    border-radius: 20px;
    overflow: hidden;
  }
 
  .card {
    position: relative;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 16px;
    cursor: pointer;
  }
 
  .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .card:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease-in-out;
  }
 
  .card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    padding: 16px;
  }
 
  .card--top-left .card-overlay { align-items: flex-start; justify-content: flex-start; }
  .card--bottom-center .card-overlay { align-items: flex-end; justify-content: center; padding-bottom: 20px; }
  .card--top-right .card-overlay { align-items: flex-start; justify-content: flex-end; }
 
  .text-badge {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    padding: 12px 14px;
    max-width: 380px;
    border: 1px solid rgba(255,255,255,0.15);
  }
 
  .card--top-left .text-badge,
  .card--top-right .text-badge {
    background: rgba(60, 60, 60, 0.55);
  }
 
  .card--bottom-center .text-badge {
    background: rgba(100, 50, 35, 0.60);
  }
 
  .text-badge h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 0px;
    color: #fff;
    letter-spacing: 0.01em;
    line-height: 1.3;
  }
 
  .text-badge p {
    font-size: 14px;
    font-weight: 200;
    color: rgba(255,255,255,0.88);
    line-height: 1.45;
  }
 
  @media (max-width: 600px) {
    .cards-row { grid-template-columns: 1fr; gap: 8px; }
    .card { aspect-ratio: 3 / 4; }
  }

/* =============================================
   BOOK SECTION
   ============================================= */
.book-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.book-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.book-left {
  padding-top: 8px;
}

.book-sub {
  margin-top: 12px;
  font-size: 14px;
  font-family: monospace;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.book-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-stars {
  color: var(--accent);
  font-size: 18px;
  letter-spacing: 2px;
}

.book-trust span {
  font-size: 13px;
  font-family: monospace;
  color: var(--text-muted);
}

/* Form */
.book-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-mid);
}

.form-group input,
.form-group select {
  border: none;
  border-bottom: 1.5px solid var(--border);
  padding: 12px 0;
  font-size: 15px;
  font-family: monospace;
  color: var(--text-mid);
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--text-dark);
}

.form-group input::placeholder {
  color: var(--text-muted);
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 32px;
}

.select-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--text-muted);
  pointer-events: none;
  rotate: 90deg;
}

.form-submit {
  background: var(--accent);
  color: var(--text-light);
  padding: 16px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  border: none;
  width: 100%;
}

.form-submit:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
}

.form-terms {
  font-size: 12px;
  font-family: monospace;
  color: var(--text-muted);
  text-align: center;
}

.form-terms a {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* FAQ SECTION */

.faq-section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 15px 0;
}

/* QUESTION BUTTON */
.faq-q {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 0;
}

/* ICON */
.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-a p {
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
}

/* ACTIVE STATE */
.faq-item.active .faq-a {
  max-height: 300px;
  opacity: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* turns + into × */
}

/* WhatsApp Button */

.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--accent);
  color: var(--text-light);
  border-radius: 100px;
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
  overflow: hidden;
  max-width: 56px;
  height: 56px;
  padding: 0 16px;
  cursor: pointer;
  border: none;
  /* font-family: var(--ff-body); */
  text-decoration: none;
 
  /* Hidden by default — slides in from bottom right */
  opacity: 0;
  transform: translateY(24px) scale(0.88);
  pointer-events: none;
  transition:
    opacity .4s var(--ease-out),
    transform .4s var(--ease-out),
    max-width .4s var(--ease-out),
    background .2s,
    box-shadow .3s;
}
.wa-btn.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-btn:hover {
  background: rgba(0, 151, 55, 0.55);
  box-shadow: 0 12px 36px rgba(37,211,102,.55);
  max-width: 220px;
}
.wa-btn:hover .wa-label { opacity: 1; max-width: 140px; margin-left: 10px; }
 
.wa-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
}
.wa-icon svg { width: 32px; height: 32px; }
 
.wa-label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity .3s .1s, max-width .4s var(--ease-out), margin .4s var(--ease-out);
}
 
/* Pulse ring */
.wa-btn.visible::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 100px;
  border: 2px solid var(--accent);
  animation: waPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .6; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  padding: 80px 0 40px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(232,240,239,0.1);
  gap: 24px;
  flex-wrap: wrap;
}

.footer-top span{
  color: var(--accent);
}

.footer-heading {
  font-size: clamp(28px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-light);
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(232,240,239,0.3);
  color: var(--text-light);
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.footer-cta:hover {
  background: rgba(232,240,239,0.1);
  border-color: var(--text-light);
}

.footer-mid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 0;
  border-bottom: 1px solid rgba(232,240,239,0.1);
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  font-family: monospace;
  color: rgba(232,240,239,0.5);
  padding-top: 1rem;
  line-height: 1.6;
  max-width: 380px;
}

.footer-links-group h5 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232,240,239,0.5);
  margin-bottom: 20px;
}

.footer-links-group ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-bottom: 1rem;
}

.footer-links-group a,
.footer-links-group li {
  font-size: 14px;
  color: rgba(232,240,239,0.7);
  transition: color 0.2s;
}

.footer-links-group a:hover {
  color: var(--text-light);
}

.footer-social {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 2px;
}

.footer-social a {
  font-size: 16px;
  color: rgba(232,240,239,0.7);
  transition: color 0.2s;
}

.footer-social a:hover {
  color: var(--text-light);
}

.footer-social-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
}

.footer-social h5 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232,240,239,0.5);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 12px;
  color: rgba(232,240,239,0.4);
  font-family: monospace;
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 12px;
  color: rgba(232,240,239,0.4);
  font-family: monospace;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--text-light);
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================
   SUCCESS MESSAGE
   ============================================= */
.form-success {
  display: none;
  padding: 16px 24px;
  background: rgba(122, 171, 130, 0.15);
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  color: var(--accent-hover);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

/* =============================================
   RESPONSIVE
   ============================================= */

/* Tablet: 768px - 1024px */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-mid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

.partners-track {
    gap: 40px; /* tighter gap on small screens */
    animation-duration: 18s;
}

/* Tablet: ≤768px */
@media (max-width: 768px) {
  /* Nav */
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  /* Hero */
  .hero-content {
    padding: 0 20px;
  }

  .hero-content .hero-title {
    font-size: 42px;
  }

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

  /* .hero-arrow {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .hero-arrow--prev {
    left: 15px;
  }
  
  .hero-arrow--next {
    right: 15px;
  }
  
  .hero-dots {
    bottom: 20px;
    gap: 8px;
  }
  
  .hero-dot {
    width: 12px;
    height: 12px;
  }
  
  .hero-btn {
    padding: 16px 28px;
    font-size: 1rem;
  } */

  /* Mission */
  .mission-text {
    font-size: clamp(16px, 4vw, 22px);
  }

  /* Events */
  .events-header {
    flex-direction: column;
    align-items: flex-start;
  }

  #events-btn {
    display: none;
    visibility: hidden;
  }

  .main-events-grid {
    grid-template-columns: 1fr;
  }

  .recent-event-list {
    grid-template-columns: 1fr;
  }

  /* Testimonial */
  .testimonial-card {
    padding: 32px 24px;
  }

  /* Banner Brochure */
  .banner-brochure {
    padding: 40px 20px;
  }

  .banner-brochure h2 {
    font-size: 32px;
  }

  .banner-brochure p {
    font-size: 16px;
  } 

  .banner__btn1, .banner__btn2 {
    padding: 12px 12px;
    font-size: 14px;
  }


  /* Book */
  .book-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .book-trust{
    display: none;
    visibility: hidden;
  }

  .book-sub{
    margin-bottom: 0;
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-mid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile: ≤480px */
@media (max-width: 480px) {
  .hero-title {
    font-size: 52px;
  }

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

  .pricing-grid {
    padding: 0;
  }

 #events-btn {
    display: none;
    visibility: hidden;
  }

  /* Banner Brochure */
  .banner-brochure {
    padding: 40px 20px;
  }

  .banner-brochure h2 {
    font-size: 24px;
    letter-spacing: 0.02em;
  }

  .banner-brochure p {
    font-size: 14px;
    max-width: 100%;
  } 

  .banner__btns{
    flex-direction: column;
    gap: 10px;
  }

  .banner__btn1, .banner__btn2 {
    padding: 12px 12px;
    font-size: 12px;
  }

   .book-trust{
    display: none;
    visibility: hidden;
  }

  .book-sub{
    margin-bottom: 0;
  }

  .footer-mid {
    grid-template-columns: 1fr;
  }

  .featured-heading {
    font-size: 36px;
  }

  .testimonial-quote {
    font-size: 16px;
  }

  .main-events-grid {
    grid-template-columns: 1fr;
  }
}

/* =============================================
   HERO ACTIONS & VIDEO BUTTON / DIALOG
   ============================================= */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.hero-btn-video {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--text-light);
  padding: 4px 20px 4px 4px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.hero-btn-video-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  color: var(--text-light);
  flex-shrink: 0;
  transition: var(--transition);
}

.hero-btn-video:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.hero-btn-video:hover .hero-btn-video-icon {
  background: var(--accent);
  color: #fff;
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-btn, .hero-btn-video {
    justify-content: center;
    width: 100%;
  }
}

/* Video Dialog Styles */
.video-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 12px;
  background: transparent;
  width: 90%;
  max-width: 960px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: visible;
}

.video-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.video-dialog-content {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-dialog-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
  padding: 5px;
}

.video-dialog-close:hover {
  color: var(--accent);
}

@media (max-width: 768px) {
  .video-dialog-close {
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 2002;
  }
}

.video-iframe-container {
  width: 100%;
  height: 100%;
}

.video-iframe-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Success Dialog Styles */
.success-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  right: auto;
  bottom: auto;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 40px 32px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.95);
  width: 90%;
  max-width: 460px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  text-align: center;
  font-family: var(--font);
}

.success-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.success-dialog-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Success Checkmark Animation */
.success-icon-wrap {
  margin-bottom: 24px;
}

.success-checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 3;
  stroke: #4a8a54;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #4a8a54;
  animation: fillSuccess 0.4s ease-in-out 0.4s forwards, scaleSuccess 0.3s ease-in-out 0.9s both;
}

.success-checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 3;
  stroke-miterlimit: 10;
  stroke: #4a8a54;
  fill: none;
  animation: strokeSuccess 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: strokeSuccess 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes strokeSuccess {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scaleSuccess {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fillSuccess {
  100% {
    box-shadow: inset 0px 0px 0px 40px rgba(74, 138, 84, 0.1);
  }
}

/* Modal Typography */
.success-dialog h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.success-dialog p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Button */
.success-dialog-close-btn {
  background: var(--bg-vip);
  color: var(--text-light);
  font-size: 15px;
  font-weight: 600;
  padding: 12px 36px;
  border-radius: 100px;
  transition: var(--transition);
  border: none;
  width: 100%;
}

.success-dialog-close-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.success-dialog-close-btn:active {
  transform: translateY(0);
}

/* Dialog Show Animation */
.success-dialog[open] {
  animation: successModalShow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes successModalShow {
  from {
    opacity: 0;
    transform: translate(-50%, -40%) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* =============================================
   TRAINING & ACADEMY STYLES
   ============================================= */
.training-page {
  background-color: #f8fafc;
}

/* Hero Section */
.academy-hero {
  position: relative;
  min-height: 400px;
  background-image: url('images/coprat.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
  color: var(--white);
}

.academy-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 50, 121, 0.95) 0%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}

.academy-hero-content {
  position: relative;
  z-index: 2;
  text-align: left;
}

.academy-badge {
  display: inline-block;
  background: rgba(33, 116, 233, 0.2);
  border: 1px solid var(--accent);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.academy-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.academy-title span {
  color: var(--accent);
}

.academy-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  line-height: 1.6;
}

/* Detail Strip Bar */
.details-strip {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  position: relative;
  z-index: 5;
}

.details-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 250px;
}

.detail-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(33, 116, 233, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.detail-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 4px;
}

.detail-info p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Split Layout */
.training-main {
  padding-top: 60px;
  padding-bottom: 80px;
}

.training-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 992px) {
  .training-layout {
    grid-template-columns: 1.35fr 1fr;
    gap: 40px;
    align-items: start;
  }
  .registration-sidebar {
    position: sticky;
    top: 100px;
  }
}

/* Left highlights column */
.content-block {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: var(--shadow);
}

.block-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.block-desc {
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
}

.perks-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.perks-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.perks-list i {
  color: #10b981;
  font-size: 18px;
  margin-top: 3px;
}

.perks-list span {
  color: var(--text-dark);
  line-height: 1.5;
}

/* Accordion Curriculum */
.curriculum-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.curriculum-week {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fafbfd;
  transition: var(--transition);
}

.curriculum-week:hover {
  border-color: rgba(33, 116, 233, 0.4);
  background: var(--white);
}

.week-header {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.week-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  background: rgba(33, 116, 233, 0.08);
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.week-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-deep);
  flex: 1;
}

.accordion-icon {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.curriculum-week.expanded .accordion-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.week-body {
  padding: 0 20px 0 72px;
  color: var(--text-muted);
  font-size: 14.5px;
  line-height: 1.6;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, padding 0.3s ease;
}

.curriculum-week.expanded .week-body {
  padding: 0 20px 20px 72px;
  max-height: 1000px;
  opacity: 1;
}

/* Topic tags and pills */
.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.topic-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy-deep);
  background: #f1f5f9;
  padding: 6px 12px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.2s ease;
}

.topic-tag:hover {
  background: rgba(33, 116, 233, 0.08);
  color: var(--accent);
  border-color: rgba(33, 116, 233, 0.15);
}

/* Capstone Highlight Block */
.capstone-highlight {
  display: flex;
  gap: 16px;
  background: rgba(33, 116, 233, 0.04);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 16px 20px;
  margin-top: 20px;
  text-align: left;
}

.capstone-highlight i {
  font-size: 24px;
  color: var(--accent);
  margin-top: 4px;
}

.capstone-highlight strong {
  font-size: 15px;
  color: var(--navy-deep);
  display: block;
  margin-bottom: 4px;
}

.capstone-highlight p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0;
}

/* Right card checkout column */
.registration-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  padding: 32px;
}

.registration-card .card-header {
  text-align: center;
  margin-bottom: 28px;
}

.registration-card .card-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.registration-card .card-header p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Stepper Indicator */
.stepper-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}

.step-indicator-item {
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  transition: var(--transition);
}

.step-indicator-item.active {
  opacity: 1;
}

.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-vip);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}

.step-indicator-item.active .step-dot {
  background: var(--accent);
}

.step-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-deep);
}

.step-line {
  height: 2px;
  width: 32px;
  background: var(--border);
}

/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.registration-form .form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.registration-form label {
  font-size: 11px;
  font-weight: 800;
  color: var(--navy-deep);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.registration-form input,
.registration-form select {
  font-family: var(--font);
  font-size: 15px;
  padding: 12px 16px;
  border: 1.5px solid rgba(60, 76, 72, 0.2);
  border-radius: 8px;
  background: var(--white);
  color: var(--text-dark);
  transition: var(--transition);
  min-height: 48px;
  width: 100%;
}

.registration-form input::placeholder {
  color: rgba(60, 76, 72, 0.4);
}

.registration-form input:focus,
.registration-form select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(33, 116, 233, 0.12);
  outline: none;
}

/* User feedback validation styling */
.registration-form input:invalid:user-invalid,
.registration-form select:invalid:user-invalid {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.01);
}

.error-msg {
  font-size: 12px;
  color: #ef4444;
  margin-top: 6px;
  font-weight: 500;
  display: block;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
}

@media (max-width: 576px) {
  .form-row {
    flex-direction: column;
    gap: 0;
  }
}

/* Price block on payment step */
.pricing-summary {
  background: #f1f5f9;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(0,0,0,0.04);
}

.summary-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
}

.summary-price {
  font-size: 20px;
  font-weight: 800;
  color: #10b981;
}

/* Secure badge */
.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #10b981;
  background: rgba(16, 185, 129, 0.08);
  border: 1px dashed rgba(16, 185, 129, 0.3);
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
}

.secure-badge.warning {
  color: #d97706;
  background: rgba(217, 119, 6, 0.08);
  border-color: rgba(217, 119, 6, 0.3);
}

.payment-instructions {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 24px;
}

.field-hint {
  font-size: 10px;
  color: var(--text-muted);
  float: right;
  margin-top: 1px;
}

.checkout-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.checkout-actions-vertical {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.btn-secondary-link {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 8px;
  text-decoration: underline;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-secondary-link:hover {
  color: var(--accent);
}

.btn-back {
  flex: 0.4;
  border: 1.5px solid rgba(60, 76, 72, 0.2);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  transition: var(--transition);
  cursor: pointer;
}

.btn-back:hover {
  background: #f1f5f9;
  border-color: rgba(60, 76, 72, 0.4);
}

.registration-form .form-submit {
  flex: 1;
  background: var(--bg-vip);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: none;
  transition: var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 50, 121, 0.2);
}

.registration-form .form-submit:hover {
  background: var(--accent);
  box-shadow: 0 4px 16px rgba(33, 116, 233, 0.35);
  transform: translateY(-1px);
}

.registration-form .form-submit:active {
  transform: translateY(0);
}

.security-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 20px;
  line-height: 1.5;
}

/* Payment Overlay Loader */
.payment-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.payment-overlay.active {
  display: flex;
}

.overlay-content {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  max-width: 400px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(33, 116, 233, 0.1);
  border-left-color: var(--accent);
  border-radius: 50%;
  margin: 0 auto 24px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

.overlay-content h3 {
  font-size: 20px;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

.overlay-content p {
  font-size: 14px;
  color: var(--text-muted);
}

/* Receipt Modal Dialog */
.receipt-dialog {
  max-width: 480px;
  width: 90%;
  border-radius: var(--radius);
  border: none;
  background: var(--white);
  padding: 0;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.receipt-card {
  padding: 32px;
}

.receipt-header {
  text-align: center;
}

.receipt-header h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-top: 16px;
  margin-bottom: 6px;
}

.receipt-header p {
  font-size: 14px;
  color: var(--text-muted);
}

.receipt-divider {
  border-top: 1px dashed rgba(60, 76, 72, 0.2);
  margin: 24px 0;
}

.receipt-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--navy-deep);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  margin-bottom: 12px;
}

.receipt-row span {
  color: var(--text-muted);
}

.receipt-row strong {
  color: var(--navy-deep);
  font-weight: 600;
}

.receipt-row .receipt-price {
  font-size: 18px;
  color: #10b981;
  font-weight: 800;
}

.status-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.receipt-footer p {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.6;
  text-align: center;
  margin-bottom: 24px;
}

/* FAQ Accordion Section */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 16px;
  transition: var(--transition);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 8px 0;
}

.faq-question h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 0;
  transition: color 0.3s ease;
}

.faq-question:hover h4 {
  color: var(--accent);
}

.faq-icon {
  font-size: 12px;
  color: var(--text-muted);
  transition: transform 0.3s ease, color 0.3s ease;
}

.faq-item.expanded .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-item.expanded .faq-question h4 {
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}

.faq-item.expanded .faq-answer {
  max-height: 200px;
  opacity: 1;
  margin-top: 10px;
}

.faq-answer p {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Mara Events Section */
.why-choose-section {
  padding: 100px 0;
  background: #fafbfd;
  border-bottom: 1px solid var(--border);
}

.why-choose-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-tag {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.why-choose-header .section-heading {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.why-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(33, 116, 233, 0.08);
  border-color: rgba(33, 116, 233, 0.2);
}

.why-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(33, 116, 233, 0.06);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.why-card:hover .why-card-icon {
  background: var(--accent);
  color: var(--white);
}

.why-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 14px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0;
}

/* Responsive constraints for Why Choose Section */
@media (max-width: 992px) {
  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .why-choose-grid {
    grid-template-columns: 1fr;
  }
  .why-choose-section {
    padding: 70px 0;
  }
  .why-choose-header .section-heading {
    font-size: 28px;
  }
}

/* Academy Reasons Grid (Why Choose Mara Events Training Academy) */
.academy-reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.academy-reason-card {
  display: flex;
  gap: 16px;
  background: #fafbfd;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
}

.academy-reason-card:hover {
  background: var(--white);
  border-color: rgba(33, 116, 233, 0.3);
  box-shadow: 0 10px 30px rgba(33, 116, 233, 0.04);
  transform: translateY(-3px);
}

.academy-reason-card i {
  font-size: 20px;
  color: var(--accent);
  margin-top: 3px;
  background: rgba(33, 116, 233, 0.06);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.academy-reason-card:hover i {
  background: var(--accent);
  color: var(--white);
}

.academy-reason-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 6px;
  margin-top: 0;
}

.academy-reason-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .academy-reasons-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Confirm-payment panel (shown after Flutterwave tab opens) */
.confirm-payment-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
  animation: fadeSlideUp 0.3s ease both;
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.confirm-payment-msg {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(33, 116, 233, 0.05);
  border: 1px solid rgba(33, 116, 233, 0.2);
  border-radius: 8px;
  padding: 14px;
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}

.confirm-payment-msg i {
  color: var(--accent);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.confirm-paid-btn {
  background: #16a34a !important;
}

.confirm-paid-btn:hover {
  background: #15803d !important;
}

.btn-cancel-payment {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 4px 0;
  cursor: pointer;
  text-align: center;
  transition: color 0.2s;
}

.btn-cancel-payment:hover {
  color: var(--accent);
}



