/* ============================================
   COMPONENTS CSS — Navbar, Footer, Cards
   ============================================ */

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 14, 26, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 44px; /* Increased size */
  height: 44px;
  background: none; /* Removed gradient background from emoji icon */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  overflow: hidden;
}

.nav-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.2s;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
  background: var(--surface-hover);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-hamburger span {
  display: block;
  width: 28px; /* Slightly larger */
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

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

/* Mobile menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(7, 10, 15, 0.98); /* Slightly darker */
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex; /* Always flex but hidden via transform */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  will-change: transform;
}

.nav-mobile.open {
  transform: translateY(0);
}

.nav-mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-mobile-links a {
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-secondary);
  transition: color 0.2s;
  text-decoration: none;
}

.nav-mobile-links a:hover {
  color: var(--text-primary);
}

.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 768px) {
  .navbar {
    padding: 10px 0;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  .nav-actions { display: none; } /* Actions moved to bottom nav */
}

/* ============ BOTTOM NAVIGATION (Mobile Only) ============ */
.bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65px;
  background: rgba(7, 18, 26, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
  z-index: 1000;
  padding: 8px 12px 12px;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .bottom-nav { display: flex; }
  body { padding-bottom: 65px; } /* Space for bottom nav */
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.2s;
  flex: 1;
}

.bottom-nav-item.active {
  color: var(--cyan);
}

.bottom-nav-icon {
  font-size: 1.25rem;
  transition: transform 0.2s;
}

.bottom-nav-item:active .bottom-nav-icon {
  transform: scale(0.9);
}

.bottom-nav-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bottom-nav-fab {
  transform: translateY(-20px);
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  border: 4px solid var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  box-shadow: 0 5px 15px rgba(6,182,212,0.4);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-secondary);
  margin-top: 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 280px;
}

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

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-secondary);
  transition: all 0.3s;
  cursor: pointer;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--gradient);
  color: white;
  border-color: transparent;
  box-shadow: 0 0 15px rgba(6,182,212,0.4);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

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

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}

/* ============ PACKAGE CARDS ============ */
.package-card {
  background: var(--surface);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.package-card.featured {
  border-color: rgba(6,182,212,0.3);
  box-shadow: 0 0 40px rgba(6,182,212,0.1);
}

.package-card.featured::before {
  transform: scaleX(1);
}

.package-card:hover {
  border-color: rgba(6,182,212,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(6,182,212,0.15);
  transform: translateY(-6px);
}

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

.package-card-icons {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.package-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.package-price {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-display);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 16px 0;
}

.package-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
  -webkit-text-fill-color: var(--text-muted);
}

.package-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.package-features li .check {
  width: 20px;
  height: 20px;
  background: rgba(6,182,212,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  color: var(--cyan);
}

.package-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* ============ TESTIMONIAL CARD ============ */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.testimonial-quote {
  font-size: 3rem;
  line-height: 1;
  color: var(--purple);
  font-family: Georgia, serif;
  margin-bottom: 16px;
  opacity: 0.6;
}

.testimonial-text {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

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

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

.testimonial-author-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.testimonial-author-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* ============ FAQ ACCORDION ============ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s;
}

.faq-item.open {
  border-color: rgba(6,182,212,0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  background: var(--surface);
  transition: background 0.2s;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
}

.faq-question:hover {
  background: var(--surface-hover);
}

.faq-chevron {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: var(--purple);
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255,255,255,0.02);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 20px 28px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============ STEP PROGRESS ============ */
.step-progress {
  display: flex;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
}

.step-progress::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.step-progress-fill {
  position: absolute;
  top: 20px;
  left: 20px;
  height: 2px;
  background: var(--gradient);
  z-index: 1;
  transition: width 0.5s ease;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
  position: relative;
  z-index: 2;
}

.step-bubble {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: all 0.3s;
}

.step-item.active .step-bubble {
  background: var(--gradient);
  border-color: transparent;
  color: white;
  box-shadow: 0 0 15px rgba(6,182,212,0.5);
}

.step-item.done .step-bubble {
  background: var(--purple);
  border-color: var(--purple);
  color: white;
}

.step-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.step-item.active .step-label {
  color: var(--purple);
}

/* ============ PAYMENT CARD ============ */
.payment-option {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--surface);
  margin-bottom: 12px;
  position: relative;
}

.payment-option:hover {
  border-color: rgba(6,182,212,0.3);
}

.payment-option.selected {
  border-color: var(--cyan);
  background: rgba(6,182,212,0.07);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.1);
}

.payment-radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.payment-option.selected .payment-radio {
  border-color: var(--cyan);
  background: var(--cyan);
}

.payment-option.selected .payment-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

.payment-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  opacity: 0;
}

.payment-option.selected .payment-radio::after {
  opacity: 1;
}

.payment-icon {
  font-size: 1.4rem;
}

.payment-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
}

.payment-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.payment-recommended {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

/* ============ ORDER SUMMARY ============ */
.order-summary {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
}

.order-summary h3 {
  font-size: 1.1rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.order-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.order-line-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.order-line-value {
  font-weight: 600;
  font-size: 0.9rem;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 1px solid var(--border);
}

.order-total-label {
  font-weight: 700;
  font-size: 1rem;
}

.order-total-value {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============ TRUST BADGES ============ */
.trust-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.trust-badge-icon {
  color: var(--green);
}

/* ============ GLOW ORBS (decorative) ============ */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.glow-orb-purple {
  background: rgba(6,182,212,0.3);
}

.glow-orb-pink {
  background: rgba(8,145,178,0.2);
}

.glow-orb-blue {
  background: rgba(59,130,246,0.2);
}

/* ============ STAT CARD ============ */
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: center;
  transition: all 0.3s;
}

.stat-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.stat-icon-purple { background: rgba(6,182,212,0.15); }
.stat-icon-blue { background: rgba(14,165,233,0.15); }
.stat-icon-green { background: rgba(16,185,129,0.15); }
.stat-icon-pink { background: rgba(8,145,178,0.15); }

.stat-info h3 {
  font-size: 1.8rem;
  font-weight: 800;
}

.stat-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============ TABLE ============ */
.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.data-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}

.data-table th:first-child { border-radius: 12px 0 0 0; }
.data-table th:last-child { border-radius: 0 12px 0 0; }

.data-table td {
  padding: 16px 20px;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--text-secondary);
  vertical-align: middle;
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: rgba(255,255,255,0.02); }

/* ============ BOOKING STATUS CARD ============ */
.booking-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
}

.booking-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-2px);
}

.booking-event-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(6,182,212,0.3);
}

.booking-info {
  flex: 1;
}

.booking-info h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

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

.booking-meta {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}

.booking-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.booking-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
}

@media (max-width: 600px) {
  .booking-card { flex-direction: column; align-items: flex-start; }
  .booking-actions { width: 100%; flex-direction: row; }
}

/* ============ SECTION LABEL ============ */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(6,182,212,0.1);
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--cyan);
  margin-bottom: 20px;
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, rgba(6,182,212,0.15), rgba(8,145,178,0.1));
  border: 1px solid rgba(6,182,212,0.2);
  border-radius: var(--radius-xl);
  padding: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.2), transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .cta-banner { padding: 40px 24px; }
}

/* ============ HOW IT WORKS ============ */
.how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
}

.bottom-nav-icon {
  font-size: 1.5rem; /* Increased from 1.3rem */
  margin-bottom: 2px;
}

.bottom-nav-label {
  font-size: 0.75rem; /* Increased from 0.65rem */
  font-weight: 600;
}

.bottom-nav-fab {
  width: 56px; /* Increased from 50px */
  height: 56px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
  margin-top: -30px;
  border: 4px solid var(--bg);
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.how-step-num {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: white;
  box-shadow: 0 0 15px rgba(6,182,212,0.5);
}

.how-step-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  margin-top: 8px;
}

.how-step h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.how-step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============ ADD-ON TOGGLE ============ */
.addon-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--surface);
  user-select: none;
}

.addon-item:hover {
  border-color: rgba(6,182,212,0.3);
}

.addon-item.selected {
  border-color: var(--cyan);
  background: rgba(6,182,212,0.07);
}

.addon-check {
  width: 24px;
  height: 24px;
  border: 2px solid var(--border);
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 0.8rem;
}

.addon-item.selected .addon-check {
  background: var(--cyan);
  border-color: var(--cyan);
  color: white;
}

.addon-icon { font-size: 1.4rem; }

.addon-info { flex: 1; }
.addon-info h4 { font-size: 0.95rem; font-weight: 600; }
.addon-info p { font-size: 0.82rem; color: var(--text-muted); }

.addon-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cyan);
}

/* ============ ADMIN SIDEBAR ============ */
.admin-layout {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: var(--bg-secondary);
  border-right: 1px solid var(--border);
  padding: 24px 16px;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  z-index: 100;
}

.admin-sidebar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 40px;
  padding: 0 12px;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
}

.admin-nav-item a,
.admin-nav-item button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s;
  text-decoration: none;
  width: 100%;
  background: none;
  text-align: left;
  cursor: pointer;
}

.admin-nav-item a:hover,
.admin-nav-item button:hover,
.admin-nav-item.active a {
  background: var(--surface);
  color: var(--text-primary);
}

.admin-nav-item.active a {
  color: var(--cyan);
  background: rgba(6,182,212,0.1);
}

.admin-nav-icon { font-size: 1.1rem; }

.admin-main {
  flex: 1;
  margin-left: 260px;
  padding: 40px;
  min-height: 100vh;
}

@media (max-width: 900px) {
  .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s; }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; padding: 24px; }
}
/* ============ PREMIUM NOTIFICATIONS (YT-Style) ============ */
.toast {
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: 12px;
  color: white;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  animation: slideInLeft 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: auto;
  position: relative;
  overflow: hidden;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.toast-icon {
  width: 20px;
  height: 20px;
}

.toast-success .toast-icon { color: var(--green); }
.toast-error .toast-icon { color: var(--pink); }
.toast-info .toast-icon { color: var(--cyan); }
.toast-warning .toast-icon { color: var(--yellow); }

.toast-msg {
  font-size: 0.9rem;
  font-weight: 500;
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--cyan);
  width: 100%;
  animation: toastProgress 4s linear forwards;
}

@keyframes toastProgress {
  from { width: 100%; }
  to { width: 0%; }
}

@keyframes slideInLeft {
  from { transform: translateX(-100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.toast.fade-out {
  animation: slideOutLeft 0.4s forwards;
}

@keyframes slideOutLeft {
  from { transform: translateX(0); opacity: 1; }
  to { transform: translateX(-100%); opacity: 0; }
}

/* Confirm Modal */
.confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.confirm-modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.confirm-overlay.fade-out {
  animation: fadeOut 0.3s forwards;
}
