@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Dark theme colors (default) */
  --bg-primary: #070913;
  --bg-secondary: #0c0f1e;
  --bg-card: rgba(16, 20, 38, 0.6);
  --border-color: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.15);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --primary: #16348c; /* Royal Blue from logo */
  --primary-glow: rgba(22, 52, 140, 0.25);
  --primary-hover: #0d2159;
  
  --accent: #b22222; /* Crimson Red from logo */
  --accent-glow: rgba(178, 34, 34, 0.15);
  
  --success: #10b981;
  --white: #ffffff;
  --black: #000000;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.4);
  --glass-backdrop: blur(16px);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* Flight Display planning guide */
.flight-information {
  --flight-brand-navy: #16348c;
  --flight-brand-red: #b22222;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(22, 52, 140, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 52, 140, 0.025) 1px, transparent 1px),
    #f7f8fb;
  background-size: 72px 72px, 72px 72px, auto;
}

.flight-information .flight-guide-header {
  max-width: 760px;
  margin-bottom: 3rem;
}

.flight-information .flight-guide-header .section-title {
  margin-bottom: 1rem;
  color: #0b1633;
}

.flight-information .flight-guide-header p {
  max-width: 690px;
  color: #52627d;
  font-size: 1.05rem;
  line-height: 1.75;
}

.flight-information .flight-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.flight-information .flight-guide-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 2rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(22, 52, 140, 0.12);
  border-top: 3px solid var(--flight-brand-navy);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(20, 52, 112, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.flight-information .flight-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(20, 52, 112, 0.13);
}

.flight-information .flight-guide-card::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 68px;
  height: 3px;
  background: var(--flight-brand-red);
}

.flight-information .flight-guide-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.flight-information .flight-guide-icon {
  display: inline-grid;
  width: 3.2rem;
  height: 3.2rem;
  place-items: center;
  color: var(--flight-brand-navy);
  background: #eef1f8;
  border: 1px solid rgba(23, 63, 159, 0.16);
  border-radius: 15px;
  font-size: 1.15rem;
}

.flight-information .flight-guide-number {
  color: rgba(178, 34, 34, 0.3);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.flight-information .flight-guide-card h3 {
  margin-bottom: 0.85rem;
  color: #0b1633;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  line-height: 1.3;
}

.flight-information .flight-guide-card p {
  margin: 0;
  color: #52627d;
  font-size: 0.98rem;
  line-height: 1.72;
}

.flight-information .flight-planning-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
  padding: 2.5rem 3rem;
  color: #fff;
  background: #16348c;
  border-top: 4px solid var(--flight-brand-red);
  border-radius: 24px;
  box-shadow: 0 24px 55px rgba(12, 41, 104, 0.2);
}

.flight-information .flight-planning-copy {
  max-width: 800px;
}

.flight-information .flight-planning-label {
  display: block;
  margin-bottom: 0.65rem;
  color: #f1b6b6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.flight-information .flight-planning-panel h2 {
  margin-bottom: 0.85rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.15;
}

.flight-information .flight-planning-panel p {
  margin: 0 0 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.flight-information .flight-planning-panel p:last-child {
  margin-bottom: 0;
}

.flight-information .flight-planning-panel p a {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.55);
  text-underline-offset: 3px;
}

.flight-information .flight-planning-actions {
  display: flex;
  min-width: 230px;
  flex-direction: column;
  gap: 0.8rem;
}

.flight-information .flight-planning-action {
  display: inline-flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  min-height: 50px;
  padding: 0.85rem 1.15rem;
  border-radius: 14px;
  white-space: nowrap;
}

.flight-information .flight-planning-action.btn-primary {
  color: #fff;
  background: #b22222;
  border-color: #b22222;
  box-shadow: 0 10px 24px rgba(98, 15, 15, 0.28);
}

.flight-information .flight-planning-action.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.38);
}

.flight-information .flight-planning-action:focus-visible {
  outline: 3px solid #f6c453;
  outline-offset: 4px;
}

@media (max-width: 1024px) {
  .flight-information .flight-guide-grid {
    grid-template-columns: 1fr;
  }

  .flight-information .flight-guide-card {
    padding: 1.75rem;
  }

  .flight-information .flight-planning-panel {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .flight-information .flight-planning-actions {
    min-width: 0;
    flex-direction: row;
  }
}

@media (max-width: 640px) {
  .flight-information {
    padding: 4.5rem 0;
  }

  .flight-information .flight-guide-header {
    margin-bottom: 2rem;
  }

  .flight-information .flight-guide-header .section-title {
    font-size: 2rem;
  }

  .flight-information .flight-guide-grid {
    gap: 1rem;
  }

  .flight-information .flight-guide-card {
    padding: 1.35rem;
    border-radius: 18px;
  }

  .flight-information .flight-guide-card-top {
    margin-bottom: 1.15rem;
  }

  .flight-information .flight-planning-panel {
    margin-top: 1.25rem;
    padding: 1.75rem 1.35rem;
    border-radius: 20px;
  }

  .flight-information .flight-planning-actions {
    flex-direction: column;
  }

  .flight-information .flight-planning-action {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flight-information .flight-guide-card,
  .flight-information .flight-planning-action {
    transition: none;
  }

  .flight-information .flight-guide-card:hover {
    transform: none;
  }
}

body.light-theme {
  /* Light theme colors */
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-card: rgba(255, 255, 255, 0.7);
  --border-color: rgba(0, 0, 0, 0.06);
  --border-hover: rgba(0, 0, 0, 0.12);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  --primary: #16348c; /* Royal Blue for light mode */
  --primary-glow: rgba(22, 52, 140, 0.15);
  --primary-hover: #0d2159;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.12);
}

/* Multi-page content routing */
body[data-page="transport"] > section,
body[data-page="rate"] > section,
body[data-page="consulting"] > section:not(.news-page-section),
body[data-page="contact"] > section:not(#contact) {
  display: none;
}

body[data-page="services"] > section:not(.company-overview-section):not(.services-slider-section):not(#properties-section) {
  display: none;
}

body[data-page="services"] > .company-overview-section {
  margin-top: 213px;
}

@media (max-width: 1024px) {
  body[data-page="services"] > .company-overview-section { margin-top: 161px; }
}

.empty-page-placeholder {
  min-height: 62vh;
  background: #f8fafc;
}

.kh-latest-table { width:100%; min-width:950px; table-layout:fixed; }
.kh-latest-table th,.kh-latest-table td { box-sizing:border-box; padding-left:.35rem !important; padding-right:.35rem !important; vertical-align:middle; white-space:nowrap; }
.kh-latest-table th:nth-child(1),.kh-latest-table td:nth-child(1),
.kh-latest-table th:nth-child(2),.kh-latest-table td:nth-child(2),
.kh-latest-table th:nth-child(3),.kh-latest-table td:nth-child(3),
.kh-latest-table th:nth-child(4),.kh-latest-table td:nth-child(4) { width:66px; text-align:left; }
.kh-latest-table th:nth-child(n+5):nth-child(-n+9),
.kh-latest-table td:nth-child(n+5):nth-child(-n+9) { width:58px; text-align:left; padding-left:.3rem !important; padding-right:.3rem !important; }
.kh-latest-table th:nth-child(10),.kh-latest-table td:nth-child(10) { text-align:left; padding-left:.65rem !important; }
.kh-latest-table th:nth-child(10),.kh-latest-table td:nth-child(10) { width:84px; }
.kh-latest-table th:nth-child(11),.kh-latest-table td:nth-child(11) { width:82px; }
.kh-latest-table th:nth-child(12),.kh-latest-table td:nth-child(12) { width:145px; overflow:hidden; text-overflow:ellipsis; }
.kh-latest-table th:nth-child(13),.kh-latest-table td:nth-child(13) { width:112px; }
.kh-rate-form.kh-three-fields { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.kh-rate-form .kh-hidden-field { display: none !important; }
.kh-latest-table-wrap {
  max-height: 520px;
  overflow: auto !important;
  scrollbar-gutter: stable both-edges;
  -webkit-overflow-scrolling: touch;
}
.kh-latest-table thead { position: sticky; top: 0; z-index: 3; }
.kh-latest-table thead th { box-shadow: 0 1px 0 #e7ebf2; }
@media (max-width: 900px) {
  .kh-rate-form.kh-three-fields { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 560px) {
  .kh-rate-form.kh-three-fields { grid-template-columns: 1fr !important; }
  .kh-latest-table-wrap { max-height: 460px; }
}

/* About page */
.about-page { background: #f8fafc; color: #0c1e36; }
.about-page section { display: block; }
.about-eyebrow { display: inline-block; color: #b22222; font-size: .78rem; font-weight: 800; letter-spacing: .18em; margin-bottom: 1.15rem; }
.about-hero-section { padding: 13rem 0 7rem; background: linear-gradient(135deg,#f8fafc 0%,#eef3f9 100%); }
.about-hero-grid { display: grid; grid-template-columns: 1fr 1.1fr; align-items: center; gap: 4rem; }
.about-hero-copy h1 { font: 800 clamp(2.7rem,3.8vw,3.8rem)/1.04 var(--font-heading); letter-spacing: -.045em; margin-bottom: 1.8rem; }
.about-hero-copy h1 span { display: block; white-space: nowrap; }
.about-lead { color: #53627a; font-size: 1.15rem; line-height: 1.85; max-width: 590px; }
.about-hero-actions { display: flex; align-items: center; gap: 1.8rem; margin-top: 2.2rem; }
.about-hero-actions > span { color: #53627a; font-weight: 700; }
.about-hero-actions > span i { color: #b22222; margin-right: .4rem; }
.about-hero-visual { position: relative; }
.about-hero-visual > img { width: 100%; height: 570px; object-fit: cover; border-radius: 32px; box-shadow: 0 30px 70px rgba(15,52,96,.18); }
.about-founded-card { position: absolute; left: -45px; bottom: -38px; min-width: 235px; padding: 1.7rem 2rem; background: #fff; border-radius: 20px; border-bottom: 5px solid #b22222; box-shadow: 0 18px 45px rgba(15,52,96,.18); }
.about-founded-card small,.about-founded-card span { display:block; color:#8090a8; font-size:.76rem; font-weight:700; letter-spacing:.1em; }
.about-founded-card strong { display:block; color:#0c1e36; font:800 2rem var(--font-heading); margin:.2rem 0; }
.about-story-section { padding: 8rem 0; background:#fff; }
.about-story-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:7rem; align-items:start; }
.about-story-intro h2,.about-section-heading h2,.about-network-copy h2 { font:800 clamp(2.4rem,4vw,4.2rem)/1.08 var(--font-heading); letter-spacing:-.04em; }
.about-story-copy { border-left:1px solid #dce3ec; padding-left:4rem; }
.about-story-copy p { color:#53627a; font-size:1.08rem; line-height:1.9; margin-bottom:1.4rem; }
.about-timeline { display:grid; grid-template-columns:1fr 180px 1fr; gap:2rem; align-items:center; margin-top:5rem; padding:2.5rem; border-radius:24px; background:#0c1e36; color:#fff; }
.timeline-year span { display:block; color:#e74a4a; font:800 2.2rem var(--font-heading); }
.timeline-year strong { display:block; font-size:1.15rem; margin:.35rem 0; }
.timeline-year p { color:#aab8ca; font-size:.9rem; }
.timeline-line { height:2px; background:#41516a; display:flex; justify-content:space-between; align-items:center; }
.timeline-line i { width:12px; height:12px; border-radius:50%; background:#b22222; box-shadow:0 0 0 6px rgba(178,34,34,.18); }
.about-services-section { padding:8rem 0; background:#f3f6fa; }
.about-section-heading { max-width:760px; margin-bottom:3.5rem; }
.about-service-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.about-service-grid article { display:flex; flex-direction:column; align-items:flex-start; background:#fff; padding:2.2rem; border-radius:20px; border:1px solid #e5eaf0; transition:var(--transition); }
.about-service-grid article:hover { transform:translateY(-7px); box-shadow:0 18px 40px rgba(15,52,96,.1); }
.about-service-grid i { display:grid; place-items:center; width:48px; height:48px; color:#fff; background:#16348c; border-radius:13px; margin-bottom:1.4rem; }
.about-service-grid h3 { font:700 1.15rem var(--font-heading); margin-bottom:.65rem; }
.about-service-grid p { color:#708097; font-size:.9rem; line-height:1.65; }
.about-service-description { width:100%; margin:0; }
.about-service-description.is-collapsed { position:relative; max-height:6.6em; overflow:hidden; }
.about-service-toggle { margin-top:1rem; padding:.45rem 0; border:0; border-bottom:2px solid #b22222; background:transparent; color:#16348c; font:800 .78rem var(--font-heading); letter-spacing:.03em; cursor:pointer; }
.about-service-toggle:hover,.about-service-toggle:focus-visible { color:#b22222; }
.about-service-toggle:focus-visible { outline:3px solid rgba(178,34,34,.22); outline-offset:4px; border-radius:3px; }
.about-service-toggle[hidden] { display:none; }
.about-network-section { padding:8rem 0; background:#071429; color:#fff; }
.about-network-grid { display:grid; grid-template-columns:1.25fr .75fr; gap:5rem; align-items:center; }
.about-network-image { position:relative; }
.about-network-image img { width:100%; border-radius:28px; box-shadow:0 25px 70px rgba(0,0,0,.4); }
.network-origin { position:absolute; left:24px; bottom:22px; padding:.8rem 1rem; border-radius:12px; background:rgba(4,14,31,.8); backdrop-filter:blur(12px); font-size:.72rem; font-weight:800; letter-spacing:.12em; }
.network-origin span { display:inline-block; width:9px; height:9px; border-radius:50%; background:#e33; box-shadow:0 0 0 5px rgba(238,51,51,.2); margin-right:.6rem; }
.about-network-copy h2 { margin-bottom:1.5rem; }
.about-network-copy p { color:#aab8ca; line-height:1.85; margin-bottom:1.8rem; }
.lane-list { display:flex; flex-wrap:wrap; gap:.7rem; margin-bottom:2rem; }
.lane-list span { padding:.55rem .85rem; border:1px solid #33445e; border-radius:99px; color:#d9e2ee; font-size:.78rem; font-weight:700; }
@media(max-width:1024px){.about-hero-grid,.about-story-grid,.about-network-grid{grid-template-columns:1fr;gap:3rem}.about-hero-visual>img{height:480px}.about-founded-card{left:20px}.about-service-grid{grid-template-columns:repeat(2,1fr)}.about-story-copy{padding-left:0;border-left:0}.about-timeline{grid-template-columns:1fr}.timeline-line{display:none}}
@media(max-width:600px){.about-hero-section{padding:10rem 0 5rem}.about-hero-copy h1{font-size:2.55rem}.about-hero-copy h1 span{white-space:normal}.about-hero-actions{align-items:flex-start;flex-direction:column}.about-hero-visual>img{height:340px}.about-founded-card{position:relative;left:auto;bottom:auto;margin:-35px 18px 0}.about-story-section,.about-services-section,.about-network-section{padding:5rem 0}.about-service-grid{grid-template-columns:1fr}.about-timeline{padding:1.7rem}.network-origin{position:static;margin-top:.8rem}.about-story-intro h2,.about-section-heading h2,.about-network-copy h2{font-size:2.5rem}}

body[data-page]:not([data-page="home"]) > section:first-of-type {
  margin-top: 0;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
  line-height: 1.6;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.text-gradient {
  background: linear-gradient(135deg, var(--white) 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.light-theme .text-gradient {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--white);
  box-shadow: 0 8px 20px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px var(--primary-glow);
  filter: brightness(1.1);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--text-primary);
  backdrop-filter: var(--glass-backdrop);
}

.btn-secondary:hover {
  border-color: var(--border-hover);
  background-color: rgba(255, 255, 255, 0.03);
  transform: translateY(-2px);
}

body.light-theme .btn-secondary:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.glass-panel {
  background: var(--bg-card);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid var(--border-color);
  border-radius: 24px;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  border-top: 4px solid #b22222; /* Top accent crimson border from logo design */
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border-color);
}

header.scrolled {
  background: var(--bg-card);
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  box-shadow: var(--shadow-md);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

.logo:hover img {
  transform: scale(1.02);
}

/* Contact Info in Center (from user image design) */
.header-contact-info {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.contact-item i {
  color: var(--primary);
  font-size: 1.05rem;
}

body.light-theme .contact-item i {
  color: var(--text-primary);
}

.contact-item a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--primary);
}

.contact-item span {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Quote Button Group (from user image design) */
.quote-btn-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-quote {
  background: linear-gradient(135deg, #b22222 0%, #8b0000 100%) !important;
  color: var(--white) !important;
  border-radius: 50px;
  padding: 0.75rem 1.6rem;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border: none;
  box-shadow: 0 4px 12px rgba(178, 34, 34, 0.25);
  transition: var(--transition);
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(178, 34, 34, 0.4);
  filter: brightness(1.1);
}

.btn-arrow {
  background: linear-gradient(135deg, #b22222 0%, #8b0000 100%);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(178, 34, 34, 0.25);
  transition: var(--transition);
}

.btn-arrow i {
  font-size: 0.9rem;
  transform: rotate(45deg);
  transition: var(--transition);
}

.btn-arrow:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(178, 34, 34, 0.4);
}

.btn-arrow:hover i {
  transform: rotate(45deg) translate(2px, -2px);
}

/* Sidebar Drawer Navigation */
.nav-links {
  position: fixed;
  top: 0;
  right: -340px;
  width: 340px;
  height: 100vh;
  background-color: var(--bg-secondary);
  border-left: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 8rem 3.5rem;
  gap: 2.2rem;
  list-style: none;
  transition: var(--transition);
  z-index: 999;
}

.nav-links.active {
  right: 0;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}




/* Language Selector */
.lang-selector {
  position: relative;
  display: inline-block;
  margin-right: 0.5rem;
}

.lang-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: var(--transition);
  outline: none;
}

.lang-btn:hover {
  border-color: var(--primary);
  background-color: rgba(22, 52, 140, 0.05);
}

.lang-btn i {
  font-size: 0.85rem;
  color: var(--primary);
}

.lang-btn .select-arrow {
  font-size: 0.55rem;
  transition: var(--transition);
  color: var(--text-muted);
}

.lang-selector:hover .lang-btn .select-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.5rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  min-width: 120px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 9999;
}

.lang-selector:hover .lang-dropdown,
.lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: block;
  padding: 0.6rem 1rem;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.lang-option:hover {
  background-color: rgba(22, 52, 140, 0.08);
  color: var(--primary);
}

.lang-option.active {
  background-color: var(--primary);
  color: #ffffff !important;
}

/* Mobile Nav Toggle - visible on all screens to trigger drawer */
.mobile-nav-toggle {
  display: block;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 1000;
  transition: var(--transition);
}

.mobile-nav-toggle:hover {
  color: var(--primary);
  transform: scale(1.1);
}

/* Top Header Bar Row */
.top-header-bar {
  background: var(--bg-primary);
  width: 100%;
}

body.light-theme .top-header-bar {
  background: #ffffff;
}

/* Bottom Header Bar Row */
.bottom-header-bar {
  background: linear-gradient(90deg, #16348c 0%, #0d2159 100%);
  width: 100%;
  height: 52px;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(22, 52, 140, 0.15);
}

.main-menu-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(0.65rem, 1.35vw, 1.6rem);
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

.main-menu-links li {
  display: inline-block;
}

.menu-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffffff !important;
  text-decoration: none;
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  white-space: nowrap;
  flex-wrap: nowrap;
  font-weight: 700;
  transition: var(--transition);
  padding: 0.5rem 0.2rem;
  opacity: 0.85;
}

.menu-item i {
  font-size: 0.95rem;
}

.menu-item .dropdown-arrow {
  font-size: 0.65rem;
  transition: var(--transition);
}

.menu-item:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.menu-item:hover .dropdown-arrow {
  transform: translateY(2px);
}

.menu-item.active {
  opacity: 1;
  position: relative;
}

.menu-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 180px;
  padding-bottom: 60px;
  background: radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(234, 179, 8, 0.04) 0%, transparent 40%);
}

.hero-content-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  background-color: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.15);
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  animation: float 4s ease-in-out infinite;
}

body.light-theme .hero-badge {
  background-color: rgba(99, 102, 241, 0.08);
  border-color: rgba(99, 102, 241, 0.15);
}

.hero-badge .sparkle {
  color: var(--accent);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.hero-description {
  color: var(--text-secondary);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 580px;
  line-height: 1.7;
}

/* Search Bar (Hero Filter) */
.search-container {
  padding: 1.8rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 10;
}

.search-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.search-tab-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.4rem 1rem;
  position: relative;
  transition: var(--transition);
}

.search-tab-btn.active {
  color: var(--text-primary);
}

.search-tab-btn::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.search-tab-btn.active::after {
  width: 100%;
}

.search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
}

.airport-code-group {
  border-right: none;
  padding-right: 0;
}

.airport-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 330px;
}

.airport-input-wrap i {
  color: var(--primary);
  font-size: 1.05rem;
}

.airport-input-wrap input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.airport-input-wrap input::placeholder {
  color: #94a3b8;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.airport-code-group small {
  color: var(--text-muted);
  font-size: 0.72rem;
}

#search-btn {
  background: linear-gradient(135deg, #b22222 0%, #8b0000 100%);
  box-shadow: 0 8px 22px rgba(178, 34, 34, 0.28);
}

#search-btn:hover {
  background: linear-gradient(135deg, #c52a2a 0%, #9b1010 100%);
  box-shadow: 0 12px 28px rgba(178, 34, 34, 0.4);
}

.rate-result {
  display: none;
  margin-top: 1.4rem;
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  outline: none;
}

.rate-result.show {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  animation: rateReveal .35s ease both;
}

.rate-success { background: #eef4ff; border: 1px solid #c9d9ff; }
.rate-result.rate-success { display:grid; grid-template-columns:minmax(150px,1fr) minmax(145px,.9fr) minmax(330px,1.8fr); align-items:center; gap:1.15rem; }
.rate-error { background: #fff1f2; border: 1px solid #fecdd3; color: #9f1239; }
.rate-pending { background: #fff8eb; border: 1px solid #fed7aa; }
.rate-route { display: flex; flex-wrap: wrap; align-items: center; gap: .5rem; font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; color: var(--text-primary); }
.rate-route small { flex-basis: 100%; color: var(--text-secondary); font-family: var(--font-body); font-size: .86rem; font-weight: 500; margin-top: .15rem; }
.rate-route i { color: var(--primary); font-size: 1.1rem; }
.rate-route-main,.rate-route-extra { display:flex; align-items:center; gap:.5rem; }
.rate-route-extra[hidden],.rate-price-extra[hidden] { display:none !important; }
.rate-route-extra { flex-basis:100%; margin-top:.8rem; padding-top:.7rem; border-top:1px solid #d4def2; font-size:1.25rem; }
.rate-route-extra b { min-width:2rem; color:var(--primary); font-size:.78rem; }
.rate-price { min-width: 0; display: flex; flex-direction: column; }
.rate-price small,.rate-price span { color: var(--text-secondary); font-size: .76rem; line-height: 1.4; }
.rate-price strong { color: var(--primary); font-family: var(--font-heading); font-size: 1.5rem; line-height: 1.15; white-space: nowrap; }
.rate-price .secondary-rate { font-size: 1rem; color: #475569; margin-top: .15rem; }
.rate-price-extra { display:flex; flex-direction:column; margin-top:.8rem; padding-top:.7rem; border-top:1px solid #d4def2; }
.rate-price-extra strong { font-size:1.5rem; }
.rate-service-info { grid-column:1; min-width:0; display:flex; flex-direction:column; padding-top:.75rem; border-top:1px solid #d4def2; }
.rate-service-info small { color:var(--text-secondary); font-size:.72rem; line-height:1.4; }
.rate-service-info > strong { margin:.35rem 0; color:var(--primary); font-size:.9rem; line-height:1.35; overflow-wrap:anywhere; }
.rate-airline-list { display:block; }
.rate-match-item { display:flex; align-items:center; gap:.55rem; padding:.42rem .65rem; border:1px solid #cbd9ff; border-radius:9px; background:#fff; color:#334155; }
.rate-match-item b { color:#132e77; font-size:.76rem; }
.rate-match-item em { overflow:hidden; color:#64748b; font-size:.72rem; font-style:normal; text-overflow:ellipsis; white-space:nowrap; }
.rate-match-item strong { margin-left:auto; color:#173784; font-size:.76rem; white-space:nowrap; }
.rate-match-empty { color:#64748b; font-size:.8rem; }
.rate-service-info .rate-details-note { margin:.15rem 0 0; font-size:.72rem; line-height:1.45; }
.rate-quote-link { white-space: nowrap; border-radius: 999px; background: var(--primary); color: #fff !important; padding: .8rem 1.1rem; font-size: .78rem; font-weight: 800; }
.rate-support { min-width:0; display:flex; flex-direction:column; align-items:flex-start; gap:.75rem; padding-left:1rem; border-left:1px solid #d4def2; }
.rate-support .rate-details-note { margin:0; max-width:26rem; }
.rate-result-actions { display:flex; justify-content:flex-start; align-items:center; gap:.55rem; white-space:nowrap; }
.rate-more-link { white-space: nowrap; border-radius: 999px; background: #b22222; color: #fff !important; padding: .8rem 1.1rem; font-size: .78rem; font-weight: 800; text-decoration: none; box-shadow: 0 7px 18px rgba(178,34,34,.22); }
.rate-more-link:hover { background: #8b0000; transform: translateY(-2px); }
@keyframes rateReveal { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

@media (max-width: 600px) {
  .rate-result.show { align-items: flex-start; flex-direction: column; }
  .rate-result.rate-success { display: flex; align-items: flex-start; }
  .rate-price { margin-left: 0; }
  .rate-result-actions { width: 100%; flex-wrap: wrap; }
  .rate-support { width:100%; padding:.8rem 0 0; border-left:0; border-top:1px solid #d4def2; }
  .rate-service-info { width:100%; padding:.8rem 0 0; border-left:0; border-top:1px solid #d4def2; }
  .rate-match-item { grid-template-columns:auto 1fr; }
  .rate-match-item strong { grid-column:1 / -1; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-right: 1px solid var(--border-color);
  padding-right: 1.5rem;
}

.form-group:nth-child(3) {
  border-right: none;
}

.form-group label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.select-custom {
  position: relative;
}

.select-custom select {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  outline: none;
  appearance: none;
  padding-right: 1.5rem;
}

.select-custom::after {
  content: '▼';
  font-size: 0.6rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-secondary);
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 4rem;
}

.stat-item h3 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.stat-item h3 span {
  color: var(--primary);
}

.stat-item p {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Media Display */
.hero-media {
  position: relative;
  height: 580px;
  width: 100%;
}

.hero-image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 10s ease;
}

.hero-image-wrapper:hover img {
  transform: scale(1.05);
}

/* Floating elements */
.floating-card {
  position: absolute;
  padding: 1.2rem 1.6rem;
  box-shadow: var(--shadow-md);
  border-radius: 20px;
  animation: float 6s ease-in-out infinite;
}

.floating-card-1 {
  bottom: 40px;
  left: -30px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.floating-card-2 {
  top: 40px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation-delay: 2s;
}

.card-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--primary-glow);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.floating-card-1 .info h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

.floating-card-1 .info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.avatars-group {
  display: flex;
}

.avatars-group img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--bg-secondary);
  margin-left: -8px;
}

.avatars-group img:first-child {
  margin-left: 0;
}

.avatars-text {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Company Overview Section styling */
.company-overview-section {
  padding: 8rem 0;
  border-bottom: 1px solid var(--border-color);
}

.company-overview-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.overview-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #b22222; /* Custom orange color from shipping mockup */
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.overview-subtitle i {
  font-size: 0.95rem;
}

.overview-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1.8rem;
  letter-spacing: -1px;
}

/* In light theme, overview-title should be dark navy */
body.light-theme .overview-title {
  color: #0c1e36; /* Dark navy blue from shipping mockup */
}

.overview-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.overview-points {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  margin-bottom: 3rem;
  position: relative;
}

/* Vertical connector line between custom points icons */
.overview-points::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 40px;
  bottom: 40px;
  width: 2px;
  background-color: var(--border-color);
  z-index: 1;
}

.overview-point-item {
  display: flex;
  gap: 1.8rem;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.point-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: #b22222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  flex-shrink: 0;
}

body.light-theme .point-icon-box {
  background-color: #ffffff;
}

.overview-point-item:hover .point-icon-box {
  transform: translateY(-2px);
  border-color: #b22222;
  box-shadow: 0 6px 16px rgba(22, 52, 140, 0.15);
}

.point-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.6rem;
}

body.light-theme .point-content h3 {
  color: #0c1e36;
}

.point-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.overview-cta-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Slanted framed image on the right */
.overview-media-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.skewed-image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 380px;
  border-radius: 20px;
  border: 18px solid #16348c; /* Thick orange outline slanted */
  overflow: visible; /* To allow floating card overflow */
  transform: skewX(-8deg); /* Parallelogram skew */
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.skewed-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: skewX(8deg) scale(1.2); /* Inverse skew to keep image straight */
  transition: var(--transition);
}

.skewed-image-frame:hover {
  transform: skewX(-8deg) translateY(-5px);
  box-shadow: 0 32px 80px rgba(255, 85, 0, 0.2);
}

.skewed-image-frame:hover img {
  transform: skewX(8deg) scale(1.25);
}

/* Floating Card overlapping the frame in bottom-left corner */
.floating-experience-card {
  position: absolute;
  bottom: 25px;
  left: -45px;
  background-color: #0c1524;
  border: 1px solid var(--border-color);
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transform: skewX(8deg); /* Inverse skew to align with page */
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  z-index: 10;
  width: 200px;
  border-bottom: 5px solid #b22222;
}

body.light-theme .floating-experience-card {
  background-color: #ffffff;
}

.exp-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

body.light-theme .exp-number {
  color: #0c1e36;
}

.exp-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive updates for Company Overview */
@media (max-width: 1024px) {
  .company-overview-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .skewed-image-frame {
    height: 340px;
  }
}

@media (max-width: 480px) {
  .skewed-image-frame {
    height: 280px;
    border-width: 12px;
  }
  
  .floating-experience-card {
    left: -20px;
    bottom: 15px;
    padding: 1rem 1.5rem;
    width: 160px;
  }
  
  .exp-number {
    font-size: 2.2rem;
  }
}

/* Mobile viewport hardening for narrow phones */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .navbar {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-actions {
    gap: 0.55rem;
    margin-right: 0;
    flex-shrink: 1;
  }

  .quote-btn-group .btn-arrow {
    display: none;
  }

  .quote-btn-group .btn-quote {
    padding: 0.75rem 1rem;
    white-space: nowrap;
  }

  .lang-btn {
    padding: 0.65rem 0.8rem;
  }

  .property-tabs {
    width: 100%;
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .logo img {
    height: 36px;
    max-width: 132px;
  }

  .quote-btn-group .btn-quote {
    display: none;
  }
}

/* Featured Section */
.section {
  padding: 7rem 0;
}

.section-bg {
  background-color: var(--bg-secondary);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.subtitle {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.property-tabs {
  display: flex;
  gap: 0.8rem;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
  border-color: var(--primary);
  color: var(--white);
  background-color: var(--primary);
}

body.light-theme .tab-btn:hover,
body.light-theme .tab-btn.active {
  color: var(--white);
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.2rem;
}

/* Property Card */
.property-card {
  overflow: hidden;
  transition: var(--transition);
  border-radius: 24px;
}

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

.card-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.property-card:hover .card-media img {
  transform: scale(1.08);
}

.tag-badge {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.tag-badge.sale {
  color: var(--accent);
  border-color: rgba(234, 179, 8, 0.3);
  background-color: rgba(234, 179, 8, 0.08);
}

.fav-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.fav-btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}

.card-content {
  padding: 1.8rem;
}

.card-price {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.4;
  cursor: pointer;
  transition: var(--transition);
}

.card-title:hover {
  color: var(--primary);
}

.card-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 1.2rem;
}

.card-description {
  margin: 0.9rem 0 1rem;
  color: #64748b;
  font-size: 0.84rem;
  line-height: 1.65;
}

.card-features {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 1.2rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.feature-span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.feature-span i {
  color: var(--primary);
}

/* Regional DAP/DDP service portfolio */
.regional-services-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(22, 52, 140, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 52, 140, 0.025) 1px, transparent 1px),
    #f4f7fb;
  background-size: 72px 72px, 72px 72px, auto;
}

.regional-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 80% 12%, rgba(22, 52, 140, 0.1), transparent 34%);
}

.regional-services-section > .container {
  position: relative;
  z-index: 1;
}

.regional-services-header {
  display: block;
  max-width: 860px;
  margin-bottom: clamp(2.2rem, 4vw, 3.4rem);
}

.regional-services-header .subtitle {
  color: #16348c;
  letter-spacing: 0.14em;
}

.regional-services-header .section-title {
  max-width: 760px;
  margin: 0.5rem 0 0.9rem;
  color: #0b1633;
}

.regional-services-intro {
  max-width: 760px;
  color: #53637d;
  font-size: 1.02rem;
  line-height: 1.75;
}

.regional-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.2vw, 2rem);
  align-items: stretch;
}

.regional-service-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(22, 52, 140, 0.12);
  border-top: 3px solid #b22222;
  border-radius: 24px;
  box-shadow: 0 18px 46px rgba(11, 22, 51, 0.09);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.regional-service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(22, 52, 140, 0.25);
  border-top-color: #b22222;
  box-shadow: 0 26px 58px rgba(11, 22, 51, 0.15);
}

.regional-service-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #10265f;
}

.regional-service-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.regional-service-card:hover .regional-service-media img {
  transform: scale(1.045);
}

.regional-service-media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 50, 0.04) 42%, rgba(7, 20, 50, 0.72) 100%);
}

.regional-service-badges {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.65rem;
  align-items: center;
  justify-content: space-between;
}

.regional-service-region,
.regional-service-incoterm {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
}

.regional-service-region {
  color: #fff;
  background: #b22222;
}

.regional-service-incoterm {
  color: #fff;
  background: rgba(8, 28, 77, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(8px);
}

.regional-service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: clamp(1.35rem, 2vw, 1.75rem);
}

.regional-service-body h3 {
  margin: 0 0 0.8rem;
  color: #0b1633;
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 1.8vw, 1.62rem);
  line-height: 1.2;
}

.regional-service-coverage {
  display: flex;
  min-height: 44px;
  margin: 0 0 1rem;
  gap: 0.55rem;
  align-items: flex-start;
  color: #16348c;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.55;
}

.regional-service-coverage i {
  margin-top: 0.22rem;
  color: #b22222;
}

.regional-service-description {
  margin: 0 0 1.15rem;
  color: #53637d;
  font-size: 0.92rem;
  line-height: 1.68;
}

.regional-service-stages {
  display: grid;
  margin: 0 0 1.15rem;
  padding: 1rem 0;
  gap: 0.72rem;
  list-style: none;
  border-top: 1px solid #e4e9f2;
  border-bottom: 1px solid #e4e9f2;
}

.regional-service-stages li {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  gap: 0.55rem;
  color: #34435e;
  font-size: 0.82rem;
  line-height: 1.52;
}

.regional-service-stages i {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  color: #16348c;
  background: #e8eefc;
  border-radius: 50%;
  font-size: 0.62rem;
}

.regional-service-compliance {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  margin: 0 0 1.2rem;
  padding: 0.85rem;
  gap: 0.55rem;
  color: #7f1d1d;
  background: #fff1f1;
  border: 1px solid #f2caca;
  border-radius: 14px;
  font-size: 0.76rem;
  line-height: 1.55;
}

.regional-service-compliance i {
  margin-top: 0.2rem;
  color: #b22222;
}

.regional-service-cta {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  gap: 0.65rem;
  align-items: center;
  color: #16348c;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.regional-service-cta i {
  transition: transform 0.25s ease;
}

.regional-service-cta:hover {
  color: #b22222;
}

.regional-service-cta:hover i {
  transform: translateX(4px);
}

.regional-service-cta:focus-visible {
  outline: 3px solid rgba(178, 34, 34, 0.35);
  outline-offset: 5px;
  border-radius: 4px;
}

.dap-ddp-disclosure {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  max-width: 1120px;
  margin: 1.5rem auto 0;
  padding: 1rem 1.15rem;
  gap: 0.7rem;
  color: #42516b;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 52, 140, 0.14);
  border-radius: 16px;
  font-size: 0.78rem;
  line-height: 1.6;
}

.dap-ddp-disclosure i {
  margin-top: 0.22rem;
  color: #16348c;
}

.dap-ddp-disclosure strong {
  color: #0b1633;
}

@media (max-width: 1079px) {
  .regional-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 719px) {
  .regional-services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .regional-services-header .section-title {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .regional-service-coverage {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .regional-service-card,
  .regional-service-media img,
  .regional-service-cta i {
    transition: none;
  }

  .regional-service-card:hover,
  .regional-service-card:hover .regional-service-media img,
  .regional-service-cta:hover i {
    transform: none;
  }
}

/* Logistics Advantage Section */
.logistics-advantage {
  --advantage-navy: #16348c;
  --advantage-red: #b22222;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(22, 52, 140, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 52, 140, 0.025) 1px, transparent 1px),
    #f7f8fb;
  background-size: 72px 72px, 72px 72px, auto;
}

.logistics-advantage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
  background: radial-gradient(circle at 82% 48%, rgba(22, 52, 140, 0.08), transparent 30%);
}

.logistics-advantage-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(3rem, 6vw, 6.5rem);
  align-items: center;
}

.advantage-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.advantage-grid::before,
.advantage-grid::after {
  content: "";
  position: absolute;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(31, 67, 151, 0.22), transparent);
}

.advantage-grid::before {
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
}

.advantage-grid::after {
  top: 10%;
  bottom: 10%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(31, 67, 151, 0.22), transparent);
}

.advantage-card {
  position: relative;
  min-height: 268px;
  padding: 2rem 1.75rem 1.75rem;
  overflow: hidden;
  border: 1px solid rgba(22, 52, 140, 0.12);
  border-top: 3px solid var(--advantage-navy);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(28, 49, 91, 0.07);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.advantage-card::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0;
  width: 68px;
  height: 3px;
  background: var(--advantage-red);
}

.advantage-card:hover {
  transform: translateY(-6px);
  border-color: rgba(24, 58, 145, 0.32);
  box-shadow: 0 22px 48px rgba(28, 49, 91, 0.13);
}

.advantage-card-number {
  position: absolute;
  top: 1.25rem;
  right: 1.4rem;
  color: rgba(178, 34, 34, 0.3);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.advantage-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  margin-bottom: 1.35rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(24, 58, 145, 0.12);
  border-radius: 16px;
  color: var(--advantage-navy);
  background: #eef1f8;
  font-size: 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.advantage-card h3 {
  max-width: 13rem;
  margin: 0 0 0.8rem;
  color: #0e1930;
  font-family: var(--font-heading);
  font-size: 1.12rem;
  line-height: 1.35;
}

.advantage-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #526176;
  font-size: 0.91rem;
  line-height: 1.68;
}

.advantage-copy {
  position: relative;
  max-width: 590px;
  padding: clamp(2.25rem, 4vw, 3.5rem);
  overflow: hidden;
  color: #fff;
  background: #16348c;
  border-top: 4px solid var(--advantage-red);
  border-radius: 26px;
  box-shadow: 0 24px 55px rgba(22, 52, 140, 0.2);
}

.advantage-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #f1b6b6;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.advantage-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--advantage-red);
}

.advantage-copy h2 {
  max-width: 640px;
  margin: 1.15rem 0 1.35rem;
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(2.15rem, 4vw, 3.55rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.advantage-copy > p {
  max-width: 570px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.03rem;
  line-height: 1.8;
}

.advantage-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.75rem 0 2rem;
}

.advantage-trust-item {
  display: inline-flex;
  min-height: 38px;
  padding: 0.55rem 0.8rem;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 700;
}

.advantage-trust-item i {
  color: #f1b6b6;
  font-size: 0.67rem;
}

.advantage-cta {
  min-height: 48px;
  gap: 0.75rem;
  padding-inline: 1.4rem;
  color: #fff;
  background: #b22222;
  border-color: #b22222;
  box-shadow: 0 14px 28px rgba(88, 12, 12, 0.3);
}

.advantage-cta:focus-visible {
  outline: 3px solid #f6c453;
  outline-offset: 4px;
}

@media (max-width: 1024px) {
  .logistics-advantage-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .advantage-copy {
    order: -1;
    max-width: 760px;
  }

  .advantage-card {
    min-height: 248px;
  }
}

@media (max-width: 640px) {
  .logistics-advantage::before {
    background-size: 48px 48px;
  }

  .logistics-advantage-layout {
    gap: 2rem;
  }

  .advantage-copy h2 {
    font-size: clamp(2rem, 11vw, 2.7rem);
  }

  .advantage-copy {
    padding: 2rem 1.5rem;
    border-radius: 22px;
  }

  .advantage-copy > p {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .advantage-grid::before,
  .advantage-grid::after {
    display: none;
  }

  .advantage-card {
    min-height: 0;
    padding: 1.55rem 1.35rem 1.45rem;
    border-radius: 18px;
  }

  .advantage-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.05rem;
  }

  .advantage-trust-list {
    margin-block: 1.4rem 1.65rem;
  }

  .advantage-cta {
    width: 100%;
    min-height: 50px;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .advantage-card,
  .advantage-cta {
    transition: none;
  }

  .advantage-card:hover {
    transform: none;
  }
}

/* Testimonials */
.testimonials-slider-container {
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: max-content;
}

.testimonial-card {
  width: 400px;
  padding: 2.5rem;
  border-radius: 24px;
}

.stars-rating {
  color: var(--accent);
  margin-bottom: 1.2rem;
  font-size: 0.9rem;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.reviewer-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-profile img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.reviewer-info h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

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

.slider-controls {
  display: flex;
  gap: 1rem;
}

.control-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.control-btn:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  color: var(--white);
}

/* CTA Banner */
.cta-banner {
  padding: 5rem;
  border-radius: 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.15), transparent 60%),
              var(--bg-secondary);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(234, 179, 8, 0.02) 100%);
  z-index: 1;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -0.8px;
}

.cta-banner p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.newsletter-form {
  display: flex;
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  padding: 0.4rem;
  max-width: 500px;
  margin: 0 auto;
  transition: var(--transition);
}

.newsletter-form:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.15);
}

.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: var(--text-primary);
  padding: 0 1.5rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: var(--text-muted);
}

/* Footer */
footer {
  border-top: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  padding: 5rem 0 2rem 0;
  transition: var(--transition);
}
.footer-partner-strip { padding: 1.5rem 0 1.25rem; border-top: 1px solid rgba(15,52,96,.12); border-bottom: 1px solid var(--border-color); }
.footer-partner-strip a { display: block; }
.footer-partner-strip img { display: block; width: 100%; max-width: 100%; height: auto; max-height: none; object-fit: contain; object-position: center; }
.flight-display-empty { min-height: 58vh; margin-top: 146px; background: #f6f8fc; padding: 4.5rem 0; overflow: hidden; }
.flight-poster-heading { text-align: center; margin-bottom: 2.5rem; }
.flight-poster-heading span { color: #b22222; font-size: .78rem; font-weight: 800; letter-spacing: .16em; }
.flight-poster-heading h1 { color: #0f3460; font-size: clamp(2rem,4vw,3.2rem); margin: .65rem 0; }
.flight-poster-heading p { color: #64748b; }
.flight-poster-viewport { overflow: hidden; padding: 1rem; }
.flight-poster-track { display: flex; justify-content: center; gap: 2rem; animation: flightFloat 7s ease-in-out infinite; }
.flight-poster { position: relative; flex: 0 0 min(300px,75vw); aspect-ratio: 9/16; overflow: hidden; border-radius: 28px; color: #fff; box-shadow: 0 25px 55px rgba(15,52,96,.22); transition: transform .35s ease,box-shadow .35s ease; }
.flight-poster:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 34px 70px rgba(15,52,96,.3); }
.flight-poster-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.flight-bg-one { background: linear-gradient(180deg,rgba(7,20,43,.04),rgba(7,20,43,.9)),url('image/flight-cx-fra.webp') center/cover; }
.flight-bg-two { background: linear-gradient(180deg,rgba(7,20,43,.04),rgba(7,20,43,.9)),url('image/flight-ek-dxb.webp') center/cover; }
.flight-bg-three { background: linear-gradient(180deg,rgba(7,20,43,.04),rgba(7,20,43,.9)),url('image/flight-mu-lhr.webp') center/cover; }
.flight-poster-content { position:relative; z-index:1; height:100%; display:flex; flex-direction:column; padding:1.6rem; }
.flight-status { align-self:flex-start; padding:.45rem .7rem; border-radius:999px; background:rgba(255,255,255,.18); backdrop-filter:blur(8px); font-size:.66rem; font-weight:800; letter-spacing:.08em; }
.flight-status i { display:inline-block; width:7px; height:7px; margin-right:.35rem; border-radius:50%; background:#4ade80; box-shadow:0 0 10px #4ade80; animation:flightPulse 1.5s infinite; }
.flight-number { margin-top:auto; font-size:.9rem; font-weight:700; letter-spacing:.12em; }
.flight-route { display:grid; grid-template-columns:1fr auto 1fr; align-items:center; gap:.75rem; margin:1rem 0; }
.flight-route div:last-child { text-align:right; }.flight-route b { display:block; font-size:2.35rem; line-height:1; }.flight-route span { font-size:.72rem; opacity:.75; }.flight-route i { transform:rotate(-8deg); color:#ef4444; }
.flight-time { display:flex; justify-content:space-between; padding:1rem 0; border-top:1px solid rgba(255,255,255,.25); border-bottom:1px solid rgba(255,255,255,.25); }.flight-time span { font-size:.68rem; opacity:.8; }.flight-time strong { display:block; margin-top:.25rem; font-size:1rem; color:#fff; }
.flight-poster-content footer { display:flex; justify-content:space-between; margin-top:1rem; padding:0; border:0; background:none; font-size:.68rem; opacity:.78; }
.flight-poster-content footer { justify-content:center; letter-spacing:.02em; }
.flight-brand-dot { display:inline-block; margin:0 .18rem; color:#fff; font-size:1.15rem; line-height:.5; opacity:1; vertical-align:-.08em; }
.flight-expanded-details { display:none; grid-template-columns:1fr 1fr; gap:.75rem; margin-top:1rem; padding-top:1rem; border-top:1px solid rgba(255,255,255,.28); }
.flight-expanded-details span { font-size:.68rem; color:rgba(255,255,255,.7); }
.flight-expanded-details strong { display:block; margin-top:.2rem; color:#fff; font-size:.82rem; }
.flight-expanded-details em { grid-column:1/-1; color:rgba(255,255,255,.6); font-size:.62rem; font-style:normal; text-align:center; }
@keyframes flightFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} } @keyframes flightPulse { 50%{opacity:.35} }
@media(max-width:800px){.flight-poster-track{justify-content:flex-start;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:1rem;animation:none}.flight-poster{scroll-snap-align:center}.flight-display-empty{padding:3rem 0}.flight-poster-viewport{padding-left:7vw}}
.flight-poster-viewport { min-height: 455px; transition: min-height .55s ease; }
.flight-poster-track { width: 100%; }
.flight-poster { flex: 0 0 calc((100% - 4rem) / 5); max-width: 210px; aspect-ratio: 9/16; }
.flight-poster:not(.visible-window) { display: none; }
.flight-poster-number { position:absolute; top:1rem; right:1rem; z-index:3; display:grid; place-items:center; width:34px; height:34px; border:1px solid rgba(255,255,255,.55); border-radius:50%; background:rgba(8,28,62,.42); color:#fff; font-size:.72rem; font-weight:800; backdrop-filter:blur(8px); }
.flight-poster-viewport.ring-active { min-height: 670px; overflow: visible; }
.flight-poster-viewport.ring-active .flight-poster-track { position: relative; height: 630px; animation: none; perspective: 1200px; }
.flight-poster-viewport.ring-active .flight-poster { display: block; position: absolute; left: 50%; top: 50%; width: 185px; height: 329px; transition: transform .15s linear,opacity .2s ease,box-shadow .25s ease; cursor: pointer; }
.flight-poster-viewport.ring-active .flight-poster:hover,.flight-poster-viewport.ring-active .flight-poster:focus { opacity: 1 !important; z-index: 200 !important; box-shadow: 0 38px 80px rgba(15,52,96,.45); }
.flight-poster-viewport.poster-selected { min-height:720px; overflow:visible; }
.flight-poster-viewport.poster-selected .flight-poster-track { position:relative; height:690px; animation:none; }
.flight-poster-viewport.poster-selected .flight-poster { display:none; }
.flight-poster-viewport.poster-selected .flight-poster.selected { display:block; position:absolute; left:50%; top:50%; width:360px; max-width:88vw; height:auto; aspect-ratio:9/16; transform:translate(-50%,-50%); z-index:250; box-shadow:0 45px 95px rgba(15,52,96,.42); }
.flight-poster-viewport.poster-selected .flight-poster.selected .flight-expanded-details { display:grid; }
.flight-poster-viewport.poster-selected .flight-poster.selected .flight-route b { font-size:2.7rem; }
@media(max-width:800px){.flight-poster{flex-basis:75vw;max-width:300px}.flight-poster-viewport.ring-active{min-height:455px;overflow:hidden}.flight-poster-viewport.ring-active .flight-poster-track{position:static;height:auto;display:flex;overflow-x:auto}.flight-poster-viewport.ring-active .flight-poster{position:relative;left:auto;top:auto;width:auto;height:auto;transform:none!important;opacity:1!important}}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo-col p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-col h5 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  color: var(--text-primary);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 2rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal a:hover {
  color: var(--text-primary);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  width: 90%;
  max-width: 800px;
  border-radius: 28px;
  overflow: hidden;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header-media {
  position: relative;
  height: 320px;
}

.modal-header-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background-color: var(--white);
  color: var(--black);
  transform: rotate(90deg);
}

.modal-body {
  padding: 2.5rem;
  overflow-y: auto;
  background-color: var(--bg-secondary);
}

.modal-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.8rem;
}

.modal-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.modal-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}

.modal-spec-item {
  text-align: center;
}

.modal-spec-item h5 {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.modal-spec-item p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.modal-description {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.modal-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.agent-profile {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.agent-profile img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.agent-info h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
}

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

/* Animations */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* Services Slider Section */
.services-slider-section {
  padding: 8rem 0;
  border-bottom: 1px solid var(--border-color);
}

/* Keep the standalone Logistics News page clear of the fixed header. */
body[data-page="consulting"] .services-slider-section {
  padding-top: 13rem;
}

/* Standalone industry-news page */
.news-page-section {
  min-height: 100vh;
  padding: 12rem 0 7rem;
  background: #f8fafc;
}

.news-page-header {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.news-page-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  color: #b22222;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
}

.news-page-title {
  color: #0c1e36;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 1rem;
}

@media (min-width: 641px) {
  .news-page-title {
    white-space: nowrap;
  }
}

@media (max-width: 640px) {
  .news-page-title {
    white-space: normal;
  }
}

.news-page-description {
  color: #64748b;
  font-size: 1.05rem;
}

.news-category-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.news-category-card:nth-child(1), .news-category-card:nth-child(2), .news-category-card:nth-child(3), .news-category-card:nth-child(4) { margin-top: 0; }

.news-category-card {
  min-height: 430px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(15, 52, 96, 0.07);
  transition: var(--transition);
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 230px;
  min-height: 220px;
}

.news-category-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 45px rgba(15, 52, 96, 0.14);
}

.news-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.5rem;
  min-width: 0;
}

.news-category-card .news-card-body { display: grid; grid-template-columns: minmax(0, 1fr) 230px; column-gap: 1rem; }
.news-category-card .news-directory { grid-column: 2; grid-row: 1 / span 5; align-content: center; margin: 0; padding: .35rem 0 .35rem 1.25rem; border-top: 0; border-left: 1px solid #e5e7eb; }

.news-category-name {
  color: #b22222;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.8rem;
}

.news-latest-title {
  color: #0c1e36;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.45;
  margin-bottom: 1rem;
}

.news-summary {
  color: #526176;
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 0 1rem;
}

.news-card-meta {
  color: #94a3b8;
  font-size: 0.8rem;
  margin-top: auto;
  margin-bottom: 1rem;
}

.news-read-more {
  color: #16348c;
  font-weight: 800;
  text-decoration: none;
}

.news-read-more:hover { color: #b22222; }

.news-directory {
  display: grid;
  gap: .42rem;
  margin-top: 1.35rem;
  padding-top: .9rem;
  border-top: 1px solid #e5e7eb;
  font-size: .78rem;
}
.news-directory span { color: #94a3b8; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.news-directory a { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: start; gap: .65rem; padding: .55rem 0; border-bottom: 1px solid #edf1f6; color: #475569; text-decoration: none; line-height: 1.35; }
.news-directory a:last-child { border-bottom: 0; }
.news-directory strong { display: -webkit-box; overflow: hidden; color: #26364e; font-size: .78rem; font-weight: 650; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.news-directory time { padding-top: .08rem; color: #94a3b8; font-size: .66rem; font-weight: 700; white-space: nowrap; }
.news-directory a:hover { color: #b22222; }
.news-directory a:hover strong { color: #b22222; }

.news-loading {
  color: #94a3b8;
  font-weight: 500;
}
.news-reader-modal { position:fixed; inset:0; z-index:5000; display:none; align-items:center; justify-content:center; padding:2rem; background:rgba(3,10,25,.68); backdrop-filter:blur(6px); }
.news-reader-modal.show { display:flex; }
.news-reader-panel { position:relative; width:min(820px,94vw); max-height:86vh; overflow-y:auto; padding:3rem; border-radius:24px; background:#fff; box-shadow:0 35px 90px rgba(0,0,0,.3); }
.news-reader-close { position:absolute; top:1.2rem; right:1.2rem; width:42px; height:42px; border:0; border-radius:50%; background:#f1f5f9; color:#0f3460; cursor:pointer; }
.news-reader-category { color:#b22222; font-size:.78rem; font-weight:800; letter-spacing:.12em; }
.news-reader-panel h2 { margin:.8rem 3rem .75rem 0; color:#0c1e36; font-size:clamp(1.5rem,3vw,2.35rem); line-height:1.25; }
.news-reader-meta { padding-bottom:1.25rem; border-bottom:1px solid #e5e7eb; color:#94a3b8; font-size:.84rem; }
.news-reader-content { padding-top:1.5rem; color:#475569; font-size:1rem; line-height:1.9; white-space:pre-line; }
@media(max-width:600px){.news-reader-modal{padding:.75rem}.news-reader-panel{padding:2.5rem 1.35rem 1.5rem;border-radius:18px}.news-reader-panel h2{margin-right:1rem}}
.news-detail-page { margin-top:146px; padding:5rem 0 7rem; background:#f8fafc; }
.news-detail-article { max-width:1180px; }
.news-detail-back { display:inline-flex; align-items:center; gap:.5rem; margin-bottom:2.5rem; color:#16348c; font-weight:700; text-decoration:none; }
.news-detail-category { color:#b22222; font-size:.82rem; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.news-detail-article h1 { max-width:100%; margin:.8rem 0 1rem; color:#0c1e36; font-size:clamp(1.75rem,3.2vw,2.45rem); line-height:1.18; display:-webkit-box; -webkit-box-orient:vertical; -webkit-line-clamp:2; overflow:hidden; }
.news-detail-meta { color:#94a3b8; margin-bottom:2rem; }
.news-detail-image { display:block; width:100%; max-height:620px; object-fit:cover; border-radius:24px; box-shadow:0 20px 55px rgba(15,52,96,.14); }
.news-detail-content { margin-top:2.5rem; padding:2.2rem; border-radius:20px; background:#fff; color:#475569; font-size:1.08rem; line-height:2; box-shadow:0 12px 35px rgba(15,52,96,.07); white-space:pre-line; }
@media(max-width:600px){.news-detail-page{padding:3rem 0 4rem}.news-detail-content{padding:1.35rem;font-size:1rem}.news-detail-image{border-radius:16px}}

.kh-query-result {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid #cbd9ff;
  border-radius: 14px;
  background: #f3f6ff;
  color: #173784;
  line-height: 1.7;
}
.rate-result-heading { margin-bottom: .55rem; color: #132e77; }
.rate-details-note { margin: .45rem 0 .8rem; color: #64748b; font-size: .78rem; }
.rate-result-table-wrap { overflow-x: auto; max-height: 300px; border: 1px solid #dbe5ff; border-radius: 10px; background: #fff; }
.rate-result-table { width: 100%; min-width: 760px; border-collapse: collapse; font-size: .78rem; color: #334155; }
.rate-result-table th { background: #f1f5fb; color: #50617d; font-weight: 700; text-align: left; padding: .65rem .55rem; white-space: nowrap; }
.rate-result-table td { border-top: 1px solid #e5eaf2; padding: .62rem .55rem; white-space: nowrap; }
.kh-query-result-list { max-height: 360px; overflow-y: auto; margin-top: .65rem; border-top: 1px solid #dbe5ff; }
.kh-query-table-wrap { overflow-x: auto; max-height: 380px; margin-top: .65rem; border: 1px solid #e2e8f0; border-radius: 10px; background: #fff; }
.kh-query-table-wrap .kh-latest-table { min-width: 950px; margin: 0; }
.kh-query-rate { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px solid #dbe5ff; color: #334155; font-size: .86rem; }
.kh-query-rate span:last-child { color: #173784; white-space: nowrap; }
@media (max-width: 700px) { .kh-query-rate { flex-direction: column; gap: .2rem; } .kh-query-rate span:last-child { white-space: normal; } }

@media (max-width: 1024px) {
  .news-category-card { grid-template-columns: 220px minmax(0, 1fr) 190px; }
}

@media (max-width: 600px) {
  .news-page-section { padding: 9rem 0 4rem; }
  .news-category-grid { grid-template-columns: 1fr; }
  .news-category-card { display: flex; min-height: 390px; }
  .news-card-image { height: 170px; }
  .news-category-card .news-card-body { display: flex; }
  .news-category-card .news-directory { margin: .3rem 0 0; padding: 1rem 0 .25rem; border-left: 0; border-top: 1px solid #e5e7eb; }
  .news-directory a { padding: .65rem 0; }
  .news-category-card { min-height: 390px; }
  .news-category-card:nth-child(1), .news-category-card:nth-child(3) { margin-top: 0; }
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3.5rem;
}

.services-title-wrapper {
  text-align: center;
  flex: 1;
}

.services-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #b22222;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.services-subtitle .sparkle {
  font-size: 0.8rem;
  color: var(--accent);
}

.services-main-title {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.8px;
}

body.light-theme .services-main-title {
  color: #0c1e36;
}

/* Legacy home-page service slider. The Our Services page uses the
   cargo-capabilities classes below, so both layouts can coexist. */
.services-control-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  outline: none;
}

.services-control-btn.slide-prev {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.services-control-btn.slide-prev:hover {
  border-color: var(--border-hover);
  background-color: rgba(255, 255, 255, 0.05);
  transform: scale(1.05);
}

body.light-theme .services-control-btn.slide-prev:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.services-control-btn.slide-next {
  background: linear-gradient(135deg, #b22222 0%, #8b0000 100%);
  border: none;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(178, 34, 34, 0.25);
}

.services-control-btn.slide-next:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(178, 34, 34, 0.4);
  filter: brightness(1.1);
}

.services-slider-container {
  overflow: hidden;
  width: 100%;
  padding: 1.5rem 0.5rem;
}

.services-slider-track {
  display: flex;
  gap: 2rem;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  width: max-content;
}

.service-slide-card {
  width: 290px;
  padding: 2.8rem 2rem;
  text-align: center;
  border-radius: 24px;
  transition: var(--transition);
}

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

.service-image-container {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 2.2rem;
}

.service-image-container img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

body.light-theme .service-image-container img {
  border-color: #ffffff;
}

.service-slide-card:hover .service-image-container img {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.service-icon-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(30%);
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: #b22222;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--shadow-sm);
  z-index: 3;
  transition: var(--transition);
}

body.light-theme .service-icon-badge {
  background-color: #ffffff;
}

.service-slide-card:hover .service-icon-badge {
  transform: translateX(-50%) translateY(30%) scale(1.1);
  background-color: #b22222;
  color: #ffffff;
  border-color: #b22222;
  box-shadow: 0 4px 12px rgba(178, 34, 34, 0.3);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-top: 1.2rem;
}

body.light-theme .service-card-title {
  color: #0c1e36;
}

/* Home-page airport cargo network */
.airport-cargo-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(15, 52, 96, 0.06), transparent 34%),
    linear-gradient(180deg, #f8fafc 0%, #f2f6fb 100%);
}

.airport-cargo-section .services-header {
  justify-content: center;
  margin-bottom: 3rem;
}

.airport-cargo-intro {
  max-width: 820px;
  margin: 1rem auto 0;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.75;
}

.airport-cargo-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: stretch;
  padding: 1.2rem 0.75rem 2rem;
}

.airport-cargo-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(15, 52, 96, 0.11);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 52, 96, 0.09);
  transition: opacity 0.65s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  transition-delay: calc(var(--reveal-order, 0) * 70ms);
  transform-origin: center;
}

.airport-cargo-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, #8b0000, #d93434);
  transform: scaleX(0.35);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.airport-cargo-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0f3460;
}

.airport-cargo-media::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(4, 18, 38, 0.88));
  pointer-events: none;
}

.airport-cargo-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

.airport-name-overlay {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.airport-name-overlay span,
.airport-name-overlay small {
  display: block;
}

.airport-name-overlay span {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.airport-name-overlay small {
  margin-top: 0.2rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.92;
}

.airport-cargo-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.35rem 1.25rem 1.55rem;
}

.airport-airline {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  align-self: flex-start;
  margin-bottom: 0.8rem;
  color: #a91616;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.airport-cargo-content h3 {
  min-height: 2.7em;
  margin: 0 0 0.8rem;
  color: #0c1e36;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
}

.airport-cargo-content p {
  flex: 1;
  margin: 0 0 1.1rem;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.65;
}

.airport-cargo-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.airport-cargo-tags span {
  padding: 0.38rem 0.6rem;
  border: 1px solid rgba(15, 52, 96, 0.11);
  border-radius: 999px;
  color: #0f3460;
  background: #f3f6fb;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
}

@media (hover: hover) and (pointer: fine) {
  .airport-cargo-card.reveal.active:hover {
    z-index: 10;
    transform: scale(1.04) translateY(-4px);
    border-color: rgba(178, 34, 34, 0.3);
    box-shadow: 0 28px 58px rgba(15, 52, 96, 0.22);
  }

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

  .airport-cargo-card:hover .airport-cargo-media img {
    transform: scale(1.08);
    filter: saturate(1.06) contrast(1.03);
  }
}

@media (max-width: 1024px) {
  .airport-cargo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .airport-cargo-content h3 {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .airport-cargo-section {
    padding: 5.5rem 0;
  }

  .airport-cargo-section .services-main-title {
    font-size: clamp(2rem, 10vw, 2.5rem);
    line-height: 1.15;
  }

  .airport-cargo-grid {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }

  .airport-cargo-intro,
  .airport-cargo-content p {
    font-size: 1rem;
  }

  .airport-cargo-content {
    padding: 1.4rem 1.3rem 1.65rem;
  }
}

.cargo-capabilities-section {
  background:
    radial-gradient(circle at 8% 15%, rgba(22, 93, 255, 0.06), transparent 28%),
    linear-gradient(180deg, #f8fafc 0%, #f2f6fb 100%);
}

.cargo-capabilities-section .services-header {
  justify-content: center;
  margin-bottom: 3rem;
}

.cargo-capabilities-intro {
  max-width: 760px;
  margin: 1rem auto 0;
  color: #64748b;
  font-size: 1rem;
  line-height: 1.75;
}

.cargo-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.cargo-capability-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(15, 52, 96, 0.11);
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 52, 96, 0.08);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  transition-delay: calc(var(--reveal-order, 0) * 70ms);
}

.cargo-capability-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, #b22222, #e33b3b);
  transform: scaleX(0.25);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.cargo-capability-card.reveal.active:hover {
  transform: translateY(-8px);
  border-color: rgba(178, 34, 34, 0.28);
  box-shadow: 0 22px 48px rgba(15, 52, 96, 0.16);
}

.cargo-capability-card:hover::after {
  transform: scaleX(1);
}

.cargo-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #0f3460;
}

.cargo-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(5, 20, 42, 0.76) 100%);
  pointer-events: none;
}

.cargo-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1), filter 0.35s ease;
}

.cargo-capability-card:hover .cargo-card-media img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.02);
}

.cargo-card-icon {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(178, 34, 34, 0.92);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.cargo-card-content {
  flex: 1;
  padding: 1.45rem 1.4rem 1.65rem;
}

.cargo-card-content h3 {
  min-height: 2.75em;
  margin: 0 0 0.75rem;
  color: #0c1e36;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
}

.cargo-card-content p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .cargo-capabilities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cargo-card-content h3 {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .cargo-capabilities-section {
    padding: 5.5rem 0;
  }

  .cargo-capabilities-section .services-main-title {
    font-size: clamp(2rem, 10vw, 2.5rem);
    line-height: 1.15;
  }

  .cargo-capabilities-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .cargo-capabilities-intro,
  .cargo-card-content p {
    font-size: 1rem;
  }

  .cargo-card-content {
    padding: 1.35rem 1.25rem 1.55rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .airport-cargo-card,
  .airport-cargo-media img,
  .airport-cargo-card::after,
  .cargo-capability-card,
  .cargo-card-media img,
  .cargo-capability-card::after {
    transition: none !important;
    transition-delay: 0s !important;
  }

  .airport-cargo-card.reveal,
  .airport-cargo-card.reveal.active,
  .airport-cargo-card.reveal.active:hover,
  .airport-cargo-card:hover .airport-cargo-media img,
  .cargo-capability-card.reveal,
  .cargo-capability-card.reveal.active,
  .cargo-capability-card.reveal.active:hover,
  .cargo-capability-card:hover .cargo-card-media img {
    opacity: 1;
    transform: none;
  }
}

/* Fixed Floating Contact Widget on the Left Edge */
.floating-contact-widget {
  position: fixed;
  left: 20px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 9999;
}

.widget-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-size: 1.15rem;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.widget-btn.email {
  background-color: #b22222;
}

.widget-btn.whatsapp {
  background-color: #25d366;
}

.widget-btn.phone {
  background-color: #8b0000;
}

.widget-btn:hover {
  transform: scale(1.1) translateX(4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
  filter: brightness(1.1);
}

/* Responsive Updates for Services */
@media (max-width: 768px) {
  body[data-page="consulting"] .services-slider-section {
    padding-top: 10rem;
  }

  .services-header {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }
  
  .services-main-title {
    font-size: 2.2rem;
  }
  
  .services-control-btn {
    display: none; /* Hide slider arrows on mobile, fallback scroll */
  }
  
  .services-slider-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2rem;
  }
  
  .floating-contact-widget {
    left: 10px;
    bottom: 20px;
  }
  
  .widget-btn {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* Why Choose Us & Request Viewing section */
.why-choose-us-section {
  background-color: #040711; /* Solid dark blue-black background from mockup */
  padding: 8rem 0;
  border-top: 1px solid var(--border-color);
}

/* Standalone contact page: clear the fixed two-level navigation. */
body[data-page="contact"] .why-choose-us-section {
  padding-top: 14rem;
}

.why-choose-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.why-choose-left {
  display: flex;
  flex-direction: column;
}

.why-choose-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.8rem;
  line-height: 1.2;
  letter-spacing: -1px;
}

.why-choose-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.why-highlights-row {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2.2rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #b22222;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.highlight-item span {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
}

.why-divider {
  border: none;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 2.5rem;
}

/* Right column request form card */
.request-form-card {
  background: rgba(14, 25, 47, 0.75); /* Sleek slate-blue card frame */
  backdrop-filter: var(--glass-backdrop);
  -webkit-backdrop-filter: var(--glass-backdrop);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.form-card-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.form-grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-bottom: 1.2rem;
}

.form-input-group input,
.select-custom-form select,
.form-textarea-group textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
  outline: none;
  transition: var(--transition);
}

.form-input-group input::placeholder,
.form-textarea-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.form-input-group input:focus,
.select-custom-form select:focus,
.form-textarea-group textarea:focus {
  border-color: #b22222;
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 12px rgba(22, 52, 140, 0.15);
}

.select-custom-form {
  position: relative;
}

.select-custom-form select {
  appearance: none;
  cursor: pointer;
}

.select-custom-form::after {
  content: '▼';
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.form-textarea-group {
  margin-bottom: 2rem;
}

.form-textarea-group textarea {
  resize: vertical;
}

.btn-submit-request {
  background: linear-gradient(135deg, #b22222 0%, #8b0000 100%) !important;
  color: #ffffff !important;
  border: none;
  border-radius: 50px;
  padding: 0.9rem 2.2rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(178, 34, 34, 0.25);
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit-request:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(178, 34, 34, 0.45);
  filter: brightness(1.1);
}

/* Slanted orange decorative triangle in bottom-right corner */
.decor-triangle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background-color: #b22222;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  pointer-events: none;
}

/* Responsive updates for Why Choose Us form */
@media (max-width: 1024px) {
  .why-choose-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

@media (max-width: 580px) {
  body[data-page="contact"] .why-choose-us-section {
    padding-top: 11rem;
  }

  .form-grid-layout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .request-form-card {
    padding: 2.2rem 1.5rem;
  }
}

/* Frequently Asked Questions Section */
.faq-section {
  padding: 8rem 0;
  border-bottom: 1px solid var(--border-color);
}

.faq-card-wrapper {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.faq-card-header {
  background-color: #0c1e36; /* Dark navy blue from image header */
  padding: 3.5rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

body.light-theme .faq-card-header {
  background-color: #0f1c3f;
}

.faq-main-title {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.8px;
}

.faq-subtitle {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.faq-card-body {
  background-color: rgba(16, 20, 38, 0.4);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 4rem;
  padding: 3rem 4rem;
}

body.light-theme .faq-card-body {
  background-color: #ffffff;
}

.faq-column {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding: 0.2rem 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  padding: 1.4rem 0.5rem;
  transition: var(--transition);
  gap: 1.5rem;
}

body.light-theme .faq-question {
  color: #0f172a;
}

.faq-question:hover {
  color: #b22222;
}

body.light-theme .faq-question:hover {
  color: #b22222;
}

.faq-toggle-icon {
  color: #b22222;
  font-size: 1.3rem;
  font-weight: 700;
  transition: var(--transition);
  user-select: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
  padding: 0 0.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

/* Expanded active state class */
.faq-item.active .faq-answer {
  max-height: 180px; /* Expands smoothly */
}

.faq-item.active .faq-question {
  color: #b22222;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg); /* turns + into x */
}

.faq-card-footer {
  background-color: rgba(255, 255, 255, 0.02);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.2rem 4rem;
  border-top: 1px solid var(--border-color);
}

body.light-theme .faq-card-footer {
  background-color: #fffbf5; /* Soft cream footer from image */
}

.faq-footer-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

body.light-theme .faq-footer-text {
  color: #475569;
}

.faq-footer-text span {
  color: #b22222;
  font-weight: 700;
}

/* Responsive updates for FAQ */
@media (max-width: 1024px) {
  .faq-card-body {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 2rem;
  }
  
  .faq-card-header {
    padding: 2.5rem 2rem;
  }
  
  .faq-card-footer {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    padding: 2.2rem 2rem;
  }
}

/* Responsive Queries */
@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }
  
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-media {
    height: 480px;
  }
  
  .why-us-wrapper {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .header-contact-info,
  .bottom-header-bar {
    display: none;
  }

  .hero {
    padding-top: 130px;
  }
}

@media (max-width: 768px) {
  .navbar {
    height: 70px;
  }
  
  .logo img {
    height: 42px;
  }
  
  .nav-links {
    width: 280px;
    right: -280px;
    height: 100vh;
    top: 0;
    padding: 6rem 2.5rem;
    border-left: 1px solid var(--border-color);
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-nav-toggle {
    display: block;
  }
  
  .nav-actions {
    margin-right: 0.5rem;
  }

  .hero {
    padding-top: 110px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .search-form {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-group {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
    padding-right: 0;
    padding-bottom: 1rem;
  }
  
  .form-group:nth-child(3) {
    border-bottom: none;
    padding-bottom: 0;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-banner {
    padding: 3rem 1.5rem;
  }
  
  .modal-specs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .modal-contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero-stats {
    flex-wrap: wrap;
  }
  
  .testimonial-card {
    width: 320px;
    padding: 1.8rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
/* Global time and weather header */
.quote-btn-group,
.mobile-nav-toggle {
  display: none !important;
}

.world-weather-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 10px 16px;
  color: #fff;
  background: #b22222;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(178, 34, 34, 0.22);
}

.world-weather-label b { color: #fff; font-size: 1rem; line-height: 1; }
.world-weather-label-compact { display: none; }

.world-weather-label i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b22222;
  box-shadow: 0 0 0 4px rgba(178, 34, 34, 0.12);
}

.world-weather-strip {
  height: 66px;
  background: #fff;
  border-top: 1px solid rgba(22, 52, 140, 0.09);
  border-bottom: 1px solid rgba(22, 52, 140, 0.12);
}

.world-weather-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: 100%;
  max-width: 1280px;
  height: 100%;
  padding: 0;
}

.world-weather-item {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  grid-template-areas: "flag region time" "flag city condition";
  align-content: center;
  gap: 0.05rem 0.5rem;
  min-width: 0;
  padding: 0.55rem 0.9rem;
  border-right: 1px solid rgba(22, 52, 140, 0.1);
  background: #fff;
}

.world-weather-flag { grid-area: flag; display: grid; width: 28px; height: 28px; align-self: center; place-items: center; border-radius: 50%; background: #eef1f8; font-size: 1.1rem; box-shadow: inset 0 0 0 1px rgba(22, 52, 140, 0.08); }

.world-weather-item:first-child { border-left: 1px solid rgba(22, 52, 140, 0.1); }
.world-weather-region { grid-area: region; overflow: hidden; color: #b22222; font-size: 0.58rem; font-weight: 800; line-height: 1; letter-spacing: 0.06em; text-overflow: ellipsis; white-space: nowrap; }
.world-weather-city { grid-area: city; overflow: hidden; color: #14213d; font-size: 0.78rem; font-weight: 700; line-height: 1; text-overflow: ellipsis; white-space: nowrap; }
.world-weather-item time { grid-area: time; color: #16348c; font-family: var(--font-heading); font-size: 1rem; font-weight: 800; line-height: 1; }
.world-weather-condition { grid-area: condition; display: inline-flex; justify-content: flex-end; gap: 0.25rem; color: #53627a; font-size: 0.76rem; font-weight: 700; line-height: 1; }

body > header + * {
  margin-top: 66px;
}

@media (max-width: 1199px) {
  .world-weather-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .world-weather-track::-webkit-scrollbar { display: none; }
  .world-weather-item { flex: 0 0 25%; scroll-snap-align: start; }
}

@media (max-width: 900px) {
  body[data-page="services"] > .company-overview-section { margin-top: 192px; }
  .world-weather-label { gap: 0.35rem; padding: 8px 8px; font-size: 11px; letter-spacing: 0.07em; }
  .world-weather-label-full { display: none; }
  .world-weather-label-compact { display: inline; }
  .world-weather-strip { height: 64px; }
  .world-weather-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .world-weather-track::-webkit-scrollbar { display: none; }
  body > header + * { margin-top: 64px; }
  .bottom-header-bar { display: flex !important; overflow: hidden; }
  .main-menu-links { display: flex !important; justify-content: flex-start; overflow-x: auto; overscroll-behavior-x: contain; scrollbar-width: none; }
  .main-menu-links::-webkit-scrollbar { display: none; }
  .main-menu-links li { flex: 0 0 auto; }
  .main-menu-links .menu-item { white-space: nowrap; }
  .nav-links { display: none !important; }
}

@media (max-width: 767px) {
  .world-weather-item { flex: 0 0 50%; }
}
