/* ============================================================
   EVENT HOLIDAYS — STYLESHEET
   Includes: CSS Variables, Dark/Light Mode, Full Layout
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --bg-primary:    #fafbff;
  --bg-secondary:  #f0f4ff;
  --bg-card:       #ffffff;
  --bg-nav:        rgba(250,251,255,0.96);
  --text-primary:  #454545;
  --text-secondary:#808080;
  --text-light:    #b0b0b0;
  --accent:        #4a72ff;
  --accent-light:  #c5d5fb;
  --accent-tint:   rgba(74,114,255,.1);
  --accent-dark:   #3558e6;
  --border:        #d3d3d3;
  --shadow-sm:     0 1px 4px rgba(74,114,255,.08);
  --shadow:        0 4px 24px rgba(74,114,255,.1);
  --shadow-lg:     0 16px 60px rgba(74,114,255,.16);
  --radius:        12px;
  --radius-lg:     20px;
  --transition:    0.3s ease;
  --font-heading:  'Urbanist', -apple-system, sans-serif;
  --font-body:     'Urbanist', -apple-system, sans-serif;
}

[data-theme="dark"] {
  --bg-primary:    #0d1117;
  --bg-secondary:  #161b22;
  --bg-card:       #1c2128;
  --bg-nav:        rgba(13,17,23,0.96);
  --text-primary:  #e6edf3;
  --text-secondary:#8b949e;
  --text-light:    #6e7681;
  --accent:        #6b8fff;
  --accent-light:  #1a2550;
  --accent-tint:   rgba(107,143,255,.12);
  --accent-dark:   #4a72ff;
  --border:        #30363d;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.3);
  --shadow:        0 4px 24px rgba(0,0,0,.3);
  --shadow-lg:     0 16px 60px rgba(0,0,0,.5);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  transition: background-color .35s ease, color .35s ease;
  overflow-x: hidden;
}

img { max-width:100%; display:block; }
a   { text-decoration:none; color:inherit; }
ul  { list-style:none; }
button { cursor:pointer; font-family:inherit; border:none; background:none; }
input, textarea, select { font-family:inherit; font-size:inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: clamp(1rem, 2vw, 1.25rem); font-weight: 700; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section.bg-alt { background: var(--bg-secondary); }

/* ── GRADIENT TEXT ──────────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(135deg, #4a72ff 0%, #7c9fff 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.accent { color: var(--accent); }

/* ── SECTION HEADER ─────────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 3rem;
}
.section-tag {
  display: inline-block;
  background: var(--accent-tint);
  color: var(--accent);
  padding: .3rem 1.1rem;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-title  { margin-bottom: .85rem; }
.section-subtitle { color: var(--text-secondary); font-size: 1.05rem; line-height: 1.7; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--accent);
  color: #fff;
  padding: .78rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid var(--accent);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,114,255,.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: transparent;
  color: #fff;
  padding: .78rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid rgba(255,255,255,.55);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: #fff;
}
.btn-white {
  background: #fff;
  color: var(--accent);
  padding: .55rem 1.4rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .88rem;
  transition: all var(--transition);
  border: 2px solid #fff;
}
.btn-white:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-lg  { padding: 1rem 2.3rem; font-size: 1.05rem; }
.btn-sm  { padding: .48rem 1.2rem; font-size: .84rem; }
.btn-full{ width:100%; justify-content:center; padding:1rem; font-size:1rem; }
.req { color: var(--accent); }

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}
.navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  flex-shrink: 0;
}
.nav-logo i { color: var(--accent); font-size: 1.4rem; }
.nav-links {
  display: flex;
  align-items: center;
  gap: .2rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  padding: .5rem 1rem;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: .94rem;
  border-radius: 8px;
  transition: all var(--transition);
}
.nav-link:hover,
.nav-link.active {
  color: var(--accent);
  background: var(--accent-tint);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}
.theme-toggle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary);
  font-size: 1rem;
  transition: all var(--transition);
}
.theme-toggle:hover { background: var(--accent-tint); color: var(--accent); border-color: var(--accent); }

.hamburger { display:none; flex-direction:column; gap:5px; padding:6px; }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:first-child  { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:last-child   { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.02);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,5,30,.78) 0%,
    rgba(15,30,55,.68) 50%,
    rgba(5,10,20,.55) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 7rem 1.5rem 5rem;
  margin: 0 auto 0 max(1.5rem, calc(50vw - 600px));
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  padding: .5rem 1.3rem;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-badge i { color: #fbbf24; }
.hero-title {
  color: #fff;
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.4);
}
.hero-subtitle {
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 2vw, 1.18rem);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 2.4rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; color: #fff; }
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--accent);
  line-height: 1;
  display: inline;
}
.stat-suffix { font-size: 1.5rem; font-weight: 800; color: var(--accent); }
.stat-label  { font-size: .78rem; opacity: .8; margin-top: .2rem; }
.stat-divider { width: 1px; background: rgba(255,255,255,.25); height: 44px; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  color: rgba(255,255,255,.65);
  font-size: .78rem;
  animation: heroScroll 2s ease-in-out infinite;
}
@keyframes heroScroll {
  0%,100% { transform: translateX(-50%) translateY(0); opacity:.7; }
  50%      { transform: translateX(-50%) translateY(8px); opacity:1; }
}

/* ── SERVICES ───────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ic, var(--accent)), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: var(--ib, rgba(230,126,34,.12));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  color: var(--ic, var(--accent));
  margin-bottom: 1.25rem;
  transition: transform var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }
.service-card h3 { margin-bottom: .65rem; font-size: 1.1rem; }
.service-card p  { color: var(--text-secondary); font-size: .9rem; line-height: 1.65; margin-bottom: 1.3rem; }
.service-link {
  color: var(--accent);
  font-weight: 600;
  font-size: .88rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: .75rem; }

/* ── PACKAGES ───────────────────────────────────────────────── */
.packages-filter {
  display: flex;
  gap: .7rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: .48rem 1.4rem;
  border-radius: 50px;
  border: 2px solid var(--border);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: .88rem;
  background: var(--bg-card);
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.package-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.package-card.hidden { display: none; }

.package-img {
  position: relative;
  height: 195px;
  overflow: hidden;
}
.package-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.package-card:hover .package-img img { transform: scale(1.07); }

.package-badge {
  position: absolute;
  top: .9rem; left: .9rem;
  padding: .28rem .7rem;
  border-radius: 50px;
  font-size: .73rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .4px;
}
.badge-india    { background: #22c55e; color: #fff; }
.badge-intl     { background: #3b82f6; color: #fff; }
.badge-honeymoon{ background: #ec4899; color: #fff; }
.badge-adventure{ background: #f97316; color: #fff; }

.package-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,.42);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.package-card:hover .package-overlay { opacity: 1; }

.package-body { padding: 1.2rem; }
.package-meta {
  display: flex; gap: .9rem;
  font-size: .78rem; color: var(--text-light);
  margin-bottom: .55rem; flex-wrap: wrap;
}
.package-meta i { color: var(--accent); margin-right: .25rem; }
.package-body h3 { margin-bottom: .45rem; font-size: 1.05rem; }
.package-body p  { color: var(--text-secondary); font-size: .86rem; line-height: 1.55; margin-bottom: .75rem; }

.package-features {
  display: flex; gap: .45rem; flex-wrap: wrap; margin-bottom: 1rem;
}
.package-features span {
  font-size: .76rem; color: var(--text-secondary);
  background: var(--bg-secondary);
  padding: .2rem .6rem; border-radius: 5px;
}
.package-features i { color: #22c55e; font-size: .68rem; margin-right: .2rem; }

.package-footer {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.package-price { display: flex; flex-direction: column; }
.package-price .from { font-size: .7rem; color: var(--text-light); }
.package-price .price {
  font-size: 1.08rem; font-weight: 700;
  color: var(--accent);
  font-family: var(--font-heading);
  line-height: 1.2;
}
.package-price .per { font-size: .78rem; font-weight: 400; color: var(--text-light); }

/* ── WHY US ─────────────────────────────────────────────────── */
.why-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-content { max-width: 520px; }
.why-content > p { color: var(--text-secondary); margin: 1rem 0 2rem; line-height: 1.75; }

.why-list { display: flex; flex-direction: column; gap: 1.3rem; margin-bottom: 2.2rem; }
.why-list li { display: flex; align-items: flex-start; gap: 1rem; }
.why-list > li > i { color: var(--accent); font-size: 1.2rem; margin-top: .15rem; flex-shrink: 0; }
.why-list strong { display: block; margin-bottom: .2rem; }
.why-list p { font-size: .9rem; color: var(--text-secondary); margin: 0; }

.why-image { position: relative; }
.why-img-wrap { position: relative; border-radius: var(--radius-lg); overflow: visible; }
.why-img-wrap img {
  width: 100%; height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.why-badge {
  position: absolute;
  bottom: 2rem; left: -2.5rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.1rem 1.6rem;
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 1rem;
  border: 1.5px solid var(--border);
}
.badge-num {
  font-size: 1.5rem; font-weight: 800;
  font-family: var(--font-heading);
  color: var(--accent); white-space: nowrap;
}
.badge-txt { font-size: .88rem; font-weight: 600; line-height: 1.4; }
.badge-txt small { font-weight: 400; color: var(--text-secondary); display: block; }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-slider { overflow: hidden; position: relative; }
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .5s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
.testimonial-card {
  flex-shrink: 0;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.testimonial-stars { font-size: 1.15rem; color: #f59e0b; margin-bottom: .9rem; letter-spacing: 2px; }
.testimonial-text {
  color: var(--text-secondary);
  line-height: 1.75; font-size: .94rem;
  margin-bottom: 1.5rem; font-style: italic;
  position: relative; padding-left: 1rem;
}
.testimonial-text::before {
  content: '"';
  font-family: var(--font-heading);
  font-size: 4rem; color: var(--accent); opacity: .2;
  position: absolute; top: -1.2rem; left: -.4rem; line-height: 1;
}
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-author img {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; border: 2.5px solid var(--accent); flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: .94rem; }
.testimonial-author span   { display: block; font-size: .82rem; color: var(--text-secondary); }
.tour-tag {
  display: inline-block !important;
  background: var(--accent-light) !important;
  color: var(--accent) !important;
  padding: .15rem .65rem;
  border-radius: 5px;
  font-size: .76rem !important;
  font-weight: 600 !important;
  margin-top: .3rem;
}

.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 2rem;
}
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-card); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-primary); font-size: .88rem;
  transition: all var(--transition);
}
.slider-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.slider-dots { display: flex; gap: .4rem; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border); cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-info > p { color: var(--text-secondary); margin: 1rem 0 2rem; line-height: 1.75; }
.contact-details { display: flex; flex-direction: column; gap: 1.3rem; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1rem; flex-shrink: 0; margin-top: .1rem;
}
.contact-item strong { display: block; font-size: .88rem; margin-bottom: .2rem; }
.contact-item span   { display: block; color: var(--text-secondary); font-size: .88rem; line-height: 1.65; }

.social-links { display: flex; gap: .7rem; flex-wrap: wrap; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-secondary); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-secondary); font-size: .9rem;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-3px); }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 1.5rem; font-size: 1.25rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem;
}
.form-row .form-group { margin-bottom: 0; }
.form-group label { font-size: .86rem; font-weight: 600; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: .72rem 1rem;
  background: var(--bg-secondary);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: .92rem;
  outline: none;
  transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: var(--bg-primary);
  box-shadow: 0 0 0 3px rgba(230,126,34,.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 115px; }
.form-group select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2394a3b8'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .75rem center;
  background-size: 20px;
  padding-right: 2.5rem;
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #ef4444; }

.submit-btn { margin-top: .5rem; }

.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  background: #f0fdf4;
  border-radius: var(--radius);
  color: #16a34a;
  margin-top: 1rem;
  border: 1.5px solid #bbf7d0;
}
[data-theme="dark"] .form-success { background: #052e16; border-color: #14532d; }
.form-success i { font-size: 2rem; margin-bottom: .5rem; display: block; }
.form-success p { font-size: .9rem; color: var(--text-secondary); margin-top: .3rem; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer {
  background: var(--bg-secondary);
  border-top: 1.5px solid var(--border);
  padding-top: 4rem;
}
.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1.5px solid var(--border);
}
.footer-brand p {
  color: var(--text-secondary); font-size: .9rem; line-height: 1.65;
  margin-bottom: 1.5rem; max-width: 280px;
}
.footer-links h4 {
  font-family: var(--font-heading); font-size: 1.05rem;
  margin-bottom: 1.2rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-links a { color: var(--text-secondary); font-size: .9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--accent); }

.footer-newsletter h4 { font-family: var(--font-heading); font-size: 1.05rem; margin-bottom: .7rem; }
.footer-newsletter > p { color: var(--text-secondary); font-size: .9rem; margin-bottom: 1rem; }

.newsletter-form { display: flex; margin-bottom: 1.5rem; }
.newsletter-form input {
  flex: 1; padding: .65rem 1rem;
  background: var(--bg-primary); border: 1.5px solid var(--border);
  border-right: none; border-radius: 8px 0 0 8px;
  color: var(--text-primary); font-size: .88rem; outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form button {
  background: var(--accent); color: #fff;
  padding: .65rem 1.1rem; border-radius: 0 8px 8px 0;
  font-size: .9rem; transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--accent-dark); }

.footer-badges { display: flex; gap: .85rem; flex-wrap: wrap; }
.footer-badges span {
  display: flex; align-items: center; gap: .4rem;
  font-size: .78rem; color: var(--text-secondary);
  background: var(--bg-card); border: 1.5px solid var(--border);
  padding: .3rem .8rem; border-radius: 7px;
}
.footer-badges i { color: var(--accent); }

.footer-bottom { padding: 1.4rem 0; }
.footer-bottom-inner {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { color: var(--text-secondary); font-size: .84rem; }
.footer-bottom a { color: var(--accent); }
.footer-bottom a:hover { text-decoration: underline; }

/* ── FLOATING BUTTONS ───────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 6.5rem; right: 1.5rem;
  width: 52px; height: 52px;
  background: #25d366; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  transition: all var(--transition);
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.12); background: #1db954; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 32px rgba(37,211,102,.7); }
}

.back-to-top {
  position: fixed; bottom: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  background: var(--accent); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  box-shadow: var(--shadow); z-index: 999;
  opacity: 0; transform: translateY(20px);
  transition: all var(--transition); pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover   { background: var(--accent-dark); transform: translateY(-3px); }

/* ── GROUP TRIPS GALLERY ────────────────────────────────────── */
.trips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1rem;
}

/* Malaysia spans 2 columns — wide hero shot */
.trip-item.trip-wide {
  grid-column: span 2;
}

.trip-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-secondary);
  box-shadow: var(--shadow);
}
.trip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.trip-item:hover img { transform: scale(1.06); }
.trip-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  padding: 3.5rem 1.25rem 1rem;
  color: #fff;
  display: flex;
  align-items: center;
  gap: .5rem;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .01em;
}
.trip-caption i { color: var(--accent); font-size: .85rem; flex-shrink: 0; }

/* lightbox-style hover ring */
.trip-item::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: border-color var(--transition);
  z-index: 1;
  pointer-events: none;
}
.trip-item:hover::before { border-color: var(--accent); }

/* ── SCROLL REVEAL ANIMATIONS ───────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Stagger children in grids */
.services-grid .service-card:nth-child(2) { transition-delay: .1s; }
.services-grid .service-card:nth-child(3) { transition-delay: .2s; }
.services-grid .service-card:nth-child(4) { transition-delay: .05s; }
.services-grid .service-card:nth-child(5) { transition-delay: .15s; }
.services-grid .service-card:nth-child(6) { transition-delay: .25s; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */

/* ── RESPONSIVE ──────────────────────────────────────────────
   Breakpoints:
   xl   > 1200px  (handled by max-width: 1200px container)
   lg   ≤ 1100px
   md   ≤ 900px
   sm   ≤ 768px
   xs   ≤ 480px
   ─────────────────────────────────────────────────────────── */

/* ── lg: tablet landscape / small laptop ── */
@media (max-width: 1100px) {
  .packages-grid    { grid-template-columns: repeat(3, 1fr); }
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .why-container    { gap: 3rem; }
  .footer-container { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
  .contact-container{ gap: 2.5rem; }
  .why-badge        { left: -1rem; }
}

/* ── md: tablet portrait ── */
@media (max-width: 900px) {
  .section { padding: 4rem 0; }
  .section-header   { margin-bottom: 2.5rem; }
  .packages-grid    { grid-template-columns: repeat(2, 1fr); }
  .trips-grid       { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .trip-item.trip-wide { grid-column: span 2; height: 260px; }
  .trip-item        { height: 220px; }
  .why-container    { grid-template-columns: 1fr; }
  .why-image        { display: none; }
  .hero-content     { padding-top: 7rem; }
  .hero-stats       { gap: 1.8rem; }
  .contact-container{ grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ── sm: mobile ── */
@media (max-width: 768px) {
  .section  { padding: 3rem 0; }
  .container{ padding: 0 1.25rem; }
  h2        { font-size: clamp(1.55rem, 6vw, 2rem); }

  /* Navbar */
  .nav-links {
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column; align-items: stretch;
    padding: .75rem 1.25rem 1.25rem;
    gap: .15rem;
    border-bottom: 1.5px solid var(--border);
    transform: translateY(-110%);
    opacity: 0; pointer-events: none;
    transition: all .35s cubic-bezier(.25,.46,.45,.94);
    box-shadow: var(--shadow);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-link       { padding: .75rem 1rem; font-size: .98rem; border-radius: 10px; }
  .hamburger      { display: flex; }
  .nav-cta        { display: none; }

  /* Hero */
  .hero-bg        { background-attachment: scroll; }
  .hero-content   { padding: 5.5rem 1.25rem 3rem; margin: 0; }
  .hero-title     { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .hero-subtitle  { font-size: .93rem; max-width: 100%; }
  .hero-cta       { gap: .75rem; }
  .stat-divider   { display: none; }
  .hero-stats     { gap: 1.2rem; }
  .stat-num       { font-size: 1.55rem; }
  .stat-suffix    { font-size: 1.2rem; }
  .stat-label     { font-size: .72rem; }

  /* Grids */
  .services-grid    { grid-template-columns: 1fr; }
  .packages-grid    { grid-template-columns: repeat(2, 1fr); }
  .trips-grid       { grid-template-columns: 1fr; grid-template-rows: auto; }
  .trip-item.trip-wide { grid-column: span 1; height: 240px; }
  .trip-item        { height: 220px; }
  .footer-container { grid-template-columns: 1fr; gap: 2rem; }
  .form-row         { grid-template-columns: 1fr; }

  /* Cards */
  .service-card     { padding: 1.5rem; }
  .package-img      { height: 160px; }

  /* Sections */
  .section-header   { max-width: 100%; padding: 0 .25rem; }
  .section-subtitle { font-size: .93rem; }
  .why-container    { grid-template-columns: 1fr; }
  .why-image        { display: none; }

  /* Slider */
  .testimonial-card { flex: 0 0 calc(100vw - 2.5rem); padding: 1.5rem; }

  /* Contact */
  .contact-form-wrap{ padding: 1.5rem; }
  .contact-container{ gap: 2rem; }

  /* Footer */
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: .4rem; }

  /* Packages filter */
  .packages-filter  { gap: .5rem; }
  .filter-btn       { padding: .4rem 1rem; font-size: .84rem; }
}

/* ── xs: small phones ── */
@media (max-width: 480px) {
  .container        { padding: 0 1rem; }
  .hero-content     { padding: 5.5rem 1rem 3rem; }
  .hero-title       { font-size: clamp(1.7rem, 9vw, 2.2rem); }
  .hero-cta         { flex-direction: column; }
  .hero-cta > *     { text-align: center; justify-content: center; width: 100%; }
  .hero-stats       { gap: 1rem; }
  .packages-grid    { grid-template-columns: 1fr; }
  .filter-btn       { padding: .35rem .8rem; font-size: .78rem; }
  .testimonial-card { flex: 0 0 calc(100vw - 2rem); }
  .contact-form-wrap{ padding: 1.25rem; }
  .footer-container { gap: 1.75rem; }
  .trip-item,
  .trip-item.trip-wide { height: 200px; }
}

/* ── xxs: very small phones ── */
@media (max-width: 360px) {
  .hero-title     { font-size: 1.6rem; }
  .hero-badge     { font-size: .78rem; padding: .4rem 1rem; }
  .packages-filter{ gap: .3rem; }
  .filter-btn     { padding: .32rem .65rem; font-size: .75rem; }
}

/* Fix: iOS Safari parallax */
@supports (-webkit-touch-callout: none) {
  .hero-bg { background-attachment: scroll; }
}
