/* ============================================================
   HaleefGo — Main Stylesheet
   Apple-Inspired | Fluid | Award-Winning
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --clr-bg: #05060a;
  --clr-bg2: #0a0d14;
  --clr-surface: rgba(255, 255, 255, 0.04);
  --clr-border: rgba(255, 255, 255, 0.08);
  --clr-gold: #06b6d4;
  --clr-gold-lt: #67e8f9;
  --clr-gold-dk: #0e7490;
  --clr-teal: #10b981;
  --clr-teal-lt: #34d399;
  --clr-white: #f5f5f7;
  --clr-gray: #86868b;
  --clr-gray-lt: #b0b0b8;
  --gradient-gold: linear-gradient(135deg, #06b6d4 0%, #10b981 60%, #34d399 100%);
  --gradient-hero: linear-gradient(180deg, rgba(5, 6, 10, 0) 0%, rgba(5, 6, 10, 0.6) 60%, #05060a 100%);
  --shadow-card: 0 24px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 50px rgba(6, 182, 212, 0.25), 0 0 80px rgba(16, 185, 129, 0.15);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Holographic Tokens */
  --h-color-1: rgba(6, 182, 212, 0.4);
  --h-color-2: rgba(16, 185, 129, 0.3);
  --h-color-3: rgba(245, 158, 11, 0.2);

  --font-serif: 'Playfair Display', Georgia, serif;
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --duration-fast: 0.25s;
  --duration-med: 0.5s;
  --duration-slow: 0.9s;

  /* Theme Transitions */
  --theme-transition: background-color 0.5s var(--ease-smooth), color 0.5s var(--ease-smooth), border-color 0.5s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth), backdrop-filter 0.5s var(--ease-smooth);
}

/* ─── Light Theme Variables ────────────────────────────── */
[data-theme="light"] {
  --clr-bg: #f5f5f7;
  --clr-bg2: #ffffff;
  --clr-surface: rgba(0, 0, 0, 0.05);
  --clr-border: rgba(0, 0, 0, 0.1);
  --clr-white: #1d1d1f;
  --clr-gray: #86868b;
  --clr-gray-lt: #515154;
  --gradient-hero: linear-gradient(180deg, rgba(245, 245, 247, 0) 0%, rgba(245, 245, 247, 0.4) 60%, #f5f5f7 100%);
  --shadow-card: 0 20px 48px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 40px rgba(6, 182, 212, 0.15);
  
  /* Holographic Tokens Adjust for Light */
  --h-color-1: rgba(6, 182, 212, 0.2);
  --h-color-2: rgba(16, 185, 129, 0.15);
  --h-color-3: rgba(245, 158, 11, 0.1);
}

/* Applying Transitions */
body {
  transition: var(--theme-transition);
}

.section, .section-full, .service-card, .pkg-card, .testimonial-card, #nav, footer, .contact-form, .contact-item {
  transition: var(--theme-transition);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-white);
  overflow-x: hidden;
  cursor: none;
}

/* ─── Custom Cursor ─────────────────────────────────────── */
#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #06b6d4, #10b981);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.25s, height 0.25s, background 0.25s;
}

#cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(6, 182, 212, 0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s var(--ease-smooth), width 0.3s, height 0.3s, border-color 0.3s;
}

body.cursor-hover #cursor-dot {
  width: 12px;
  height: 12px;
  background: var(--clr-gold-lt);
}

body.cursor-hover #cursor-ring {
  width: 60px;
  height: 60px;
  border-color: rgba(6, 182, 212, 0.9);
}

/* ─── Holographic Foil Effect ───────────────────────────── */
.holographic {
  position: relative;
  overflow: hidden;
}

.holographic::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--hx, 50%) var(--hy, 50%),
      var(--h-color-1) 0%,
      var(--h-color-2) 25%,
      var(--h-color-3) 50%,
      transparent 80%);
  opacity: 0;
  mix-blend-mode: overlay;
  transition: opacity 0.5s var(--ease-smooth);
  pointer-events: none;
  z-index: 5;
}

.holographic:hover::after {
  opacity: 1;
}

/* ─── Pseudo-Refractive Glass ───────────────────────────── */
.refractive-glass {
  position: relative;
  overflow: hidden;
}

.refractive-glass::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: inherit;
  background-attachment: fixed;
  filter: blur(10px) brightness(1.2) saturate(1.2);
  transform: scale(1.1);
  z-index: -1;
  opacity: 0.3;
  transition: transform 0.5s var(--ease-smooth);
}

.refractive-glass:hover::before {
  transform: scale(1.15) rotate(2deg);
}

/* ─── Variable Typography Base ─────────────────────────── */
.var-weight {
  transition: font-weight 0.4s var(--ease-smooth);
  font-variation-settings: 'wght' var(--wght, 600);
}

/* ─── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

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

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #06b6d4, #10b981);
  border-radius: 3px;
}

/* ─── Selection ─────────────────────────────────────────── */
::selection {
  background: rgba(6, 182, 212, 0.4);
  color: #ffffff;
}

/* ─── Noise Overlay ─────────────────────────────────────── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

/* ─── Preloader ─────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--clr-bg);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.8s var(--ease-expo), visibility 0.8s;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse-blue 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(6, 182, 212, 0.15);
  border-radius: 2px;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 2px;
  animation: load-fill 2s var(--ease-expo) forwards;
}

@keyframes load-fill {
  from {
    width: 0
  }

  to {
    width: 100%
  }
}

@keyframes pulse-blue {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.6
  }
}

/* ─── Navigation ─────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--duration-med) var(--ease-smooth),
    backdrop-filter var(--duration-med),
    box-shadow var(--duration-med);
}

#nav.scrolled {
  background: rgba(5, 6, 10, 0.8);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 var(--clr-border);
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-icon {
  width: 34px;
  height: 34px;
  background: var(--gradient-gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  -webkit-text-fill-color: #05060a;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(245, 245, 247, 0.75);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--duration-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--clr-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration-med) var(--ease-expo);
}

.nav-links a:hover {
  color: var(--clr-white);
}

.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  background: var(--gradient-gold);
  color: #05060a !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: transform var(--duration-fast) var(--ease-spring),
    box-shadow var(--duration-fast) !important;
}

.nav-cta:hover {
  transform: scale(1.04) !important;
  box-shadow: 0 4px 24px rgba(6, 182, 212, 0.5) !important;
}

.nav-cta::after {
  display: none !important;
}

/* Theme Toggle Button */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--clr-white);
  transition: transform 0.3s var(--ease-spring), background 0.3s;
  margin-left: 12px;
  position: relative;
  z-index: 1002;
}

.theme-toggle:hover {
  transform: scale(1.1);
  background: var(--clr-border);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  transition: transform 0.5s var(--ease-expo);
}

[data-theme="light"] .theme-toggle .sun-icon {
  display: none;
}

[data-theme="dark"] .theme-toggle .moon-icon {
  display: none;
}

/* Light mode specific adjustments */
[data-theme="light"] .hero-bg::after {
  background: var(--gradient-hero);
}

[data-theme="light"] #nav.scrolled {
  background: rgba(255, 255, 255, 0.8);
}

[data-theme="light"] .services-orb {
  opacity: 0.15;
}

/* Marquee Hover Effect */
.dest-card {
  transition: transform 0.5s var(--ease-expo), box-shadow 0.5s var(--ease-expo);
}

.dest-card:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  z-index: 10;
}

.dest-card:hover .dest-card-overlay {
  background: linear-gradient(0deg, rgba(6, 182, 212, 0.9) 0%, transparent 100%);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-white);
  border-radius: 2px;
  transition: transform var(--duration-med) var(--ease-expo),
    opacity var(--duration-med),
    width var(--duration-med);
}

.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 6, 10, 0.97);
  backdrop-filter: blur(40px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-med) var(--ease-expo),
    visibility var(--duration-med);
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
}

.nav-mobile a {
  font-size: 2rem;
  font-weight: 300;
  color: var(--clr-white);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--duration-fast), transform var(--duration-fast);
  transform: translateY(20px);
  opacity: 0;
}

.nav-mobile.open a {
  transform: translateY(0);
  opacity: 1;
}

.nav-mobile a:hover {
  color: var(--clr-gold);
}

.nav-mobile.open a:nth-child(1) {
  transition-delay: 0.05s;
}

.nav-mobile.open a:nth-child(2) {
  transition-delay: 0.1s;
}

.nav-mobile.open a:nth-child(3) {
  transition-delay: 0.15s;
}

.nav-mobile.open a:nth-child(4) {
  transition-delay: 0.2s;
}

.nav-mobile.open a:nth-child(5) {
  transition-delay: 0.25s;
}

.nav-mobile.open a:nth-child(6) {
  transition-delay: 0.3s;
}

/* ─── Hero Section ───────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--clr-bg);
}

.hero-bg {
  position: absolute;
  /* Premium Framing */
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: hero-zoom 20s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.05)
  }

  to {
    transform: scale(1.0)
  }
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(5, 6, 10, 0.2) 0%,
      rgba(5, 6, 10, 0.5) 50%,
      rgba(5, 6, 10, 0.8) 100%);
  z-index: 2;
}

/* Sophisticated Topographical Texture Overlay */
.topography-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='800' height='800' viewBox='0 0 800 800' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 160 Q 100 80, 200 160 T 400 160 T 600 160 T 800 160 M0 320 Q 160 240, 320 320 T 640 320 T 960 320 M-160 480 Q 80 400, 320 480 T 800 480 T 1280 480' fill='none' stroke='rgba(255,255,255,0.03)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 1200px 1200px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
  animation: topography-drift 60s linear infinite alternate;
}

@keyframes topography-drift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 100px 100px;
  }
}

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

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--clr-gold);
  opacity: 0;
  animation: float-particle linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  padding-top: 120px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fade-up var(--duration-slow) var(--ease-expo) 0.3s forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--clr-gold);
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up var(--duration-slow) var(--ease-expo) 0.5s forwards;
}

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

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(245, 245, 247, 0.7);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up var(--duration-slow) var(--ease-expo) 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up var(--duration-slow) var(--ease-expo) 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fade-in 1s var(--ease-expo) 1.5s forwards;
  opacity: 0;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 245, 247, 0.4);
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.7), transparent);
  animation: scroll-drop 2s ease-in-out infinite;
}

@keyframes scroll-drop {
  0% {
    transform: scaleY(0);
    transform-origin: top;
    opacity: 1;
  }

  60% {
    transform: scaleY(1);
    transform-origin: top;
    opacity: 1;
  }

  100% {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 0;
  }
}

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9375rem;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: transform var(--duration-fast) var(--ease-spring),
    box-shadow var(--duration-fast),
    background var(--duration-fast);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background var(--duration-fast);
}

.btn:hover::before {
  background: rgba(255, 255, 255, 0.05);
}

.btn:active {
  transform: scale(0.97) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
  color: #05060a;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.35), 0 0 30px rgba(16, 185, 129, 0.15);
}

.btn-primary:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 40px rgba(6, 182, 212, 0.55), 0 0 50px rgba(16, 185, 129, 0.25);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--clr-white);
  border: 1px solid var(--clr-border);
  backdrop-filter: blur(20px);
}

.btn-secondary:hover {
  transform: scale(1.02);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-outline-accent {
  background: transparent;
  color: var(--clr-gold);
  border: 1px solid var(--clr-gold);
}

.btn-outline-accent:hover {
  background: rgba(6, 182, 212, 0.1);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
  transform: scale(1.02);
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--duration-fast) var(--ease-spring);
}

.btn:hover svg {
  transform: translateX(3px);
}

/* ─── Section Basics ─────────────────────────────────────── */
.section {
  position: relative;
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  position: relative;
  padding: 120px 48px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--clr-gold);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--clr-gray-lt);
  line-height: 1.7;
  max-width: 560px;
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays */
.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}

.d5 {
  transition-delay: 0.5s;
}

.d6 {
  transition-delay: 0.6s;
}

/* ─── Stats Strip ────────────────────────────────────────── */
#stats {
  position: relative;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding: 60px 48px;
  overflow: hidden;
  isolation: isolate;
}

#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('https://images.pexels.com/photos/1004584/pexels-photo-1004584.jpeg?auto=compress&cs=tinysrgb&w=1920&q=40') center/cover no-repeat fixed;
  filter: brightness(0.7) saturate(1.2) contrast(1.1) blur(1px);
  z-index: -2;
}

#stats::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 200% at 0% 50%, rgba(6, 182, 212, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 80% 200% at 100% 50%, rgba(16, 185, 129, 0.12) 0%, transparent 60%),
    linear-gradient(180deg, rgba(5, 6, 10, 0.3) 0%, rgba(10, 13, 20, 0.4) 100%);
  z-index: -1;
}

/* ─── Services ───────────────────────────────────────────── */
#services {
  /* background: var(--clr-bg); */
}

.stats-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  border-right: 1px solid var(--clr-border);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8125rem;
  color: var(--clr-gray);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ─── Services ───────────────────────────────────────────── */
#services {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

#services::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('https://images.pexels.com/photos/1007426/pexels-photo-1007426.jpeg?auto=compress&cs=tinysrgb&w=1920&q=40') center/cover no-repeat fixed;
  filter: brightness(0.7) saturate(1.2) contrast(1.1) blur(1px);
  z-index: -2;
}

#services::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Subtle dot grid */
    radial-gradient(circle, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(ellipse 50% 70% at 110% 10%, rgba(6, 182, 212, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at -10% 90%, rgba(16, 185, 129, 0.09) 0%, transparent 50%),
    linear-gradient(180deg, rgba(5, 6, 10, 0.45) 0%, rgba(5, 6, 10, 0.35) 100%);
  background-size: 48px 48px, 100% 100%, 100% 100%, 100% 100%;
  z-index: -1;
}

/* Animated orbs inside services */
.services-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  animation: orb-drift 12s ease-in-out infinite alternate;
}

.services-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.09) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.services-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.07) 0%, transparent 70%);
  bottom: -50px;
  left: 10%;
  animation-delay: -4s;
  animation-duration: 15s;
}

.services-orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation-delay: -8s;
  animation-duration: 18s;
}

@keyframes orb-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(30px, -20px) scale(1.05);
  }

  66% {
    transform: translate(-20px, 15px) scale(0.97);
  }

  100% {
    transform: translate(15px, -10px) scale(1.02);
  }
}

.services-header {
  text-align: center;
  margin-bottom: 72px;
}

.services-header .section-subtitle {
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  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-lg);
  padding: 40px 36px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--duration-med) var(--ease-spring),
    border-color var(--duration-med),
    box-shadow var(--duration-med),
    background var(--duration-med);
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at var(--mx, 50%) var(--my, 50%), rgba(6, 182, 212, 0.14) 0%, rgba(16, 185, 129, 0.08) 60%, transparent 80%);
  opacity: 0;
  transition: opacity var(--duration-med);
}

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

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #06b6d4, #10b981);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-med) var(--ease-expo);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.6);
}

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

/* Unique Hover Background Images for Services */
#svc-careers:hover::before {
  background:
    linear-gradient(rgba(5, 6, 10, 0.9), rgba(5, 6, 10, 0.7)),
    url('https://images.pexels.com/photos/5668858/pexels-photo-5668858.jpeg?auto=compress&cs=tinysrgb&w=800&q=40') center/cover;
}

#svc-flights:hover::before {
  background:
    linear-gradient(rgba(5, 6, 10, 0.9), rgba(5, 6, 10, 0.7)),
    url('https://images.pexels.com/photos/46148/aircraft-jet-landing-cloud-46148.jpeg?auto=compress&cs=tinysrgb&w=800&q=40') center/cover;
}

#svc-visa:hover::before {
  background:
    linear-gradient(rgba(5, 6, 10, 0.9), rgba(5, 6, 10, 0.7)),
    url('https://images.pexels.com/photos/3379040/pexels-photo-3379040.jpeg?auto=compress&cs=tinysrgb&w=800&q=40') center/cover;
}

#svc-passport:hover::before {
  background:
    linear-gradient(rgba(5, 6, 10, 0.9), rgba(5, 6, 10, 0.7)),
    url('https://images.pexels.com/photos/5923956/pexels-photo-5923956.jpeg?auto=compress&cs=tinysrgb&w=800&q=40') center/cover;
}

#svc-gamca:hover::before {
  background:
    linear-gradient(rgba(5, 6, 10, 0.9), rgba(5, 6, 10, 0.7)),
    url('https://images.pexels.com/photos/4021775/pexels-photo-4021775.jpeg?auto=compress&cs=tinysrgb&w=800&q=40') center/cover;
}

#svc-vfs:hover::before {
  background:
    linear-gradient(rgba(5, 6, 10, 0.9), rgba(5, 6, 10, 0.7)),
    url('https://images.pexels.com/photos/4814061/pexels-photo-4814061.jpeg?auto=compress&cs=tinysrgb&w=800&q=40') center/cover;
}

#svc-tours:hover::before {
  background:
    linear-gradient(rgba(5, 6, 10, 0.9), rgba(5, 6, 10, 0.7)),
    url('https://images.pexels.com/photos/1072179/pexels-photo-1072179.jpeg?auto=compress&cs=tinysrgb&w=800&q=40') center/cover;
}

#svc-docs:hover::before {
  background:
    linear-gradient(rgba(5, 6, 10, 0.9), rgba(5, 6, 10, 0.7)),
    url('https://images.pexels.com/photos/531731/pexels-photo-531731.jpeg?auto=compress&cs=tinysrgb&w=800&q=40') center/cover;
}

#svc-attest:hover::before {
  background:
    linear-gradient(rgba(5, 6, 10, 0.9), rgba(5, 6, 10, 0.7)),
    url('https://images.pexels.com/photos/4814061/pexels-photo-4814061.jpeg?auto=compress&cs=tinysrgb&w=800&q=40') center/cover;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.75rem;
  transition: background var(--duration-med), transform var(--duration-med) var(--ease-spring);
}

.service-card:hover .service-icon {
  background: rgba(6, 182, 212, 0.2);
  transform: scale(1.1) rotate(-5deg);
}

.service-name {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  color: var(--clr-white);
}

.service-desc {
  font-size: 0.875rem;
  color: var(--clr-gray-lt);
  line-height: 1.7;
}

.service-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gray);
  transition: all var(--duration-med) var(--ease-spring);
}

.service-card:hover .service-arrow {
  background: var(--gradient-gold);
  border-color: transparent;
  color: #05060a;
  transform: rotate(45deg);
}

/* ─── About / Story Section ───────────────────────────────── */
#about {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('https://images.pexels.com/photos/3155666/pexels-photo-3155666.jpeg?auto=compress&cs=tinysrgb&w=1920&q=40') center/cover no-repeat fixed;
  filter: brightness(0.7) saturate(1.2) contrast(1.1) blur(1px);
  z-index: -2;
}

#about::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 100%, rgba(16, 185, 129, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 0% 0%, rgba(6, 182, 212, 0.10) 0%, transparent 55%),
    linear-gradient(135deg, rgba(5, 6, 10, 0.4) 0%, rgba(10, 13, 20, 0.35) 100%);
  z-index: -1;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-media {
  position: relative;
}

/* Glowing teal-green frame around the main image */
.about-media::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-lg) + 3px);
  background: linear-gradient(135deg,
      rgba(6, 182, 212, 0.7) 0%,
      rgba(16, 185, 129, 0.5) 40%,
      transparent 60%,
      rgba(6, 182, 212, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Bottom-right corner glow accent */
.about-media::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, transparent 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
  position: relative;
  z-index: 0;
  transition: transform 0.7s var(--ease-smooth);
}

.about-media:hover .about-img-main {
  transform: scale(1.02);
}

.about-img-accent {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 3px solid transparent;
  background-clip: padding-box;
  box-shadow:
    var(--shadow-card),
    0 0 0 3px rgba(6, 182, 212, 0.4),
    0 0 30px rgba(6, 182, 212, 0.2);
  z-index: 3;
  transition: transform 0.5s var(--ease-smooth);
}

.about-media:hover .about-img-accent {
  transform: translate(4px, 4px);
}

.about-badge {
  position: absolute;
  top: 32px;
  left: -24px;
  background: linear-gradient(135deg, #06b6d4, #10b981);
  color: #05060a;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.4);
}

.about-badge span {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-text .section-title {
  margin-bottom: 24px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.pillar {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: border-color var(--duration-med), transform var(--duration-med) var(--ease-spring);
}

.pillar:hover {
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}

.pillar-icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.pillar-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-white);
  margin-bottom: 4px;
}

.pillar-text {
  font-size: 0.8rem;
  color: var(--clr-gray);
  line-height: 1.5;
}

/* ─── Destinations / Gallery ──────────────────────────────── */
#destinations {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

#destinations::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('https://images.pexels.com/photos/531731/pexels-photo-531731.jpeg?auto=compress&cs=tinysrgb&w=1920&q=40') center/cover no-repeat fixed;
  filter: brightness(0.7) saturate(1.2) contrast(1.1) blur(1px);
  z-index: -2;
}

#destinations::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 100% 60% at 50% 0%, rgba(6, 182, 212, 0.14) 0%, transparent 70%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(16, 185, 129, 0.10) 0%, transparent 65%),
    linear-gradient(180deg, rgba(5, 6, 10, 0.4) 0%, rgba(10, 13, 20, 0.35) 50%, rgba(5, 6, 10, 0.4) 100%);
  z-index: -1;
}

.destinations-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.dest-marquee-wrap {
  margin-top: 60px;
  overflow: hidden;
  position: relative;
}

.dest-marquee-wrap::before,
.dest-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

.dest-marquee-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--clr-bg2), transparent);
}

.dest-marquee-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--clr-bg2), transparent);
}

.dest-marquee {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.dest-marquee:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.dest-card {
  position: relative;
  width: 280px;
  height: 360px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  cursor: pointer;
  border: 1px solid transparent;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.dest-card:hover {
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.15), 0 20px 60px rgba(0, 0, 0, 0.5);
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

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

.dest-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(5, 6, 10, 0.9) 0%, transparent 100%);
}

.dest-card-name {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.dest-card-country {
  font-size: 0.8125rem;
  color: var(--clr-gold);
  margin-top: 4px;
}

/* ─── Packages Section ────────────────────────────────────── */
#packages {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

#packages::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('https://images.pexels.com/photos/1072179/pexels-photo-1072179.jpeg?auto=compress&cs=tinysrgb&w=1920&q=40') center/cover no-repeat fixed;
  filter: brightness(0.7) saturate(1.2) contrast(1.1) blur(1px);
  z-index: -2;
}

#packages::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 65%),
    radial-gradient(ellipse 70% 50% at 70% 50%, rgba(16, 185, 129, 0.08) 0%, transparent 65%),
    linear-gradient(180deg, rgba(5, 6, 10, 0.45) 0%, rgba(10, 13, 20, 0.35) 100%);
  z-index: -1;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.pkg-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform var(--duration-med) var(--ease-spring),
    box-shadow var(--duration-med),
    border-color var(--duration-med);
  cursor: pointer;
  position: relative;
}

/* Floating light-assets drift in background */
.floating-asset {
  position: absolute;
  font-size: 4rem;
  opacity: 0.04;
  filter: blur(1px);
  z-index: 0;
  pointer-events: none;
  animation: asset-drift 20s linear infinite alternate;
}

@keyframes asset-drift {
  from {
    transform: translate(0, 0) rotate(0deg);
  }

  to {
    transform: translate(40px, -40px) rotate(10deg);
  }
}

/* Glowing bottom-line on hover */
.pkg-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #06b6d4, #10b981);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-expo);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.7);
}

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

.pkg-card:hover {
  transform: translateY(-14px);
  border-color: rgba(6, 182, 212, 0.35);
  box-shadow:
    var(--shadow-card),
    0 0 50px rgba(6, 182, 212, 0.12),
    0 0 80px rgba(16, 185, 129, 0.08);
}

.pkg-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-smooth), filter 0.5s;
}

.pkg-card:hover .pkg-img {
  transform: scale(1.07);
  filter: brightness(1.05) saturate(1.1);
}

.pkg-img-wrap {
  overflow: hidden;
  position: relative;
}

/* Gradient overlay on the image */
.pkg-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(0deg, rgba(5, 6, 10, 0.8) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.pkg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(6, 182, 212, 0.12);
  color: var(--clr-gold);
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.pkg-body {
  padding: 28px;
}

.pkg-category {
  margin-bottom: 12px;
}

.pkg-title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.3;
}

.pkg-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.pkg-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--clr-gray);
}

.pkg-meta-item svg {
  width: 14px;
  height: 14px;
  color: var(--clr-teal-lt);
}

.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-top: 1px solid var(--clr-border);
}

.pkg-price {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pkg-price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--clr-gray);
  -webkit-text-fill-color: var(--clr-gray);
}

/* ─── Why Choose Us ───────────────────────────────────────── */
#why {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  /* Diagonal divider for transition */
  padding-top: 180px;
}

#why::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('https://images.pexels.com/photos/1450360/pexels-photo-1450360.jpeg?auto=compress&cs=tinysrgb&w=1920&q=40') center/cover no-repeat fixed;
  filter: brightness(0.7) saturate(1.2) contrast(1.1) blur(1px);
  z-index: -2;
}

.section-mask-slant {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: var(--clr-bg);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 10;
}

#why::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(6, 182, 212, 0.11) 0%, transparent 65%),
    radial-gradient(ellipse 50% 70% at 10% 50%, rgba(16, 185, 129, 0.09) 0%, transparent 60%),
    linear-gradient(135deg, rgba(10, 13, 20, 0.45) 0%, rgba(5, 6, 10, 0.35) 100%);
  z-index: -1;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.why-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color var(--duration-med), transform var(--duration-med) var(--ease-spring), background var(--duration-med);
  cursor: default;
}

.feature-item:hover {
  border-color: rgba(6, 182, 212, 0.45);
  transform: translateX(6px);
  box-shadow: 0 0 24px rgba(6, 182, 212, 0.1);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(6, 182, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.feature-item:hover .feature-icon {
  background: rgba(6, 182, 212, 0.2);
  box-shadow: 0 0 16px rgba(6, 182, 212, 0.3);
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-text p {
  font-size: 0.875rem;
  color: var(--clr-gray-lt);
  line-height: 1.6;
}

.why-visual {
  position: relative;
}

/* Glowing outer ring around the image */
.why-visual::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: calc(var(--radius-xl) + 3px);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.6), rgba(16, 185, 129, 0.4), transparent, rgba(6, 182, 212, 0.4));
  z-index: 1;
  pointer-events: none;
}

/* Inner dark mask to preserve readable image under the ring */
.why-visual::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 60px rgba(5, 6, 10, 0.5);
  z-index: 2;
  pointer-events: none;
}

.why-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 0;
  transition: transform 0.7s var(--ease-smooth);
}

.why-visual:hover .why-img {
  transform: scale(1.02);
}

/* Floating badge/overlay decoration */
.why-visual-badge {
  position: absolute;
  bottom: 36px;
  left: -24px;
  background: rgba(5, 6, 10, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(6, 182, 212, 0.35);
  border-radius: var(--radius-md);
  padding: 18px 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(6, 182, 212, 0.15);
}

.why-visual-badge-icon {
  font-size: 2rem;
  line-height: 1;
}

.why-visual-badge-text strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.why-visual-badge-text span {
  font-size: 0.78rem;
  color: var(--clr-gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ─── Testimonials ────────────────────────────────────────── */
#testimonials {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('https://images.pexels.com/photos/2416600/pexels-photo-2416600.jpeg?auto=compress&cs=tinysrgb&w=1920&q=40') center/cover no-repeat fixed;
  filter: brightness(0.7) saturate(1.2) contrast(1.1) blur(1px);
  z-index: -2;
}

#testimonials::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 40% at 50% 100%, rgba(16, 185, 129, 0.09) 0%, transparent 70%),
    radial-gradient(ellipse 90% 40% at 50% 0%, rgba(6, 182, 212, 0.09) 0%, transparent 70%),
    linear-gradient(180deg, rgba(5, 6, 10, 0.4) 0%, rgba(5, 6, 10, 0.35) 50%, rgba(5, 6, 10, 0.4) 100%);
  z-index: -1;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-slider {
  position: relative;
  margin-top: 60px;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s var(--ease-expo);
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 40px;
  min-width: calc(33.333% - 16px);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 24px;
  font-family: var(--font-serif);
  font-size: 8rem;
  color: rgba(6, 182, 212, 0.10);
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.star {
  color: var(--clr-teal-lt);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.9375rem;
  color: var(--clr-gray-lt);
  line-height: 1.75;
  margin-bottom: 28px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(6, 182, 212, 0.4);
}

.testimonial-name {
  font-size: 0.9375rem;
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--clr-gray);
}

.slider-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--clr-border);
  background: var(--clr-surface);
  color: var(--clr-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast) var(--ease-spring);
}

.slider-btn:hover {
  background: linear-gradient(135deg, #06b6d4, #10b981);
  border-color: transparent;
  color: #05060a;
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--clr-border);
  cursor: pointer;
  transition: all var(--duration-fast);
}

.slider-dot.active {
  background: linear-gradient(90deg, #06b6d4, #10b981);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(6, 182, 212, 0.6);
}

/* ─── Contact Section ─────────────────────────────────────── */
#contact {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('https://images.pexels.com/photos/3183150/pexels-photo-3183150.jpeg?auto=compress&cs=tinysrgb&w=1920&q=40') center/cover no-repeat fixed;
  filter: brightness(0.7) saturate(1.2) contrast(1.1) blur(1px);
  z-index: -2;
}

#contact::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%, rgba(6, 182, 212, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 100% 0%, rgba(16, 185, 129, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, rgba(5, 6, 10, 0.4) 0%, rgba(10, 13, 20, 0.35) 100%);
  z-index: -1;
}

/* Animated light beam sweeping across contact section */
.contact-beam {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 40%;
  height: 140%;
  background: linear-gradient(105deg,
      transparent 40%,
      rgba(6, 182, 212, 0.03) 48%,
      rgba(6, 182, 212, 0.05) 50%,
      rgba(6, 182, 212, 0.03) 52%,
      transparent 60%);
  transform: rotate(0deg);
  z-index: 0;
  pointer-events: none;
  animation: beam-sweep 12s ease-in-out infinite;
}

.contact-beam-2 {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 35%;
  height: 120%;
  background: linear-gradient(105deg,
      transparent 40%,
      rgba(16, 185, 129, 0.025) 48%,
      rgba(16, 185, 129, 0.04) 50%,
      rgba(16, 185, 129, 0.025) 52%,
      transparent 60%);
  z-index: 0;
  pointer-events: none;
  animation: beam-sweep 16s ease-in-out infinite reverse;
  animation-delay: -5s;
}

@keyframes beam-sweep {

  0%,
  100% {
    transform: translateX(0) skewX(-5deg);
    opacity: 0.6;
  }

  50% {
    transform: translateX(40px) skewX(-5deg);
    opacity: 1;
  }
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info p {
  color: var(--clr-gray-lt);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: border-color var(--duration-med), transform var(--duration-fast);
  text-decoration: none;
  color: inherit;
}

.contact-item:hover {
  border-color: rgba(6, 182, 212, 0.45);
  transform: translateX(4px);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.1);
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(6, 182, 212, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text {
  display: flex;
  flex-direction: column;
}

.contact-item-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 3px;
}

.contact-item-value {
  font-size: 0.9rem;
  color: var(--clr-white);
}

/* ─── Form ───────────────────────────────────────────────── */
.contact-form {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  padding: 48px;
  backdrop-filter: blur(20px);
}

.form-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.875rem;
  color: var(--clr-gray);
  margin-bottom: 32px;
}

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

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

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

.form-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--clr-gray-lt);
  letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--clr-white);
  outline: none;
  transition: border-color var(--duration-fast),
    background var(--duration-fast),
    box-shadow var(--duration-fast);
  width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(134, 134, 139, 0.6);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #06b6d4;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2), 0 0 20px rgba(6, 182, 212, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: rgba(255, 255, 255, 0.04);
}

.form-select option {
  background: #0a0d14;
  color: var(--clr-white);
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.form-submit .btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: scale(0);
  animation: ripple 0.6s linear;
}

@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  gap: 16px;
  text-align: center;
}

.form-success.show {
  display: flex;
}

.success-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(29, 185, 84, 0.15);
  border: 2px solid rgba(29, 185, 84, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  animation: pop-in 0.5s var(--ease-spring);
}

@keyframes pop-in {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

/* ─── Footer ──────────────────────────────────────────────── */
#footer {
  position: relative;
  border-top: 1px solid var(--clr-border);
  padding: 80px 48px 40px;
  isolation: isolate;
  overflow: hidden;
}

#footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('https://images.pexels.com/photos/3225531/pexels-photo-3225531.jpeg?auto=compress&cs=tinysrgb&w=1920&q=20') center/cover no-repeat;
  filter: brightness(0.25) saturate(1.5);
  z-index: -2;
}

#footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(6, 182, 212, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, rgba(10, 13, 20, 0.97) 0%, rgba(5, 6, 10, 0.99) 100%);
  z-index: -1;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-logo {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--clr-gray);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gray);
  text-decoration: none;
  font-size: 1rem;
  transition: all var(--duration-fast) var(--ease-spring);
}

.social-btn:hover {
  background: rgba(6, 182, 212, 0.1);
  border-color: #06b6d4;
  color: #06b6d4;
  transform: translateY(-3px);
  box-shadow: 0 0 16px rgba(6, 182, 212, 0.3);
}

.footer-col h5 {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--clr-teal-lt);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: var(--clr-gray);
  text-decoration: none;
  transition: color var(--duration-fast), transform var(--duration-fast);
  display: inline-block;
}

.footer-col ul a:hover {
  color: var(--clr-white);
  transform: translateX(4px);
}

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

.footer-bottom p {
  font-size: 0.8125rem;
  color: var(--clr-gray);
}

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

.footer-bottom-links a {
  font-size: 0.8125rem;
  color: var(--clr-gray);
  text-decoration: none;
  transition: color var(--duration-fast);
}

.footer-bottom-links a:hover {
  color: var(--clr-white);
}

/* ─── Floating WhatsApp ───────────────────────────────────── */
#whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #06b6d4, #10b981);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 500;
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.45), 0 0 40px rgba(16, 185, 129, 0.2);
  transition: transform var(--duration-fast) var(--ease-spring), box-shadow var(--duration-fast);
  text-decoration: none;
  animation: float-bob 3s ease-in-out infinite;
}

#whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 12px 48px rgba(6, 182, 212, 0.7), 0 0 60px rgba(16, 185, 129, 0.3);
}

.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(6, 182, 212, 0.6);
  animation: pulse-ring 2.5s ease-out infinite;
}

@keyframes float-bob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes pulse-ring {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.5);
  }
}

/* ─── Keyframe Utilities ──────────────────────────────────── */
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes float-particle {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }

  10% {
    opacity: 0.7;
  }

  90% {
    opacity: 0.2;
  }

  100% {
    opacity: 0;
    transform: translateY(-100vh) scale(1);
  }
}

/* ─── Horizontal Scroll Section ──────────────────────────── */
#scroll-journey {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
}

#scroll-journey::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url('https://images.pexels.com/photos/210186/pexels-photo-210186.jpeg?auto=compress&cs=tinysrgb&w=1920&q=40') center/cover no-repeat fixed;
  filter: brightness(0.7) saturate(1.2) contrast(1.1) blur(1px);
  z-index: -2;
}

#scroll-journey::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Dot grid pattern */
    radial-gradient(circle, rgba(6, 182, 212, 0.18) 1px, transparent 1px),
    /* Radial glow center */
    radial-gradient(ellipse 100% 50% at 50% 50%, rgba(6, 182, 212, 0.06) 0%, transparent 70%),
    linear-gradient(180deg, rgba(5, 6, 10, 0.45) 0%, rgba(5, 6, 10, 0.35) 50%, rgba(5, 6, 10, 0.45) 100%);
  background-size: 40px 40px, 100% 100%, 100% 100%;
  z-index: -1;
}

/* Animated scan-line sweep */
#scroll-journey .journey-scanline {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.04), transparent);
  z-index: 0;
  pointer-events: none;
  animation: scanline-sweep 8s linear infinite;
}

@keyframes scanline-sweep {
  0% {
    left: -60%;
  }

  100% {
    left: 120%;
  }
}

.journey-header {
  padding: 0 48px;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.journey-track {
  display: flex;
  gap: 24px;
  padding: 0 48px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 20px;
  cursor: grab;
}

.journey-track::-webkit-scrollbar {
  display: none;
}

.journey-track.grabbing {
  cursor: grabbing;
}

.journey-step {
  min-width: 300px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  position: relative;
  transition: border-color var(--duration-med), transform var(--duration-med) var(--ease-spring), background var(--duration-med);
}

.journey-step:hover {
  border-color: rgba(6, 182, 212, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.1);
}

.step-num {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, #06b6d4, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 20px;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.step-title {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--clr-gray-lt);
  line-height: 1.6;
}

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-img-accent {
    display: none;
  }

  .why-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-right: 1px solid var(--clr-border);
  }

  .testimonial-card {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  #nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .section,
  .section-full {
    padding: 80px 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 120px 24px 48px;
  }

  body {
    cursor: auto;
  }

  #cursor-dot,
  #cursor-ring {
    display: none;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .testimonial-card {
    min-width: calc(100% - 0px);
  }

  #stats {
    padding: 40px 24px;
  }

  .about-img-main {
    height: 320px;
  }

  .dest-card {
    width: 220px;
    height: 280px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-pillars {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }
}