:root {
  --bg: #f5f5f7;
  --bg-soft: #e5e5ea;
  --surface: rgba(255, 255, 255, 0.75);
  --surface-strong: #ffffff;
  --text: #1d1d1f;
  --muted: #86868b;
  --line: rgba(0, 0, 0, 0.08);
  --brand: #0071e3;
  --brand-strong: #0077ed;
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --font-main: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Icons", "Helvetica Neue", "Inter", sans-serif;
  --shadow-sm: 0 4px 14px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 42px rgba(0,0,0,0.08);
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  line-height: 1.47059;
  font-weight: 400;
  letter-spacing: -0.022em;
  margin: 0;
  font-size: 15px;
}

.wrapper {
  width: min(980px, 92%);
  margin: 0 auto;
}

.topbar {
  margin-top: 16px;
  margin-bottom: 32px;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 980px;
  background: var(--surface);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--line);
  position: sticky;
  top: 16px;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.brand {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.main-nav {
  display: flex;
  gap: 2px;
  overflow: hidden;
  flex-grow: 1;
  justify-content: center;
  margin: 0 12px;
}

.main-nav a {
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 980px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  text-align: center;
  flex: 1;
}

.main-nav a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.main-nav .nav-icon {
  display: none; /* Hide icons in header to save space for text */
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  justify-content: flex-end;
}

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

.hamburger-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}

.hamburger-toggle.active span {
  opacity: 0;
}

.lang-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 4px;
}

.lang-dropbtn {
  background: var(--surface);
  color: var(--text);
  padding: 8px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 980px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

.lang-dropdown:hover .lang-dropbtn {
  background: var(--surface-strong);
  border-color: var(--brand);
  box-shadow: var(--shadow-md);
}

.lang-dropdown-content {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 100%;
  padding-top: 12px; /* Smooth hover bridge */
  min-width: 130px;
  z-index: 2000;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.lang-dropdown:hover .lang-dropdown-content {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.lang-dropdown-inner {
  background: var(--surface-strong);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.lang-dropdown-inner a {
  color: var(--text);
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
  border-bottom: 1px solid var(--line);
}

.lang-dropdown-inner a:last-child {
  border-bottom: none;
}

.lang-dropdown-inner a:hover {
  background: rgba(0, 113, 227, 0.05);
  color: var(--brand);
}

.lang-dropdown-inner a.active {
  background: rgba(0, 113, 227, 0.08);
  color: var(--brand);
  font-weight: 700;
}

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

.breadcrumbs {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 16px 0 32px;
  font-weight: 500;
}

.breadcrumbs a { 
  color: var(--muted); 
  text-decoration: none; 
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--text);
}

.hero {
  padding: 56px 40px;
  border-radius: var(--radius-xl);
  background: var(--surface-strong);
  border: 1px solid var(--line);
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero h1 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero p {
  margin: 16px auto 0;
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.5;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.cta-primary, .cta-secondary {
  text-decoration: none;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 980px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-primary {
  background: var(--brand);
  color: #fff;
}

.cta-primary:hover {
  background: var(--brand-strong);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.cta-secondary {
  background: var(--surface-strong);
  color: var(--text);
  border: 1px solid var(--line);
}

.cta-secondary:hover {
  background: var(--bg-soft);
  transform: translateY(-1px);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  margin-bottom: 48px;
}

.card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

h2 {
  margin: 0 0 24px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.minimal-section-card {
  background: rgba(0,0,0,0.02);
  padding: 24px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  border: 1px solid var(--line);
}

.minimal-section-card h3 {
  margin: 0 0 16px;
  font-size: 1.1rem;
  font-weight: 600;
}

.inner-html-content p, .inner-html-content li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

.inner-html-content .link-grid {
  margin-top: 8px;
}

.inner-html-content a:not(.premium-link-card) {
  color: var(--brand);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(0,113,227,0.25);
  transition: border-color 0.2s ease;
}

.inner-html-content a:not(.premium-link-card):hover {
  border-color: var(--brand);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.summary-card {
  background: var(--surface-strong);
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.summary-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand);
}

.summary-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.summary-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.price-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
}

.price-table th, .price-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.price-table th { 
  background: rgba(0,0,0,0.02); 
  font-weight: 600; 
  color: var(--text); 
}

.price-table tr:last-child td {
  border-bottom: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.faq-card {
  background: var(--surface-strong);
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.faq-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.faq-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.link-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-top: 12px;
}

.premium-link-card, aside ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.875rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  letter-spacing: -0.01em;
}

.premium-link-card::after, aside ul li a::after {
  content: '›';
  font-size: 1.1rem;
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.premium-link-card:hover, aside ul li a:hover {
  background: rgba(0, 113, 227, 0.05);
  color: var(--brand);
  border-color: rgba(0, 113, 227, 0.3);
  transform: translateX(2px);
}

.premium-link-card:hover::after, aside ul li a:hover::after {
  color: var(--brand);
  transform: translateX(3px);
}

.premium-link-card-icon {
  display: none;
}

aside ul { padding: 0; list-style: none; margin: 0; }
aside ul li { margin-bottom: 8px; }

.aside-contact {
  background: linear-gradient(145deg, #064e3b 0%, #065f46 40%, #047857 100%);
  border: 1px solid rgba(52, 211, 153, 0.25);
  padding: 28px 24px;
  border-radius: 20px;
  margin-top: 32px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(4, 120, 87, 0.3), 0 0 0 1px rgba(52,211,153,0.08) inset;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aside-contact::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(52,211,153,0.12) 0%, transparent 55%);
  pointer-events: none;
}

.aside-contact::after {
  content: '💬';
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.6rem;
  opacity: 0.25;
  pointer-events: none;
}

.aside-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(4, 120, 87, 0.4);
}

.aside-contact-title {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(52, 211, 153, 0.8);
}

.aside-contact-phone {
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.aside-contact-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #25D366, #1db954);
  color: #fff;
  padding: 13px 28px;
  border-radius: 980px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  border: 1px solid rgba(255,255,255,0.15);
  position: relative;
  z-index: 1;
}

.aside-contact-button::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.04 2C6.55 2 2.1 6.44 2.1 11.9c0 1.75.46 3.39 1.25 4.81L2 22l5.47-1.43a9.9 9.9 0 0 0 4.57 1.11h.01c5.48 0 9.93-4.44 9.94-9.9A9.89 9.89 0 0 0 12.04 2zm5.78 14.02c-.24.66-1.37 1.24-1.88 1.32-.48.07-1.1.1-1.78-.12-.42-.14-.96-.31-1.66-.61-2.92-1.27-4.82-4.22-4.96-4.42-.14-.19-1.19-1.58-1.19-3.02 0-1.43.75-2.13 1.02-2.42.27-.29.6-.36.8-.36h.58c.18 0 .42-.07.65.49.24.58.8 1.98.87 2.13.07.14.12.31.02.5-.1.2-.15.32-.3.49-.14.17-.31.38-.44.5-.14.14-.28.28-.12.54.16.26.71 1.17 1.52 1.9 1.05.94 1.94 1.23 2.22 1.37.27.14.43.12.58-.07.16-.2.68-.78.86-1.04.18-.26.36-.22.6-.13.25.08 1.55.73 1.82.87.27.13.44.2.5.31.06.12.06.67-.18 1.33z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.aside-contact-button:hover {
  background: linear-gradient(135deg, #1ebe58, #17a348);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.whatsapp-float {
  position: fixed;
  right: 32px;
  bottom: 32px;
  background: #25d366;
  color: #fff;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.3);
  z-index: 2000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.pulse-animation {
  animation: pulse-whatsapp 2.5s infinite;
}

.route-results-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.route-list {
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.route-list-item {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.route-list-item a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.route-list-item span {
  font-size: 0.8rem;
  color: var(--muted);
}

.route-search-box {
  background: rgba(0,0,0,0.02);
  padding: 20px;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  border: 1px solid var(--line);
}

.route-search-controls {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.route-search-controls input {
  flex: 1;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 0.95rem;
}

.route-search-controls button {
  background: var(--brand);
  color: white;
  border: none;
  padding: 0 24px;
  border-radius: var(--radius-md);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.route-pagination {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.route-pagination a {
  padding: 10px 20px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 980px;
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}

.route-pagination a:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.home-routes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 12px;
  align-items: start;
}

.home-routes-main {
  min-width: 0;
}

.home-routes-meta {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-strong);
  padding: 12px;
  display: grid;
  gap: 10px;
}

.home-routes-meta-title {
  margin: 0;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  font-weight: 700;
}

.home-routes-meta p {
  margin: 0;
  display: grid;
  gap: 2px;
}

.home-routes-meta strong {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.1;
}

.home-routes-meta span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* Minimal airport data section */
.airport-data-mini {
  display: grid;
  gap: 10px;
}

.airport-data-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.airport-data-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.airport-data-item {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  padding: 12px;
  background: var(--surface-strong);
}

.airport-data-item strong {
  display: block;
  margin-bottom: 4px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 0.78rem;
}

.airport-data-item p {
  margin: 0;
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.45;
}

@media (max-width: 800px) {
  .home-routes-layout { grid-template-columns: 1fr; }
  .airport-data-grid { grid-template-columns: 1fr; }
  .content-grid { grid-template-columns: 1fr; }
  .topbar { 
    flex-wrap: wrap;
    border-radius: var(--radius-lg);
    padding: 12px 20px;
    position: sticky;
  }
  
  .hamburger-toggle { display: flex; order: 2; margin-left: 8px; }
  .topbar-actions { order: 2; flex-direction: row; gap: 8px; margin-top: 0; }

  .main-nav {
    display: none;
    width: calc(100% + 48px); /* Override topbar 24px padding */
    margin-left: -24px;
    margin-right: -24px;
    order: 3;
    flex-direction: column;
    gap: 0;
    margin-top: 16px;
    background: var(--surface);
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }

  .main-nav.active {
    display: flex;
    animation: menuSlideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

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

  .main-nav a {
    width: 100%;
    padding: 16px 24px;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    text-align: left;
  }
  
  .main-nav a:last-child { border-bottom: none; }

  .topbar.menu-open .lang-dropdown,
  .topbar.menu-open .brand {
    display: none;
  }

  .topbar.menu-open {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  }
  
  .hero {
    padding: 32px 24px;
  }
}

/* Old footer removed, replaced by mega-footer */

.summary-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #25D366, #1bd760);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
  border: 1px solid rgba(255,255,255,0.1);
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.summary-wa-btn:hover,
.summary-wa-btn:focus {
  background: linear-gradient(135deg, #1ebe58, #18c554);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #ffffff;
}

.summary-card:has(.summary-wa-btn) {
  align-items: center;
  background: linear-gradient(135deg, #0d7a3e 0%, #128C7E 50%, #075E54 100%);
  border: 1px solid rgba(37, 211, 102, 0.4);
  box-shadow: 0 6px 24px rgba(18, 140, 126, 0.25), 0 0 0 1px rgba(37,211,102,0.1) inset;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.summary-card:has(.summary-wa-btn)::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(37,211,102,0.25) 0%, transparent 60%);
  pointer-events: none;
}

.summary-card:has(.summary-wa-btn):hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(18, 140, 126, 0.35);
}

.summary-card:has(.summary-wa-btn) .summary-label {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Premium Booking Section */
.booking-premium-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8faf9 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  margin-top: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.booking-premium-card::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.booking-premium-card h2 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 2rem;
}

.booking-premium-card p {
  color: var(--muted);
  font-size: 1.15rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.booking-premium-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25D366;
  color: #fff;
  padding: 16px 40px;
  border-radius: 980px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.booking-premium-btn:hover {
  background: #20bd5a;
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.booking-premium-btn svg {
  width: 28px;
  height: 28px;
}

.booking-premium-card::after {
  content: '✅';
  position: absolute;
  bottom: 20px;
  left: 30px;
  font-size: 2rem;
  opacity: 0.1;
  transform: rotate(-15deg);
}

/* Why Us Section (Trust Bar) */
.why-us-section {
  padding: 24px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  margin-top: 40px;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.premium-feature-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 4px;
  transition: opacity 0.3s ease;
}

.premium-feature-card:hover {
  opacity: 0.8;
}

.feature-icon-wrapper {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  flex-shrink: 0;
}

.feature-icon-wrapper svg {
  width: 16px;
  height: 16px;
}

.premium-feature-card h4 {
  margin: 0;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
  line-height: 1;
}

.premium-feature-card p {
  margin: 2px 0 0 0;
  font-size: 0.65rem;
  color: var(--muted);
  line-height: 1.1;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .why-us-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

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

/* Mega Footer Styles (Refined) */
.mega-footer {
  background: #1d1d1f; /* Premium Dark Grey */
  color: #ffffff;
  padding: 50px 0 15px;
  margin-top: 30px; /* Reduced from 50px */
  font-size: 0.9rem;
}

.mega-footer .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px; /* Reduced from 60px */
}

.footer-col h3 {
  font-size: 0.9rem; /* Slightly smaller for premium feel */
  font-weight: 700;
  margin-bottom: 20px; /* Reduced from 24px */
  color: #ffffff;
  letter-spacing: -0.01em;
}

.footer-col p {
  line-height: 1.6;
  color: #86868b; 
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px; /* Reduced from 12px */
}

.footer-col ul li a {
  color: #86868b;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.85rem;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-brand {
  margin-bottom: 24px;
}

.footer-brand .brand-logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px; /* Tightened */
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #86868b;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

.contact-item:hover {
  color: #ffffff;
}

.contact-item svg {
  color: var(--brand);
  opacity: 0.9;
  flex-shrink: 0;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 20px; /* Thinner button */
  border-radius: 980px; 
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.85rem;
}

.btn-footer:active {
  transform: scale(0.97);
}

.btn-footer.green {
  background: #0071e3; 
  color: #ffffff;
}

.btn-footer.green:hover {
  background: #0077ed;
  box-shadow: 0 4px 15px rgba(0, 113, 227, 0.3);
}

.btn-footer.outline {
  border: 1px solid rgba(255,255,255,0.2);
  color: #ffffff;
  background: rgba(255,255,255,0.05);
}

.btn-footer.outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}

.footer-checklist {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px; /* Tightened */
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: #86868b;
}

.check-item svg {
  color: #0071e3;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: #86868b;
  font-size: 0.8rem;
}

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

.footer-bottom-links a {
  color: #86868b;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.footer-seo {
  padding: 20px 0 30px;
  text-align: center;
  font-size: 0.7rem;
  color: #424245;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.view-all-link {
  color: #0071e3;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
}

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

@media (max-width: 768px) {
  .mega-footer {
    padding: 40px 0 20px;
  }
}

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

  .footer-bottom-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}
