/* =============================================
   CeylonVista Travels - Main Stylesheet
   Sri Lanka's Premier Luxury Travel Company
   ============================================= */

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

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Organic Sri Lankan Nature Palette from user photo */
  --teal: #1A5F49;             /* Deep Tea-Plantation Green */
  --teal-light: #48A886;       /* Bright Emerald Green */
  --teal-dark: #0F3F2F;        /* Shadow Pine Green */
  --coral: #E76F51;            /* Warm Sunset Terracotta / Sand */
  --coral-light: #F4A261;      /* Solar Ochre Sand */
  --solar-gold: #E9C46A;       /* Golden Sunshine */
  
  --primary-gradient: linear-gradient(135deg, #1A5F49 0%, #388E3C 50%, #81C784 100%); /* Lush forest gradient */
  --accent-gradient: linear-gradient(135deg, #E76F51 0%, #F4A261 100%);                /* Warm sunset gradient */
  --glow-gradient: linear-gradient(135deg, rgba(26, 95, 73, 0.4) 0%, rgba(231, 111, 81, 0.4) 100%);
  
  --dark-bg: #070D0A;          /* Deep Forest Night */
  --dark-mid: #0E1A14;         /* Mid Forest Shadow */
  --dark-light: #162C21;       /* Light Forest Pine */
  --light-bg: #F4F8F6;         /* Mountain Mist Gray-Green */
  --light-mid: #E1ECE6;        /* Soft Sage Mist */
  --white: #FFFFFF;
  
  --text-primary: #1A2E26;     /* Dark Charcoal Green */
  --text-muted: #4F6D60;       /* Muted Olive Green */
  --text-light: #9CB5A9;       /* Light Sage */
  
  --font-display: 'Outfit', sans-serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  --shadow-sm: 0 4px 12px rgba(26,95,73,0.03);
  --shadow-md: 0 12px 36px rgba(26,95,73,0.08);
  --shadow-lg: 0 24px 72px rgba(0,0,0,0.12);
  --shadow-coral: 0 12px 36px rgba(231,111,81,0.2);
  --shadow-teal: 0 12px 36px rgba(26,95,73,0.2);
  
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --radius-xl: 48px;
  
  --transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); /* Playful spring physics */
  --transition-fast: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);

  /* Legacy Mapping for Seamless Integration */
  --gold: var(--teal);
  --gold-light: var(--teal-light);
  --gold-dark: var(--teal-dark);
  --gold-gradient: var(--primary-gradient);
  --navy: var(--dark-bg);
  --navy-mid: var(--dark-mid);
  --navy-light: var(--dark-light);
  --cream: var(--light-bg);
  --cream-dark: var(--light-mid);

  --font-serif: var(--font-display);
  --font-elegant: var(--font-sans);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  background-color: var(--cream);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  position: relative;
}

/* ===== FLOATING BACKGROUND BLOBS ===== */
.blob-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  animation: floatBlob 20s infinite alternate ease-in-out;
}
.blob-1 {
  background: var(--teal);
  top: 15%;
  left: -10%;
  animation-delay: 0s;
}
.blob-2 {
  background: var(--coral);
  top: 45%;
  right: -10%;
  animation-delay: -5s;
}
.blob-3 {
  background: var(--solar-gold);
  top: 75%;
  left: -5%;
  animation-delay: -10s;
}
@keyframes floatBlob {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(80px, 60px) scale(1.15); }
  100% { transform: translate(-40px, -80px) scale(0.9); }
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 4px; }

/* ===== SELECTION ===== */
::selection { background: var(--teal); color: var(--navy); }

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.section-tag::before, .section-tag::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.section-title span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  display: inline-block;
  position: relative;
}
.section-title span::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-gradient);
  border-radius: 2px;
  opacity: 0.3;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.7;
  margin-top: 14px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent-gradient);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 38px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-coral);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--primary-gradient);
  opacity: 0;
  z-index: -1;
  transition: var(--transition);
}
.btn-primary:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 16px 36px rgba(255, 107, 107, 0.4);
}
.btn-primary:hover::after {
  opacity: 1;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 38px;
  border-radius: 60px;
  border: 2px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark-bg);
  border-color: var(--white);
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 36px rgba(255,255,255,0.15);
}

/* ===== LOADER ===== */
#loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInUp 0.8s ease forwards;
}
.loader-logo span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
}
.loader-bar {
  width: 240px;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 4px;
  animation: loadFill 1.8s ease forwards;
}
@keyframes loadFill { from { width: 0; } to { width: 100%; } }
.loader-text {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  animation: pulse 1.2s ease infinite;
}
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  top: 16px;
  left: 32px;
  right: 32px;
  background: rgba(14, 14, 26, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 24px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 210, 196, 0.2);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.nav-logo-text .brand {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-logo-text .tagline {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform: translateX(-50%);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 16px; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-phone {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone .icon { color: var(--coral); font-size: 0.9rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-fast);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(380px, 100vw);
  height: 100vh;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 100px 48px 48px;
  gap: 8px;
  transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-left: 1px solid rgba(201,168,76,0.2);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition-fast);
}
.mobile-menu a:hover { color: var(--gold-light); padding-left: 8px; }
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.menu-overlay.show { opacity: 1; visibility: visible; }

/* ===== HERO SECTION ===== */
#hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 8s ease forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,15,30,0.3) 0%,
    rgba(10,15,30,0.1) 40%,
    rgba(10,15,30,0.7) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: var(--white);
  max-width: 900px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.35);
  border-radius: 60px;
  padding: 8px 22px;
  margin-bottom: 28px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral-light);
  animation: fadeInDown 1s 0.3s ease both;
  backdrop-filter: blur(10px);
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--coral); border-radius: 50%; animation: pulse 1.5s infinite; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.5vw, 6.2rem);
  font-weight: 800;
  line-height: 1.02;
  margin-bottom: 24px;
  animation: fadeInUp 1s 0.5s ease both;
  text-shadow: 0 4px 30px rgba(0,0,0,0.4);
  letter-spacing: -0.03em;
}
.hero-title .line-gold {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: normal;
  display: block;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  margin-bottom: 44px;
  animation: fadeInUp 1s 0.7s ease both;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 1s 0.9s ease both;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.5s ease both;
}
.scroll-line {
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), var(--teal));
  animation: scrollAnim 2s ease infinite;
  border-radius: 2px;
}
@keyframes scrollAnim {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Hero Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: var(--transition-fast);
}
.slider-dot.active { background: var(--teal); width: 28px; border-radius: 4px; }

/* ===== STATS BAR ===== */
#stats {
  background: var(--dark-mid);
  padding: 0;
  position: relative;
  z-index: 5;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.stat-item {
  padding: 44px 32px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.06);
  position: relative;
  transition: var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: var(--primary-gradient);
  transition: var(--transition);
  border-radius: 3px;
}
.stat-item:hover::before { transform: translateX(-50%) scaleX(1); }
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ===== ABOUT SECTION ===== */
#about {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: 'SRI LANKA';
  position: absolute;
  top: 50%;
  left: -5%;
  transform: translateY(-50%) rotate(-90deg);
  font-family: var(--font-display);
  font-size: 11rem;
  font-weight: 900;
  color: rgba(0, 210, 196, 0.035);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-images {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.about-img-main:hover { transform: scale(1.02); }
.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}
.about-img-secondary:hover { transform: scale(1.05); }
.about-badge-float {
  position: absolute;
  top: -24px;
  right: 60px;
  background: var(--primary-gradient);
  padding: 16px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-teal);
  text-align: center;
}
.about-badge-float .number { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--white); line-height: 1; }
.about-badge-float .label { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); opacity: 0.85; }

.about-content { padding-right: 20px; }
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 210, 196, 0.08);
  transition: var(--transition);
}
.about-feature:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--teal); }
.about-feature-icon {
  width: 38px;
  height: 38px;
  background: rgba(0, 210, 196, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  color: var(--teal);
}
.about-feature-text .title { font-family: var(--font-sans); font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.about-feature-text .desc { font-family: var(--font-sans); font-size: 0.75rem; color: var(--text-muted); line-height: 1.45; }

/* ===== DESTINATIONS SECTION ===== */
#destinations {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#destinations::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 210, 196, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

#destinations .section-title { color: var(--white); }
#destinations .section-subtitle { color: rgba(255,255,255,0.5); }

.destinations-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 60px;
}

.dest-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  group: true;
}
.dest-card:first-child { grid-row: span 2; }

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-height: 200px;
}
.dest-card:first-child img { min-height: 440px; }
.dest-card:hover img { transform: scale(1.08); }

.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,26,0.9) 0%, rgba(14,14,26,0.15) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}
.dest-card:hover .dest-card-overlay {
  background: linear-gradient(to top, rgba(14,14,26,0.95) 0%, rgba(14,14,26,0.35) 60%, transparent 100%);
}

.dest-tag {
  display: inline-block;
  background: rgba(255, 107, 107, 0.15);
  border: 1px solid rgba(255, 107, 107, 0.35);
  color: var(--coral-light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  width: fit-content;
}
.dest-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}
.dest-card:first-child .dest-name { font-size: 2.2rem; }
.dest-desc {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.dest-card:hover .dest-desc { max-height: 80px; opacity: 1; }
.dest-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-light);
  margin-top: 12px;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.dest-card:hover .dest-explore { opacity: 1; transform: translateY(0); }
.dest-explore svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.dest-card:hover .dest-explore svg { transform: translateX(4px); }

/* ===== PACKAGES SECTION ===== */
#packages {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}
#packages::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--teal), transparent);
}

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

.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 210, 196, 0.08);
  transition: var(--transition);
  position: relative;
}
.package-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.package-card.featured {
  border: 2px solid var(--coral);
  transform: translateY(-6px);
}
.package-card.featured:hover { transform: translateY(-16px); }

.package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-gradient);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  z-index: 2;
  box-shadow: var(--shadow-coral);
}

.package-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.package-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.package-card:hover .package-img img { transform: scale(1.06); }
.package-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14,14,26,0.4) 0%, transparent 60%);
}

.package-body { padding: 28px; }
.package-duration {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}
.package-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
.package-desc {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.package-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid var(--cream-dark);
  margin-bottom: 24px;
}
.package-include {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-primary);
}
.package-include .check { color: var(--teal); font-size: 0.9rem; }
.package-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--cream-dark);
}
.package-price .from { font-size: 0.7rem; color: var(--text-muted); display: block; }
.package-price .amount { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--navy); line-height: 1; }
.package-price .per { font-size: 0.72rem; color: var(--text-muted); }
.package-btn {
  background: var(--accent-gradient);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 12px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-coral);
}
.package-btn:hover { transform: scale(1.05); box-shadow: 0 8px 24px rgba(255,107,107,0.35); }

/* ===== WHY CHOOSE US ===== */
#why-us {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-light) 100%);
  position: relative;
  overflow: hidden;
}
.why-us-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/stilt_fishermen.png');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
}
#why-us .section-title { color: var(--white); }
#why-us .section-subtitle { color: rgba(255,255,255,0.5); }

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.why-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0, 210, 196, 0.08);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.why-card:hover { background: rgba(255,255,255,0.06); border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.35); }
.why-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(0, 210, 196, 0.08);
  border: 1px solid rgba(0, 210, 196, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: rgba(0, 210, 196, 0.15); transform: scale(1.1) rotate(5deg); }
.why-content .title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 10px; }
.why-content .desc { font-family: var(--font-sans); font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.75; }

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.testimonials-header { text-align: center; margin-bottom: 60px; }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(0, 210, 196, 0.08);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--teal);
  opacity: 0.08;
  line-height: 1;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal); }

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--solar-gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.testimonial-text {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-style: normal;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.75;
  margin-bottom: 28px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-teal);
}
.testimonial-name { font-family: var(--font-sans); font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.testimonial-country { font-family: var(--font-sans); font-size: 0.75rem; color: var(--text-muted); }

/* ===== GALLERY ===== */
#gallery {
  padding: 120px 0;
  background: var(--navy);
}
#gallery .section-title { color: var(--white); }
.gallery-header { text-align: center; margin-bottom: 60px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,14,26,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(14,14,26,0.45); }
.gallery-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-bg);
  font-size: 1.2rem;
  opacity: 0;
  transform: scale(0.7);
  transition: var(--transition);
}
.gallery-item:hover .gallery-icon { opacity: 1; transform: scale(1); }

/* ===== CONTACT / BOOKING ===== */
#contact {
  padding: 120px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.contact-info h2 span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.contact-info p { font-family: var(--font-sans); font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 210, 196, 0.08);
  transition: var(--transition);
}
.contact-detail:hover { border-color: var(--teal); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 210, 196, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--teal);
  flex-shrink: 0;
}
.contact-detail-text .label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 3px; }
.contact-detail-text .value { font-size: 0.95rem; font-weight: 600; color: var(--navy); }

/* Form */
.booking-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0, 210, 196, 0.08);
}
.booking-form h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.booking-form p { font-size: 0.85rem; color: var(--text-muted); 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: 16px; }
.form-group label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--cream);
  border: 1.5px solid rgba(0, 210, 196, 0.15);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--navy);
  transition: var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(0, 210, 196, 0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { 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='%2300D2C4' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--accent-gradient);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-coral);
  margin-top: 8px;
}
.form-submit:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(255, 107, 107, 0.35); }

/* ===== FOOTER ===== */
#footer {
  background: var(--navy);
  padding: 80px 0 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-brand .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.footer-brand .logo img { width: 44px; height: 44px; object-fit: contain; border-radius: 50%; }
.footer-brand .logo-text .brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--white); }
.footer-brand .logo-text .tag { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.8; margin-bottom: 28px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition-fast);
  cursor: pointer;
}
.social-link:hover { background: var(--teal); color: var(--dark-bg); border-color: var(--teal); transform: translateY(-3px); }

.footer-col h4 { font-family: var(--font-display); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: var(--white); margin-bottom: 24px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: var(--transition-fast); display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--teal); padding-left: 4px; }
.footer-col ul li a::before { content: '→'; font-size: 0.7rem; color: var(--teal); opacity: 0; transition: var(--transition-fast); }
.footer-col ul li a:hover::before { opacity: 1; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom .gold { color: var(--teal); }

/* ===== BACK TO TOP ===== */
#back-to-top {
  position: fixed;
  bottom: 36px;
  right: 36px;
  width: 50px;
  height: 50px;
  background: var(--primary-gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  z-index: 500;
  box-shadow: var(--shadow-teal);
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  border: none;
}
#back-to-top.visible { opacity: 1; transform: translateY(0); }
#back-to-top:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(0,210,196,0.4); }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.revealed { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,15,30,0.96);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}
.lightbox-close:hover { background: var(--gold); color: var(--navy); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 36px;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
  cursor: pointer;
  z-index: 500;
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.12) rotate(-5deg); box-shadow: 0 16px 48px rgba(37,211,102,0.6); }

/* ===== VEHICLE SECTION ===== */
#vehicle {
  padding: 120px 0;
  background: linear-gradient(160deg, #0A0F1E 0%, #111827 50%, #0A0F1E 100%);
  position: relative;
  overflow: hidden;
}

/* Animated road */
#vehicle::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, #080c18 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.vehicle-road {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: #1a1f2e;
  border-top: 3px solid rgba(201,168,76,0.15);
  overflow: hidden;
}
.vehicle-road::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -200%;
  width: 400%;
  height: 3px;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 40px, rgba(201,168,76,0.4) 40px, rgba(201,168,76,0.4) 80px);
  animation: roadMove 2s linear infinite;
}
@keyframes roadMove {
  from { transform: translateX(0); }
  to { transform: translateX(80px); }
}

/* Particles / Stars */
.vehicle-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.vehicle-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 50%;
  opacity: 0;
  animation: particleFade var(--dur, 4s) var(--delay, 0s) ease-in-out infinite;
}
@keyframes particleFade {
  0% { opacity: 0; transform: scale(0); }
  50% { opacity: 0.6; }
  100% { opacity: 0; transform: scale(1.5); }
}

/* Speed lines */
.speed-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 80px;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.speed-lines.active { opacity: 1; }
.speed-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.25), transparent);
  animation: speedLine var(--dur, 0.8s) var(--delay, 0s) linear infinite;
}
@keyframes speedLine {
  from { transform: translateX(100%); opacity: 1; }
  to { transform: translateX(-100%); opacity: 0; }
}

/* Main layout */
.vehicle-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Car showcase */
.car-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.car-scene {
  position: relative;
  width: 100%;
  max-width: 520px;
}

.car-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(201,168,76,0.25) 0%, transparent 70%);
  filter: blur(10px);
  animation: glowPulse 2.5s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scaleX(1); }
  50% { opacity: 1; transform: translateX(-50%) scaleX(1.12); }
}

.car-image-wrap {
  position: relative;
  animation: carFloat 3.5s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.6));
  cursor: pointer;
  transition: filter 0.3s ease;
}
.car-image-wrap:hover {
  filter: drop-shadow(0 20px 60px rgba(201,168,76,0.3));
}
@keyframes carFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.car-image-wrap.driving {
  animation: carDrive 0.6s ease-in-out infinite;
}
@keyframes carDrive {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  25% { transform: translateY(-3px) rotate(0.3deg); }
  75% { transform: translateY(3px) rotate(-0.3deg); }
}

.car-main-img {
  width: 100%;
  border-radius: var(--radius-md);
  object-fit: cover;
  max-height: 320px;
  transition: transform 0.5s ease;
}

/* Headlight beam animation */
.headlight-beam {
  position: absolute;
  top: 35%;
  right: -60px;
  width: 120px;
  height: 60px;
  background: linear-gradient(to right, rgba(255,240,120,0.3), transparent);
  clip-path: polygon(0 40%, 100% 0%, 100% 100%, 0 60%);
  animation: headlightPulse 2s ease-in-out infinite;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.6s;
}
.headlight-beam.active { opacity: 1; }
@keyframes headlightPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

/* Car wheels */
.car-wheels {
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  padding: 0 15%;
  pointer-events: none;
}
.wheel {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid rgba(201,168,76,0.4);
  border-top-color: var(--gold);
  position: relative;
}
.wheel::after {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(0, 210, 196, 0.2);
}
.wheel.spinning { animation: wheelSpin 0.5s linear infinite; }
@keyframes wheelSpin { to { transform: rotate(360deg); } }

/* Car badges */
.car-badge-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.car-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(0, 210, 196, 0.2);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
}
.car-badge .icon { font-size: 0.9rem; }

/* Drive button */
.drive-btn {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-gradient);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-coral);
}
.drive-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 16px 40px rgba(255, 107, 107, 0.4); }
.drive-btn .btn-icon { transition: transform 0.3s ease; }
.drive-btn.active .btn-icon { animation: spin 0.6s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Interior flip */
.car-interior-popup {
  position: absolute;
  top: -20px;
  right: -30px;
  width: 160px;
  background: rgba(14, 14, 26, 0.95);
  border: 1px solid rgba(0, 210, 196, 0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: scale(0.85) translateY(10px);
  transition: var(--transition);
  pointer-events: none;
  z-index: 10;
  backdrop-filter: blur(12px);
}
.car-image-wrap:hover .car-interior-popup {
  opacity: 1;
  transform: scale(1) translateY(0);
}
.car-interior-popup img { width: 100%; height: 100px; object-fit: cover; }
.car-interior-popup .label {
  padding: 8px 10px;
  font-size: 0.68rem;
  color: var(--teal-light);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Vehicle Info */
.vehicle-info { color: var(--white); }
.vehicle-info .section-tag { margin-bottom: 20px; }
.vehicle-info .vehicle-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.vehicle-info .vehicle-title span { color: var(--teal-light); font-style: normal; }
.vehicle-info .vehicle-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  margin-bottom: 36px;
}

/* Specs grid */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.spec-item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0, 210, 196, 0.08);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: var(--transition);
}
.spec-item:hover {
  background: rgba(0, 210, 196, 0.06);
  border-color: var(--teal);
  transform: translateY(-3px);
}
.spec-icon { font-size: 1.3rem; margin-bottom: 8px; }
.spec-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); margin-bottom: 3px; }
.spec-value { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); }

/* Feature list */
.vehicle-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vehicle-feature {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.65);
}
.vehicle-feature .check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 210, 196, 0.08);
  border: 1px solid rgba(0, 210, 196, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--teal);
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */

/* Tablet Viewport (max-width: 1024px) */
@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  
  .nav-links { gap: 24px; }
  
  .dest-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .dest-card:first-child { grid-row: span 1; grid-column: span 2; }
  .dest-card:first-child img { min-height: 320px; }
  
  .packages-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .vehicle-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .car-showcase {
    max-width: 560px;
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
  }
}

/* Mobile Landscape (max-width: 768px) */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  
  #navbar { padding: 18px 0; }
  #navbar.scrolled {
    top: 10px;
    left: 16px;
    right: 16px;
    padding: 10px 16px;
  }
  
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .hamburger { display: flex; }
  
  .hero-title { font-size: clamp(2.4rem, 6vw, 4rem); }
  .hero-subtitle { font-size: 1.1rem; margin-bottom: 32px; }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .about-img-main { height: 380px; }
  .about-img-secondary { right: -10px; width: 160px; height: 200px; }
  .about-badge-float { right: 20px; }
  
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    padding: 30px 20px;
  }
  
  .why-us-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonials-track {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 180px);
    gap: 8px;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(4) { grid-column: span 1; }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* Mobile Portrait (max-width: 480px) */
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  
  #navbar.scrolled {
    top: 8px;
    left: 8px;
    right: 8px;
    padding: 8px 12px;
  }
  .nav-logo-text .brand { font-size: 1.1rem; }
  
  .hero-title { font-size: 2.3rem; line-height: 1.1; }
  .hero-buttons { flex-direction: column; width: 100%; gap: 12px; }
  .hero-buttons .btn-primary, .hero-buttons .btn-outline { width: 100%; justify-content: center; }
  
  #about, #destinations, #packages, #why-us, #testimonials, #gallery, #contact { padding: 60px 0; }
  
  .about-img-secondary { display: none; }
  .about-badge-float { top: -20px; right: 10px; padding: 12px 18px; }
  .about-badge-float .number { font-size: 1.8rem; }
  .about-features { grid-template-columns: 1fr; }
  
  .stats-inner {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 24px 20px;
  }
  .stat-item:last-child { border-bottom: none; }
  
  .dest-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .dest-card:first-child { grid-column: span 1; }
  .dest-card:first-child img { min-height: 240px; }
  .dest-card-overlay { padding: 20px; }
  .dest-name { font-size: 1.3rem; }
  .dest-card:first-child .dest-name { font-size: 1.6rem; }
  .dest-desc { display: none; }
  .dest-card:hover .dest-desc { display: none; }
  .dest-explore { opacity: 1; transform: translateY(0); }
  
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .package-body { padding: 20px; }
  .package-footer { flex-direction: column; align-items: stretch; gap: 16px; text-align: center; }
  .package-price { display: flex; flex-direction: column; align-items: center; }
  
  .why-card {
    padding: 24px 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .why-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 1.3rem;
  }
  
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .spec-item {
    padding: 14px 16px;
  }
  
  .booking-form {
    padding: 28px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    font-size: 0.78rem;
  }
  
  #back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
  
  #about::before {
    display: none;
  }
}
