/* ============================================================
   FlightsFareSolutions — Design System & Component Styles
   Travel Technology Company | Teal + Coral Palette
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Poppins:wght@500;600;700;800&display=swap');

/* ============================================================
   1. DESIGN TOKENS (CSS Custom Properties)
   ============================================================ */
:root {
  /* Colors */
  --clr-primary: #0B091A;
  --clr-primary-rgb: 11, 9, 26;
  --clr-primary-light: #16132D;
  --clr-sky: #8B5CF6;
  --clr-sky-rgb: 139, 92, 246;
  --clr-accent: #6366F1;
  --clr-accent-rgb: 99, 102, 241;
  --clr-coral: #EC4899;
  --clr-coral-rgb: 236, 72, 153;
  --clr-white: #FFFFFF;
  --clr-light-bg: #F5F3FF;
  --clr-dark-text: #0B091A;
  --clr-body-text: #4A4765;
  --clr-muted: #8B88A5;
  --clr-border: #E9E8F3;
  --clr-success: #10B981;
  --clr-error: #EF4444;
  --clr-warning: #F59E0B;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #0B091A 0%, #16132D 50%, #201242 100%);
  --gradient-sky: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
  --gradient-coral: linear-gradient(135deg, #EC4899 0%, #D946EF 100%);
  --gradient-hero: linear-gradient(135deg, #0B091A 0%, #140E2D 40%, #1D153E 100%);
  --gradient-card: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);

  /* Typography */
  --ff-heading: 'Poppins', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --fs-display: clamp(2.5rem, 5vw, 4.5rem);
  --fs-h1: clamp(2rem, 4vw, 3.5rem);
  --fs-h2: clamp(1.75rem, 3vw, 2.75rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
  --fs-h4: clamp(1.1rem, 1.5vw, 1.35rem);
  --fs-body: 1rem;
  --fs-body-lg: 1.125rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --lh-tight: 1.2;
  --lh-normal: 1.6;
  --lh-relaxed: 1.8;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --section-padding: clamp(3rem, 4vw, 4rem);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.625rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 30px rgba(139, 92, 246, 0.3);
  --shadow-glow-strong: 0 0 50px rgba(139, 92, 246, 0.5);
  --shadow-card: 0 8px 32px rgba(15, 23, 42, 0.08);
  --shadow-card-hover: 0 16px 48px rgba(15, 23, 42, 0.16);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-indexes */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-navbar: 500;
  --z-overlay: 800;
  --z-modal: 900;
  --z-loader: 1000;

  /* Container */
  --container-max: 1280px;
  --container-padding: clamp(1rem, 4vw, 2rem);

  /* Navbar */
  --navbar-height: 80px;
  --navbar-shrink-height: 64px;
}

/* ============================================================
   2. CSS RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: var(--navbar-height);
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--clr-dark-text);
  background-color: var(--clr-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.loading {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  line-height: var(--lh-tight);
  color: var(--clr-dark-text);
}

::selection {
  background-color: rgba(13, 148, 136, 0.2);
  color: var(--clr-primary);
}

/* ============================================================
   3. SKIP TO CONTENT (Accessibility)
   ============================================================ */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: var(--space-md);
  background: var(--clr-sky);
  color: var(--clr-white);
  padding: var(--space-sm) var(--space-lg);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-weight: var(--fw-semibold);
  z-index: var(--z-loader);
  transition: top var(--transition-fast);
}

.skip-to-content:focus {
  top: 0;
}

/* ============================================================
   4. LOADING SCREEN
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--gradient-hero);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: var(--z-loader);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__logo {
  font-family: var(--ff-heading);
  font-size: 2rem;
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
}

.loader__logo span {
  color: var(--clr-sky);
}

.loader__spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--clr-sky);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   5. SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-sky);
  z-index: calc(var(--z-navbar) + 1);
  width: 0%;
  transition: none;
  will-change: width;
}

/* ============================================================
   6. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section {
  padding-block: var(--section-padding);
}

.section--dark {
  background: var(--gradient-primary);
  color: var(--clr-white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--clr-white);
}

.section--light {
  background-color: var(--clr-light-bg);
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-3xl);
}

.section__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--ff-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--clr-sky);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
}

.section__label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--clr-sky);
  border-radius: 1px;
}

.section__title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-md);
}

.section__subtitle {
  font-size: var(--fs-body-lg);
  color: var(--clr-body-text);
  line-height: var(--lh-relaxed);
}

.section--dark .section__subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.grid {
  display: grid;
  gap: var(--space-xl);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ============================================================
   7. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  /*top: 0;*/
  left: 0;
  right: 0;
  height: var(--navbar-height);
  z-index: var(--z-navbar);
  transition: all var(--transition-base);
  background: transparent;
}

.navbar.scrolled {
  /*height: var(--navbar-shrink-height);*/
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.navbar__logo {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  /*z-index: var(--z-navbar);*/
}

.navbar__logo img {
  display: block;
  max-height: 70px;
  width: auto;
  object-fit: contain;
  transition: max-height var(--transition-base);
}

.navbar.scrolled .navbar__logo img {
  max-height: 60px;
}

.navbar__logo span {
  color: var(--clr-sky);
}

.navbar__logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-sky);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.navbar__link {
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.8);
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-sky);
  border-radius: 1px;
  transition: width var(--transition-base);
}

.navbar__link:hover,
.navbar__link.active {
  color: var(--clr-white);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__cta {
  margin-left: var(--space-md);
}

/* Dropdown Menu */
.navbar__dropdown {
  position: relative;
}

.navbar__link--dropdown {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  font-size: 0.7em;
  transition: transform var(--transition-fast);
}

.navbar__dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.navbar__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: var(--z-dropdown);
}

.navbar__dropdown:hover .navbar__submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.navbar__submenu-link {
  display: block;
  padding: var(--space-sm) var(--space-xl);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.navbar__submenu-link:hover {
  color: var(--clr-white);
  background: rgba(13, 148, 136, 0.15);
  padding-left: calc(var(--space-xl) + 4px);
}

/* Hamburger Menu */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  cursor: pointer;
  z-index: var(--z-navbar);
}

.navbar__hamburger span {
  display: block;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.navbar__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.navbar__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   8. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.8rem 2rem;
  font-family: var(--ff-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background: var(--gradient-sky);
  color: #fff;
  box-shadow: 0 4px 20px rgba(13, 148, 136, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-strong);
}

.btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--clr-white);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--clr-sky);
  background: rgba(0, 194, 255, 0.1);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.btn--dark:hover {
  background: var(--clr-primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn--glow {
  background: var(--gradient-sky);
  color: var(--clr-primary);
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(13, 148, 136, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(13, 148, 136, 0.6);
  }
}

.btn--glow:hover {
  transform: translateY(-2px);
  animation: none;
  box-shadow: var(--shadow-glow-strong);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: var(--fs-body);
}

.btn--sm {
  padding: 0.5rem 1.25rem;
  font-size: var(--fs-xs);
}

/* Ripple Effect */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleEffect 0.6s linear;
  pointer-events: none;
}

@keyframes rippleEffect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ============================================================
   9. HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero-global-travel.png') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

/* .hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--clr-white) 0%, transparent 100%);
  z-index: 1;
} */

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  padding-top: var(--navbar-height);
  min-height: 100vh;
}

.hero__content {
  padding-block: var(--space-3xl);
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: #FFFFFF;
  border: 1px solid rgba(13, 148, 136, 0.2);
  padding: var(--space-xs) var(--space-lg);
  border-radius: var(--radius-full);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--clr-sky);
  margin-bottom: var(--space-xl);
}

.hero__title {
  font-size: var(--fs-display);
  font-weight: var(--fw-extrabold);
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero__title span {
  background: var(--gradient-sky);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: var(--fs-body-lg);
  color: rgba(255, 255, 255, 0.7);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-2xl);
  max-width: 480px;
}

.hero__cta {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero__stats-strip {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat {
  text-align: left;
}

.hero__stat-number {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--clr-sky);
}

.hero__stat-label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* Hero Visual (right side) Overhaul */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}

.hero__dashboard-container {
  position: relative;
  width: 100%;
  max-width: 520px;
  perspective: 1000px;
}

.hero__dashboard-card {
  position: relative;
  background: var(--gradient-glass);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-xs);
  box-shadow: var(--shadow-xl), 0 0 40px rgba(139, 92, 246, 0.2);
  transform: rotateY(-15deg) rotateX(10deg) rotateZ(2deg);
  transform-style: preserve-3d;
  transition: transform var(--transition-slow), box-shadow var(--transition-base);
  overflow: hidden;
  animation: floatSlow 8s ease-in-out infinite;
}

.hero__dashboard-card:hover {
  transform: rotateY(-5deg) rotateX(5deg) rotateZ(0deg) scale(1.02);
  box-shadow: var(--shadow-xl), 0 0 60px rgba(139, 92, 246, 0.4);
}

.hero__dashboard-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  aspect-ratio: 16/10;
}

/* Floating interactive badges */
.hero__floating-badge {
  position: absolute;
  background: rgba(22, 19, 45, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--space-sm) var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  box-shadow: var(--shadow-lg), 0 0 20px rgba(139, 92, 246, 0.15);
  z-index: 10;
  pointer-events: auto;
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.hero__floating-badge:hover {
  border-color: var(--clr-sky);
  transform: scale(1.05) translateY(-5px) !important;
}

.hero__floating-badge h4 {
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin: 0;
  line-height: 1.2;
}

.hero__floating-badge p {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 2px 0 0 0;
  white-space: nowrap;
}

.badge-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  background: rgba(139, 92, 246, 0.2);
  color: var(--clr-sky);
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-icon i {
  width: 16px;
  height: 16px;
}

/* Badge Positioning */
.hero__floating-badge--1 {
  top: 10%;
  left: -20px;
}

.hero__floating-badge--2 {
  bottom: 15%;
  right: -20px;
}

.hero__floating-badge--3 {
  top: 55%;
  left: -40px;
}

/* Lucide Icon Base Styling */
.lucide {
  display: inline-block;
  vertical-align: middle;
  stroke-width: 2px;
  width: 1.25em;
  height: 1.25em;
}

/* Glow orbs */
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  pointer-events: none;
}

.hero__glow--1 {
  width: 400px;
  height: 400px;
  background: var(--clr-sky);
  top: 20%;
  right: -10%;
  opacity: 0.08;
}

.hero__glow--2 {
  width: 300px;
  height: 300px;
  background: var(--clr-accent);
  bottom: 20%;
  left: 30%;
  opacity: 0.06;
}

/* Hero particle canvas */
.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

/* ============================================================
   10. STATISTICS SECTION
   ============================================================ */
.stats {
  position: relative;
  z-index: 3;
  margin-top: -80px;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.stats__card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border: 1px solid var(--clr-border);
}

.stats__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.stats__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-md);
  background: rgba(0, 194, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.stats__number {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  margin-bottom: var(--space-xs);
}

.stats__label {
  font-size: var(--fs-small);
  color: var(--clr-muted);
  font-weight: var(--fw-medium);
}

/* ============================================================
   11. GLASSMORPHISM CARDS (Travel Solutions)
   ============================================================ */
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.solution-card {
  position: relative;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  overflow: hidden;
  cursor: pointer;
}

.solution-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: 0;
}

.solution-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-card:hover .solution-card__icon,
.solution-card:hover .solution-card__title,
.solution-card:hover .solution-card__desc,
.solution-card:hover .solution-card__link {
  color: var(--clr-white);
  position: relative;
  z-index: 1;
}

.solution-card:hover .solution-card__icon {
  background: rgba(13, 148, 136, 0.2);
}

.solution-card__icon {
	color: #FFFFFF;
  width: 64px;
  height: 64px;
  background: rgba(0, 194, 255, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
  z-index: 1;
}

.solution-card__title {
	color: #FFFFFF;
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
  transition: color var(--transition-base);
}

.solution-card__desc {
  font-size: var(--fs-small);
  color: #FFFFFF;
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
  transition: color var(--transition-base);
}

.solution-card__link {
  font-family: var(--ff-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--clr-sky);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  position: relative;
  z-index: 1;
  transition: all var(--transition-base);
	margin-top: 10px;
}

.solution-card__link:hover {
  gap: var(--space-sm);
}

/* ============================================================
   12. DESTINATION CARDS
   ============================================================ */
.destinations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.destination-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 380px;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.destination-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-glow);
}

.destination-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.destination-card:hover .destination-card__image {
  transform: scale(1.1);
}

.destination-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
  transition: background var(--transition-base);
}

.destination-card:hover .destination-card__overlay {
  background: linear-gradient(to top, rgba(13, 148, 136, 0.85) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
}

.destination-card__name {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}

.destination-card__country {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--space-md);
}

.destination-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--ff-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.destination-card:hover .destination-card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   13. TESTIMONIALS SLIDER
   ============================================================ */
.testimonials {
  overflow: hidden;
}

.testimonials__track-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.testimonials__track {
  display: flex;
  gap: var(--space-xl);
  animation: scrollTestimonials 10s linear infinite;
  /*width: max-content;*/
}

.testimonials__track:hover {
  animation-play-state: paused;
}

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.testimonial-card {
  flex: 0 0 380px;
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card__stars {
  color: var(--clr-warning);
  font-size: 1rem;
  margin-bottom: var(--space-md);
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: var(--fs-body);
  color: var(--clr-body-text);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  font-size: var(--fs-body-lg);
}

.testimonial-card__name {
  font-family: var(--ff-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
  color: var(--clr-dark-text);
}

.testimonial-card__role {
  font-size: var(--fs-small);
  color: var(--clr-muted);
}

/* ============================================================
   14. BLOG PREVIEW CARDS
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.blog-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.blog-card__image-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .blog-card__image {
  transform: scale(1.08);
}

.blog-card__tag {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  background: var(--clr-sky);
  color: var(--clr-primary);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.blog-card__body {
  padding: var(--space-xl);
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  margin-bottom: var(--space-sm);
}

.blog-card__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-card__title {
  color: var(--clr-sky);
}

.blog-card__excerpt {
  font-size: var(--fs-small);
  color: var(--clr-body-text);
  line-height: var(--lh-relaxed);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   15. BOOKING FORM
   ============================================================ */
.booking {
  background: #180b67;
  position: relative;
  overflow: hidden;
}

.booking::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(0, 194, 255, 0.05);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  filter: blur(80px);
}

.booking__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-3xl);
  align-items: start;
}

.booking__info {
  padding-block: var(--space-xl);
}

.booking__info .section__label {
  color: var(--clr-sky);
}

.booking__info .section__title {
  color: var(--clr-white);
}

.booking__info .section__subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.booking__features {
  margin-top: var(--space-2xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.booking__feature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-body);
}

.booking__feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: rgba(13, 148, 136, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.booking__form-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
}

.booking__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
}

.form-group {
  position: relative;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group__label {
  display: block;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-xs);
}

.form-group__input,
.form-group__select,
.form-group__textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--clr-white);
  font-size: var(--fs-body);
  transition: all var(--transition-fast);
}

.form-group__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-group__input:focus,
.form-group__select:focus,
.form-group__textarea:focus {
  border-color: var(--clr-sky);
  background: rgba(13, 148, 136, 0.08);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.1);
}

.form-group__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.5)' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group__select option {
  background: var(--clr-primary);
  color: var(--clr-white);
}

.form-group__textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group__error {
  display: none;
  font-size: var(--fs-xs);
  color: var(--clr-error);
  margin-top: 4px;
}

.form-group.has-error .form-group__input,
.form-group.has-error .form-group__select,
.form-group.has-error .form-group__textarea {
  border-color: var(--clr-error);
}

.form-group.has-error .form-group__error {
  display: block;
}

.form-group.is-valid .form-group__input,
.form-group.is-valid .form-group__select {
  border-color: var(--clr-success);
}

.booking__form .btn {
  grid-column: 1 / -1;
  margin-top: var(--space-sm);
}

/* ============================================================
   16. FOOTER
   ============================================================ */
.footer {
  background: var(--clr-primary);
  color: rgba(255, 255, 255, 0.7);
  padding-top: var(--space-4xl);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__brand {
  max-width: 320px;
}

.footer__logo {
  font-family: var(--ff-heading);
  font-size: 1.35rem;
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.footer__logo span {
  color: var(--clr-sky);
}

.footer__desc {
	color: #fff;
  font-size: var(--fs-small);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xl);
}

.footer__socials {
  display: flex;
  gap: var(--space-sm);
}

.footer__social {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.footer__social:hover {
  background: var(--clr-sky);
  color: var(--clr-primary);
  transform: translateY(-3px);
}

.footer__heading {
  font-family: var(--ff-heading);
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  margin-bottom: var(--space-lg);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
	padding: 0px;
}

.footer__link {
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
}

.footer__link:hover {
  color: var(--clr-sky);
  padding-left: 4px;
}

.footer__newsletter {
  margin-top: var(--space-lg);
}

.footer__newsletter-form {
  display: flex;
  gap: var(--space-xs);
}

.footer__newsletter-input {
  flex: 1;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  color: var(--clr-white);
  font-size: var(--fs-small);
}

.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.footer__newsletter-input:focus {
  border-color: var(--clr-sky);
}

.footer__newsletter-btn {
  padding: 0.65rem 1.25rem;
  background: var(--gradient-sky);
  border-radius: var(--radius-md);
  color: var(--clr-primary);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.footer__newsletter-btn:hover {
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.footer__bottom {
  padding-block: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-xs);
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer__bottom-links {
  display: flex;
  gap: var(--space-lg);
}

.footer__bottom-link {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer__bottom-link:hover {
  color: var(--clr-sky);
}
.footer__bottom p {
	font-size: 16px;
	margin: 0px;
}

/* ============================================================
   17. BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--gradient-sky);
  color: var(--clr-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
  z-index: var(--z-sticky);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-base);
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

/* ============================================================
   18. PAGE HEADER (Inner Pages)
   ============================================================ */
.page-header {
  background: var(--gradient-hero);
  padding: calc(var(--navbar-height) + var(--space-4xl)) 0 var(--space-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/hero-global-travel.png') center/cover no-repeat;
  opacity: 0.08;
}

.page-header__content {
  position: relative;
  z-index: 1;
}

.page-header__title {
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: var(--space-md);
}

.page-header__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  color: rgba(255, 255, 255, 0.6);
}

.page-header__breadcrumb a {
  color: var(--clr-sky);
  transition: color var(--transition-fast);
}

.page-header__breadcrumb a:hover {
  color: var(--clr-white);
}

/* ============================================================
   19. ABOUT PAGE STYLES
   ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-story__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.about-story__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1) 0%, transparent 60%);
}

.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.value-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-base);
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--clr-sky);
}

.value-card__icon {
	color: #FFFFFF;
  font-size: 2.5rem;
  margin-bottom: var(--space-md);
}

.value-card__title {
	color: #FFFFFF;
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
}

.value-card__desc {
  font-size: var(--fs-small);
  color: #FFFFFF;
  line-height: var(--lh-relaxed);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gradient-sky);
  transform: translateX(-50%);
}

.timeline__item {
  position: relative;
  padding: var(--space-xl) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
}

.timeline__item:nth-child(even) .timeline__content {
  grid-column: 2;
}

.timeline__item:nth-child(odd) .timeline__content {
  grid-column: 1;
  text-align: right;
}

.timeline__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--clr-sky);
  border-radius: 50%;
  border: 3px solid var(--clr-white);
  box-shadow: 0 0 0 3px var(--clr-sky);
  z-index: 1;
}

.timeline__year {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--clr-sky);
  margin-bottom: var(--space-xs);
}

.timeline__text {
  font-size: var(--fs-body);
  color: var(--clr-body-text);
  line-height: var(--lh-relaxed);
}

/* ============================================================
   20. FAQ ACCORDION
   ============================================================ */
.faq__categories {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.faq__tab {
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-full);
  font-family: var(--ff-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  border: 1px solid var(--clr-border);
  color: var(--clr-body-text);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.faq__tab:hover,
.faq__tab.active {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}

.faq__list {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq__item:hover {
  border-color: rgba(13, 148, 136, 0.3);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg) var(--space-xl);
  font-family: var(--ff-heading);
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  color: var(--clr-dark-text);
  cursor: pointer;
  transition: color var(--transition-fast);
  width: 100%;
  text-align: left;
  background: none;
}

.faq__question:hover {
  color: var(--clr-sky);
}

.faq__icon {
  font-size: 1.25rem;
  transition: transform var(--transition-base);
  color: var(--clr-sky);
  flex-shrink: 0;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq__item.active .faq__answer {
  max-height: 500px;
}

.faq__answer-inner {
  padding: 0 var(--space-xl) var(--space-lg);
  font-size: var(--fs-body);
  color: var(--clr-body-text);
  line-height: var(--lh-relaxed);
}

/* ============================================================
   21. CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--space-3xl);
}

.contact-info__cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info__card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-xl);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.contact-info__card:hover {
  border-color: var(--clr-sky);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.contact-info__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(0, 194, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-info__label {
  font-family: var(--ff-heading);
  font-weight: var(--fw-semibold);
  margin-bottom: 4px;
}

.contact-info__value {
  font-size: var(--fs-small);
  color: var(--clr-body-text);
  line-height: var(--lh-normal);
}

.ContactForm {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: var(--space-lg);
}

/* Contact form on light bg */
.contact-form {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-sm);
}

.contact-form .form-group__label {
  color: var(--clr-dark-text);
}

.contact-form .form-group__input,
.contact-form .form-group__select,
.contact-form .form-group__textarea {
  background: var(--clr-light-bg);
  border-color: var(--clr-border);
  color: var(--clr-dark-text);
}

.contact-form .form-group__input::placeholder {
  color: var(--clr-muted);
}

.contact-form .form-group__input:focus,
.contact-form .form-group__select:focus,
.contact-form .form-group__textarea:focus {
  border-color: var(--clr-sky);
  background: var(--clr-white);
  box-shadow: 0 0 0 3px rgba(0, 194, 255, 0.1);
}

/* ============================================================
   22. BLOG PAGE STYLES
   ============================================================ */
.blog-categories {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.blog-category {
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-full);
  font-family: var(--ff-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  border: 1px solid var(--clr-border);
  color: var(--clr-body-text);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.blog-category:hover,
.blog-category.active {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}

/* Featured blog post */
.blog-featured {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-3xl);
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-base);
}

.blog-featured:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.blog-featured__image-wrap {
  height: 100%;
  min-height: 350px;
  overflow: hidden;
}

.blog-featured__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-featured:hover .blog-featured__image {
  transform: scale(1.05);
}

.blog-featured__body {
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-featured__tag {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(0, 194, 255, 0.1);
  color: var(--clr-sky);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
}

.blog-featured__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-md);
  line-height: var(--lh-tight);
}

.blog-featured__excerpt {
  font-size: var(--fs-body);
  color: var(--clr-body-text);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.blog-featured__meta {
  font-size: var(--fs-xs);
  color: var(--clr-muted);
  display: flex;
  gap: var(--space-md);
}

/* ============================================================
   23. LEGAL PAGES (Privacy, Terms)
   ============================================================ */
.legal-content {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: var(--space-3xl);
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--navbar-height) + var(--space-xl));
  max-height: calc(100vh - var(--navbar-height) - var(--space-2xl));
  overflow-y: auto;
}

.legal-sidebar__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--clr-muted);
  margin-bottom: var(--space-md);
}

.legal-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.legal-sidebar__link {
  font-size: var(--fs-small);
  color: var(--clr-body-text);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
  border-left: 2px solid transparent;
  transition: all var(--transition-fast);
}

.legal-sidebar__link:hover,
.legal-sidebar__link.active {
  color: var(--clr-sky);
  border-left-color: var(--clr-sky);
  background: rgba(0, 194, 255, 0.05);
}

.legal-body h2 {
	background: linear-gradient(135deg, #8B5CF6 0%, #000136 100%);
    background-clip: border-box;
  background-clip: border-box;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: var(--fs-h3);
  margin-top: var(--space-2xl);
  margin-bottom: 10px;
  padding-top: var(--space-md);
}

.legal-body h3 {
  font-size: var(--fs-h4);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-body p {
  font-size: var(--fs-body);
  color: var(--clr-body-text);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-md);
}

.legal-body ul {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.legal-body ul li {
  font-size: var(--fs-body);
  color: var(--clr-body-text);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-xs);
  position: relative;
  list-style: disc;
}

.legal-updated {
  font-size: var(--fs-small);
  color: var(--clr-muted);
  margin-bottom: var(--space-xl);
}

/* ============================================================
   24. TRAVEL SOLUTIONS PAGE EXPANDED CARDS
   ============================================================ */
.service-card {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-sky);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card__icon {
	color: #FFFFFF;
  width: 72px;
  height: 72px;
  background: rgba(0, 194, 255, 0.08);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto;
}

.service-card__title {
	color: #FFFFFF;
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-sm);
	margin-top: 20px;
}

.service-card__desc {
	color: #FFFFFF;
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--space-lg);
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-bottom: var(--space-lg);
}

.service-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--fs-small);
  color: #FFFFFF;
}

.service-card__feature::before {
  content: '✓';
  color: var(--clr-success);
  font-weight: var(--fw-bold);
}

/* ============================================================
   25. DESTINATION FILTERS
   ============================================================ */
.filter-bar {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-2xl);
}

.filter-btn {
  padding: var(--space-sm) var(--space-xl);
  border-radius: var(--radius-full);
  font-family: var(--ff-heading);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  border: 1px solid var(--clr-border);
  color: var(--clr-body-text);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}

/* Destination full grid */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.dest-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  transition: all var(--transition-base);
}

.dest-card.hidden {
  display: none;
}

.dest-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-glow);
}

.dest-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.dest-card:hover .dest-card__img {
  transform: scale(1.1);
}

.dest-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-xl);
}

.dest-card__name {
  font-family: var(--ff-heading);
  font-size: var(--fs-h4);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: 4px;
}

.dest-card__region {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: var(--space-sm);
}

.dest-card__price {
  font-family: var(--ff-heading);
  font-size: var(--fs-body-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-sky);
}

/* ============================================================
   26. FORM SUCCESS STATE
   ============================================================ */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-3xl);
}

.form-success.visible {
  display: block;
}

.form-success__icon {
  font-size: 4rem;
  margin-bottom: var(--space-lg);
}

.form-success__title {
  font-family: var(--ff-heading);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: var(--space-sm);
}

.form-success__text {
  font-size: var(--fs-body);
  color: rgba(255, 255, 255, 0.7);
}

/* Contact form success (light theme) */
.contact-form .form-success__title {
  color: var(--clr-dark-text);
}

.contact-form .form-success__text {
  color: var(--clr-body-text);
}

/* ============================================================
   27. MOUSE CURSOR GLOW EFFECT
   ============================================================ */
.cursor-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity var(--transition-fast);
  z-index: 0;
}

.has-glow:hover .cursor-glow {
  opacity: 1;
}

/* Footer & Loader Logo Layout Sizing */
.footer__logo img {
  display: block;
  max-height: 90px;
  width: auto;
  object-fit: contain;
}

.loader__logo img {
  display: block;
  max-height: 75px;
  width: auto;
  object-fit: contain;
}


.clear {
	clear: both;
}

.top-bar {
     background: #0d6efd;
     color: #fff;
     padding: 8px 0;
     font-size: 14px;
 }

 .top-bar a {
     color: #fff;
     text-decoration: none;
     margin-right: 20px;
 }

 .top-bar a:hover {
     color: #f8f9fa;
 }

 .social-icons a {
     margin-left: 15px;
     font-size: 16px;
 }

 @media (max-width: 768px) {
     .top-bar .container {
         text-align: center;
     }

     .contact-info,
     .social-icons {
         justify-content: center !important;
         margin: 5px 0;
     }
 }


.navbar.scrolled {
    top: 0 !important;
}

.about-area {
	width: 100%;
	height: auto;
}
.about-area h2 {
	color: var(--gradient-sky);
}
.about-area li {
	list-style: none;
	margin-bottom: 10px;
}
.about-area li i, .about-area li b {
	color: #8B5CF6;
}

.gradient-text {
    background: linear-gradient(135deg, #8B5CF6 0%, #000136 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}



@media (max-width: 991px) {
    .navbar__submenu {
        display: none;
        opacity: 1;
        visibility: visible;
        position: static; /* important */
        width: 100%;
        margin-top: 10px;
		transform: translateX(0%) translateY(0px);
    }
	.navbar__dropdown:hover .navbar__submenu {
		transform: translateX(0%) translateY(0px);
	}
    .navbar__dropdown.active .navbar__submenu {
        display: block;
    }
}





.services-section {
    background: #f8fbff;
}

.service-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: .3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,#007bff,#00c6ff);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: #fff;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card h4 {
	color: #FFFFFF;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-card p {
    color: #FFFFFF;
}

.btn-1 {
	background: linear-gradient(135deg, #022c43 0%, #053f5e 100%);
}
.btn-2 {
	background: linear-gradient(135deg, #24104f 0%, #3a0ca3 100%);
}
.btn-3 {
	background: linear-gradient(135deg, #5a3d00 0%, #f59e0b 100%);
}
.btn-4 {
	background: linear-gradient(135deg, #004d40 0%, #10b981 100%);
}
.btn-5 {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.btn-6 {
	background: linear-gradient(135deg, #232526 0%, #414345 100%);
}
.btn-7 {
	background: linear-gradient(135deg, #fc5c7d 0%, #6a82fb 100%);
}
.btn-8 {
	background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
}
.btn-9 {
	background: linear-gradient(135deg, #4facfe 0%, #8e44ad 100%);
}
.btn-10 {
	background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
}



