/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue-50: #EBF3FE;
  --blue-100: #D4E4FD;
  --blue-200: #A8C9FB;
  --blue-300: #7CAEF9;
  --blue-400: #4E93F7;
  --blue-500: #1A73E8;
  --blue-600: #155CBB;
  --blue-700: #10458D;
  --blue-800: #0B2E5F;
  --blue-900: #061731;

  --white: #FFFFFF;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --gray-900: #0F172A;

  --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 40px rgba(26, 115, 232, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 60px rgba(26, 115, 232, 0.15), 0 8px 20px rgba(0, 0, 0, 0.08);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays for children */
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: var(--gray-200);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
}

.logo-img {
  height: 36px;
  width: auto;
  border-radius: 4px;
}

.nav-logo span {
  color: var(--blue-500);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--blue-500);
  background: var(--blue-50);
}

.nav-cta {
  background: var(--blue-500) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 600 !important;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--blue-600) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-800);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--blue-50) 50%, var(--white) 100%);
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.08) 0%, transparent 70%);
  top: -100px;
  right: -150px;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.06) 0%, transparent 70%);
  bottom: -50px;
  left: -100px;
  animation-delay: -7s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.05) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--blue-600);
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.highlight {
  color: var(--blue-500);
  position: relative;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-subtitle strong {
  color: var(--gray-700);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: var(--radius-xl);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26, 115, 232, 0.3);
}

.btn-primary:hover {
  background: var(--blue-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26, 115, 232, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.hero-cta {
  margin-bottom: 48px;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* ===== SECTION COMMONS ===== */
.section-tag {
  display: inline-block;
  padding: 6px 16px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-xl);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-600);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: center;
}

.about-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.avatar-ring {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-200), var(--blue-500));
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.avatar-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
}

.about-content {
  padding: 8px 0;
}

.about-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text strong {
  color: var(--gray-800);
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-700);
}

.highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue-500);
}

/* ===== COURSE SECTION ===== */
.course {
  padding: 100px 0;
  background: var(--gray-50);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.course-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-200);
}

.course-card.featured {
  border-color: var(--blue-300);
  background: linear-gradient(180deg, var(--blue-50) 0%, var(--white) 40%);
}

.card-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--blue-500);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-500);
  margin-bottom: 20px;
}

.card-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue-100);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-list li {
  font-size: 0.88rem;
  color: var(--gray-600);
  padding-left: 20px;
  position: relative;
}

.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue-400);
}

/* ===== PRICING SECTION ===== */
.pricing {
  padding: 100px 0;
  background: var(--white);
}

.pricing-card {
  max-width: 480px;
  margin: 0 auto;
}

.pricing-card-inner {
  background: var(--white);
  border: 2px solid var(--blue-200);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pricing-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-400), var(--blue-600));
}

.pricing-header {
  margin-bottom: 36px;
}

.pricing-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 16px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.currency {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-600);
}

.price {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.04em;
  line-height: 1;
}

.period {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--gray-700);
  font-weight: 500;
}

.feature-item svg {
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  justify-content: center;
  padding: 18px 36px;
  font-size: 1.05rem;
}

.pricing-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* ===== PAYMENT SECTION ===== */
.payment {
  padding: 100px 0;
  background: var(--gray-50);
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 600px;
  margin: 0 auto 36px;
}

.payment-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.payment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-200);
}

.payment-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.payment-icon.nayapay {
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  color: #2E7D32;
}

.payment-icon.bank {
  background: linear-gradient(135deg, var(--blue-50), var(--blue-100));
  color: var(--blue-600);
}

.payment-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 6px;
}

.payment-desc {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.payment-details {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-top: 12px;
  text-align: left;
}

.payment-details p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 6px;
  line-height: 1.4;
}

.payment-details p:last-child {
  margin-bottom: 0;
}

.payment-details strong {
  color: var(--gray-800);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.payment-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-md);
  max-width: 600px;
  margin: 0 auto;
  color: var(--blue-700);
}

.payment-note p {
  font-size: 0.9rem;
}

.payment-note svg {
  flex-shrink: 0;
  color: var(--blue-500);
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0;
  background: var(--gray-900);
  color: var(--gray-400);
}

.footer-content {
  text-align: center;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  display: inline-block;
  margin-bottom: 8px;
}

.footer-logo span {
  color: var(--blue-400);
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.footer-divider {
  width: 60px;
  height: 2px;
  background: var(--gray-700);
  margin: 0 auto 20px;
  border-radius: 2px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer-whatsapp a {
  color: #25D366;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
  transition: var(--transition);
}

.footer-whatsapp a:hover {
  color: #20BA56;
}

/* ===== DARK FEATURES SECTION ===== */
.features-dark {
  padding: 100px 0;
  background-color: #0d1b2a;
}

.features-dark .section-title {
  color: var(--white);
}

.dark-card {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.dark-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--blue-400);
}

.dark-card .card-title {
  color: var(--white);
}

.dark-card .card-desc {
  color: var(--gray-300);
}

.custom-icon {
  background: rgba(255, 255, 255, 0.1);
  font-size: 1.5rem;
}

.badge-green {
  background: #25D366;
  color: white;
}

.badge-blue {
  background: var(--blue-500);
  color: white;
}

/* ===== PAYMENT INFO BOX ===== */
.payment-info-box {
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-left: 4px solid #1A73E8;
  border-radius: var(--radius-md);
  padding: 24px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
  color: var(--gray-800);
}

.payment-info-box p {
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  width: 100%;
  justify-content: center;
}

.btn-whatsapp:hover {
  background: #20ba56;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

/* ===== FLOATING WHATSAPP ===== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: white;
}

.floating-whatsapp .tooltip {
  position: absolute;
  right: 75px;
  background: var(--gray-900);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  white-space: nowrap;
}

.floating-whatsapp:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .course-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .about-highlights {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  
  .nav-links a {
    display: block;
    padding: 12px 16px;
    text-align: center;
  }
  
  .nav-cta {
    margin-top: 8px;
  }
  
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .stat-divider {
    display: none;
  }
  
  .course-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  
  .about,
  .course,
  .pricing,
  .payment {
    padding: 72px 0;
  }
  
  .pricing-card-inner {
    padding: 36px 24px;
  }

  .payment-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .price {
    font-size: 2.8rem;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 0.95rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===== TOP BANNER ===== */
.top-banner {
  background-color: #1a73e8;
  color: var(--white);
  padding: 10px 24px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1002;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.top-banner.hidden {
  transform: translateY(-100%);
}

.top-banner-content {
  text-align: center;
}

.top-banner-link {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

.top-banner-link:hover {
  text-decoration: none;
}

.top-banner-close {
  position: absolute;
  right: 16px;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.top-banner-close:hover {
  opacity: 1;
}

body.has-banner .navbar {
  top: 40px;
}

/* ===== FAQ SECTION ===== */
.faq {
  padding: 100px 0;
  background: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px;
  background: none;
  border: none;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-600);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon {
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s ease;
  color: var(--blue-600);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.7;
}

.hero-seats-banner {
  display: inline-block;
  padding: 10px 24px;
  background-color: var(--blue-50);
  color: var(--blue-600);
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 10px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--blue-500);
}
