/* =========================================================
   TRIPERO TOURS — MASTER STYLESHEET
   Premium Modern Travel Marketplace & Agency UI
   ========================================================= */

:root {
  --color-primary: #0F4C81;
  --color-primary-dark: #0A3258;
  --color-secondary: #2F80ED;
  --color-sky: #56CCF2;
  --color-accent: #FF5722;
  --color-accent-gold: #FFD166;
  --color-bg: #FFFFFF;
  --color-bg-soft: #F8FBFF;
  --color-bg-alt: #F0F7FF;
  --color-card: #FFFFFF;
  --color-text: #0F1928;
  --color-text-body: #334155;
  --color-text-muted: #64748B;
  --color-border: #E2E8F0;
  --color-border-light: rgba(47, 128, 237, 0.12);
  --color-success: #10B981;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(15, 76, 129, 0.04);
  --shadow-md: 0 10px 30px rgba(15, 76, 129, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 76, 129, 0.12);
  --shadow-hover: 0 25px 60px rgba(47, 128, 237, 0.16);

  --font-heading: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Poppins', sans-serif;
  --font-editorial: 'Playfair Display', Georgia, serif;

  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

/* =========================================================
   GLOBAL RESET & UTILITIES
   ========================================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-body);
  background: var(--color-bg);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

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

::selection {
  background: var(--color-secondary);
  color: #FFFFFF;
}

:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 3px;
}

.text-gradient-blue {
  background: linear-gradient(135deg, #2F80ED 0%, #0F4C81 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.section-padding {
  padding: 100px 0;
  position: relative;
}

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

.bg-white {
  background: #FFFFFF;
}

/* Section Headings */
.section-heading {
  margin-bottom: 54px;
  position: relative;
}

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(47, 128, 237, 0.08);
  color: #2F80ED;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(47, 128, 237, 0.18);
}

.eyebrow-badge.badge-blue {
  background: #E8F4FD;
  color: #0F4C81;
  border-color: rgba(15, 76, 129, 0.2);
}

.section-main-title {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text);
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.6;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.tripero-navbar {
  padding: 18px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: transparent;
  z-index: 1000;
}

.tripero-navbar.scrolled {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 12px 0;
  box-shadow: 0 4px 25px rgba(15, 76, 129, 0.08);
  border-bottom: 1px solid rgba(47, 128, 237, 0.1);
}

.tripero-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 2px 0;
}

.brand-logo {
  height: 42px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: brightness(0) invert(1); /* In transparent top navbar, white logo for maximum contrast */
}

.tripero-navbar.scrolled .brand-logo {
  filter: none; /* On white scrolled navbar, natural black/gray logo */
}

@media (max-width: 991px) {
  .tripero-navbar:not(.scrolled) .brand-logo {
    filter: brightness(0) invert(1);
  }
}

.footer-brand-logo {
  height: 48px;
  width: auto;
  max-width: 185px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.footer-brand-logo:hover,
.brand-logo:hover {
  transform: scale(1.03);
}

.tripero-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #FFFFFF !important;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
}

.tripero-navbar.scrolled .tripero-logo {
  color: var(--color-primary) !important;
}

.logo-dot {
  color: #56CCF2;
  font-size: 32px;
  line-height: 0;
  margin-left: 2px;
}

.tripero-navbar.scrolled .logo-dot {
  color: var(--color-secondary);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 14.5px;
  font-weight: 600;
  padding: 8px 16px !important;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition-fast);
}

.tripero-navbar.scrolled .navbar-nav .nav-link {
  color: var(--color-text-body) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #FFFFFF !important;
}

.tripero-navbar.scrolled .navbar-nav .nav-link:hover,
.tripero-navbar.scrolled .navbar-nav .nav-link.active {
  color: var(--color-secondary) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: #56CCF2;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  transform-origin: center;
}

.tripero-navbar.scrolled .navbar-nav .nav-link::after {
  background: var(--color-secondary);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.btn-quote {
  background: linear-gradient(135deg, #2F80ED 0%, #0F4C81 100%);
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 15px rgba(47, 128, 237, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.btn-quote:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(47, 128, 237, 0.45);
  background: linear-gradient(135deg, #0F4C81 0%, #2F80ED 100%);
}

.navbar-toggler {
  border: none;
  padding: 8px;
  color: #FFFFFF;
}

.tripero-navbar.scrolled .navbar-toggler {
  color: var(--color-primary);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.tripero-navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2815, 76, 129, 0.95%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* =========================================================
   CINEMATIC HERO EXPERIENCE
   ========================================================= */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 0 90px;
  overflow: hidden;
  background: #08111E;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1), transform 9s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.hero-img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Living Global Horizon Storytelling Canvas */
.hero-journey-canvas {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.journey-light-rays {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 25%, rgba(255, 209, 102, 0.14) 0%, rgba(47, 128, 237, 0.08) 45%, transparent 70%);
}

.journey-map-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.92;
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.journey-world-svg {
  width: 100%;
  height: 100%;
}

.journey-arc {
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 6 8;
  animation: arcFlightDash 25s linear infinite;
}

.journey-arc.arc-primary {
  stroke: url('#arcGradPrimary');
  stroke-width: 1.8;
}

.journey-arc.arc-secondary {
  stroke: url('#arcGradSecondary');
  stroke-width: 1.4;
}

.journey-arc.arc-tertiary {
  stroke: rgba(255, 255, 255, 0.25);
  stroke-width: 1.2;
}

@keyframes arcFlightDash {
  to { stroke-dashoffset: -300; }
}

/* Dynamic Geolocation Beacons */
.journey-geo-beacon {
  transition: opacity 0.5s ease;
  opacity: 0.35;
}

.journey-geo-beacon.active {
  opacity: 1;
}

.beacon-pulse-ring {
  fill: none;
  stroke: #56CCF2;
  stroke-width: 1.2;
  animation: beaconPulse 2.8s cubic-bezier(0.25, 1, 0.5, 1) infinite;
  transform-origin: center;
}

.beacon-halo {
  fill: rgba(47, 128, 237, 0.3);
}

.beacon-core {
  fill: #FFD166;
  filter: drop-shadow(0 0 5px #FFD166);
}

@keyframes beaconPulse {
  0% { r: 6; opacity: 0.9; stroke-width: 2; }
  100% { r: 28; opacity: 0; stroke-width: 0.5; }
}

/* Celestial Compass */
.celestial-compass {
  position: absolute;
  top: 18%;
  right: 7%;
  width: 90px;
  height: 90px;
  opacity: 0.75;
  animation: slowCompassRotate 90s linear infinite;
}

@keyframes slowCompassRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.compass-label {
  font-size: 8px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.15em;
  text-align: center;
  margin-top: 3px;
}

/* Floating Hot Air Balloon */
.floating-hot-air-balloon {
  position: absolute;
  top: 38%;
  left: 9%;
  width: 44px;
  height: 60px;
  opacity: 0.85;
  animation: floatBalloon 16s ease-in-out infinite;
}

@keyframes floatBalloon {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-24px) rotate(2deg); }
}

/* Stratospheric Jet with Dual Contrails */
.stratosphere-jet {
  position: absolute;
  top: 24%;
  right: 18%;
  width: 36px;
  height: 28px;
  animation: jetTraverse 32s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes jetTraverse {
  0% { transform: translate(-300px, 120px) rotate(-15deg); opacity: 0; }
  15% { opacity: 0.95; }
  85% { opacity: 0.95; }
  100% { transform: translate(350px, -140px) rotate(-15deg); opacity: 0; }
}

.jet-contrail {
  position: absolute;
  top: 14px;
  left: -90px;
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.7) 100%);
  filter: blur(0.6px);
}

.contrail-right {
  top: 18px;
  left: -85px;
  width: 85px;
}

.migratory-flock {
  position: absolute;
  top: 55%;
  left: 16%;
  width: 80px;
  height: 30px;
  opacity: 0.6;
  animation: flockFloat 22s ease-in-out infinite;
}

@keyframes flockFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -15px); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 30, 0.45) 0%, rgba(8, 17, 30, 0.68) 55%, rgba(8, 17, 30, 0.88) 100%);
  z-index: 4;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 15px;
}

.hero-eyebrow-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 7px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 22px;
}

.hero-radar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #56CCF2;
  box-shadow: 0 0 10px #56CCF2;
  animation: radarBlink 1.6s ease-in-out infinite;
}

@keyframes radarBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.7); }
}

.hero-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2.5rem, 5.8vw, 4.25rem);
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero-title-highlight {
  background: linear-gradient(135deg, #56CCF2 0%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 auto 34px;
  font-weight: 400;
  line-height: 1.65;
}

.hero-action-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: linear-gradient(135deg, #2F80ED 0%, #0F4C81 100%);
  color: #FFFFFF !important;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(47, 128, 237, 0.45);
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition-smooth);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(47, 128, 237, 0.6);
  background: linear-gradient(135deg, #0F4C81 0%, #2F80ED 100%);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #FFFFFF !important;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  transition: var(--transition-smooth);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
  border-color: #FFFFFF;
}

/* Telemetry Card */
.hero-telemetry-card {
  background: rgba(15, 25, 40, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 18px 24px;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.telemetry-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.telemetry-live-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #56CCF2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.telemetry-pulse {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #56CCF2;
  box-shadow: 0 0 8px #56CCF2;
}

.telemetry-progress-rail {
  flex: 1;
  max-width: 140px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  overflow: hidden;
}

.telemetry-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #56CCF2, #2F80ED);
  border-radius: 3px;
  transition: width 0.1s linear;
}

.telemetry-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.telemetry-text {
  flex: 1;
  min-width: 200px;
}

.telemetry-dest {
  font-size: 18px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 2px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.telemetry-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.telemetry-switcher {
  display: inline-flex;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 3px;
}

.telemetry-tab {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-fast);
}

.telemetry-tab.active {
  background: #2F80ED;
  color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(47, 128, 237, 0.5);
}

.tab-index {
  font-size: 10px;
  opacity: 0.7;
}

/* =========================================================
   SECTION 1: TRAVEL SERVICES STRIP
   ========================================================= */
.services-strip-section {
  padding: 60px 0 70px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5FAFF 100%);
  border-bottom: 1px solid var(--color-border-light);
}

.services-strip-header {
  margin-bottom: 40px;
}

.service-strip-card {
  background: #FFFFFF;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 26px 18px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
}

.service-strip-card:hover {
  border-color: var(--color-secondary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.service-strip-card.highlight-service {
  background: linear-gradient(180deg, #FFFFFF 0%, #EEF7FF 100%);
  border-color: rgba(47, 128, 237, 0.35);
  box-shadow: 0 8px 24px rgba(47, 128, 237, 0.12);
}

.service-strip-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  background: linear-gradient(135deg, #FF5722 0%, #FF9F43 100%);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 8px rgba(255, 87, 34, 0.35);
}

.service-strip-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: #F0F7FF;
  color: var(--color-secondary);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: var(--transition-smooth);
}

.service-strip-card:hover .service-strip-icon {
  background: var(--color-secondary);
  color: #FFFFFF;
  transform: scale(1.08) rotate(4deg);
}

.service-strip-title {
  font-size: 15.5px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--color-text);
}

.service-strip-desc {
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.45;
  margin-bottom: 16px;
  flex: 1;
}

.service-strip-link {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: var(--transition-fast);
}

.service-strip-link:hover {
  color: var(--color-primary);
  transform: translateX(3px);
}

/* =========================================================
   SECTION 2: POPULAR DESTINATIONS
   ========================================================= */
.destinations-premium-section {
  background: #FFFFFF;
}

.dest-filter-wrapper {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  background: #F0F7FF;
  padding: 6px;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-light);
  gap: 6px;
  margin-top: 24px;
}

.dest-filter-btn {
  border: none;
  background: transparent;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dest-filter-btn.active,
.dest-filter-btn:hover {
  background: #FFFFFF;
  color: var(--color-primary);
  box-shadow: var(--shadow-sm);
}

.dest-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.dest-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 128, 237, 0.4);
  box-shadow: var(--shadow-hover);
}

.dest-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.dest-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.dest-card:hover .dest-card-img img {
  transform: scale(1.09);
}

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(15, 25, 40, 0.5) 100%);
}

.dest-card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.dest-duration {
  background: rgba(15, 25, 40, 0.75);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.dest-rating {
  background: #FFD166;
  color: #0F1928;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 9px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.dest-card-body {
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.dest-state-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-secondary);
  display: block;
  margin-bottom: 2px;
}

.dest-card-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 12px;
}

.dest-card-price {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.price-from {
  font-size: 11px;
  color: var(--color-text-muted);
}

.price-val {
  font-size: 19px;
  font-weight: 800;
  color: var(--color-primary);
}

.btn-dest-book {
  width: 100%;
  background: #F0F7FF;
  border: 1.5px solid var(--color-border-light);
  color: var(--color-secondary) !important;
  font-size: 13px;
  font-weight: 700;
  padding: 9px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.btn-dest-book:hover {
  background: var(--color-secondary);
  color: #FFFFFF !important;
  border-color: var(--color-secondary);
}

/* =========================================================
   SECTION 3: FEATURED DESTINATION EDITORIAL SPOTLIGHT
   ========================================================= */
.editorial-spotlight-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, #F5FAFF 100%);
}

.editorial-card {
  background: #FFFFFF;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--color-border-light);
  box-shadow: var(--shadow-lg);
}

.editorial-img-col {
  position: relative;
}

.editorial-img-wrap {
  position: relative;
  height: 480px;
  overflow: hidden;
}

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

.editorial-card:hover .editorial-img-wrap img {
  transform: scale(1.05);
}

.editorial-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(255, 255, 255, 0.4) 100%);
}

.editorial-badge-pill {
  position: absolute;
  top: 24px;
  left: 24px;
  background: #0F4C81;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 15px rgba(15, 76, 129, 0.35);
}

.editorial-body {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.editorial-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.editorial-title {
  font-family: var(--font-editorial);
  font-size: clamp(1.85rem, 2.6vw, 2.35rem);
  font-style: italic;
  color: var(--color-text);
  line-height: 1.25;
  margin-bottom: 16px;
}

.editorial-text {
  font-size: 14.5px;
  color: var(--color-text-body);
  line-height: 1.7;
  margin-bottom: 24px;
}

.editorial-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.editorial-pill {
  background: #F0F7FF;
  border: 1px solid var(--color-border-light);
  color: var(--color-primary);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.editorial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
}

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

.ed-price-label {
  font-size: 11.5px;
  color: var(--color-text-muted);
}

.ed-price-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
}

.ed-price-val em {
  font-size: 12px;
  font-style: normal;
  color: var(--color-text-muted);
  font-weight: 500;
}

.btn-editorial-cta {
  background: linear-gradient(135deg, #2F80ED 0%, #0F4C81 100%);
  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: 800;
  padding: 12px 26px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 18px rgba(47, 128, 237, 0.35);
  transition: var(--transition-smooth);
}

.btn-editorial-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(47, 128, 237, 0.45);
}

/* =========================================================
   SECTION 4: FEATURED PACKAGES
   ========================================================= */
.packages-premium-section {
  background: linear-gradient(180deg, #F5FAFF 0%, #EEF7FF 50%, #F8FBFF 100%);
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.package-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 128, 237, 0.4);
  box-shadow: var(--shadow-hover);
}

.package-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.package-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.package-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 76, 129, 0.05) 0%, rgba(15, 25, 40, 0.45) 100%);
}

.discount-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #10B981;
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: 0 3px 10px rgba(16, 185, 129, 0.35);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.duration-badge {
  position: absolute;
  bottom: 12px;
  right: 14px;
  background: #0F4C81;
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.package-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pkg-dest-tag {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--color-secondary);
  display: block;
  margin-bottom: 4px;
}

.package-title {
  font-size: 18.5px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 8px;
}

.package-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.package-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.tag-pill {
  background: #F0F7FF;
  border: 1px solid var(--color-border-light);
  color: #0F4C81;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: var(--radius-xs);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

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

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

.price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.old-price {
  font-size: 12.5px;
  color: #94A3B8;
  text-decoration: line-through;
}

.new-price {
  font-size: 21px;
  font-weight: 800;
  color: #0F4C81;
}

.price-sub {
  font-size: 10.5px;
  color: var(--color-text-muted);
}

.package-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-pkg-details {
  border: 1.5px solid var(--color-border-light);
  background: #FFFFFF;
  color: #0F4C81;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.btn-pkg-details:hover {
  background: #F0F7FF;
  border-color: var(--color-secondary);
}

.btn-pkg-book {
  background: linear-gradient(135deg, #2F80ED 0%, #0F4C81 100%);
  color: #FFFFFF !important;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(47, 128, 237, 0.3);
  transition: var(--transition-fast);
}

.btn-pkg-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(47, 128, 237, 0.4);
}

/* =========================================================
   SECTION 5: FLIGHT TICKET SERVICE SHOWCASE
   ========================================================= */
.flight-service-section {
  padding: 80px 0;
  background: #FFFFFF;
}

.flight-service-card {
  background: linear-gradient(135deg, #FFFFFF 0%, #F5FAFF 50%, #EEF7FF 100%);
  border: 1.5px solid rgba(47, 128, 237, 0.16);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.flight-service-backdrop-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.decor-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 128, 237, 0.08) 0%, transparent 70%);
}

.circle-1 {
  width: 320px;
  height: 320px;
  top: -100px;
  right: -50px;
}

.circle-2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  left: -40px;
}

.decor-flight-route {
  position: absolute;
  right: 0;
  top: 10%;
  width: 55%;
  height: 80%;
  opacity: 0.7;
}

.flight-service-title {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.flight-service-lead {
  font-size: 16px;
  color: var(--color-text-body);
  line-height: 1.65;
  margin-bottom: 26px;
  max-width: 580px;
}

.flight-service-benefits {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.service-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.benefit-icon {
  color: var(--color-secondary);
  font-size: 18px;
  margin-top: 2px;
}

.benefit-text {
  display: flex;
  flex-direction: column;
}

.benefit-text strong {
  font-size: 14.5px;
  color: var(--color-text);
  margin-bottom: 1px;
}

.benefit-text span {
  font-size: 13px;
  color: var(--color-text-muted);
}

.flight-service-cta-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.btn-flight-service-cta {
  background: linear-gradient(135deg, #2F80ED 0%, #0F4C81 100%);
  color: #FFFFFF !important;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 34px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(47, 128, 237, 0.4);
  transition: var(--transition-smooth);
}

.btn-flight-service-cta i.fa-brands {
  font-size: 19px;
}

.btn-flight-service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(47, 128, 237, 0.5);
  background: linear-gradient(135deg, #0F4C81 0%, #2F80ED 100%);
}

.flight-service-meta {
  font-size: 12.5px;
  color: var(--color-text-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.flight-service-visual-card {
  position: relative;
}

.visual-card-glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  border: 1.5px solid #D0E6FF;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: 0 12px 35px rgba(15, 76, 129, 0.08);
}

.visual-badge {
  font-size: 11px;
  font-weight: 800;
  color: var(--color-secondary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.visual-card-title {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 6px;
}

.visual-card-desc {
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}

.ecosystem-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.eco-service-pill {
  background: #F8FBFF;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.eco-service-pill.active-pill {
  background: #E8F4FD;
  border-color: var(--color-secondary);
}

.eco-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.eco-info {
  display: flex;
  flex-direction: column;
}

.eco-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text);
}

.eco-status {
  font-size: 10px;
  color: var(--color-text-muted);
}

.visual-card-footer {
  padding-top: 14px;
  border-top: 1px solid #EEF2F6;
}

.footer-agent-avatar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agent-avatar-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2F80ED;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.agent-name {
  font-size: 12.5px;
  font-weight: 700;
  display: block;
}

.agent-availability {
  font-size: 11px;
  color: #10B981;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10B981;
}

/* =========================================================
   SECTION 6: INTERNATIONAL ESCAPES
   ========================================================= */
.international-premium-section {
  background: #F8FBFF;
}

.intl-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.intl-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 128, 237, 0.4);
  box-shadow: var(--shadow-hover);
}

.intl-img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.intl-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
}

.intl-card:hover .intl-img-wrap img {
  transform: scale(1.08);
}

.intl-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(15, 25, 40, 0.5) 100%);
}

.intl-country-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: #0F4C81;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  z-index: 2;
}

.intl-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.intl-body h4 {
  font-size: 18.5px;
  font-weight: 800;
  margin-bottom: 8px;
}

.intl-body p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.intl-price {
  font-size: 19px;
  font-weight: 800;
  color: var(--color-primary);
}

.intl-price em {
  font-size: 11.5px;
  font-style: normal;
  color: var(--color-text-muted);
  font-weight: 500;
}

.btn-intl-inquire {
  background: #F0F7FF;
  color: var(--color-secondary) !important;
  font-size: 12.5px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-light);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition-fast);
}

.btn-intl-inquire:hover {
  background: var(--color-secondary);
  color: #FFFFFF !important;
}

/* =========================================================
   SECTION 7: WHY TRIPERO
   ========================================================= */
.why-tripero-section {
  background: #FFFFFF;
}

.why-card-modern {
  background: #FFFFFF;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition-smooth);
}

.why-card-modern:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-hover);
}

.why-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #F0F7FF 0%, #E8F4FD 100%);
  color: var(--color-secondary);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition-smooth);
}

.why-card-modern:hover .why-icon-wrap {
  background: var(--color-secondary);
  color: #FFFFFF;
  transform: scale(1.08);
}

.why-card-modern h4 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.why-card-modern p {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* =========================================================
   SECTION 8: HOW IT WORKS (TIMELINE)
   ========================================================= */
.how-it-works-section {
  background: linear-gradient(180deg, #F5FAFF 0%, #EEF7FF 100%);
}

.timeline-wrapper {
  position: relative;
  padding: 20px 0;
}

.timeline-line {
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: repeating-linear-gradient(90deg, #2F80ED 0, #2F80ED 6px, transparent 6px, transparent 12px);
  opacity: 0.45;
  z-index: 1;
}

.timeline-step-card {
  background: #FFFFFF;
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 2;
  transition: var(--transition-smooth);
  height: 100%;
}

.timeline-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-hover);
}

.step-num-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2F80ED 0%, #0F4C81 100%);
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -10px auto 16px;
  box-shadow: 0 4px 14px rgba(47, 128, 237, 0.4);
}

.timeline-step-card h5 {
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 8px;
}

.timeline-step-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* =========================================================
   SECTION 9: TRAVEL INSPIRATION GALLERY
   ========================================================= */
.gallery-premium-section {
  background: #FFFFFF;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 25, 40, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.gallery-tag {
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

/* =========================================================
   SECTION 10: CUSTOMER TESTIMONIALS
   ========================================================= */
.testimonials-section {
  position: relative;
}

.testimonial-card {
  background: #FFFFFF;
  border: 1.5px solid var(--color-border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: var(--transition-smooth);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 128, 237, 0.3);
  box-shadow: var(--shadow-md);
}

.testimonial-stars {
  color: #FFD166;
  font-size: 13px;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 14.5px;
  color: var(--color-text-body);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 22px;
}

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

.testimonial-user img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #D0E6FF;
}

.testimonial-user h6 {
  font-size: 14px;
  font-weight: 800;
  margin: 0;
  color: var(--color-text);
}

.testimonial-user span {
  font-size: 12px;
  color: var(--color-text-muted);
}

.swiper-pagination-bullet-active {
  background: var(--color-secondary) !important;
  width: 22px !important;
  border-radius: 4px !important;
}

/* =========================================================
   SECTION 11: FROM THE JOURNAL
   ========================================================= */
.blog-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(47, 128, 237, 0.4);
  box-shadow: var(--shadow-hover);
}

.blog-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
}

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

.blog-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.blog-meta {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-body h5 {
  font-size: 16.5px;
  font-weight: 800;
  line-height: 1.4;
  margin-bottom: 16px;
  color: var(--color-text);
}

.blog-read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-secondary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
}

.blog-read-more:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

/* =========================================================
   SECTION 12: FINAL CONVERSION CTA
   ========================================================= */
.final-cta-section {
  padding: 60px 0 90px;
  background: #FFFFFF;
}

.final-cta-card {
  background: linear-gradient(135deg, #0F4C81 0%, #173E65 45%, #0B2238 100%);
  border-radius: var(--radius-xl);
  padding: 64px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 76, 129, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.final-cta-bg-decor {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(47, 128, 237, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  color: #56CCF2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.final-cta-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 12px;
}

.final-cta-subtitle {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin: 0 auto 34px;
}

.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-final-primary {
  background: #FFFFFF;
  color: #0F4C81 !important;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 34px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.btn-final-primary:hover {
  background: #F0F7FF;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-final-whatsapp {
  background: #25D366;
  color: #FFFFFF !important;
  font-size: 15px;
  font-weight: 800;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition-smooth);
}

.btn-final-whatsapp:hover {
  background: #20BA5A;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
}

/* =========================================================
   FOOTER
   ========================================================= */
.tripero-footer {
  background: #08111E;
  color: #94A3B8;
  padding: 80px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 14px;
}

.footer-about {
  font-size: 13.5px;
  line-height: 1.65;
  color: #94A3B8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
}

.tripero-footer h5 {
  font-size: 15px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

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

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

.footer-links a {
  font-size: 13.5px;
  color: #94A3B8;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: #56CCF2;
  padding-left: 4px;
}

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

.footer-contact li {
  margin-bottom: 12px;
  font-size: 13.5px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #94A3B8;
  line-height: 1.5;
}

.footer-contact i {
  color: #56CCF2;
  font-size: 15px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact a {
  color: #94A3B8;
  transition: var(--transition-fast);
}

.footer-contact a:hover {
  color: #FFFFFF;
}

.tripero-footer hr {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 50px 0 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
}

.footer-bottom p {
  margin: 0;
}

.footer-legal-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.footer-legal-links a {
  color: #94A3B8;
}

.footer-legal-links a:hover {
  color: #56CCF2;
}

/* =========================================================
   FLOATING ELEMENTS & MODALS
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 990;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

.back-to-top {
  position: fixed;
  bottom: 96px;
  right: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1.5px solid var(--color-border);
  color: #0F4C81;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--shadow-md);
  z-index: 980;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--color-secondary);
  color: #FFFFFF;
  border-color: var(--color-secondary);
  transform: translateY(-3px);
}

/* Quote Modal */
.tripero-modal {
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-border-light);
  box-shadow: var(--shadow-lg);
  padding: 12px;
}

.modal-train-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #EEF7FF 0%, #E0F0FE 100%);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(47, 128, 237, 0.2);
}

.modal-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text);
}

.modal-sub {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.form-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 5px;
}

.form-control {
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  padding: 10px 14px;
  font-size: 14px;
  transition: var(--transition-fast);
}

.form-control:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(47, 128, 237, 0.12);
}

.btn-primary-cta {
  background: linear-gradient(135deg, #2F80ED 0%, #0F4C81 100%);
  color: #FFFFFF !important;
  font-weight: 800;
  padding: 12px;
  border-radius: var(--radius-sm);
  border: none;
  font-size: 14.5px;
  box-shadow: 0 4px 14px rgba(47, 128, 237, 0.35);
  transition: var(--transition-fast);
}

.btn-primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(47, 128, 237, 0.45);
}

/* =========================================================
   PAGE HEROES & BREADCRUMBS (SUB-PAGES)
   ========================================================= */
.page-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding: 130px 0 60px;
  background: #08111E;
  overflow: hidden;
}

.breadcrumb-nav {
  margin-bottom: 18px;
}

.breadcrumb-list {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-list a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  transition: var(--transition-fast);
}

.breadcrumb-list a:hover {
  color: #56CCF2;
}

.breadcrumb-list .separator {
  font-size: 10px;
  opacity: 0.5;
}

.breadcrumb-list .current {
  color: #FFFFFF;
  font-weight: 600;
}

/* =========================================================
   QUICK CONTACT & CONTACT FORM (CONTACT PAGE)
   ========================================================= */
.quick-contact-card {
  background: #FFFFFF;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.quick-contact-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-hover);
}

.quick-contact-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: #F0F7FF;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: var(--transition-fast);
}

.quick-contact-card:hover .quick-contact-icon {
  background: var(--color-secondary);
  color: #FFFFFF;
  transform: scale(1.08);
}

.quick-contact-card h5 {
  font-size: 16.5px;
  font-weight: 800;
  margin-bottom: 6px;
}

.qc-info {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.qc-desc {
  font-size: 12.5px;
  color: var(--color-text-muted);
  margin: 0;
}

.contact-form-card {
  background: #FFFFFF;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 40px;
}

.form-side-panel {
  background: linear-gradient(145deg, #0F4C81 0%, #173E65 60%, #0B2238 100%);
  border-radius: var(--radius-xl);
  padding: 38px 30px;
  height: 100%;
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
}

.form-side-panel h4 {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
}

.form-side-panel p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  line-height: 1.6;
}

.form-side-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
}

.form-side-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.92);
}

.form-side-list li i {
  color: #56CCF2;
  margin-top: 3px;
}

.whatsapp-support-card {
  background: #FFFFFF;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 34px 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.whatsapp-support-icon {
  width: 60px;
  height: 60px;
  background: rgba(37, 211, 102, 0.12);
  color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.btn-whatsapp-cta {
  background: #25D366;
  color: #FFFFFF !important;
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14.5px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: var(--transition-fast);
}

.btn-whatsapp-cta:hover {
  background: #1ebd58;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45);
}

.map-frame-wrap {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--color-border);
}

.map-frame-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}

.office-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.office-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.odl-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: #F0F7FF;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid var(--color-border-light);
}

.office-detail-list h6 {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 3px;
}

.office-detail-list p {
  font-size: 13.5px;
  color: var(--color-text-muted);
  margin: 0;
  line-height: 1.5;
}

/* =========================================================
   BLOG LISTING & ARTICLE PROSE STYLING
   ========================================================= */
.blog-category-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.blog-chip {
  background: #F0F7FF;
  border: 1px solid var(--color-border-light);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  transition: var(--transition-fast);
}

.blog-chip:hover,
.blog-chip.active {
  background: var(--color-secondary);
  color: #FFFFFF;
  border-color: var(--color-secondary);
}

.article-header {
  margin-bottom: 34px;
}

.article-meta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--color-text-muted);
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.article-meta-bar span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-prose {
  font-size: 16.5px;
  color: #1E293B;
  line-height: 1.85;
}

.article-prose h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  font-weight: 800;
  margin: 40px 0 16px;
  color: var(--color-text);
}

.article-prose h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  margin: 30px 0 14px;
  color: var(--color-text);
}

.article-prose p {
  margin-bottom: 22px;
}

.article-prose ul,
.article-prose ol {
  margin-bottom: 24px;
  padding-left: 24px;
}

.article-prose li {
  margin-bottom: 10px;
}

.article-highlight-box {
  background: linear-gradient(135deg, #F0F7FF 0%, #E8F4FD 100%);
  border-left: 4px solid var(--color-secondary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 24px 28px;
  margin: 32px 0;
}

.article-highlight-box h5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.article-highlight-box p {
  margin: 0;
  font-size: 14.5px;
  color: var(--color-text-body);
}

.article-quote {
  font-family: var(--font-editorial);
  font-style: italic;
  font-size: 21px;
  line-height: 1.6;
  color: var(--color-primary);
  border-left: 3px solid #56CCF2;
  padding: 12px 0 12px 24px;
  margin: 36px 0;
}

.article-cta-box {
  background: linear-gradient(135deg, #0F4C81 0%, #173E65 100%);
  border-radius: var(--radius-lg);
  padding: 36px;
  color: #FFFFFF;
  text-align: center;
  margin: 50px 0 30px;
  box-shadow: var(--shadow-lg);
}

.article-cta-box h4 {
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.article-prose img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-xl);
  margin: 28px 0;
  box-shadow: var(--shadow-md);
  display: block;
}

.article-toc {
  background: #F8FAFC;
  border: 1.5px solid var(--color-border);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin: 24px 0 34px;
}

.article-toc-title {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-toc-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.article-toc-list li {
  margin-bottom: 8px;
  font-size: 14.5px;
}

.article-toc-list li:last-child {
  margin-bottom: 0;
}

.article-toc-list a {
  color: var(--color-text-body);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-toc-list a:hover {
  color: var(--color-secondary);
  transform: translateX(4px);
}

.article-share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
  margin: 28px 0;
}

.article-share-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 6px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: var(--transition-fast);
  border: 1px solid var(--color-border);
  background: #FFFFFF;
  color: var(--color-text);
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.share-btn.share-wa {
  color: #128C7E;
  border-color: rgba(37, 211, 102, 0.3);
  background: #F0FDF4;
}

.share-btn.share-fb {
  color: #1877F2;
  border-color: rgba(24, 119, 242, 0.3);
  background: #F0F7FF;
}

.share-btn.share-x {
  color: #0F172A;
  border-color: rgba(15, 23, 42, 0.3);
  background: #F8FAFC;
}

.share-btn.share-copy {
  color: var(--color-secondary);
  border-color: rgba(47, 128, 237, 0.3);
  background: #F0F7FF;
  cursor: pointer;
}

/* =========================================================
   FAQ ACCORDION (FAQ PAGE & CONTACT PAGE)
   ========================================================= */
.tripero-accordion .accordion-item {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md) !important;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.tripero-accordion .accordion-item:hover {
  border-color: rgba(47, 128, 237, 0.3);
}

.tripero-accordion .accordion-button {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
  padding: 20px 24px;
  background: #FFFFFF;
  border: none;
}

.tripero-accordion .accordion-button:not(.collapsed) {
  color: var(--color-secondary);
  background: #F0F7FF;
  box-shadow: none;
}

.tripero-accordion .accordion-button:focus {
  box-shadow: none;
}

.tripero-accordion .accordion-body {
  padding: 16px 24px 22px;
  color: var(--color-text-body);
  font-size: 14.5px;
  line-height: 1.7;
}

/* Form Validation Styles */
.is-invalid {
  border-color: #EF4444 !important;
  background-color: #FFF5F5 !important;
  animation: shakeInput 0.3s ease-in-out;
}

@keyframes shakeInput {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  75% { transform: translateX(5px); }
}

/* =========================================================
   RESPONSIVE DESIGN & MEDIA QUERIES
   ========================================================= */
@media (max-width: 1199px) {
  .section-padding { padding: 80px 0; }
  .editorial-img-wrap { height: 420px; }
  .editorial-body { padding: 32px 28px; }
  .flight-service-card { padding: 36px; }
}

@media (max-width: 991px) {
  .tripero-navbar:not(.scrolled) {
    background: rgba(8, 17, 30, 0.95);
    backdrop-filter: blur(14px);
  }
  .navbar-collapse {
    background: rgba(8, 17, 30, 0.98);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-top: 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
  }
  .navbar-nav .nav-link {
    margin: 4px 0;
  }
  .nav-cta {
    margin-top: 16px;
  }
  .hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
    min-height: auto;
  }
  .timeline-line {
    display: none;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
  .editorial-img-wrap {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .section-padding { padding: 60px 0; }
  .hero-title { font-size: clamp(2rem, 8vw, 2.75rem); }
  .hero-subtitle { font-size: 14.5px; }
  .hero-action-group { flex-direction: column; align-items: stretch; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .flight-service-card { padding: 26px 20px; border-radius: var(--radius-lg); }
  .ecosystem-services-grid { grid-template-columns: 1fr; }
  .btn-flight-service-cta { width: 100%; justify-content: center; }
  .final-cta-card { padding: 40px 20px; }
  .final-cta-actions { flex-direction: column; align-items: stretch; }
  .btn-final-primary, .btn-final-whatsapp { width: 100%; justify-content: center; }
  .gallery-grid { grid-auto-rows: 140px; }
  .whatsapp-float { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 24px; }
  .back-to-top { bottom: 80px; right: 22px; width: 40px; height: 40px; }
}

@media (max-width: 575px) {
  .service-strip-card {
    padding: 20px 14px;
  }
  .service-strip-title {
    font-size: 14.5px;
  }
  .service-strip-desc {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .modal-dialog {
    margin: 12px;
  }
}

/* =========================================================
   25. COOKIE & PRIVACY CONSENT BANNER
   ========================================================= */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 1100px;
  margin: 0 auto;
  z-index: 1040;
  background: rgba(15, 25, 40, 0.96);
  color: #F8FAFC;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 20px 24px;
  transform: translateY(130%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.45s;
}

.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

.cookie-banner-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(14, 116, 144, 0.2);
  color: #38BDF8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.cookie-banner-text {
  flex: 1;
}

.cookie-banner-title {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.cookie-banner-desc {
  font-size: 13.5px;
  color: #CBD5E1;
  line-height: 1.5;
  margin-bottom: 6px;
}

.cookie-banner-links {
  font-size: 12.5px;
  color: #94A3B8;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-policy-link {
  color: #38BDF8;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition-fast);
}

.cookie-policy-link:hover {
  color: #7DD3FC;
}

.cookie-sep {
  color: #64748B;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-cookie-accept {
  background: var(--color-primary);
  color: #FFFFFF !important;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 18px;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.btn-cookie-accept:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  transform: translateY(-1px);
}

.btn-cookie-reject {
  background: rgba(255, 255, 255, 0.08);
  color: #E2E8F0 !important;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 13px;
  padding: 8px 16px;
  white-space: nowrap;
  transition: var(--transition-fast);
}

.btn-cookie-reject:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF !important;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-cookie-manage {
  background: transparent;
  color: #94A3B8 !important;
  border: none;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 12px;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition-fast);
  cursor: pointer;
}

.btn-cookie-manage:hover {
  color: #FFFFFF !important;
}

/* Cookie Preferences Modal Styles */
.cookie-pref-modal {
  padding: 6px;
}

.cookie-pref-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-pref-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.cookie-pref-info strong {
  font-size: 14px;
  color: var(--color-text);
}

.cookie-pref-desc {
  font-size: 12.5px;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.cookie-pref-item .form-check-input {
  width: 2.4em;
  height: 1.3em;
  cursor: pointer;
}

.cookie-pref-item .form-check-input:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

.cookie-pref-item .form-check-input:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn-cookie-outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 13.5px;
  padding: 8px 18px;
  transition: var(--transition-fast);
}

.btn-cookie-outline:hover {
  background: var(--color-surface);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.open-cookie-settings {
  cursor: pointer;
}

@media (max-width: 991px) {
  .cookie-banner-container {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cookie-banner-actions {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .btn-cookie-accept,
  .btn-cookie-reject {
    flex: 1 1 auto;
    text-align: center;
  }
}

@media (max-width: 575px) {
  .cookie-banner {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 16px;
  }
  .cookie-banner-content {
    gap: 12px;
  }
  .cookie-banner-icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  .cookie-banner-desc {
    font-size: 12.5px;
  }
  .cookie-banner-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .btn-cookie-accept,
  .btn-cookie-reject,
  .btn-cookie-manage {
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}