/* ========================================
   MalaysiaAirlies.com - Main Stylesheet
   Design System: C方案 (Content-Rich Magazine Style)
   ======================================== */

/* Local Fonts */
@import url('fonts.css');

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  /* Primary - Deep Forest Green */
  --color-primary: #1B4332;
  --color-primary-rgb: 27, 67, 50;
  --color-primary-light: #2D6A4F;
  --color-primary-dark: #0D2818;

  /* Accent - Antique Bronze */
  --color-accent: #B08D57;
  --color-accent-rgb: 176, 141, 87;
  --color-accent-light: #C9A66B;

  /* Neutrals - Warm Cream */
  --color-cream: #F5F1E8;
  --color-cream-dark: #E8E0D0;
  --color-white: #FFFFFF;
  --color-text: #2C3E35;
  --color-text-light: #5A6B62;

  /* Semantic */
  --color-success: #40916C;
  --color-warning: #D4A24A;
  --color-error: #A65D57;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(27, 67, 50, 0.05);
  --shadow-md: 0 8px 32px rgba(27, 67, 50, 0.08);
  --shadow-lg: 0 16px 48px rgba(27, 67, 50, 0.12);
  --shadow-xl: 0 24px 64px rgba(27, 67, 50, 0.16);

  /* Typography */
  --font-heading: 'Lora', Georgia, serif;
  --font-body: 'Open Sans', -apple-system, sans-serif;

  /* Layout */
  --container-width: 1400px;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-cream);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}

h1 { font-size: 56px; font-weight: 700; }
h2 { font-size: 40px; }
h3 { font-size: 28px; }
h4 { font-size: 22px; font-weight: 500; }

p {
  margin-bottom: var(--space-md);
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 18px;
  color: var(--color-text-light);
  max-width: 640px;
  margin: 0 auto;
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: var(--color-primary);
  padding: 16px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
}

.nav-link {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 50%, var(--color-primary-light) 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--color-cream), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(176, 141, 87, 0.2);
  padding: 10px 24px;
  border-radius: 2px;
  margin-bottom: var(--space-md);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: var(--space-md);
}

.hero-title span {
  color: var(--color-accent);
}

.hero-description {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: var(--space-xl);
  max-width: 580px;
}

.hero-meta {
  display: flex;
  gap: 48px;
  margin-top: var(--space-lg);
}

.hero-meta-item {
  text-align: left;
}

.hero-meta-value {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-accent);
}

.hero-meta-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-scroll {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
  color: var(--color-text-light);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-scroll-icon {
  margin-top: 12px;
  font-size: 24px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-10px); }
  60% { transform: translateY(-5px); }
}

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 18px 40px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--color-accent-light);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  padding: 16px 36px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.4s ease;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-primary);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* ========================================
   CARDS
   ======================================== */
.card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}

.card-body {
  padding: var(--space-lg);
}

.card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.card-text {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* Route Cards */
.route-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.route-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.route-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.route-card-body {
  padding: var(--space-lg);
}

.route-card-tag {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.route-card-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.route-card-info {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 12px;
}

.route-card-price {
  font-size: 14px;
  color: var(--color-text-light);
}

.route-card-price strong {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent);
}

.route-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-cream-dark);
  transition: all 0.3s ease;
}

.route-card-link:hover {
  color: var(--color-accent);
  gap: 12px;
}

/* Airport Cards */
.airport-card {
  background: var(--color-primary);
  border-radius: 16px;
  padding: var(--space-xl);
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.airport-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--color-accent);
}

.airport-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.airport-icon {
  width: 80px;
  height: 80px;
  background: rgba(176, 141, 87, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 36px;
}

.airport-name {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}

.airport-full-name {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: var(--space-sm);
}

.airport-routes {
  font-size: 14px;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: var(--space-md);
}

.airport-link {
  display: inline-block;
  margin-top: var(--space-md);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.airport-link:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-white);
}

/* Blog Cards */
.blog-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.blog-card-body {
  padding: var(--space-lg);
}

.blog-card-category {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: 2px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.blog-card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.blog-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-cream-dark);
  font-size: 13px;
  color: var(--color-text-light);
}

.blog-card-link {
  color: var(--color-accent);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.blog-card-link:hover {
  gap: 10px;
}

/* ========================================
   GRIDS
   ======================================== */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.airports-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.hero-cards {
  display: grid;
  gap: var(--space-md);
}

.hero-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.hero-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(176, 141, 87, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: var(--space-sm);
}

.hero-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.hero-card-text {
  font-size: 14px;
  color: var(--color-secondary);
  line-height: 1.6;
}

/* ========================================
   INFO SECTIONS
   ======================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.info-card {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.info-icon {
  width: 72px;
  height: 72px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
  font-size: 32px;
}

.info-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.info-text {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.6;
}

/* ========================================
   AIRLINES SECTION
   ======================================== */
.airlines-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.airline-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.airline-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.airline-logo {
  width: 72px;
  height: 72px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 32px;
}

.airline-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.airline-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-accent);
}

.airline-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-light);
}

/* ========================================
   DESTINATION SECTION
   ======================================== */
.destination-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.destination-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.destination-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.destination-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.destination-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.destination-text {
  font-size: 17px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.destination-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.destination-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--color-text);
}

.destination-highlight-icon {
  width: 32px;
  height: 32px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-white);
  flex-shrink: 0;
}

/* ========================================
   TIPS SECTION
   ======================================== */
.tips-section {
  background: var(--color-primary);
  padding: var(--space-2xl) 0;
}

.tips-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.tip-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: var(--space-lg);
}

.tip-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.tip-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.tip-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ========================================
   RELATED SECTIONS
   ======================================== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.related-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.related-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.related-card-body {
  padding: var(--space-md);
}

.related-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.related-card-text {
  font-size: 14px;
  color: var(--color-text-light);
}

.related-card-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--color-accent);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  padding: var(--space-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ========================================
   TRANSPORT SECTION
   ======================================== */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.transport-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: var(--space-lg);
  text-align: center;
  transition: all 0.4s ease;
}

.transport-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.transport-icon {
  width: 64px;
  height: 64px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 28px;
}

.transport-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 8px;
}

.transport-duration {
  font-size: 14px;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.transport-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ========================================
   FACILITIES SECTION
   ======================================== */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.facility-card {
  background: var(--color-cream);
  border-radius: 12px;
  padding: var(--space-lg);
  text-align: center;
  transition: all 0.4s ease;
}

.facility-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.facility-icon {
  width: 56px;
  height: 56px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  font-size: 24px;
}

.facility-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.facility-desc {
  font-size: 14px;
  color: var(--color-text-light);
}

/* ========================================
   OVERVIEW SECTION
   ======================================== */
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.overview-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.overview-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.overview-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-sm);
}

.overview-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.overview-text {
  font-size: 17px;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.overview-stat {
  text-align: center;
  padding: var(--space-md);
  background: var(--color-cream);
  border-radius: 12px;
}

.overview-stat-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-accent);
}

.overview-stat-label {
  font-size: 13px;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* ========================================
   TERMINALS SECTION
   ======================================== */
.terminals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.terminal-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

.terminal-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.terminal-icon {
  width: 64px;
  height: 64px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 28px;
}

.terminal-name {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.terminal-desc {
  font-size: 15px;
  color: var(--color-text-light);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.terminal-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.terminal-feature {
  background: var(--color-cream);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: var(--color-text);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--color-primary-dark);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand {
  max-width: 340px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.footer-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.footer-links {
  list-style: none;
}

.footer-link {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  padding: 6px 0;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--color-accent);
}

.footer-bottom {
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
  opacity: 0;
  animation: slideUp 0.8s ease-out forwards;
}

.animate-scale-in {
  opacity: 0;
  animation: scaleIn 0.5s ease-out forwards;
}

.animate-delay-1 { animation-delay: 100ms; }
.animate-delay-2 { animation-delay: 200ms; }
.animate-delay-3 { animation-delay: 300ms; }
.animate-delay-4 { animation-delay: 400ms; }
.animate-delay-5 { animation-delay: 500ms; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1200px) {
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .airports-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .transport-grid { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .hero-title { font-size: 56px; }
  .destination-grid { grid-template-columns: 1fr; }
  .overview-grid { grid-template-columns: 1fr; }
  .tips-list { grid-template-columns: 1fr; }
  .terminals-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }
  .airlines-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 60px 0; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-primary);
    flex-direction: column;
    padding: var(--space-md);
    gap: 8px;
  }
  .nav-links.active { display: flex; }
  .nav-toggle { display: block; }
  .nav-container { padding: 0 24px; }

  .hero { min-height: 90vh; }
  .hero-title { font-size: 40px; }
  .hero-description { font-size: 16px; }
  .hero-meta { flex-direction: column; gap: var(--space-md); }
  .hero-meta-value { font-size: 32px; }
  .hero-scroll { bottom: 60px; }

  .routes-grid { grid-template-columns: 1fr; }
  .airports-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .transport-grid { grid-template-columns: 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .airlines-grid { grid-template-columns: 1fr; }

  .section-title { font-size: 32px; }
  .destination-title { font-size: 32px; }
  .overview-title { font-size: 28px; }
  .overview-stats { grid-template-columns: 1fr; }
  .destination-highlights { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }

  .cta-title { font-size: 36px; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .footer-bottom { flex-direction: column; gap: var(--space-sm); text-align: center; }

  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
}

/* ========================================
   UTILITIES
   ======================================== */
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-white { color: var(--color-white); }
.bg-cream { background: var(--color-cream); }
.bg-white { background: var(--color-white); }
.bg-primary { background: var(--color-primary); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}


/* Page-specific: index */
.hero-index::before {
      background: url('https://images.unsplash.com/photo-1513635269975-59663e0ac1ad?w=1920&h=1080&fit=crop') center/cover;
    }

/* Page-specific: bangkok-to-kl */
.hero-bangkok-to-kl::before {
      background: url('https://images.unsplash.com/photo-1552832230-c0197dd311b5?w=1920&h=1080&fit=crop') center/cover;
    }

/* Page-specific: jakarta-to-kl */
.hero-jakarta-to-kl::before {
      background: url('https://images.unsplash.com/photo-1558833406-a5303e2e4c8c?w=1920&h=1080&fit=crop') center/cover;
    }

/* Page-specific: kl-to-bali */
.hero-kl-to-bali::before {
      background: url('https://images.unsplash.com/photo-1539635278303-d4002c07eae3?w=1920&h=1080&fit=crop') center/cover;
    }

/* Page-specific: kl-to-bangkok */
.hero-kl-to-bangkok::before {
      background: url('https://images.unsplash.com/photo-1552832230-c0197dd311b5?w=1920&h=1080&fit=crop') center/cover;
    }

/* Page-specific: kl-to-langkawi */
.hero-kl-to-langkawi::before {
      background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1920&h=1080&fit=crop') center/cover;
    }

/* Page-specific: kl-to-penang */
.hero-kl-to-penang::before {
      background: url('https://images.unsplash.com/photo-1596495578065-6e0763fa1178?w=1920&h=1080&fit=crop') center/cover;
    }

/* Page-specific: kl-to-singapore */
.hero-kl-to-singapore::before {
      background: url('https://images.unsplash.com/photo-1525625293386-bf1b7e91d5e4?w=1920&h=1080&fit=crop') center/cover;
    }

/* Page-specific: penang-to-kl */
.hero-penang-to-kl::before {
      background: url('https://images.unsplash.com/photo-1596495578065-6e0763fa1178?w=1920&h=1080&fit=crop') center/cover;
    }

/* Page-specific: singapore-to-kl */
.hero-singapore-to-kl::before {
      background: url('https://images.unsplash.com/photo-1548611716-b3b416f3d756?w=1920&h=1080&fit=crop') center/cover;
    }

/* Page-specific: surabaya-to-kl */
.hero-surabaya-to-kl::before {
      background: url('https://images.unsplash.com/photo-1589308078059-be1415c4f4e5?w=1920&h=1080&fit=crop') center/cover;
    }

/* Page-specific: klia-airport-guide */
.hero-klia-airport-guide::before { background-image: url('https://images.unsplash.com/photo-1540962351504-03099e0a754b?w=1920&h=1080&fit=crop'); }
/* ========================================
   DESTINATIONS SECTION
   ======================================== */
.destinations-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 8px 40px 24px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.destinations-scroll::-webkit-scrollbar { height: 6px; }
.destinations-scroll::-webkit-scrollbar-track { background: var(--color-cream); }
.destinations-scroll::-webkit-scrollbar-thumb { background: var(--color-accent); border-radius: 3px; }

.destination-card {
  flex: 0 0 380px;
  scroll-snap-align: start;
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
}
.destination-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.destination-card-img { width: 100%; height: 280px; object-fit: cover; }
.destination-card-body { padding: 24px; }
.destination-card-country { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--color-accent); margin-bottom: 8px; }
.destination-card-title { font-family: var(--font-heading); font-size: 22px; font-weight: 600; color: var(--color-primary); margin-bottom: 12px; }
.destination-card-text { font-size: 14px; color: var(--color-text-light); line-height: 1.6; }
