/* =====================================================
   Kashmir Sky Wings — Premium Landing Page Styles
   ===================================================== */

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

:root {
  --gold:       #c9a84c;
  --gold-light: #e8c96f;
  --gold-dark:  #a07a30;
  --emerald:    #1a5c4a;
  --emerald-mid:#2e7d62;
  --emerald-lt: #3fa882;
  --sky:        #1a3a5c;
  --sky-mid:    #2356a0;
  --sky-lt:     #4a90d9;
  --cream:      #fdf8f0;
  --dark:       #0d1117;
  --dark2:      #161b22;
  --dark3:      #1e242d;
  --text:       #2d3748;
  --text-mid:   #4a5568;
  --text-lt:    #718096;
  --white:      #ffffff;
  --border:     rgba(201,168,76,0.2);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-elegant: 'Cormorant Garamond', Georgia, serif;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 16px 64px rgba(0,0,0,0.18);
  --shadow-xl:  0 32px 96px rgba(0,0,0,0.24);
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

img { display: block; width: 100%; object-fit: cover; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* =====================================================
   PRELOADER
   ===================================================== */
#preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--dark);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
  font-size: 3rem; color: var(--gold);
  animation: spinPulse 1.5s ease-in-out infinite;
}
@keyframes spinPulse {
  0%,100%  { transform: scale(1) rotate(0deg);   opacity: 1; }
  50%      { transform: scale(1.3) rotate(180deg); opacity: 0.7; }
}
.preloader-text {
  font-family: var(--font-display);
  font-size: 1.4rem; color: var(--cream);
  margin: 1rem 0 1.5rem; letter-spacing: 2px;
}
.preloader-bar {
  width: 220px; height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; margin: 0 auto; overflow: hidden;
}
.preloader-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  animation: fillBar 1.8s ease forwards;
}
@keyframes fillBar { to { width: 100%; } }

/* =====================================================
   NAVIGATION
   ===================================================== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0;
  background: #0f2a1e;  /* deep dark green — always visible */
  border-bottom: 2px solid rgba(201,168,76,0.35);  /* gold separator */
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
#navbar.scrolled {
  background: #0a1f16;  /* even deeper green when scrolled */
  border-bottom-color: rgba(201,168,76,0.55);
  box-shadow: 0 6px 48px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1400px; margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex; align-items: center; gap: 2rem;
  transition: padding var(--transition);
}
#navbar.scrolled .nav-container { padding: 0.85rem 2rem; }

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-size: 1.25rem;
  color: var(--white); white-space: nowrap;
}
.logo-icon {
  color: var(--gold); font-size: 1.4rem;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.6));
}
.logo-accent { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 0.5rem;
  margin-left: auto;
}
.nav-link {
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 1rem;
  font-size: 0.9rem; font-weight: 500;
  border-radius: 50px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: 2px; left: 50%; right: 50%;
  height: 2px; background: var(--gold); border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
}
.nav-link:hover::after, .nav-link.active::after {
  left: 1rem; right: 1rem;
}
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-weight: 700; font-size: 0.85rem;
  padding: 0.65rem 1.5rem; border-radius: 50px;
  letter-spacing: 0.5px; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}
.hamburger {
  display: none; flex-direction: column;
  gap: 5px; padding: 4px; margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile menu full-screen overlay ---- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #0d2418;          /* solid dark green — no transparency */
  z-index: 1001;                /* above the navbar (1000) */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  /* hidden by default via opacity + pointer-events */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  overflow: hidden;
}
.mobile-menu::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.mobile-menu ul {
  text-align: center;
  display: flex; flex-direction: column; gap: 0.25rem;
  width: 100%;
}
.mobile-link {
  display: block; padding: 0.9rem 2rem;
  font-family: var(--font-display); font-size: 2rem;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition), letter-spacing var(--transition), padding-left var(--transition);
  letter-spacing: 1px;
  position: relative;
}
.mobile-link::after {
  content: '';
  position: absolute; bottom: 0; left: 50%; right: 50%;
  height: 1px; background: rgba(201,168,76,0.3);
  transition: left 0.3s ease, right 0.3s ease;
}
.mobile-link:hover { color: var(--gold); letter-spacing: 2px; }
.mobile-link:hover::after { left: 20%; right: 20%; }
.cta-mobile {
  margin-top: 1rem !important;
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--dark) !important;
  padding: 0.8rem 3rem !important;
  border-radius: 50px;
  font-size: 1.1rem !important;
  font-weight: 700;
  -webkit-text-fill-color: var(--dark);
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
}
.mobile-menu-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: rgba(255,255,255,0.5); font-size: 2rem; line-height: 1;
  transition: color var(--transition), transform var(--transition);
}
.mobile-menu-close:hover { color: var(--gold); transform: rotate(90deg); }

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.05);
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.1); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,17,23,0.75) 0%,
    rgba(26,60,92,0.6) 40%,
    rgba(26,92,74,0.5) 70%,
    rgba(13,17,23,0.8) 100%
  );
}
.hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.particle {
  position: absolute; border-radius: 50%;
  background: rgba(201,168,76,0.6);
  animation: floatParticle linear infinite;
}
@keyframes floatParticle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 2rem;
  max-width: 900px;
}
.hero-tagline {
  font-family: var(--font-elegant);
  font-size: 1.15rem; color: var(--gold-light);
  letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700; color: var(--white);
  line-height: 1.1; margin-bottom: 1.5rem;
  text-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.hero-title em {
  font-style: italic; color: var(--gold-light);
  display: block;
}
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.85);
  max-width: 650px; margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 4rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-weight: 700; font-size: 0.95rem;
  padding: 0.9rem 2.2rem; border-radius: 50px;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  letter-spacing: 0.5px;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(201,168,76,0.55);
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  color: var(--white); font-weight: 600; font-size: 0.95rem;
  padding: 0.9rem 2.2rem; border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--gold-light);
  color: var(--gold-light);
  transform: translateY(-3px);
}

.hero-stats {
  display: flex; gap: 0; justify-content: center; flex-wrap: wrap;
  background: rgba(255,255,255,0.07); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg); padding: 1.5rem 2rem;
  max-width: 700px; margin: 0 auto;
}
.stat {
  text-align: center; padding: 0 2rem; flex: 1; min-width: 120px;
}
.stat-num {
  display: block; font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 700; color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  display: block; font-size: 0.75rem; color: rgba(255,255,255,0.7);
  margin-top: 0.4rem; letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px; background: rgba(255,255,255,0.2); margin: 0;
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.7); font-size: 0.8rem; letter-spacing: 1px;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
.scroll-icon { font-size: 1.4rem; color: var(--gold); }

/* =====================================================
   MARQUEE
   ===================================================== */
.marquee-strip {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 1rem 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 2.5rem; white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
  color: var(--dark); font-weight: 600;
  font-size: 0.95rem; letter-spacing: 1px;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================================
   SECTION COMMONS
   ===================================================== */
.section { padding: 6rem 0; }
.container { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 700;
  display: block; margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; color: var(--dark);
  line-height: 1.2; margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold-dark); }
.section-subtitle { color: var(--text-mid); font-size: 1rem; max-width: 600px; margin: 0 auto; }
.section-header.light .section-title { color: var(--white); }
.section-header.light .section-subtitle { color: rgba(255,255,255,0.75); }
.section-header.light .section-label { color: var(--gold-light); }

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-visual {
  position: relative; padding-bottom: 3rem;
}
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}
.about-img-float {
  position: absolute; bottom: 0; right: -2rem;
  width: 55%; border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--white);
  aspect-ratio: 4/3;
}
.about-badge {
  position: absolute; top: -1.5rem; right: 2rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
  text-align: center; z-index: 2;
}
.badge-num { display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700; }
.badge-text { font-size: 0.75rem; font-weight: 600; line-height: 1.3; }

.about-content { }
.about-desc { color: var(--text-mid); font-size: 1.05rem; margin-bottom: 1.25rem; line-height: 1.8; }
.about-features { display: flex; flex-direction: column; gap: 1.25rem; margin: 2rem 0; }
.about-feature {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; border-radius: var(--radius-md);
  background: var(--white); box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.about-feature:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.feature-icon { font-size: 1.75rem; flex-shrink: 0; }
.about-feature strong { display: block; font-size: 1rem; color: var(--dark); margin-bottom: 0.2rem; }
.about-feature p { font-size: 0.875rem; color: var(--text-mid); margin: 0; }

/* =====================================================
   PACKAGES SECTION
   ===================================================== */
.packages { background: var(--dark2); }
.packages .section-title { color: var(--white); }
.packages .section-label { color: var(--gold-light); }
.packages .section-subtitle { color: rgba(255,255,255,0.65); }

.packages-filter {
  display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.55rem 1.5rem; border-radius: 50px;
  font-size: 0.875rem; font-weight: 600;
  color: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.15);
  background: transparent;
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-color: transparent; color: var(--dark);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-bottom: 3rem;
}
.package-card {
  background: var(--dark3); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
  transition: transform var(--transition), box-shadow var(--transition), opacity 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.package-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.package-card.hidden { display: none; }

.pkg-img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.pkg-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.package-card:hover .pkg-img-wrap img { transform: scale(1.08); }
.pkg-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-size: 0.7rem; font-weight: 800;
  padding: 0.3rem 0.8rem; border-radius: 50px; letter-spacing: 0.5px;
}
.badge-adventure { background: linear-gradient(135deg, #e74c3c, #c0392b); color: white; }
.badge-honeymoon { background: linear-gradient(135deg, #e91e8c, #c2185b); color: white; }
.badge-luxury    { background: linear-gradient(135deg, #9b59b6, #6c3483); color: white; }

.pkg-overlay {
  position: absolute; inset: 0;
  background: rgba(13,17,23,0.6); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.package-card:hover .pkg-overlay { opacity: 1; }
.pkg-overlay-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-weight: 700; font-size: 0.9rem;
  padding: 0.75rem 2rem; border-radius: 50px;
  transform: translateY(10px);
  transition: transform var(--transition);
}
.package-card:hover .pkg-overlay-btn { transform: translateY(0); }

.pkg-content { padding: 1.5rem; }
.pkg-meta {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.75rem; font-size: 0.8rem; color: var(--text-lt);
}
.pkg-title {
  font-family: var(--font-display); font-size: 1.25rem;
  color: var(--white); margin-bottom: 0.4rem; line-height: 1.3;
}
.pkg-desc { font-size: 0.82rem; color: var(--text-lt); margin-bottom: 1rem; line-height: 1.6; }
.pkg-includes {
  display: flex; flex-direction: column; gap: 0.3rem;
  margin-bottom: 1.25rem;
}
.pkg-includes li { font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.pkg-footer {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.08);
}
.pkg-price { }
.price-from { display: block; font-size: 0.7rem; color: var(--text-lt); }
.price-amount {
  font-family: var(--font-body); font-size: 1rem;
  color: var(--gold-light); font-weight: 600;
  letter-spacing: 0.2px;
}
.price-amount em { font-style: normal; font-size: 0.75rem; color: var(--text-lt); }

.btn-pkg {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-size: 0.8rem; font-weight: 700;
  padding: 0.55rem 1.25rem; border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-pkg:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }

.packages-cta {
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg); padding: 2.5rem;
}
.packages-cta p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 1.25rem; }

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
.why-us { position: relative; overflow: hidden; padding: 7rem 0; }
.why-bg { position: absolute; inset: 0; z-index: 0; }
.why-bg img { width: 100%; height: 100%; object-fit: cover; }
.why-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,17,23,0.92), rgba(26,60,92,0.88));
}
.why-us .container { position: relative; z-index: 1; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; text-align: center;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(201,168,76,0.4);
}
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.why-card h3 {
  font-family: var(--font-display); font-size: 1.15rem;
  color: var(--white); margin-bottom: 0.75rem;
}
.why-card p { font-size: 0.875rem; color: rgba(255,255,255,0.7); line-height: 1.7; }

/* =====================================================
   TESTIMONIALS
   ===================================================== */
.testimonials { background: var(--cream); }
.testimonials-slider { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex; gap: 2rem;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 1.33rem);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201,168,76,0.1);
  position: relative;
}
.testi-quote {
  font-family: var(--font-display); font-size: 5rem; line-height: 0.6;
  color: var(--gold-light); opacity: 0.4; margin-bottom: 1rem;
}
.testi-text { font-size: 0.95rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testi-author {
  display: flex; align-items: center; gap: 1rem;
}
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--emerald-mid));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: 0.9rem; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; color: var(--dark); }
.testi-author span { font-size: 0.78rem; color: var(--text-lt); }
.testi-stars { margin-left: auto; font-size: 0.85rem; }

.slider-controls {
  display: flex; align-items: center; justify-content: center; gap: 1.5rem;
  margin-top: 2.5rem;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold); font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.slider-btn:hover { background: var(--gold); color: var(--dark); }
.slider-dots { display: flex; gap: 0.5rem; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); opacity: 0.3;
  cursor: pointer; transition: opacity var(--transition), transform var(--transition);
}
.slider-dot.active { opacity: 1; transform: scale(1.3); }

/* =====================================================
   GALLERY
   ===================================================== */
.gallery { background: var(--dark2); }
.gallery .section-title { color: var(--white); }
.gallery .section-label { color: var(--gold-light); }
.gallery .section-subtitle { color: rgba(255,255,255,0.65); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.gallery-item {
  border-radius: var(--radius-md); overflow: hidden;
  position: relative; aspect-ratio: 4/3; cursor: pointer;
  box-shadow: var(--shadow-md);
}
.gallery-item-large { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white); padding: 1rem 1rem 0.75rem;
  font-size: 0.85rem; font-weight: 600;
  transform: translateY(10px); opacity: 0;
  transition: transform var(--transition), opacity var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); opacity: 1; }

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact { background: var(--cream); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start;
}
.contact-info h3 {
  font-family: var(--font-display); font-size: 1.8rem;
  color: var(--dark); margin-bottom: 0.5rem;
}
.contact-tagline { color: var(--text-mid); font-size: 0.95rem; margin-bottom: 2rem; line-height: 1.6; }
.contact-items { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2rem; }
.contact-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; border-radius: var(--radius-md);
  background: var(--white); box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition);
}
.contact-item:hover { transform: translateY(-2px); }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-lt); margin-bottom: 0.2rem; }
.contact-item a, .contact-item span { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.contact-item a:hover { color: var(--gold-dark); }

.social-links { display: flex; flex-direction: column; gap: 0.75rem; }
.social-btn {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.85rem 1.5rem; border-radius: var(--radius-md);
  font-weight: 600; font-size: 0.9rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn:hover { transform: translateY(-2px); }
.social-btn.whatsapp { background: #25d366; color: white; box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.social-btn.email { background: var(--emerald-mid); color: white; box-shadow: 0 4px 16px rgba(46,125,98,0.3); }
.social-btn.phone { background: var(--sky-mid); color: white; box-shadow: 0 4px 16px rgba(35,86,160,0.3); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 2.5rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form h3 {
  font-family: var(--font-display); font-size: 1.5rem;
  color: var(--dark); margin-bottom: 1.75rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.4rem; letter-spacing: 0.3px;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.8rem 1rem;
  border: 1.5px solid rgba(0,0,0,0.1); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 0.9rem; color: var(--dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
  background: var(--white);
}
.form-group textarea { resize: vertical; }

.btn-full { width: 100%; justify-content: center; gap: 0.75rem; font-size: 1rem; padding: 1rem; }
.btn-full svg { width: 18px; height: 18px; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--text-lt); margin-top: 1rem; }

/* =====================================================
   MAP STRIP
   ===================================================== */
.map-strip { line-height: 0; }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--dark); }
.footer-top { padding: 5rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand .nav-logo { margin-bottom: 1rem; display: inline-flex; }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; line-height: 1.7; }
.footer-contact-quick { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact-quick a { font-size: 0.875rem; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-contact-quick a:hover { color: var(--gold-light); }

.footer-col h4 {
  font-family: var(--font-display); font-size: 1.05rem;
  color: var(--white); margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--transition), transform var(--transition); display: inline-block; }
.footer-col a:hover { color: var(--gold-light); transform: translateX(4px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-bottom .container {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom a { color: var(--gold-light); transition: color var(--transition); }
.footer-love { color: rgba(255,255,255,0.4); font-size: 0.8rem; }

/* =====================================================
   WHATSAPP FLOAT
   ===================================================== */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  display: flex; align-items: center; gap: 0.5rem;
  background: #25d366; color: white;
  padding: 0.85rem 1.4rem 0.85rem 1rem;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
  font-weight: 700; font-size: 0.875rem;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: pulseGreen 2s ease-in-out infinite;
}
.whatsapp-float svg { width: 22px; height: 22px; }
.whatsapp-float:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.6);
  animation: none;
}
@keyframes pulseGreen {
  0%,100% { box-shadow: 0 8px 30px rgba(37,211,102,0.45); }
  50%      { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}

/* =====================================================
   BACK TO TOP
   ===================================================== */
.back-to-top {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* =====================================================
   TOAST
   ===================================================== */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--dark2); color: var(--white);
  padding: 1rem 2rem; border-radius: 50px;
  border: 1px solid rgba(201,168,76,0.3);
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), opacity 0.4s ease;
  z-index: 999; opacity: 0; white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* =====================================================
   ANIMATION CLASSES
   ===================================================== */
.fade-up { opacity: 0; transform: translateY(40px); animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }

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

.reveal-left, .reveal-right, .reveal-card {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.revealed {
  opacity: 1 !important;
  transform: translate(0) !important;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1200px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 3rem; }
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item-large { grid-column: span 2; }
  .testimonial-card { flex: 0 0 calc(50% - 1rem); }
  .about-img-float { right: 0; }
}

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-float { position: relative; right: auto; bottom: auto; width: 60%; margin: 1rem auto 0; }
  .about-badge { top: auto; bottom: -1rem; right: 50%; transform: translateX(50%); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .packages-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item-large { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 0; }
  .stat { padding: 0 0.75rem; }
  .stat-num { font-size: 1.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 90%; }
  .section { padding: 4rem 0; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 1rem; border-radius: 50%; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 80%; height: 1px; }
}
