/* ============================================================
   BOOKFAIR CENTRAL — PREMIUM STANDALONE STYLESHEET
   Self-contained. No external WordPress/Avada dependencies.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  /* HSL Color Palette - Sophisticated & Premium */
  --navy: hsl(220, 45%, 10%);
  /* Deep Slate Navy */
  --dark: hsl(210, 52%, 9%);
  /* Ultra Dark Slate Blue */
  --black: hsl(210, 60%, 5%);
  /* Near Black for dark backdrops */
  --sky: hsl(198, 90%, 55%);
  /* Electric Sky Blue */
  --teal: hsl(172, 80%, 42%);
  /* Premium Cyan/Teal */
  --indigo: hsl(245, 75%, 60%);
  /* Royal Indigo */
  --amber: hsl(38, 95%, 55%);
  /* Warm Orange-Gold */
  --gold: hsl(48, 95%, 55%);
  /* Warm Yellow Gold */
  --crimson: hsl(335, 80%, 45%);
  /* Deep Rose Red */
  --white: #ffffff;
  --light-bg: hsl(210, 30%, 98%);
  /* Clean Icy Light Backdrop */
  --card-bg: #ffffff;
  --text: hsl(215, 25%, 25%);
  /* Readable Dark Slate for Body Text */
  --muted: hsl(215, 20%, 38%);
  /* Cool Gray Muted Text - increased contrast for light background readability */
  --border: hsl(215, 20%, 90%);
  /* Fine border outline */
  --danger: hsl(0, 75%, 45%);
  /* Strong Crimson for Alerts */
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 50px rgba(5, 44, 64, 0.12);
  --glow: 0 20px 50px rgba(16, 152, 144, 0.15);
  /* Premium cyan glow */
  --radius: 16px;
  /* Smoother Premium Corners */
  --speed: 0.4s;
  /* Elegantly paced transitions */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Outfit', sans-serif;

  /* Glassmorphism helpers */
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: 1px solid rgba(255, 255, 255, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.02em;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all var(--speed) cubic-bezier(0.2, 0.8, 0.2, 1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--teal) 100%);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(16, 152, 144, 0.4);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}

.btn-outline-dark:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(10, 15, 30, 0.15);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(10, 15, 30, 0.15);
}

.btn-navy:hover {
  background: var(--indigo);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
}

.btn-teal:hover {
  background: #0d7a72;
  color: var(--white);
  transform: translateY(-2px);
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--dark);
  padding: 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-left a {
  color: rgba(255, 255, 255, 0.85);
}

.top-bar-left a:hover {
  color: var(--amber);
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-bar-contact svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.top-bar-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.top-bar-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
  padding: 3px 0;
  border-bottom: 1px solid transparent;
}

.top-bar-nav a:hover,
.top-bar-nav a.active {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

.social-icons {
  display: flex;
  gap: 6px;
  align-items: center;
}

.social-icon {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transition: opacity var(--speed) ease;
}

.social-icon:hover {
  opacity: 0.8;
  color: #fff;
}

.si-fb {
  background: #3b5998;
}

.si-tw {
  background: #55acee;
}

.si-ig {
  background: #3f729b;
}

.si-yt {
  background: #cd201f;
}

/* ── HEADER / NAV ── */
.site-header {
  background: rgba(255, 255, 255, 0.9) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  position: sticky;
  top: 16px;
  z-index: 200;
  border-radius: var(--radius);
  margin: 16px auto -94px;
  max-width: 1180px;
  width: calc(100% - 48px);
  transition: all var(--speed) ease;
  overflow: hidden;
}

.site-header::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1.5px;
  background: linear-gradient(135deg, transparent 30%, var(--teal) 45%, var(--indigo) 55%, transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 5;
  background-size: 200% 200%;
  animation: borderBeam 6s linear infinite;
}

@keyframes borderBeam {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
  padding: 0 24px;
}

.logo-link {
  display: flex;
  align-items: center;
  transition: transform var(--speed) ease;
  z-index: 10;
}

.logo-link:hover {
  transform: scale(1.03);
}

.logo-link img {
  max-height: 52px;
  width: auto;
}

.main-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 30px;
  position: relative;
  z-index: 10;
  text-decoration: none;
  transition: color var(--speed) ease;
}

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

.main-nav a:hover,
.main-nav a.active {
  color: var(--white);
}

.nav-glow-pill {
  position: absolute;
  height: 36px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--teal) 100%);
  border-radius: 30px;
  z-index: 5;
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.25);
  transition: opacity 0.3s ease;
}

.main-nav .nav-glow-pill.has-active {
  opacity: 1;
}

.header-cta {
  flex-shrink: 0;
  z-index: 10;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── HERO SECTION ── */
.hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: transparent;
  padding: 120px 0 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 15, 30, 0.85) 0%, rgba(10, 15, 30, 0.6) 50%, rgba(5, 8, 20, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-grid-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 10;
  width: 100%;
}

.hero-text-col {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
  background: rgba(16, 152, 144, 0.12);
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid rgba(16, 152, 144, 0.3);
}

.hero h1 {
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
  text-align: left;
  max-width: 100%;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero h1 span {
  background: linear-gradient(90deg, var(--teal), var(--sky));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 18px;
  max-width: 100%;
  margin: 0 0 40px 0;
  color: rgba(196, 215, 226, 0.9);
  font-weight: 400;
  line-height: 1.8;
  text-align: left;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-3d-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-3d-placeholder {
  width: 100%;
  height: 500px;
  pointer-events: none;
}

/* ── PARTNERS LOGO STRIP ── */
.partners-strip {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.partners-label {
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
  margin-bottom: 30px;
}

.partners-marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 15%, #000 85%, transparent);
}

.partners-marquee-track {
  display: flex;
  gap: 80px;
  width: max-content;
  animation: marquee 30s linear infinite;
  align-items: center;
}

.partner-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

.partner-logo img {
  max-height: 40px;
  width: auto;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── HOW IT WORKS ── */
.how-it-works {
  padding: 120px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
  color: var(--text);
}

.how-it-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/who-we-are-bg.svg');
  background-size: cover;
  opacity: 0.03;
  pointer-events: none;
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.how-text-sticky {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.how-text-sticky h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--navy);
}

.how-text-sticky p {
  color: var(--text);
  font-size: 15px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.how-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-self: start;
  justify-content: flex-start;
  height: auto;
}

.how-step-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all var(--speed) cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.how-step-card.active {
  background: var(--card-bg);
  border-color: var(--teal);
  box-shadow: var(--shadow-lg), var(--glow);
  transform: translateY(-4px);
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.1);
  color: var(--indigo);
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--speed) ease;
}

.how-step-card.active .step-num {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--teal) 100%);
  color: var(--white);
  box-shadow: 0 0 15px var(--teal);
}

.step-body h4 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-body p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}

/* ── UPCOMING BOOK FAIRS SECTION ── */
.upcoming-fairs {
  background: transparent;
  padding: 100px 0;
  position: relative;
}

.upcoming-fairs-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.upcoming-fairs-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
}

.fairs-carousel-wrap {
  position: relative;
  overflow: hidden;
}

.fairs-carousel {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fair-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  min-width: 300px;
  flex-shrink: 0;
  cursor: pointer;
  transition: background-color var(--speed) cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color var(--speed) cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow var(--speed) cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.fair-card-body {
  padding: 26px 24px 10px;
  flex-grow: 1;
}

.fair-card-footer {
  padding: 14px 24px 24px;
}

/* ── Card Headers & Badges ── */
.show-card-image,
.fair-card-image {
  height: 150px;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
}

.show-card-image img,
.fair-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--speed) ease;
}

.fair-card:hover .fair-card-image img,
.show-card:hover .show-card-image img {
  transform: scale(1.05);
}

.show-logo-badge,
.fair-logo-badge {
  position: absolute;
  bottom: -16px;
  right: 20px;
  background: var(--white);
  border-radius: 10px;
  width: 68px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  padding: 4px;
  z-index: 10;
  border: 2px solid var(--teal);
  overflow: hidden;
}

.show-logo-badge img,
.fair-logo-badge img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.logo-badge-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  line-height: 1.1;
  text-transform: uppercase;
}

.fair-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--glow);
  border-color: rgba(16, 152, 144, 0.3);
}

.fair-logo-wrap {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: var(--light-bg);
  border-radius: 8px;
  padding: 10px;
  overflow: hidden;
}

.fair-logo-wrap img {
  max-height: 40px;
  max-width: 180px;
  object-fit: contain;
}

.fair-logo-placeholder {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  padding: 8px;
}

.fair-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 10px;
}

.fair-location svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--teal);
}

.fair-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
  font-family: var(--font-heading);
}

.fair-dates {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 6px;
  font-weight: 500;
}

.fair-deadline {
  font-size: 12px;
  color: var(--danger);
  font-weight: 600;
  margin-bottom: 14px;
}

.fair-reg-btn {
  display: block;
  width: 100%;
  padding: 11px 16px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--teal) 100%);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--speed) ease;
  border: none;
}

.fair-reg-btn:hover {
  box-shadow: 0 4px 15px rgba(16, 152, 144, 0.3);
  filter: brightness(1.05);
}

.carousel-controls {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--speed) ease;
  font-size: 20px;
}

.carousel-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ── EXCLUSIVE OFFER BANNER ── */
.offer-banner {
  background: transparent;
  padding: 80px 0;
  position: relative;
}

.offer-card {
  background: rgba(10, 15, 30, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(99, 102, 241, 0.15);
  transition: all var(--speed) cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(16, 152, 144, 0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.offer-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.offer-icon {
  font-size: 56px;
  flex-shrink: 0;
  line-height: 1;
}

.offer-text {
  flex: 1;
  min-width: 250px;
}

.offer-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.offer-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
}

.offer-cta {
  flex-shrink: 0;
}

/* ── WHY CHOOSE US ── */
.why-choose {
  padding: 100px 0;
  background: var(--light-bg);
  position: relative;
  z-index: 10;
}

.why-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
}

.book-mockup-stack {
  position: relative;
  height: 420px;
  width: 100%;
  perspective: 1500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-card {
  position: absolute;
  width: 240px;
  height: 330px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), z-index 0.6s, filter 0.6s;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-back {
  transform: rotateY(-20deg) translateZ(-80px) translateX(-50px);
  z-index: 1;
  filter: brightness(0.7);
}

.card-middle {
  transform: rotateY(-10deg) translateZ(-40px) translateX(-10px);
  z-index: 2;
  filter: brightness(0.85);
}

.card-front {
  transform: rotateY(0deg) translateZ(0) translateX(30px);
  z-index: 3;
}

.book-mockup-stack:hover .card-back {
  transform: rotateY(-25deg) translateZ(-120px) translateX(-110px) rotate(-8deg);
  filter: brightness(0.8);
}

.book-mockup-stack:hover .card-middle {
  transform: rotateY(-15deg) translateZ(-60px) translateX(-25px) rotate(-3deg);
  filter: brightness(0.95);
}

.book-mockup-stack:hover .card-front {
  transform: rotateY(0deg) translateZ(20px) translateX(60px) rotate(4deg);
  box-shadow: 0 30px 60px rgba(10, 15, 30, 0.25);
}

.why-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.why-text>p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 30px;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.why-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(99, 102, 241, 0.1);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(99, 102, 241, 0.05);
}

.why-feature h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.why-feature p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ── GLOBAL EXCELLENCE SECTION ── */
.global-excellence {
  background: var(--dark);
  padding: 80px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.global-excellence::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(40, 160, 208, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.global-header {
  margin-bottom: 50px;
}

.global-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}

.global-header p {
  color: rgba(196, 215, 226, 0.8);
  font-size: 15px;
  max-width: 700px;
  line-height: 1.75;
}

.global-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 30px;
}

.global-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 30px 24px;
  transition: background-color var(--speed) cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color var(--speed) cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow var(--speed) cubic-bezier(0.2, 0.8, 0.2, 1);
}

.global-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(16, 152, 144, 0.35);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1025px) {
  .global-cards {
    align-items: start;
    padding-bottom: 40px;
  }

  .global-card:nth-child(even) {
    transform: translateY(30px);
  }
}

.global-card p {
  color: rgba(196, 215, 226, 0.85);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.global-card img {
  max-height: 40px;
  width: auto;
  filter: brightness(0) invert(1) opacity(0.85);
}

.global-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 28px 32px;
  flex-wrap: wrap;
  gap: 20px;
}

.global-action h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

/* ── PROMOTE YOUR BOOK ── */
.promote {
  padding: 80px 0;
  background: var(--white);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
  padding-bottom: 14px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
}

.section-header p {
  color: var(--muted);
  font-size: 15px;
}

.promote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.promote-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: background-color var(--speed) cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color var(--speed) cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow var(--speed) cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}

@media (min-width: 992px) {
  .promote-card:nth-child(1) {
    grid-column: span 2;
  }

  .promote-card:nth-child(4) {
    grid-column: span 2;
  }

  .promote-card:nth-child(6) {
    grid-column: span 2;
  }
}

@media (max-width: 991px) {
  .promote-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.promote-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-lg), var(--glow);
  border-color: rgba(16, 152, 144, 0.3);
}

.promote-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.12), rgba(16, 152, 144, 0.18));
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
  transition: all var(--speed) ease;
}

.promote-card:hover .promote-icon {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--teal) 100%);
  color: var(--white);
  transform: scale(1.1);
}

.promote-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.promote-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.7;
}



/* ── CTA BANNER ── */
.cta-banner {
  padding: 100px 0;
  background: radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(16, 152, 144, 0.6) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(10, 15, 30, 1) 0%, rgba(10, 15, 30, 1) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/who-we-are-bg.svg');
  background-size: cover;
  opacity: 0.03;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.cta-banner p {
  font-size: 17px;
  color: rgba(196, 215, 226, 0.9);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  color: rgba(188, 204, 214, 0.9);
  padding: 70px 0 30px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-logo {
  max-height: 52px;
  margin-bottom: 20px;
  background: var(--white);
  padding: 6px 16px;
  border-radius: 8px;
  object-fit: contain;
  display: inline-block;
}

.footer-desc {
  line-height: 1.7;
  color: rgba(188, 204, 214, 0.8);
  margin-bottom: 20px;
}

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

.footer-social .social-icon {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease, background 0.3s ease;
}

.footer-social .social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(99, 102, 241, 0.45);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 22px;
  padding-bottom: 10px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--amber);
}

.footer-links li {
  margin-bottom: 11px;
}

.footer-links a {
  color: rgba(188, 204, 214, 0.8);
  transition: all var(--speed) ease;
}

.footer-links a:hover {
  color: var(--amber);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  line-height: 1.55;
}

.footer-contact-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--amber);
}

.footer-contact-item strong {
  display: block;
  font-size: 11px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.footer-contact-item a {
  color: rgba(188, 204, 214, 0.8);
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(188, 204, 214, 0.7);
}

.footer-bottom a {
  color: var(--amber);
}

/* ── PAGE TITLE BAR (book-fairs page) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--dark) 60%, #1e3a50 100%);
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(248, 152, 24, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.page-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
}

.page-breadcrumb a:hover {
  color: var(--amber);
}

.page-breadcrumb span {
  color: var(--amber);
}

.page-hero h1 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.25;
  padding-bottom: 14px;
  position: relative;
  display: inline-block;
}

.page-hero h1::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 56px;
  height: 3px;
  background: linear-gradient(to right, var(--amber), var(--teal));
  border-radius: 2px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.7;
  max-width: 640px;
  margin-top: 16px;
}

/* ── BOOK FAIRS LISTING ── */
.book-fairs-section {
  padding: 60px 0 80px;
  background: var(--light-bg);
}

.fairs-intro {
  margin-bottom: 40px;
}

.fairs-intro p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 12px;
}

.fairs-intro a {
  color: var(--sky);
  font-weight: 500;
}

.fairs-intro a:hover {
  color: var(--navy);
  text-decoration: underline;
}

.section-title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 14px;
}

.section-title-bar h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
}

.past-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ccc;
  border-radius: 24px;
  transition: 0.4s;
}

.slider:before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked+.slider {
  background: var(--teal);
}

input:checked+.slider:before {
  transform: translateX(20px);
}

.shows-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.show-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: background-color var(--speed) cubic-bezier(0.2, 0.8, 0.2, 1),
              border-color var(--speed) cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow var(--speed) cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  animation: cardReveal 0.5s ease forwards;
}

.show-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--glow);
  border-color: rgba(16, 152, 144, 0.3);
}

.show-card.past-show {
  opacity: 0;
  transform: translateY(20px);
  display: none;
}

.show-card.past-show.revealed {
  display: block;
  animation: cardReveal 0.5s ease forwards;
}

.show-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.show-card-body {
  padding: 22px 22px 10px;
}

.show-logo-area {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-bg);
  border-radius: 8px;
  margin-bottom: 16px;
  padding: 10px;
  overflow: hidden;
}

.show-logo-area img {
  max-height: 48px;
  max-width: 180px;
  object-fit: contain;
}

.show-logo-text {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  font-weight: 600;
}

.show-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.show-location svg {
  width: 12px;
  height: 12px;
  color: var(--teal);
}

.show-card-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: color var(--speed) ease;
}

.show-card:hover .show-card-body h3 {
  color: var(--teal);
}

.show-dates {
  font-size: 13px;
  color: var(--text);
  margin-bottom: 4px;
}

.show-deadline {
  font-size: 12px;
  color: var(--danger);
  font-weight: 500;
  margin-bottom: 4px;
}

.show-card-footer {
  padding: 14px 22px 22px;
}

.show-reg-btn {
  display: block;
  width: 100%;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--teal) 100%);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--speed) ease;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}

.show-reg-btn:hover {
  box-shadow: 0 4px 15px rgba(16, 152, 144, 0.3);
  filter: brightness(1.05);
}

.load-more-wrap {
  text-align: center;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.load-more-wrap p {
  font-size: 13px;
  color: var(--muted);
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 28, 41, 0.65);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 540px;
  padding: 40px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  transition: color var(--speed) ease;
  padding: 4px;
}

.modal-close:hover {
  color: var(--navy);
}

.modal-box h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.modal-box .subtitle {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  font-family: var(--font);
  font-size: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--light-bg);
  color: var(--text);
  outline: none;
  transition: all var(--speed) ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--sky);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(40, 160, 208, 0.1);
}

.form-group input:disabled {
  background: #f0f4f7;
  color: var(--navy);
  font-weight: 600;
  cursor: not-allowed;
}

.form-group textarea {
  height: 90px;
  resize: none;
}

.form-submit {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, var(--amber), #e67e22);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--font);
  transition: all var(--speed) ease;
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(248, 152, 24, 0.4);
}

.form-success {
  text-align: center;
  padding: 20px 0;
  display: none;
}

.form-success .success-icon {
  width: 68px;
  height: 68px;
  background: #eafaf1;
  color: #27ae60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.form-success h3 {
  font-size: 20px;
  color: #27ae60;
  margin-bottom: 8px;
  font-weight: 700;
}

.form-success p {
  color: var(--muted);
  font-size: 14px;
}

/* ── TOAST ── */
.toast-alert {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #27ae60;
  color: var(--white);
  padding: 14px 22px;
  border-radius: var(--radius);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1100;
  transform: translateY(120px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  font-weight: 600;
  font-size: 14px;
}

.toast-alert.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-img-placeholder {
    height: 260px;
  }

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

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

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

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

  .faq-sticky-col {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .top-bar .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .top-bar-left {
    justify-content: center;
  }

  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    gap: 16px;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    font-size: 16px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px;
    width: 100%;
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: var(--indigo) !important;
  }

  .main-nav a:last-child {
    border-bottom: none;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header {
    position: relative;
  }

  .hero {
    min-height: 420px;
  }

  .hero-content {
    padding: 60px 0;
  }

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

  .why-features {
    grid-template-columns: 1fr;
  }

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

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

  .global-action {
    flex-direction: column;
    text-align: center;
  }

  .fairs-carousel {
    gap: 14px;
  }

  .fair-card {
    min-width: 240px;
  }

  .section-title-bar {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .offer-inner {
    flex-direction: column;
    text-align: center;
  }

  .modal-box {
    padding: 28px 22px;
  }

  .cta-banner h2 {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .carousel-controls {
    display: none;
  }

  .top-bar-right {
    flex-direction: column;
    gap: 8px;
  }
}

/* ── ADDITIONAL PREMIUM ENHANCEMENTS ── */

/* 1. Hero Background Video */
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
}

/* 2. Interactive FAQ Accordion */
.faq-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  z-index: 10;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.faq-sticky-col {
  position: sticky;
  top: 120px;
}

.faq-accordion-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--light-bg);
  overflow: hidden;
  transition: all var(--speed) cubic-bezier(0.2, 0.8, 0.2, 1);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  text-align: left;
  transition: color var(--speed) ease;
}

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

.faq-icon {
  font-size: 20px;
  font-weight: 500;
  color: var(--muted);
  transition: transform var(--speed) ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 28px;
}

.faq-answer p {
  padding-bottom: 22px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
  border-left: 3px solid var(--teal);
  padding-left: 20px;
  margin-left: 4px;
}

.faq-item.active {
  border-color: rgba(16, 152, 144, 0.3);
  box-shadow: var(--shadow-lg), var(--glow);
  background: var(--white);
}

.faq-item.active .faq-question {
  color: var(--teal);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--teal);
}

/* 3. Button Pulse Animation */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
  }
}

.btn-primary {
  animation: pulseGlow 2.5s infinite;
}