:root {
  --saffron: #e26f21;
  --saffron-dark: #b94e13;
  --maroon: #7d1d1d;
  --ink: #1f2933;
  --muted: #65717f;
  --line: #e8e1d7;
  --cream: #fff8ef;
  --white: #ffffff;
  --green: #148a4f;
  --shadow: 0 20px 60px rgba(84, 45, 16, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fffdf9;
}

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

img {
  display: block;
  max-width: 100%;
}

.topbar {
  position: fixed;
  top: 0;
  z-index: 50;
  width: 100%;
}

.offer-strip {
  background: linear-gradient(90deg, #a81d1d, #e26f21);
  color: white;
  font-weight: 800;
  text-align: center;
  padding: 9px 16px;
  font-size: 14px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(31, 20, 12, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-weight: 900;
  font-size: 22px;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand strong {
  color: #ffbd68;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 700;
}

.nav-cta {
  background: var(--saffron);
  color: white;
  padding: 10px 18px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  padding-top: 120px;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(22, 13, 8, 0.88) 0%, rgba(38, 20, 10, 0.72) 48%, rgba(22, 13, 8, 0.15) 100%),
    linear-gradient(0deg, rgba(22, 13, 8, 0.36), rgba(22, 13, 8, 0.04));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 440px);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
  padding: 84px 0 70px;
}

.hero-copy {
  color: white;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--saffron);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Mobile-only hero header: image + h1 side by side */
.hero-mobile-header {
  display: none;
}

.hero-mobile-img {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  border: 3px solid #ffffff;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.hero-mobile-h1 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
  color: white;
}

.hero-desktop-h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 6vw, 76px);
  line-height: 1.02;
}

.hero-sub {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.trust-row span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
  padding: 10px 14px;
  color: #fff6e8;
  font-weight: 800;
}

.baba-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin-top: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  padding: 10px 14px 10px 10px;
  backdrop-filter: blur(14px);
}

.baba-badge img {
  width: 74px;
  height: 74px;
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: #fff6e8;
  object-fit: contain;
}

.baba-badge strong,
.baba-badge span {
  display: block;
}

.baba-badge strong {
  color: white;
  font-size: 17px;
}

.baba-badge span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  box-shadow: 0 14px 30px rgba(226, 111, 33, 0.35);
}

.btn.ghost {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
}

.btn.secondary {
  color: var(--saffron-dark);
  background: #fff3e2;
}

.microcopy {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.quote-card {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 6px solid var(--saffron);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-head p {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.form-head h2 {
  margin: 0 0 18px;
  font-size: 25px;
}

label {
  display: block;
  margin-top: 13px;
  color: #364352;
  font-size: 13px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  height: 46px;
  margin-top: 7px;
  border: 1px solid #d7d0c7;
  border-radius: 6px;
  background: white;
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
}

input:focus,
select:focus {
  border-color: var(--saffron);
  outline: 3px solid rgba(226, 111, 33, 0.16);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.submit {
  width: 100%;
  margin-top: 18px;
  font-size: 15px;
}

.secure-note {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1120px, calc(100% - 36px));
  margin: -58px auto 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.proof-band div {
  padding: 24px;
  border-right: 1px solid var(--line);
}

.proof-band div:last-child {
  border-right: 0;
}

.proof-band strong {
  display: block;
  color: var(--maroon);
  font-size: 31px;
}

.proof-band span {
  color: var(--muted);
  font-weight: 800;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.section.muted {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100% - 1120px) / 2));
  padding-right: max(18px, calc((100% - 1120px) / 2));
  background: var(--cream);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  align-items: start;
}

.section h2 {
  margin: 0;
  color: #161d27;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
}

.section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.benefit-grid,
.package-grid,
.review-grid {
  display: grid;
  gap: 18px;
}

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

.benefit-grid article,
.review-grid article,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  padding: 22px;
}

.benefit-grid span {
  color: var(--saffron);
  font-weight: 900;
}

.benefit-grid h3,
.package-card h3,
.timeline h3 {
  margin: 8px 0;
  font-size: 22px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
}

.package-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 16px 32px rgba(84, 45, 16, 0.08);
}

.package-card.featured {
  border-color: rgba(226, 111, 33, 0.5);
}

.package-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.package-body {
  padding: 22px;
}

.duration {
  margin: 0;
  color: var(--saffron-dark);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.package-body ul {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding-left: 18px;
  color: #445260;
}

.price-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.price-row span {
  color: var(--muted);
  font-size: 13px;
}

.price-row strong {
  color: var(--maroon);
  font-size: 27px;
}

.card-link {
  display: block;
  margin-top: 18px;
  border-radius: 6px;
  background: var(--ink);
  color: white;
  padding: 13px 16px;
  text-align: center;
  font-weight: 900;
}

.itinerary {
  padding-bottom: 70px;
}

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

.timeline article {
  border-left: 5px solid var(--saffron);
  border-radius: 8px;
  background: white;
  padding: 24px;
  box-shadow: 0 14px 34px rgba(36, 28, 18, 0.08);
}

.timeline span {
  color: var(--green);
  font-weight: 900;
}

.visual-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 38px;
  align-items: center;
  padding-top: 34px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 14px;
}

.gallery img {
  width: 100%;
  height: 230px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 18px 40px rgba(84, 45, 16, 0.12);
}

.gallery img:first-child {
  grid-row: span 2;
  height: 474px;
}

.gallery .baba-focus {
  object-fit: contain;
  background: #fff6e8;
  padding: 10px;
}

.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.review-grid p {
  margin-top: 0;
}

.review-grid strong,
.review-grid span {
  display: block;
}

.review-grid span {
  margin-top: 4px;
  color: var(--muted);
}

.faq {
  max-width: 920px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 18px;
}

.faq-list p {
  margin-bottom: 0;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 36px));
  margin: 20px auto 110px;
  border-radius: 8px;
  background: linear-gradient(135deg, #2a160e, #7d1d1d);
  color: white;
  padding: clamp(28px, 5vw, 46px);
}

.final-cta h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
}

.final-cta p:not(.section-kicker) {
  color: rgba(255, 255, 255, 0.78);
}

.sticky-actions {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: grid;
  gap: 10px;
}

.sticky-actions a {
  min-width: 118px;
  border-radius: 999px;
  background: #1f2933;
  color: white;
  padding: 13px 18px;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.sticky-actions .whatsapp {
  background: #16894d;
}

@media (max-width: 940px) {
  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .split,
  .visual-section {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-top: 58px;
  }

  .proof-band,
  .package-grid,
  .timeline,
  .review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-band {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  .offer-strip {
    font-size: 12px;
  }

  .brand {
    font-size: 18px;
  }

  .hero {
    padding-top: 94px;
  }

  .hero-mobile-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }

  .hero-desktop-h1 {
    display: none;
  }

  .hero-inner {
    width: min(100% - 28px, 540px);
    padding: 44px 0 28px;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(20, 12, 8, 0.88), rgba(20, 12, 8, 0.76));
  }

  .hero-actions,
  .btn,
  .final-cta {
    width: 100%;
  }

  .baba-badge {
    width: 100%;
  }

  .form-grid,
  .proof-band,
  .benefit-grid,
  .package-grid,
  .timeline,
  .gallery,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .proof-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 18px;
  }

  .proof-band div:last-child {
    border-bottom: 0;
  }

  .section,
  .section.muted {
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .gallery img,
  .gallery img:first-child {
    height: 260px;
  }

  .final-cta {
    display: block;
    margin-bottom: 92px;
  }

  .sticky-actions {
    left: 0;
    right: 0;
    bottom: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
    background: white;
    padding: 10px;
  }

  .sticky-actions a {
    min-width: 0;
    border-radius: 6px;
    box-shadow: none;
    padding: 12px 8px;
    font-size: 14px;
  }
}
