/* ===========================
   WANDERDISE — Styles
   Color: White + #004A4A
   =========================== */

:root {
  --teal: #004A4A;
  --teal-light: #006666;
  --teal-pale: #e8f2f2;
  --white: #ffffff;
  --off-white: #f9f9f8;
  --gray-100: #f4f4f3;
  --gray-200: #e8e8e6;
  --gray-400: #a0a09e;
  --gray-600: #6b6b68;
  --gray-800: #2a2a28;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --nav-h: 72px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: var(--teal);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,74,74,0.25); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }

.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover { background: var(--teal-light); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,74,74,0.2); }

.btn-white {
  background: var(--white);
  color: var(--teal);
  font-weight: 600;
}
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(0,0,0,0.15); }

/* ===========================
   NAVBAR
   =========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.4s;
}

.navbar.scrolled .logo-img {
  filter: none;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  transition: color 0.4s;
  font-weight: 600;
}

.navbar.scrolled .logo-text { color: var(--teal); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  letter-spacing: 0.02em;
}

.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a { color: var(--gray-600); }
.navbar.scrolled .nav-links a:hover { color: var(--teal); }

#nav-cta {
  margin-left: auto;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  padding: 10px 20px;
}

.navbar.scrolled #nav-cta {
  color: var(--teal);
  border-color: var(--teal);
}

#nav-cta:hover {
  background: var(--white);
  color: var(--teal);
}

.navbar.scrolled #nav-cta:hover {
  background: var(--teal);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.navbar.scrolled .hamburger span { background: var(--teal); }

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

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--gray-200);
}

.mobile-menu.open { display: flex; }

.mobile-link {
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
  transition: color 0.3s;
}
.mobile-link:last-child { border-bottom: none; margin-top: 8px; }
.mobile-link:hover { color: var(--teal); }
.whatsapp-mobile { color: var(--teal); font-weight: 600; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--teal);
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 74, 74, 0.85) 0%,
    rgba(0, 100, 100, 0.6) 50%,
    rgba(0, 30, 30, 0.7) 100%
  );
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-title em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

.hero-sub {
  max-width: 500px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 48px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.scroll-hint {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(8px); opacity: 1; }
}

/* ===========================
   SCROLL REVEAL
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===========================
   SECTION SHARED
   =========================== */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--teal);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--gray-800);
  font-weight: 400;
}

.section-title em {
  font-style: italic;
  color: var(--teal);
}

.section-desc {
  font-size: 1rem;
  color: var(--gray-600);
  max-width: 540px;
  line-height: 1.75;
}

.section-header { margin-bottom: 56px; }

.section-cta { text-align: center; margin-top: 48px; }

/* ===========================
   ABOUT STRIP
   =========================== */
.about-strip {
  padding: 100px 0;
  background: var(--off-white);
}

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

.about-text p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 32px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,74,74,0.08);
  border-color: var(--teal-pale);
}

.stat-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--teal);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* ===========================
   INDIA SECTION
   =========================== */
.india-section {
  padding: 100px 0;
  background: var(--white);
}

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

.india-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  transition: var(--transition);
  transition-delay: var(--delay, 0s);
}

.india-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,74,74,0.15); }

.india-card-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

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

.card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,30,30,0.85) 0%, transparent 55%);
}

.card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  color: var(--white);
}

.card-content h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 4px;
}

.card-content p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
}

/* ===========================
   INTERNATIONAL DESTINATIONS
   =========================== */
.international-section {
  padding: 100px 0;
  background: var(--off-white);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.dest-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  cursor: pointer;
  transition-delay: var(--delay, 0s);
}

.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,74,74,0.12);
  border-color: var(--teal);
}

.dest-img {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s ease;
}

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

.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,74,74,0.3) 0%, transparent 50%);
  transition: opacity 0.3s;
}

.dest-info {
  padding: 16px 16px 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.dest-flag { font-size: 1.4rem; }

.dest-info h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gray-800);
}

.dest-info p {
  font-size: 0.72rem;
  color: var(--gray-400);
  display: none;
}

.dest-book {
  display: block;
  margin: 12px 16px 16px;
  padding: 9px;
  text-align: center;
  background: var(--teal-pale);
  color: var(--teal);
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
}

.dest-book:hover { background: var(--teal); color: var(--white); }

/* ===========================
   INSTAGRAM SECTION
   =========================== */
.instagram-section {
  padding: 100px 0;
  background: var(--white);
}

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

.insta-card {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.insta-card:hover { transform: scale(1.02); box-shadow: 0 16px 48px rgba(0,0,0,0.1); }

.insta-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.insta-icon {
  width: 32px;
  height: 32px;
  color: rgba(255,255,255,0.8);
}

.insta-icon svg { width: 100%; height: 100%; }

/* Destination-themed gradients for Instagram placeholders */
.insta-p1 { background: linear-gradient(135deg, #004A4A 0%, #007070 100%); }
.insta-p2 { background: linear-gradient(135deg, #1a3a2a 0%, #2d6a4f 100%); }
.insta-p3 { background: linear-gradient(135deg, #003d3d 0%, #004A4A 100%); }
.insta-p4 { background: linear-gradient(135deg, #052030 0%, #0a3a55 100%); }
.insta-p5 { background: linear-gradient(135deg, #1a4040 0%, #006060 100%); }
.insta-p6 { background: linear-gradient(135deg, #003333 0%, #005555 100%); }

.insta-follow {
  text-align: center;
  margin-top: 48px;
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-banner {
  padding: 100px 0;
  background: var(--teal);
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.cta-banner h2 em { font-style: italic; color: rgba(255,255,255,0.7); }

.cta-banner p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--gray-800);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 6px;
  font-weight: 600;
}

.footer-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a svg {
  width: 16px;
  height: 16px;
}

.footer-social a:hover {
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}

address {
  font-style: normal;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}

.footer-wa {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
  transition: color 0.3s;
}

.footer-wa:hover { color: var(--white); }

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

/* ===========================
   WHATSAPP FLOAT BUTTON
   =========================== */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
  z-index: 200;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPulse 3s ease-in-out infinite;
}

.wa-float svg {
  width: 28px;
  height: 28px;
  color: var(--white);
  fill: var(--white);
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 48px rgba(37,211,102,0.5);
  animation: none;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 8px 48px rgba(37,211,102,0.6); }
}

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

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links, #nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }

  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .hero-content { padding-top: 100px; }

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

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

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

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

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

  .cta-banner { padding: 72px 0; }
}

@media (max-width: 480px) {
  .india-grid { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

/* ===========================
   PARALLAX HELPER
   =========================== */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  .hero-img { transform: none; }
  .wa-float { animation: none; }
  .scroll-dot { animation: none; }
}
