@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,600;9..144,700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500&display=swap');

:root {
  --ocean-deep: #0B4F5C;
  --lagoon: #1B8A98;
  --sand: #F6EEDD;
  --coral: #E8734A;
  --ink: #16302E;
  --white: #FFFFFF;
  --line: #E4DAC4;
  --radius: 14px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }

/* ========== HEADER ========== */
.site-header {
  background: var(--ocean-deep);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.header-row { width: 100%; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  text-decoration: none;
  flex-shrink: 0;
}

.brand-mark {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.85rem;
  flex-shrink: 0;
}

.brand-logo {
  width: 38px; height: 38px; border-radius: 10px; object-fit: cover; flex-shrink: 0;
}

.site-nav {
  display: flex;
  gap: 24px;
  font-weight: 500;
  align-items: center;
}

.site-nav a {
  opacity: 0.85;
  transition: opacity .2s;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  opacity: 1;
  border-bottom: 2px solid var(--coral);
  padding-bottom: 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

/* ========== FOOTER ========== */
.site-footer { background: var(--ink); color: #cfe0dc; padding: 0; margin-top: 40px; font-size: 0.85rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding: 44px 0 24px; }
.footer-brand { font-family: var(--font-display); font-size: 1.2rem; margin: 0 0 8px; color: var(--white); }
.footer-tagline { color: #9fb5b0; font-size: 0.88rem; margin: 0 0 14px; }
.footer-social { display: flex; gap: 14px; }
.footer-social a { font-size: 0.82rem; color: #9fb5b0; }
.site-footer h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: #9fb5b0; margin: 0 0 12px; }
.site-footer a { display: block; color: #d6e5e1; font-size: 0.9rem; margin-bottom: 8px; }
.site-footer p { margin: 0 0 8px; font-size: 0.88rem; color: #d6e5e1; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 16px 0; font-size: 0.8rem; color: #8ba09b; }

/* ========== WHATSAPP ========== */
.whatsapp-float {
  position: fixed; bottom: 22px; right: 22px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 22px rgba(0,0,0,0.25);
  z-index: 50; text-decoration: none;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--ocean-deep) 0%, #0e5f6e 100%);
  color: var(--white); padding: 64px 0 46px; overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; }
.eyebrow { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.75rem; color: #9FD7DD; margin: 0 0 10px; }
.hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0 0 14px; font-weight: 600; }
.hero-sub { max-width: 560px; opacity: 0.88; font-size: 1.05rem; margin: 0; }

/* ========== PACKAGE GRID ========== */
main.container { padding-top: 40px; padding-bottom: 60px; }
.package-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 22px; }
.package-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .18s ease, box-shadow .18s ease; display: block;
}
.package-card:hover { transform: translateY(-4px); box-shadow: 0 14px 28px rgba(11,79,92,0.14); }
.package-card-img {
  height: 150px; background: var(--lagoon) center/cover no-repeat;
  display: flex; align-items: center; justify-content: center; position: relative;
}
.img-placeholder { font-size: 2.4rem; }
.package-card-body { padding: 18px 20px 22px; }
.package-duration { font-family: var(--font-mono); font-size: 0.72rem; color: var(--coral); text-transform: uppercase; letter-spacing: 0.06em; }
.package-card-body h3 { font-family: var(--font-display); font-size: 1.25rem; margin: 6px 0 6px; }
.package-card-body p { margin: 0; font-size: 0.9rem; color: #566865; }
.empty-note { text-align: center; padding: 60px 0; color: #8a8a8a; }
.package-price-tag { font-family: var(--font-mono); font-weight: 600; color: var(--ocean-deep); font-size: 0.85rem; margin-top: 8px; }

/* ========== DETAIL PAGE ========== */
.detail-wrap { max-width: 880px; }
.back-link { display: inline-block; margin-bottom: 18px; font-weight: 600; color: var(--lagoon); }
.download-bar { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.btn-download {
  background: var(--coral); color: var(--white); padding: 11px 20px; border-radius: 999px;
  font-weight: 600; font-size: 0.92rem; border: none; cursor: pointer;
}
.btn-download-alt { background: var(--ocean-deep); }
.doc-paper { background: var(--white); border-radius: var(--radius); padding: 40px 44px; border: 1px solid var(--line); }
.doc-title { font-family: var(--font-display); font-size: 2rem; color: var(--ocean-deep); margin: 0 0 4px; }
.doc-meta { font-family: var(--font-mono); font-size: 0.8rem; color: var(--coral); margin: 0 0 16px; }
.doc-intro { color: #445956; margin-bottom: 20px; }
.doc-section-title { font-family: var(--font-display); font-size: 1.4rem; color: var(--ocean-deep); border-bottom: 2px solid var(--coral); padding-bottom: 6px; margin: 32px 0 16px; }
.doc-subtitle { font-family: var(--font-mono); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--lagoon); margin: 18px 0 8px; }
.doc-day { position: relative; padding-left: 30px; margin-bottom: 20px; border-left: 2px dotted var(--line); }
.doc-day:last-child { border-left: 2px dotted transparent; }
.doc-day::before { content: ''; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%; background: var(--coral); }
.doc-day h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--ocean-deep); margin: 0 0 6px; }
.doc-day p { margin: 0; color: #435855; }
.doc-list { padding-left: 20px; margin: 0 0 12px; }
.doc-list li { margin-bottom: 6px; }
.doc-table {
  width: 100%; border-collapse: collapse; margin-bottom: 18px; font-size: 0.92rem;
  display: block; overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.doc-table th { background: var(--ocean-deep); color: var(--white); text-align: left; padding: 10px 12px; font-weight: 600; }
.doc-table td { padding: 9px 12px; border-bottom: 1px solid var(--line); }
.doc-table tbody tr:nth-child(even) { background: #FBF7ED; }

/* ========== SECTIONS ========== */
.section { padding: 34px 0; }
.section-head { max-width: 560px; margin: 0 auto 22px; text-align: center; }
.section-eyebrow { font-family: var(--font-mono); text-transform: uppercase; font-size: 1.22rem; letter-spacing: 0.1em; color: var(--coral); margin: 0 0 8px; }
.section-title { font-family: var(--font-display); font-size: 2rem; margin: 0; color: var(--ocean-deep); }
.section-sub { color: #566865; margin: 10px 0 0; }

/* ========== HERO CAROUSEL ========== */
.hero-carousel {
  position: relative;
  width: 100%;
  /* FIX: Desktop height badhi — images poori dikhegi */
  height: clamp(320px, 48vw, 560px);
  overflow: hidden;
  background: var(--ocean-deep);
  display: block;
}

.hero-carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease;
  display: block;
  text-decoration: none;
}

.hero-slide.is-active { opacity: 1; visibility: visible; }

.hero-slide-img {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  /* FIX: center top se image upar se cut nahi hogi */
  background-position: center top;
}

.hero-slide-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: clamp(20px, 4vw, 40px) clamp(24px, 5vw, 60px);
  background: linear-gradient(0deg, rgba(11,49,45,0.82) 0%, rgba(11,49,45,0.15) 55%, rgba(11,49,45,0.05) 100%);
}

.hero-slide-overlay h2 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 0 0 10px;
}

.hero-slide-price {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
}

.hero-carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.85); color: var(--ocean-deep);
  font-size: 1.6rem; line-height: 1; cursor: pointer; z-index: 5;
}
.hero-carousel-arrow.prev { left: 20px; }
.hero-carousel-arrow.next { right: 20px; }
.hero-carousel-arrow:hover { background: var(--white); }

.hero-carousel-dots {
  position: absolute;
  bottom: 18px;
  right: clamp(24px, 5vw, 60px);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-dot {
  width: 9px; height: 9px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.5);
  cursor: pointer; padding: 0;
}
.hero-dot.is-active { background: var(--white); width: 22px; border-radius: 5px; }

/* ========== WHY / REVIEWS / DESTINATIONS ========== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.why-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 22px; text-align: center; }
.why-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.why-card h4 { font-family: var(--font-display); font-size: 1.05rem; margin: 0 0 8px; color: var(--ocean-deep); }
.why-card p { margin: 0; font-size: 0.88rem; color: #566865; }

.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.review-stars { color: #F0A93D; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: 0.92rem; color: #445956; margin: 0 0 14px; }
.review-name { font-weight: 700; font-size: 0.88rem; color: var(--ocean-deep); }
.reviews-cta { text-align: center; margin-top: 18px; }

.dest-preview-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 18px; }
.dest-preview-card { position: relative; border-radius: var(--radius); overflow: hidden; height: 220px; background: var(--lagoon) center/cover no-repeat; display: flex; align-items: flex-end; }
.dest-preview-card::after { content:''; position:absolute; inset:0; background: linear-gradient(180deg, transparent 40%, rgba(11,49,45,0.82)); }
.dest-preview-card span { position: relative; z-index: 1; color: var(--white); font-family: var(--font-display); font-size: 1.1rem; padding: 16px; }

.view-all-link { text-align: center; margin-top: 18px; }
.view-all-link a { display: inline-block; font-weight: 600; color: var(--lagoon); border-bottom: 2px solid var(--coral); padding-bottom: 2px; }

/* ========== MISC ========== */
.hero-compact { padding: 46px 0 40px; }
.hero-compact h1 { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.6rem); margin: 6px 0 8px; }
.back-link-light { color: #cfe6e9; opacity: 0.9; }

.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-chip { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); font-size: 0.85rem; font-weight: 600; color: var(--ink); cursor: pointer; }
.filter-chip.active, .filter-chip:hover { background: var(--ocean-deep); color: var(--white); border-color: var(--ocean-deep); }

.card-flag { position: absolute; top: 10px; right: 10px; background: var(--coral); color: var(--white); padding: 3px 10px; border-radius: 999px; font-size: 0.7rem; font-weight: 700; }

.about-content { color: #445956; font-size: 1.02rem; line-height: 1.8; }

.contact-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 14px; margin-top: 16px; }
.contact-form label { font-weight: 600; font-size: 0.88rem; display: flex; flex-direction: column; gap: 6px; }
.contact-form input, .contact-form textarea { font-family: var(--font-body); padding: 11px 12px; border-radius: 9px; border: 1px solid var(--line); font-size: 0.95rem; width: 100%; }
.contact-info-card ul.doc-list { padding-left: 0; list-style: none; }
.contact-info-card li { margin-bottom: 14px; font-size: 0.95rem; }
.alert-success-box { background: #E4F5EC; color: #1E7A46; padding: 14px 16px; border-radius: 9px; }
.alert-error-box { background: #FCEBE8; color: #C0392B; padding: 12px 16px; border-radius: 9px; margin-bottom: 14px; }

/* ============================================================
   TABLET — max 900px
   ============================================================ */
@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .hero-carousel { height: clamp(260px, 42vw, 460px); }
  .package-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .dest-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ============================================================
   MOBILE — max 640px
   ============================================================ */
@media (max-width: 640px) {
  .container { padding: 0 16px; }

  .header-inner {
    height: auto;
    padding: 12px 0;
    flex-wrap: nowrap;
    position: relative;
  }

  .brand { font-size: 0.95rem; flex: 1; min-width: 0; }
  .brand-text { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .brand-mark { width: 32px; height: 32px; font-size: 0.75rem; }
  .brand-logo { width: 32px; height: 32px; }

  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: -16px;
    right: -16px;
    background: var(--ocean-deep);
    flex-direction: column;
    gap: 0;
    padding: 8px 16px 16px;
    z-index: 200;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    opacity: 1;
    font-size: 1rem;
    white-space: normal;
  }

  .site-nav a:last-child { border-bottom: none; }

  .site-nav a.active,
  .site-nav a:hover {
    color: var(--coral);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 12px;
  }

  /* FIX: Mobile carousel height badhi */
  .hero-carousel { height: clamp(260px, 65vw, 420px); }
  .hero-slide-overlay { padding: 16px 18px; }
  .hero-slide-overlay h2 { font-size: 1.3rem; margin-bottom: 6px; }
  .hero-slide-price { font-size: 0.78rem; padding: 5px 12px; }
  .hero-carousel-arrow { width: 32px; height: 32px; font-size: 1.2rem; }
  .hero-carousel-dots { right: 14px; bottom: 10px; }

  .hero-compact { padding: 28px 0 22px; }
  .hero-compact h1 { font-size: 1.7rem; }

  main.container { padding-top: 24px; padding-bottom: 40px; }

  .package-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 14px; }
  .dest-preview-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .package-card-img { height: 180px; }
  .dest-preview-card { height: 160px; }
  .dest-preview-card span { font-size: 0.95rem; padding: 12px; }

  .section { padding: 22px 0; }
  .section-title { font-size: 1.5rem; }

  .filter-bar { gap: 8px; margin-bottom: 18px; }
  .filter-chip { padding: 6px 12px; font-size: 0.8rem; }

  .detail-wrap { max-width: 100%; }
  .doc-paper { padding: 18px 14px; }
  .doc-title { font-size: 1.5rem; }
  .doc-section-title { font-size: 1.15rem; margin: 24px 0 12px; }
  .doc-day { padding-left: 22px; }
  .doc-day h3 { font-size: 1rem; }
  .download-bar { flex-direction: column; }
  .btn-download { text-align: center; width: 100%; }

  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
  .contact-form input,
  .contact-form textarea { font-size: 16px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; padding: 28px 5px 14px; }
  .footer-bottom { font-size: 0.75rem; }

  .whatsapp-float { width: 48px; height: 48px; font-size: 1.35rem; bottom: 16px; right: 16px; }
}

/* ============================================================
   BAHUT CHHOTI — max 380px
   ============================================================ */
@media (max-width: 380px) {
  /* FIX: Mobile chhoti screens par bhi thodi height */
  .hero-carousel { height: clamp(220px, 70vw, 320px); }
  .package-card-img { height: 150px; }
  .section-title { font-size: 1.3rem; }
  .doc-title { font-size: 1.25rem; }
}