/* Vietnam Fast Track - Main Stylesheet */

/* ===== Variables ===== */
:root {
  /* Colors */
  --primary-dark: #1B2A4A;
  --primary-teal: #00A99D;
  --primary-teal-dark: #008C82;
  --teal-tint: #E8F4F2;
  --bg-light: #F5F7FA;
  --text-dark: #2D3748;
  --text-light: #718096;
  --white: #FFFFFF;
  --accent-gold: #D4AF37;
  
  /* NEW: Gradient Colors */
  --gradient-start: #00A99D;
  --gradient-end: #1B2A4A;
  --gradient-hero: linear-gradient(135deg, #1B2A4A 0%, #0f3d3a 50%, #1B2A4A 100%);
  --gradient-gold: linear-gradient(135deg, #D4AF37, #F5D78E);
  --gradient-teal: linear-gradient(135deg, #00A99D, #00D4B4);
  
  /* NEW: Glass Effect Colors */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  
  /* NEW: Enhanced Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 40px rgba(0, 169, 157, 0.3);
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --container-width: 1200px;
  --section-padding: 100px 0;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== Container ===== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Typography ===== */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 3rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-teal);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 169, 157, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 169, 157, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

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

.btn-outline:hover {
  background: var(--primary-teal);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--primary-dark);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-outline:hover {
  background: var(--primary-dark);
  color: var(--white);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.125rem;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn-whatsapp:hover {
  background: #1da851;
  border-color: #1da851;
}

/* ===== Top Bar ===== */
.topbar {
  background: var(--primary-dark);
  color: var(--white);
  font-size: 0.875rem;
  padding: 10px 0;
  position: relative;
  z-index: 100;
}

.topbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-teal), transparent);
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-divider {
  opacity: 0.3;
}

.language-switcher {
  display: flex;
  gap: 4px;
}

.lang-btn {
  padding: 4px 10px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
  background: var(--gradient-teal);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 2px 10px rgba(0, 169, 157, 0.4);
}

/* ===== Header ===== */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header.scrolled {
  box-shadow: var(--shadow-lg);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.logo-icon {
  font-size: 1.5rem;
}

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

.nav-link {
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
  padding: 8px 16px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-teal);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-teal);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 32px);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  padding: 80px 20px 20px;
  gap: 16px;
}

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

.mobile-nav-link {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-light);
}

.mobile-cta {
  margin-top: auto;
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gradient-hero);
}

/* Animated Background Shapes */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(0, 169, 157, 0.15) 0%, transparent 70%);
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 60%);
  animation: pulse-glow 10s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* Floating Elements */
.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-teal);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero-shape-2 {
  width: 200px;
  height: 200px;
  background: var(--accent-gold);
  bottom: 20%;
  left: 5%;
  animation-delay: -5s;
}

.hero-shape-3 {
  width: 150px;
  height: 150px;
  background: var(--white);
  top: 40%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-20px) rotate(5deg); }
  50% { transform: translateY(0) rotate(0deg); }
  75% { transform: translateY(20px) rotate(-5deg); }
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  padding: 120px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  padding: 8px 20px;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.875rem;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -1px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
  animation: fadeInUp 0.8s ease 0.2s forwards;
  opacity: 0;
}

.hero-title span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease 0.4s forwards;
  opacity: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.6s forwards;
  opacity: 0;
}

.hero-stats {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 64px;
  animation: fadeInUp 0.8s ease 0.8s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hero-stat-number span {
  color: var(--primary-teal);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 8px;
}

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

/* ===== Features Section ===== */
.features {
  padding: var(--section-padding);
  background: var(--white);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-teal), transparent);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.feature-card {
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--bg-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-teal);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  padding: 20px;
  background: var(--teal-tint);
  border-radius: 20px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--gradient-teal);
}

.feature-card:hover .feature-icon span {
  filter: brightness(10);
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ===== Services Section ===== */
.services {
  padding: var(--section-padding);
  background: var(--teal-tint);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 24px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-teal);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-teal);
}

.service-card:hover::before {
  opacity: 0.05;
}

.service-card-content {
  position: relative;
  z-index: 1;
}

.service-card-highlight {
  background: var(--gradient-hero);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-lg);
}

.service-card-highlight h3,
.service-card-highlight p {
  color: var(--white);
}

.service-card-highlight .service-icon {
  background: rgba(255, 255, 255, 0.1);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: inline-block;
  padding: 24px;
  background: var(--teal-tint);
  border-radius: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: scale(1.1);
  background: var(--gradient-teal);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.service-price {
  margin-top: 16px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-teal);
}

/* ===== Airports Preview Section ===== */
.airports-preview {
  padding: var(--section-padding);
  background: var(--white);
  position: relative;
}

.airports-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-teal), transparent);
}

.airports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.airport-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid var(--bg-light);
  position: relative;
  overflow: hidden;
}

.airport-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-teal);
  transform: scaleX(0);
  transition: var(--transition);
}

.airport-card:hover {
  background: var(--gradient-hero);
  color: var(--white);
  transform: translateY(-4px) scale(1.02);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

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

.airport-code {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-teal);
  transition: var(--transition);
}

.airport-card:hover .airport-code {
  color: var(--accent-gold);
}

.airport-name {
  font-weight: 600;
  margin: 12px 0 4px;
  font-size: 1.1rem;
}

.airport-full {
  font-size: 0.875rem;
  color: var(--text-light);
  transition: var(--transition);
}

.airport-card:hover .airport-full {
  color: rgba(255,255,255,0.8);
}

.mt-4 {
  margin-top: 2rem;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 100px 0;
  background: var(--gradient-hero);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 169, 157, 0.2) 0%, transparent 50%);
  animation: pulse-glow 6s ease-in-out infinite;
}

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

.cta-section h2 {
  font-size: 3rem;
  margin-bottom: 16px;
  font-weight: 800;
}

.cta-section h2 span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-section p {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ===== Footer ===== */
.footer {
  background: var(--primary-dark);
  color: var(--white);
  padding: 80px 0 30px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-teal);
}

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

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo span {
  color: var(--primary-teal);
}

.footer-col p {
  opacity: 0.8;
  line-height: 1.7;
}

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

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

.footer-links a {
  opacity: 0.7;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--primary-teal);
  transform: translateX(4px);
}

.footer-contact li {
  margin-bottom: 16px;
  opacity: 0.8;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  color: var(--primary-teal);
  font-size: 1.25rem;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gradient-teal);
  transform: translateY(-4px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.875rem;
  opacity: 0.7;
}

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

.footer-bottom-links a:hover {
  color: var(--primary-teal);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .nav {
    display: none;
  }
  
  .header-content .btn {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    gap: 32px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.125rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .features-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .airports-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-section h2 {
    font-size: 1.75rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .topbar-left {
    display: none;
  }
  
  .airports-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }
  
  .hero-stat-number {
    font-size: 2rem;
  }
}

/* ===== Page Header ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-teal));
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.page-header p {
  font-size: 1.125rem;
  opacity: 0.9;
}

/* ===== Pricing Page ===== */
.pricing-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.pricing-block {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.pricing-block h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.pricing-note {
  color: var(--text-light);
  margin-bottom: 24px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.pricing-table th,
.pricing-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--bg-light);
}

.pricing-table th {
  background: var(--teal-tint);
  font-weight: 600;
  color: var(--primary-dark);
}

.pricing-table td.price {
  font-weight: 600;
  color: var(--primary-teal);
}

.pricing-table td.price.highlight {
  color: var(--accent-gold);
  font-size: 1.1rem;
}

/* Additional Services */
.additional-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.add-service {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}

.add-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 12px;
}

.add-service h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.add-service .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-teal);
}

.add-service .price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-light);
}

/* ===== Airports Page ===== */
.airports-section {
  padding: 60px 0;
  background: var(--white);
}

.airports-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.airport-detail {
  background: var(--bg-light);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.airport-detail:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.airport-header {
  background: var(--primary-dark);
  color: var(--white);
  padding: 24px;
}

.airport-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.airport-code-lg {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-teal);
  line-height: 1;
}

.airport-info h2 {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.airport-info p {
  opacity: 0.8;
  font-size: 0.875rem;
}

.airport-services {
  padding: 24px;
}

.airport-services h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 12px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tag {
  background: var(--teal-tint);
  color: var(--primary-dark);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.airport-pricing {
  display: flex;
  gap: 32px;
}

.price-item {
  display: flex;
  flex-direction: column;
}

.price-item span {
  font-size: 0.875rem;
  color: var(--text-light);
}

.price-item strong {
  font-size: 1.25rem;
  color: var(--primary-teal);
}

/* ===== How It Works Page ===== */
.steps-section {
  padding: 80px 0;
  background: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.step-card {
  text-align: center;
  padding: 32px;
  position: relative;
}

.step-number {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--primary-teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-icon {
  font-size: 4rem;
  margin: 20px 0;
}

.step-card h3 {
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.step-card p {
  color: var(--text-light);
}

/* Included Section */
.included-section {
  padding: 80px 0;
  background: var(--teal-tint);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.included-item {
  display: flex;
  gap: 16px;
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
}

.included-item .check {
  width: 28px;
  height: 28px;
  background: var(--primary-teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.included-item h4 {
  font-size: 1rem;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.included-item p {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: var(--white);
}

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

.faq-item {
  border-bottom: 1px solid var(--bg-light);
  padding: 24px 0;
}

.faq-item h3 {
  font-size: 1.125rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--text-light);
}

/* ===== Services Page ===== */
.services-detail {
  padding: 60px 0;
  background: var(--bg-light);
}

.service-detail-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}

.service-premium {
  background: linear-gradient(135deg, var(--primary-dark), #2d4a7a);
  color: var(--white);
}

.premium-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
}

.service-detail-icon {
  font-size: 5rem;
}

.service-tagline {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.service-premium .service-tagline {
  color: rgba(255,255,255,0.8);
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

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

.feature-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 20px;
}

.service-price .from {
  color: var(--text-light);
}

.service-price .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-teal);
}

.service-premium .service-price .price {
  color: var(--accent-gold);
}

.service-price .per {
  color: var(--text-light);
}

.btn-premium {
  background: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
}

.btn-premium:hover {
  background: #c9a430;
  border-color: #c9a430;
}

/* ===== Contact Page ===== */
.contact-section {
  padding: 60px 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
}

.contact-form-wrapper {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 16px;
}

.contact-form-wrapper h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.contact-form-wrapper > p {
  color: var(--text-light);
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-weight: 500;
  color: var(--primary-dark);
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--bg-light);
  border-radius: 8px;
  font-family: var(--font-family);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  background: var(--bg-light);
  padding: 24px;
  border-radius: 12px;
}

.info-card h3 {
  font-size: 1.125rem;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.info-card > p {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 20px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: 12px;
  transition: var(--transition);
}

.contact-method:hover {
  transform: translateX(8px);
}

.method-icon {
  font-size: 1.5rem;
}

.contact-method div {
  display: flex;
  flex-direction: column;
}

.contact-method strong {
  color: var(--primary-dark);
}

.contact-method span {
  color: var(--text-light);
  font-size: 0.875rem;
}

.hours-note {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-teal);
  margin-bottom: 16px;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.hour-row span:last-child {
  font-weight: 600;
  color: var(--primary-teal);
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benefits-list li {
  color: var(--text-dark);
}

/* ===== Responsive for new pages ===== */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .service-detail-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .service-detail-icon {
    font-size: 4rem;
  }
  
  .service-features {
    align-items: center;
  }
  
  .feature {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .pricing-table {
    font-size: 0.875rem;
  }
  
  .pricing-table th,
  .pricing-table td {
    padding: 12px 8px;
  }
  
  .airport-pricing {
    flex-direction: column;
    gap: 12px;
  }
  
  .airport-info {
    flex-direction: column;
    text-align: center;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
