/* ═══════════════════════════════════════════════════════════════
   WISH TRAVELO — Luxury Travel CSS
   ═══════════════════════════════════════════════════════════════ */

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

}

/* Hide scrollbar (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar (Firefox) */
* {
    scrollbar-width: none;
}

/* Hide scrollbar (IE & old Edge) */
* {
    -ms-overflow-style: none;
}

.logo-img{
    height: 60px;
    width: auto;
}
:root {
  --gold:        #C9972D;
  --gold-light:  #E4B84A;
  --gold-dark:   #A07820;
  --off-white:   #F7F5F2;
  --charcoal:    #1E1E1E;
  --mid-gray:    #6B6B6B;
  --light-gray:  #B8B8B8;
  --black:       #0D0D0D;
  --white:       #FFFFFF;
  --dark-bg:     #111111;
  --section-pad: 120px;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

em {
  font-style: italic;
  color: var(--gold);
  font-family: Georgia, serif;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ── Typography Helpers ── */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 20px;
}

.section-label.gold-label {
  color: var(--gold);
}

.section-label.light-label {
  color: rgba(255,255,255,0.6);
}

.section-heading {
  font-family: Georgia, serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--charcoal);
  letter-spacing: -0.01em;
}

.section-sub {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.7;
  margin-top: 20px;
  font-weight: 300;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.30s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ════════════════════════════════════════════
   NAVIGATION
   ════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 90px;
  display: flex;
  align-items: center;
  transition: background 0.5s ease, box-shadow 0.5s ease;
}

.navbar.scrolled {
  background: rgba(13, 11, 3, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 40px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white);
  line-height: 1;
}

.logo-sub {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 3px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.85);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
  width: 100%;
}

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-shrink: 0;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 450;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.nav-phone:hover {
  color: var(--gold);
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: pointer;
}

.btn-nav-cta:hover {
  background: transparent;
  color: var(--gold);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.30) 0%,
    rgba(10, 10, 10, 0.55) 50%,
    rgba(10, 10, 10, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 100px;
  padding-top: 90px;
  height: 100%;
}

/* Hero Text — Center */
.hero-text {
  text-align: center;
  flex: 1;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--gold-light);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}

.hero-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 8vw, 110px);
  font-weight: 300;
  line-height: 1.02;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.hero-heading em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}

#journey {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.75;
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  background: var(--gold);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: all 0.35s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: color 0.3s;
}

.btn-video:hover {
  color: var(--gold);
}

.play-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
  flex-shrink: 0;
}

.btn-video:hover .play-circle {
  border-color: var(--gold);
  background: rgba(201,151,45,0.15);
}

/* Stats */
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-end;
  padding-bottom: 40px;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeLeft 1s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
}

.stat-item {
  text-align: right;
  padding: 18px 0;
}

.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  display: block;
  font-size: 10px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.2);
  align-self: flex-end;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.4s forwards;
}

.scroll-text {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  font-weight: 500;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%   { top: -6px; opacity: 1; }
  80%  { top: 52px; opacity: 0.3; }
  100% { top: -6px; opacity: 0; }
}

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

@keyframes fadeLeft {
  to { opacity: 1; transform: translateX(0); }
}

/* ════════════════════════════════════════════
   PHILOSOPHY SECTION
   ════════════════════════════════════════════ */
.philosophy {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* Left */
.philosophy-left .section-label {
  color: var(--gold);
}

.philosophy-heading {
  font-family: Georgia, serif;
  font-size: 52px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
}

.philosophy-heading em {
  color: var(--gold);
  font-style: italic;
  font-size: 58px;
}

.philosophy-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 36px;
}

.philosophy-body {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 20px;
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: 16px;
  transition: color 0.3s;
  text-decoration: none;
}

.btn-text-link:hover {
  color: var(--gold);
}

.link-arrow {
  font-size: 16px;
  transition: transform 0.3s;
}

.btn-text-link:hover .link-arrow {
  transform: translateX(6px);
}

/* Right — Image Stack */
.philosophy-right {
  position: relative;
}

.philosophy-image-stack {
  position: relative;
  height: 580px;
}

.phi-img {
  position: absolute;
  overflow: hidden;
}

.phi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.phi-img:hover img {
  transform: scale(1.04);
}

.phi-img-main {
  top: 0;
  left: 40px;
  width: 75%;
  height: 420px;
}

.phi-img-accent {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 260px;
  border: 6px solid var(--white);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.phi-badge {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: var(--charcoal);
  color: var(--white);
  padding: 24px 28px;
  text-align: center;
  z-index: 10;
}

.phi-badge-num {
  display: block;
  font-family: Georgia, serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.phi-badge-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin-top: 6px;
}

/* ════════════════════════════════════════════
   FEATURED DESTINATIONS
   ════════════════════════════════════════════ */
.destinations {
  padding: var(--section-pad) 0;
  background: var(--white);
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 60px;
}

.filter-btn {
  padding: 10px 26px;
  background: none;
  border: 1px solid rgba(0,0,0,0.12);
  color: var(--mid-gray);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

/* Destination Grid */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.dest-card {
  cursor: pointer;
  overflow: hidden;
}

.dest-img-wrap {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.dest-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 60%);
  transition: opacity 0.4s ease;
}

.dest-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 5px 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.dest-info {
  padding: 24px 0 8px;
}

.dest-name {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.dest-sub {
  font-size: 12px;
  color: var(--mid-gray);
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.dest-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dest-price {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
}

.dest-duration {
  font-size: 11px;
  color: var(--light-gray);
  letter-spacing: 0.08em;
}

/* Hidden cards */
.dest-card.hidden {
  display: none;
}

/* ════════════════════════════════════════════
   CURATED ESCAPES (Dark Section)
   ════════════════════════════════════════════ */
.curated {
  background: var(--dark-bg);
  padding: var(--section-pad) 0;
  margin-top: 40px;
}

.curated-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

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

.curated-heading {
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.curated-heading em {
  color: var(--gold);
  font-style: italic;
}

.curated-view-all {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
  white-space: nowrap;
}

.curated-view-all:hover {
  color: var(--gold-light);
}

.curated-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 8px;
  align-items: start;
}

.curated-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

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

.curated-card--large .curated-img-wrap {
  height: 620px;
}

.curated-card--sm .curated-img-wrap {
  height: 149px;
}

.curated-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.curated-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.0) 100%);
  transition: background 0.5s ease;
}

.curated-card:hover .curated-overlay {
  background: linear-gradient(to top,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.6) 60%,
    rgba(0,0,0,0.12) 100%);
}

.curated-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 28px 24px;
  z-index: 2;
}

.curated-tag-line {
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
  opacity: 0.85;
  transform: translateY(4px);
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
}

.curated-card:hover .curated-tag-line {
  opacity: 1;
  transform: translateY(0);
}

.curated-name {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0;
  transform: translateY(10px);
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1) 0.04s;
}

.curated-card--sm .curated-name {
  font-size: 22px;
}

.curated-card:hover .curated-name {
  transform: translateY(0);
}

.curated-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  font-weight: 300;
  letter-spacing: 0.03em;
  margin-top: 5px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px);
  transition: max-height 0.4s ease 0.06s,
              opacity 0.38s ease 0.1s,
              transform 0.4s cubic-bezier(0.22,1,0.36,1) 0.06s;
}

.curated-card:hover .curated-desc {
  max-height: 40px;
  opacity: 1;
  transform: translateY(0);
}

.curated-explore {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.38s ease 0.14s, transform 0.4s cubic-bezier(0.22,1,0.36,1) 0.14s;
}

.curated-card:hover .curated-explore {
  opacity: 1;
  transform: translateY(0);
}

.curated-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 2×2 right grid — matches large card height exactly */
.curated-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  height: 620px;
}

.curated-right-grid .curated-card--sm .curated-img-wrap {
  height: 100%;
}

.curated-right-grid .curated-card--sm {
  height: 100%;
}

/* ════════════════════════════════════════════
   INCREDIBLE INDIA
   ════════════════════════════════════════════ */
.india {
  background: var(--off-white);
  padding: var(--section-pad) 0;
}
.new-india {
  background: var(--off-white);
  padding: 70px 0;
}


.india-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.india-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.india-img-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.india-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.india-card:hover .india-img-wrap img {
  transform: scale(1.07);
}

.india-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
}
.india-info {
  position: absolute;
  bottom: 25px;
  left: 25px;
  z-index: 2;
}

.india-info h3 {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 5px;
}

.india-info p {
  font-size: 14px;
  color: #C9972D;
  font-weight: 300;
}


.india-cta {
  text-align: center;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 16px 40px;
  background: transparent;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  text-decoration: none;
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ════════════════════════════════════════════
   TAILORED JOURNEYS
   ════════════════════════════════════════════ */
.tailored {
  background: var(--white);
  padding: var(--section-pad) 0;
}

.tailored-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.tailored-card {
  cursor: pointer;
  overflow: hidden;
}

.tailored-img-wrap {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.tailored-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.tailored-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
}

.tailored-info {
  padding: 22px 0 8px;
}

.tailored-tag {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}

.tailored-name {
  font-family: Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.tailored-desc {
  font-size: 13px;
  color: var(--mid-gray);
  font-weight: 300;
  line-height: 1.6;
}

/* Tailored Features Row */
.tailored-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 60px;
}

.tailored-feat {
  text-align: center;
}

.feat-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(201,151,45,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background 0.3s;
}

.tailored-feat:hover .feat-icon {
  background: rgba(201,151,45,0.07);
}

.tailored-feat h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.tailored-feat p {
  font-size: 13px;
  color: var(--mid-gray);
  font-weight: 300;
  line-height: 1.7;
}

/* ════════════════════════════════════════════
   SERVICE SECTION
   ════════════════════════════════════════════ */
.service {
  background: var(--off-white);
  padding: 60px; 
  margin-top: 60px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.service-left .section-label {
  color: var(--gold);
}

.service-heading {
  font-family: Georgia, serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  margin-bottom: 30px;
}

.service-heading em {
  color: var(--gold);
  font-style: italic;
  display: block;
  font-size: 64px;
}

.service-body {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 40px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.service-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.service-check {
  width: 28px;
  height: 28px;
  background: rgba(201,151,45,0.12);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-item h5 {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}

.service-item p {
  font-size: 13px;
  color: var(--mid-gray);
  font-weight: 300;
}

.service-right {
  position: relative;
}

.service-img-wrap {
  height: 600px;
  overflow: hidden;
  position: relative;
  border-radius: 30px;
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
}

.service-img-wrap:hover img {
  transform: scale(1.04);
}

/* ════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════ */
.testimonials {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.testimonials-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.testimonials-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 5, 0.80);
}

.testimonials .container {
  position: relative;
  z-index: 2;
}

.testimonials-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.test-heading {
  font-family: Georgia, serif;
  font-size: 60px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 60px;
}

.test-heading em {
  color: var(--gold);
  font-style: italic;
}

.test-left .section-label {
  color: rgba(255,255,255,0.5);
}

.test-main {
  position: relative;
}

.test-quote-icon {
  font-family: Georgia, serif;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.4;
  line-height: 0.6;
  margin-bottom: 20px;
  user-select: none;
}

.test-quote {
  font-family: Georgia, serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 32px;
  transition: opacity 0.4s ease;
}

.test-stars {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.test-name {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 3px;
}

.test-trip {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
}

/* Test Right List */
.test-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.test-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.test-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: all 0.3s ease;
}

.test-item.active,
.test-item:hover {
  background: rgba(201,151,45,0.1);
  border-color: rgba(201,151,45,0.3);
}

.test-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.test-mini-info {
  flex: 1;
}

.test-mini-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}

.test-mini-trip {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}

.test-stars-mini {
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 2px;
}

/* ════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════ */
.cta-section {
  background: var(--off-white);
  padding: var(--section-pad) 0;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cta-eyebrow {
  color: var(--gold) !important;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}

.cta-heading {
  font-family: Georgia, serif;
  font-size: 62px;
  font-weight: 400;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.cta-heading em {
  color: var(--gold);
  font-style: italic;
}

.cta-body {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 44px;
  max-width: 460px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 18px 40px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  transition: all 0.35s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.cta-btn-primary:hover {
  background: transparent;
  color: var(--gold);
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  background: transparent;
  border: 1px solid var(--charcoal);
  color: var(--charcoal);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.35s ease;
  text-decoration: none;
}

.btn-cta-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.cta-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.cta-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 480px;
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--white);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.cta-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,151,45,0.08);
}

.cta-card-icon-wrap {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201,151,45,0.3);
  background: rgba(201,151,45,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cta-card-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cta-card-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.cta-card-sub {
  font-size: 11px;
  color: var(--mid-gray);
  font-weight: 300;
  margin-bottom: 6px;
}

.cta-card-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.cta-whatsapp-line {
  font-size: 12px;
  color: var(--mid-gray);
  text-align: center;
  margin-top: 8px;
}

.cta-whatsapp-link {
  color: #25D366;
  text-decoration: none;
  font-weight: 500;
}

.cta-whatsapp-link:hover {
  text-decoration: underline;
}


/* ════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════ */
.footer {
  background: var(--black);
}

.footer-top {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-text {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 280px;
}

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

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

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

.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.footer-legal {
  display: flex;
  gap: 28px;
}

.footer-legal a {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ════════════════════════════════════════════
   VIDEO MODAL
   ════════════════════════════════════════════ */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-modal.open {
  opacity: 1;
  pointer-events: all;
}

.video-modal-inner {
  position: relative;
  width: 800px;
  max-width: 90vw;
  aspect-ratio: 16/9;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  transition: color 0.3s;
  font-family: 'Inter', sans-serif;
}

.video-close:hover {
  color: var(--gold);
}

.video-placeholder {
  text-align: center;
  color: rgba(255,255,255,0.3);
}

.video-play-large {
  width: 80px;
  height: 80px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .philosophy-grid {
    gap: 60px;
  }

  .section-heading { font-size: 44px; }
}

@media (max-width: 992px) {
  :root { --section-pad: 80px; }

  .nav-links { display: none; }

  .btn-cta-outline { padding: 14px 24px; }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .philosophy-image-stack { height: 400px; }

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

  .curated-card--large .curated-img-wrap { height: 400px; }

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

  .testimonials-inner { grid-template-columns: 1fr; }

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

  .hero-stats { display: none; }
}

@media (max-width: 640px) {
  :root { --section-pad: 60px; }

  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .curated-inner { padding: 0 24px; }

  .hero-heading { font-size: 52px; }

  .dest-grid,
  .tailored-grid,
  .india-grid,
  .tailored-features { grid-template-columns: 1fr; }

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

  .cta-actions { flex-direction: column; align-items: flex-start; }

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

  .section-heading { font-size: 36px; }
}

/* ════════════════════════════════════════════
   FEATURED DESTINATIONS SECTION
════════════════════════════════════════════ */

.fd-section {
  overflow: hidden;
  margin-top: 60px;
}

.fd-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.fd-header {
  text-align: center;
  margin-bottom: 2.4rem;
}

.fd-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .9rem;
}

.fd-heading {
  font-family: Georgia, serif;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
}

.fd-heading em {
  font-style: italic;
  color: var(--gold);
}

.fd-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 3rem;
}

.fd-pill {
  border: 1px solid #c8c4ba;
  border-radius: 100px;
  padding: 9px 22px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  color: #666;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  transition: all .28s ease;
  outline: none;
  user-select: none;
}

.fd-pill:hover,
.fd-pill.active {
  background: var(--charcoal);
  color: #fff;
  border-color: var(--charcoal);
}

.fd-slider-wrap {
  position: relative;
}

.fd-slider-wrap::before,
.fd-slider-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 10;
  pointer-events: none;
  transition: opacity .3s;
}

.fd-slider-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--off-white) 0%,);
}

.fd-slider-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--off-white) 30%,);
}

.fd-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,.14);
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.10);
  transition: all .25s ease;
  opacity: 0;
  pointer-events: none;
}

.fd-slider-wrap:hover .fd-arrow {
  opacity: 1;
  pointer-events: auto;
}

.fd-arrow:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.fd-arrow:hover svg { stroke: #fff; }

.fd-arrow-prev { left: 16px; }
.fd-arrow-next { right: 16px; }

.fd-arrow svg {
  width: 18px;
  height: 18px;
  stroke: var(--charcoal);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fd-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  padding: 24px 2.5rem 32px;
}

.fd-track::-webkit-scrollbar { display: none; }
.fd-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.fd-card {
  flex: 0 0 280px;
  height: 390px;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
  background: #1a1a1a;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94),
              box-shadow .4s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}

.fd-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 28px 56px rgba(0,0,0,.22), 0 8px 20px rgba(0,0,0,.12);
}

.fd-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .65s cubic-bezier(.25,.46,.45,.94);
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.fd-card:hover img {
  transform: scale(1.05);
}

.fd-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.82) 0%,
    rgba(0,0,0,.55) 18%,
    rgba(0,0,0,.08) 38%,
    transparent 55%
  );
  pointer-events: none;
}

.fd-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0 1.4rem 1.4rem;
}

.fd-card-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 100px;
  margin-bottom: .65rem;
}

.fd-card-name {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .25rem;
}

.fd-card-tagline {
  font-size: 11.5px;
  color: rgba(255,255,255,.6);
  font-weight: 300;
  letter-spacing: .03em;
  margin-bottom: .9rem;
}

.fd-card-rule {
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-bottom: .85rem;
  opacity: .85;
}

.fd-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fd-card-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold-light);
  letter-spacing: .02em;
}

.fd-card-nights {
  font-size: 10px;
  color: rgba(255,255,255,.45);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.fd-progress-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 1.8rem;
  padding: 0 2.5rem;
}

.fd-progress-track {
  flex: 0 0 200px;
  height: 2px;
  background: #ddd8ce;
  border-radius: 2px;
  overflow: hidden;
}

.fd-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  border-radius: 2px;
  transition: width .1s linear;
}

.fd-progress-label {
  font-size: 11px;
  color: var(--mid-gray);
  letter-spacing: .08em;
  min-width: 40px;
}

@media (max-width: 768px) {
  .fd-inner { padding: 0 1.2rem; }
  .fd-track { padding: 20px 1.2rem 28px; gap: 14px; }
  .fd-card { flex: 0 0 240px; height: 330px; border-radius: 20px; }
  .fd-arrow { display: none; }
  .fd-slider-wrap::before,
  .fd-slider-wrap::after { width: 40px; }
}

@media (max-width: 480px) {
  .fd-section { padding: 3rem 0 3rem; }
  .fd-card { flex: 0 0 220px; height: 300px; }
  .fd-filters { gap: 6px; padding: 0 1rem; }
  .fd-pill { padding: 7px 14px; font-size: 10px; }
}

/* Process */

/* ═══════════════════════════════════════════════════════════════
   WISH TRAVELO — Process Section CSS
   Paste this into your style.css
   ═══════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════
   THE PROCESS SECTION
   ════════════════════════════════════════════ */
.process {
  background: var(--white);
  padding: var(--section-pad) 0;
}

/* Timeline wrapper */
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 80px;
}

/* Horizontal connector line */
.process-line {
  position: absolute;
  top: 44px; /* center of icon circle */
  left: calc(100% / 12);       /* starts at center of first icon */
  right: calc(100% / 12);      /* ends at center of last icon */
  height: 1px;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(201, 151, 45, 0.35) 8%,
    rgba(201, 151, 45, 0.35) 92%,
    transparent 100%
  );
  z-index: 0;
}

/* Each step */
.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 8px;
}

/* Icon circle */
.process-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(201, 151, 45, 0.4);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 28px;
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
  flex-shrink: 0;
}

.process-step:hover .process-icon-wrap {
  background: rgba(201, 151, 45, 0.07);
  border-color: var(--gold);
  transform: translateY(-4px);
}

.process-icon-wrap svg {
  width: 24px;
  height: 24px;
  stroke: var(--gold);
  transition: stroke 0.3s ease;
}

/* Step number label */
.process-step-num {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

/* Step title */
.process-step-title {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

/* Step description */
.process-step-desc {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.7;
  font-weight: 300;
  max-width: 200px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════
   PROCESS — RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 24px;
  }

  .process-line {
    display: none;
  }

  /* Add mini connector dots on tablet */
  .process-step::before {
    content: '';
    position: absolute;
    top: 44px;
    left: -12px;
    width: 1px;
    height: 1px;
  }
}

@media (max-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 16px;
    margin-top: 60px;
  }

  .process-icon-wrap {
    width: 72px;
    height: 72px;
  }

  .process-icon-wrap svg {
    width: 22px;
    height: 22px;
  }

  .process-step-title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 20px;
    padding: 0;
  }

  .process-icon-wrap {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    margin-bottom: 0;
  }

  .process-step-num,
  .process-step-title,
  .process-step-desc {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .process-step-desc {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   WISH TRAVELO — "Why Travel With Us" Section CSS
   Paste this into your style.css
   ═══════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════
   WHY TRAVEL WITH US
   ════════════════════════════════════════════ */
.why-travel {
  background: var(--off-white);
 padding: 40px 32px;
 margin-top: 40px;
}

/* 3-column × 2-row grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}

/* Base card */
.why-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: default;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.why-card:hover {
  border-color: rgba(201, 151, 45, 0.35);
  box-shadow: 0 8px 32px rgba(201, 151, 45, 0.08);
  transform: translateY(-4px);
}

/* Active / highlighted card (first one) */
.why-card--active {
  border-color: rgba(201, 151, 45, 0.55);
  box-shadow: 0 8px 40px rgba(201, 151, 45, 0.10);
}

.why-card--active:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 48px rgba(201, 151, 45, 0.16);
}

/* Icon circle */
.why-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(201, 151, 45, 0.38);
  background: rgba(201, 151, 45, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 28px;
  transition: background 0.35s ease, border-color 0.35s ease;
}

.why-card:hover .why-icon-wrap {
  background: rgba(201, 151, 45, 0.10);
  border-color: rgba(201, 151, 45, 0.6);
}

.why-icon-wrap svg {
  stroke: var(--gold);
}

/* Card title */
.why-card-title {
  font-family: Georgia, serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

/* Card description */
.why-card-desc {
  font-size: 14px;
  color: var(--mid-gray);
  line-height: 1.75;
  font-weight: 300;
  max-width: 240px;
  margin: 0 auto;
}

/* ════════════════════════════════════════════
   WHY TRAVEL — RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .why-card {
    padding: 40px 28px 36px;
  }

  .why-card-title {
    font-size: 23px;
  }
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 48px;
  }

  .why-card {
    padding: 36px 24px 32px;
  }

  .why-icon-wrap {
    width: 68px;
    height: 68px;
  }

  .why-card-title {
    font-size: 21px;
  }
}

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

  .why-card {
    padding: 32px 24px 30px;
    border-radius: 12px;
  }

  .why-card-desc {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   WISH TRAVELO — "Begin Your Consultation" Section CSS
   Paste this into your style.css
   ═══════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════
   CONSULTATION SECTION
   ════════════════════════════════════════════ */
.consultation {
  position: relative;
  padding: 70px;
  overflow: hidden;
  min-height: 780px;
  display: flex;
  align-items: center;
}

/* Background image */
.consult-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.consult-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  /* filter: brightness(0.78) saturate(0.6); */
}

.consult-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(247, 245, 242, 0.82) 0%,
    rgba(247, 245, 242, 0.55) 45%,
    rgba(247, 245, 242, 0.10) 100%
  );
}

/* Inner layout */
.consult-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}

/* ── LEFT SIDE ── */
.consult-left {
  display: flex;
  flex-direction: column;
}

.consult-left .section-label {
  margin-bottom: 16px;
}

.consult-heading {
  font-family: Georgia, serif;
  font-size: 62px;
  font-weight: 400;
  line-height: 1.08;
  color: var(--charcoal);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.consult-heading em {
  color: var(--gold);
  font-style: italic;
  display: block;
}

.consult-body {
  font-size: 15px;
  color: var(--mid-gray);
  line-height: 1.8;
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 44px;
}

/* Feature list */
.consult-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.consult-feat {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.consult-feat-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(201, 151, 45, 0.38);
  background: rgba(201, 151, 45, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.consult-feat:hover .consult-feat-icon {
  background: rgba(201, 151, 45, 0.14);
  border-color: var(--gold);
}

.consult-feat-icon svg {
  stroke: var(--gold);
}

.consult-feat-text h4 {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 5px;
  line-height: 1.2;
}

.consult-feat-text p {
  font-size: 13px;
  color: var(--mid-gray);
  line-height: 1.7;
  font-weight: 300;
}

/* ── RIGHT SIDE — Form Card ── */
.consult-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 48px 48px 44px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.13);
}

/* 2-column form grid */
.consult-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
}

/* Individual field */
.consult-field {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.09);
  margin-bottom: 28px;
}

.consult-field--full {
  grid-column: 1 / -1;
}

/* Label */
.consult-label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 12px;
}

/* Input / Select / Textarea */
.consult-input {
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--charcoal);
  padding: 0;
  line-height: 1.5;
  appearance: none;
  -webkit-appearance: none;
}

.consult-input::placeholder {
  color: var(--light-gray);
  font-weight: 300;
}

.consult-input:focus {
  color: var(--charcoal);
}

/* Select arrow */
.consult-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8B8B8' stroke-width='1.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 20px;
}

/* Textarea */
.consult-textarea {
  resize: none;
  height: 60px;
  display: block;
}

/* Captcha row */
.consult-captcha-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.consult-captcha-question {
  font-family: Georgia, serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.consult-captcha-input {
  flex: 1;
}

/* Submit button */
.consult-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 340px;
  padding: 18px 40px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.35s ease, color 0.35s ease;
  margin-top: 8px;
}

.consult-submit:hover {
  background: transparent;
  color: var(--gold);
}

/* ════════════════════════════════════════════
   CONSULTATION — RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .consult-inner {
    gap: 60px;
  }

  .consult-heading {
    font-size: 52px;
  }

  .consult-form-card {
    padding: 40px 36px;
  }
}

@media (max-width: 900px) {
  .consult-inner {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 0 40px;
  }

  .consult-bg-overlay {
    background: rgba(247, 245, 242, 0.80);
  }

  .consult-left {
    max-width: 560px;
  }

  .consult-heading {
    font-size: 48px;
  }

  .consult-body {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .consult-inner {
    padding: 0 24px;
  }

  .consult-heading {
    font-size: 40px;
  }

  .consult-form-card {
    padding: 32px 24px;
    border-radius: 12px;
  }

  .consult-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .consult-submit {
    max-width: 100%;
  }
}

/* ═══════════════════════════════════════════════════════════════
   WISH TRAVELO — Newsletter Section CSS
   Paste this into your style.css
   ═══════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════
   NEWSLETTER SECTION
   ════════════════════════════════════════════ */
.newsletter {
  position: relative;
  padding: 110px 0 100px;
  overflow: hidden;
  text-align: center;
}

/* Background */
.newsletter-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.newsletter-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 10, 18, 0.62) 0%,
    rgba(8, 10, 18, 0.72) 50%,
    rgba(8, 10, 18, 0.65) 100%
  );
}

/* Inner content */
.newsletter-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Section label override for this dark section */
.newsletter-inner .section-label {
  margin-bottom: 20px;
}

/* Heading */
.newsletter-heading {
  font-family: Georgia, serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
}

.newsletter-heading em {
  color: var(--gold);
  font-style: italic;
  display: block;
}

/* ── Email Form ── */
.newsletter-form {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 620px;
  margin-bottom: 48px;
}

/* Input wrapper */
.newsletter-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0 22px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.newsletter-input-wrap:focus-within {
  border-color: rgba(201, 151, 45, 0.6);
  background: rgba(255, 255, 255, 0.16);
}

.newsletter-input-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input-icon svg {
  stroke: rgba(255, 255, 255, 0.5);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--white);
  padding: 18px 0;
  letter-spacing: 0.02em;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
}

/* Subscribe button */
.newsletter-btn {
  padding: 18px 40px;
  background: var(--gold);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.35s ease, color 0.35s ease;
  flex-shrink: 0;
}

.newsletter-btn:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

/* ── Benefits Row ── */
.newsletter-benefits {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.newsletter-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
}

.newsletter-benefit svg {
  stroke: var(--gold);
  flex-shrink: 0;
}

/* Vertical pipe divider */
.newsletter-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   NEWSLETTER — RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 900px) {
  .newsletter-inner {
    padding: 0 40px;
  }

  .newsletter-form {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .newsletter {
    padding: 80px 0 72px;
  }

  .newsletter-inner {
    padding: 0 24px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 0;
  }

  .newsletter-input-wrap {
    border-radius: 0;
    padding: 0 18px;
  }

  .newsletter-btn {
    width: 100%;
    padding: 16px;
    justify-content: center;
  }

  .newsletter-benefits {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }

  .newsletter-divider {
    display: none;
  }

  .newsletter-benefit {
    padding: 0;
  }
}

/* ═══════════════════════════════════════════════════════════════
   WISH TRAVELO — New Footer CSS
   Paste this into your style.css
   (You can remove or keep your old .footer styles)
   ═══════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════
   NEW FOOTER
   ════════════════════════════════════════════ */
.footer-new {
  position: relative;
  overflow: hidden;
}

/* Background */
.footer-new-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.footer-new-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  /* filter: brightness(0.28) saturate(0.5); */
}


/* Shared inner max-width */
.footer-new-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}   

/* ── TOP ── */
.footer-new-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-new-top .footer-new-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Brand */
.fn-brand {
  display: flex;
  flex-direction: column;
}

.fn-logo {
  display: inline-flex;
  margin-bottom: 20px;
}

.fn-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.fn-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.8;
  font-weight: 300;
  max-width: 280px;
  margin-bottom: 28px;
}

/* Social icons */
.fn-socials {
  display: flex;
  gap: 10px;
}

.fn-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.fn-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 151, 45, 0.08);
}

.fn-social svg {
  stroke: currentColor;
}

/* Nav columns */
.fn-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.fn-col ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.fn-col ul li a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.fn-col ul li a:hover {
  color: var(--gold);
}

/* Contact column specifics */
.fn-col--contact ul {
  gap: 18px;
}

.fn-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 300;
  text-decoration: none;
  letter-spacing: 0.02em;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.fn-contact-item:hover {
  color: var(--gold);
}

.fn-contact-item svg {
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.fn-contact-addr {
  cursor: default;
}

/* ── BOTTOM BAR ── */
.footer-new-bottom {
  padding: 22px 0;
}

.footer-new-bottom .footer-new-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fn-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.fn-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fn-legal a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  font-weight: 300;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.fn-legal a:hover {
  color: var(--gold);
}

.fn-legal-divider {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.15);
}

/* ═══════════════════════════════════════════════════════════════
   WISH TRAVELO — Footer CSS (Complete Clean Version)
   Apni style.css ke BILKUL END mein paste karo
   ═══════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════
   FOOTER NEW
   ════════════════════════════════════════════ */
.footer-new {
  position: relative;
  background: #1a1a1a;
  overflow: hidden;
}

/* ── Background image ── */
.footer-new-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.footer-new-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
  opacity: 0.45;
  /* filter: brightness(0.1) saturate(0.2); */
}

/* ── Shared inner wrapper ── */
.footer-new-inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
}

/* ── TOP section ── */
.footer-new-top {
  padding: 72px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-new-top .footer-new-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ── Brand column ── */
.fn-brand {
  display: flex;
  flex-direction: column;
}

.fn-logo {
  display: inline-flex;
  margin-bottom: 18px;
  text-decoration: none;
  flex-shrink: 0;
}

.fn-logo-img {
  height: 56px;
  width: auto;
  object-fit: contain;
  display: block;
}

.fn-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.40);
  line-height: 1.8;
  font-weight: 300;
  max-width: 260px;
  margin-bottom: 28px;
}

/* Social icons */
.fn-socials {
  display: flex;
  gap: 10px;
}

.fn-social {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.50);
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  flex-shrink: 0;
}

.fn-social svg {
  stroke: currentColor;
  display: block;
}

.fn-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 151, 45, 0.08);
}

/* ── Nav columns ── */
.fn-col {
  display: flex;
  flex-direction: column;
}

.fn-col-title {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 26px;
  margin-top: 0;
  padding: 0;
}

.fn-col ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.fn-col ul li {
  list-style: none;
}

.fn-col ul li a {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 300;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.3s;
  display: inline-block;
}

.fn-col ul li a:hover {
  color: var(--gold);
}

/* ── Contact column ── */
.fn-col--contact ul {
  gap: 16px;
}

.fn-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.42);
  font-weight: 300;
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.3s;
}

.fn-contact-item svg {
  stroke: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.fn-contact-item:hover {
  color: var(--gold);
}

.fn-contact-addr {
  cursor: default;
}

/* ── Bottom bar ── */
.footer-new-bottom {
  position: relative;
  z-index: 2;
  padding: 20px 0;
}

.fn-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fn-copy {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
  letter-spacing: 0.02em;
}

.fn-legal {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fn-legal a {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
  text-decoration: none;
  transition: color 0.3s;
}

.fn-legal a:hover {
  color: var(--gold);
}

.fn-legal-divider {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.12);
}

/* ════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .footer-new-top .footer-new-inner {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
  }
  .fn-col--contact {
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 40px;
  }
  .fn-col--contact ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 40px;
  }
}

@media (max-width: 768px) {
  .footer-new-inner {
    padding: 0 40px;
  }
  .footer-new-top .footer-new-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .fn-brand {
    grid-column: 1 / -1;
  }
  .fn-col--contact {
    grid-column: unset;
    flex-direction: column;
  }
  .fn-col--contact ul {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer-new-inner {
    padding: 0 24px;
  }
  .footer-new-top .footer-new-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .fn-brand {
    grid-column: unset;
  }
  .fn-col--contact {
    grid-column: unset;
  }
  .fn-bottom-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

.fd-card1 {
  flex: 0 0 210px;
  height: 240px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  scroll-snap-align: start;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94),
              box-shadow .4s cubic-bezier(.25,.46,.45,.94);
  will-change: transform;
}
/* ═══════════════════════════════════════════════════════════════
   WISH TRAVELO — HAMBURGER MENU
   ═══════════════════════════════════════════════════════════════ */
.fd-card1 img {
  width: 100%;
  height: 100%;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  margin-left: 16px;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.85);
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.nav-hamburger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.is-open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Panel */
.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 90px;
  left: 0;
  right: 0;
  background: rgba(13, 11, 3, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 32px 24px 40px;
  transform: translateY(-20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 999;
}

.nav-mobile-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-mobile-links {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-mobile-links li a {
  display: block;
  padding: 14px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.3s;
}

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

.nav-mobile-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-mobile-phone {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

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

.nav-mobile-cta {
  text-align: center;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════
   WISH TRAVELO — COMPREHENSIVE RESPONSIVE CSS
   ═══════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════
   1200px BREAKPOINT
════════════════════════════════════ */
@media (max-width: 1200px) {
  .container { padding: 0 40px; }
  .nav-inner { padding: 0 40px; }
  .curated-inner { padding: 0 40px; }
  .footer-new-inner { padding: 0 40px; }
  .consult-inner { padding: 0 40px; }

  .philosophy-heading { font-size: 44px; }
  .service-heading { font-size: 46px; }
  .cta-heading { font-size: 52px; }
  .consult-heading { font-size: 52px; }
  .curated-heading { font-size: 50px; }
  .test-heading { font-size: 50px; }

  .service-grid { gap: 60px; }
  .cta-inner { gap: 60px; }
  .testimonials-inner { gap: 60px; }

  .philosophy-image-stack { height: 500px; }
  .service-img-wrap { height: 520px; }
}

/* ════════════════════════════════════
   992px BREAKPOINT
════════════════════════════════════ */
@media (max-width: 992px) {
  /* Navbar: hide links and phone, show hamburger */
  .nav-links { display: none; }
  .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile-menu { display: block; }
  .btn-nav-cta { display: none; }

  /* Typography */
  .section-heading { font-size: 40px; }
  .philosophy-heading { font-size: 40px; }
  .service-heading { font-size: 42px; }
  .cta-heading { font-size: 46px; }
  .consult-heading { font-size: 44px; }
  .curated-heading { font-size: 44px; }
  .test-heading { font-size: 44px; }
  .fd-heading { font-size: 38px; }

  /* Grids → single column */
  .philosophy-grid { grid-template-columns: 1fr; gap: 60px; }
  .service-grid { grid-template-columns: 1fr; gap: 60px; }
  .testimonials-inner { grid-template-columns: 1fr; gap: 60px; }
  .cta-inner { grid-template-columns: 1fr; gap: 60px; }
  .consult-inner { grid-template-columns: 1fr; gap: 56px; }

  /* Images */
  .philosophy-image-stack { height: 380px; }
  .service-img-wrap { height: 420px; }
  .phi-img-main { width: 80%; height: 300px; }
  .phi-img-accent { height: 200px; }

  /* Cards grids */
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .india-grid { grid-template-columns: repeat(2, 1fr); }
  .tailored-grid { grid-template-columns: repeat(2, 1fr); }
  .tailored-features { grid-template-columns: repeat(2, 1fr); gap: 40px; }

  /* Curated */
  .curated-grid { grid-template-columns: 1fr; }
  .curated-right-grid { height: auto; grid-template-columns: repeat(2, 1fr); }
  .curated-card--large .curated-img-wrap { height: 400px; }
  .curated-right-grid .curated-card--sm .curated-img-wrap { height: 200px; }

  /* Process */
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 60px;
  }
  .process-line { display: none; }

  /* Why grid */
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Hero stats hidden */
  .hero-stats { display: none; }

  /* Footer */
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }

  /* CTA right */
  .cta-right { justify-content: flex-start; }
  .cta-contact-cards { max-width: 100%; }

  /* Consultation */
  .consultation { padding: 70px 0; }
  .consult-bg-overlay { background: rgba(247, 245, 242, 0.82); }
}

/* ════════════════════════════════════
   768px BREAKPOINT
════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-pad: 80px; }

  .container { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .curated-inner { padding: 0 32px; }
  .footer-new-inner { padding: 0 32px; }
  .consult-inner { padding: 0 32px; }

  /* Typography */
  .section-heading { font-size: 36px; }
  .philosophy-heading { font-size: 36px; }
  .service-heading { font-size: 36px; }
  .cta-heading { font-size: 40px; }
  .consult-heading { font-size: 38px; }
  .curated-heading { font-size: 38px; }
  .test-heading { font-size: 38px; }
  .newsletter-heading { font-size: 36px; }

  /* Hero */
  .hero-content { padding: 0 32px 80px; }
  .hero-text { padding-bottom: 30px; }
  .hero-subtitle { font-size: 14px; }
  .hero-actions { gap: 20px; flex-wrap: wrap; justify-content: center; }

  /* Dest cards */
  .dest-img-wrap { height: 300px; }

  /* Curated */
  .curated-header { flex-direction: column; gap: 20px; align-items: flex-start; }

  /* India / tailored */
  .india-grid { grid-template-columns: 1fr; }
  .tailored-grid { grid-template-columns: 1fr; }

  /* Consultation form */
  .consult-form-grid { grid-template-columns: 1fr; gap: 0; }
  .consult-form-card { padding: 36px 28px; }

  /* Testimonials */
  .test-list { gap: 8px; }

  /* Process */
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }

  /* Footer grid */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-new-top .footer-new-inner { grid-template-columns: 1fr 1fr; }
  .fn-brand { grid-column: 1 / -1; }

  /* CTA actions */
  .cta-actions { flex-direction: column; align-items: flex-start; }

  /* Newsletter */
  .newsletter-inner { flex-direction: column; gap: 40px; }
  .newsletter-form { width: 100%; }

  /* Service list */
  .service-img-wrap { height: 360px; }

  /* Section header */
  .section-header { margin-bottom: 40px; }

  /* Why */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ════════════════════════════════════
   576px BREAKPOINT
════════════════════════════════════ */
@media (max-width: 576px) {
  :root { --section-pad: 64px; }

  .container { padding: 0 24px; }
  .nav-inner { padding: 0 20px; }
  .curated-inner { padding: 0 24px; }
  .footer-new-inner { padding: 0 24px; }
  .consult-inner { padding: 0 24px; }

  /* Typography */
  .section-heading { font-size: 32px; }
  .philosophy-heading { font-size: 32px; }
  .service-heading { font-size: 32px; }
  .cta-heading { font-size: 34px; }
  .consult-heading { font-size: 34px; }
  .curated-heading { font-size: 34px; }
  .test-heading { font-size: 34px; }
  .newsletter-heading { font-size: 30px; }
  .hero-heading { font-size: 56px; }

  /* Hero */
  .hero-content { padding: 0 24px 70px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 0.2em; }
  .hero-actions { flex-direction: column; align-items: center; gap: 16px; width: 100%; }
  .btn-primary { width: 100%; justify-content: center; }

  /* Dest cards: single col */
  .dest-grid { grid-template-columns: 1fr; }
  .tailored-features { grid-template-columns: 1fr; }

  /* India single col */
  .india-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-timeline { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; gap: 16px; text-align: center; }

  /* Footer new */
  .footer-new-top .footer-new-inner { grid-template-columns: 1fr; }
  .fn-brand { grid-column: unset; }
  .fn-col--contact { grid-column: unset; flex-direction: column; }
  .fn-col--contact ul { flex-direction: column; }
  .fn-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }

  /* Consultation */
  .consultation { padding: 60px 0; }
  .consult-form-card { padding: 28px 20px; border-radius: 12px; }
  .consult-submit { max-width: 100%; }

  /* Curated right grid */
  .curated-right-grid { grid-template-columns: 1fr; height: auto; }
  .curated-right-grid .curated-card--sm .curated-img-wrap { height: 220px; }

  /* Service */
  .service { padding: 60px 24px; }

  /* CTA card */
  .cta-card { padding: 20px 24px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════
   480px BREAKPOINT
════════════════════════════════════ */
@media (max-width: 480px) {
  :root { --section-pad: 56px; }

  .container { padding: 0 20px; }
  .nav-inner { padding: 0 16px; }
  .nav-hamburger { margin-left: 8px; }

  /* Typography */
  .section-heading { font-size: 28px; }
  .hero-heading { font-size: 48px; }
  .hero-subtitle { font-size: 13px; max-width: 100%; }

  /* Logo */
  .logo-img { height: 44px; }

  /* Cards */
  .dest-img-wrap { height: 260px; }
  .india-img-wrap { height: 260px; }
  .tailored-img-wrap { height: 280px; }

  /* Curated */
  .curated-heading { font-size: 30px; }
  .curated-card--large .curated-img-wrap { height: 320px; }

  /* Process: single col */
  .process-timeline { grid-template-columns: 1fr; gap: 32px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 32px 24px 28px; }

  /* Filter tabs */
  .filter-tabs { flex-wrap: wrap; gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 10px; }

  /* Testimonial items */
  .test-item { padding: 16px 18px; }

  /* CTA */
  .cta-heading { font-size: 28px; }
  .btn-cta-outline, .cta-btn-primary { width: 100%; justify-content: center; }

  /* Section header */
  .section-header { margin-bottom: 32px; }

  /* Consultation */
  .consult-heading { font-size: 30px; }
  .consult-body { font-size: 14px; }
  .consult-feat-text h4 { font-size: 18px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-top { padding: 60px 0 40px; }

  /* Newsletter */
  .newsletter-heading { font-size: 26px; }

  /* Scroll indicator */
  .scroll-indicator { display: none; }
}

/* ════════════════════════════════════
   375px BREAKPOINT
════════════════════════════════════ */
@media (max-width: 375px) {
  .container { padding: 0 16px; }
  .nav-inner { padding: 0 14px; }

  .hero-heading { font-size: 40px; }
  .section-heading { font-size: 26px; }

  .philosophy-heading { font-size: 28px; }
  .service-heading { font-size: 28px; }
  .curated-heading { font-size: 28px; }
  .test-heading { font-size: 28px; }
  .cta-heading { font-size: 26px; }
  .consult-heading { font-size: 28px; }

  .hero-content { padding: 0 16px 60px; }
  .hero-eyebrow { display: none; }

  .dest-img-wrap { height: 240px; }
  .india-img-wrap { height: 240px; }
  .tailored-img-wrap { height: 260px; }

  .btn-primary, .btn-outline, .cta-btn-primary, .btn-cta-outline {
    padding: 14px 24px;
    font-size: 10px;
    width: 100%;
    justify-content: center;
  }

  .cta-card { gap: 16px; padding: 16px 20px; }

  .navbar { height: 72px; }
  .nav-mobile-menu { top: 72px; }

  .fn-logo-img { height: 44px; }
}

/* ════════════════════════════════════
   GLOBAL IMAGE SAFETY
════════════════════════════════════ */
img {
  max-width: 100%;
  height: auto;
}

.hero-img,
.phi-img img,
.dest-img-wrap img,
.curated-img-wrap img,
.india-img-wrap img,
.tailored-img-wrap img,
.service-img-wrap img,
.testimonials-bg img,
.consult-bg img,
.footer-new-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ════════════════════════════════════
   NO HORIZONTAL SCROLL
════════════════════════════════════ */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
