@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A07830;
  --teal: #1A5F5A;
  --teal-light: #2A7A74;
  --cream: #FAF6EE;
  --dark: #1A1A1A;
  --mid: #4A4A4A;
  --light: #F5F0E8;
  --white: #fff;
  --shadow: 0 4px 24px rgba(0, 0, 0, .10);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, .16);
}

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

html {
  scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Cormorant Garamond', serif;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, .2);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
}

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

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1.1;
}

.nav-brand span {
  color: var(--gold);
  display: block;
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--mid);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
}

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

.has-drop {
  position: relative;
}

.has-drop:hover .dropdown {
  display: block;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid rgba(201, 168, 76, .2);
  border-radius: 8px;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  z-index: 999;
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--mid);
  transition: background .15s, color .15s;
}

.dropdown a:hover {
  background: var(--cream);
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-wa {
  background: #25D366;
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: transform .2s, box-shadow .2s;
}

.btn-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
}

.btn-nav-primary {
  background: var(--gold);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: background .2s;
}

.btn-nav-primary:hover {
  background: var(--gold-dark);
}

/* BREADCRUMB */
.breadcrumb {
  background: var(--cream);
  padding: 12px 48px;
  font-size: 13px;
  color: var(--mid);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.breadcrumb a {
  color: var(--teal);
  font-weight: 500;
}

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

/* TOUR HERO */
.tour-hero {
  height: 540px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 60px 80px;
  overflow: hidden;
}

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

.tour-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, .80) 0%, rgba(0, 0, 0, .25) 60%, rgba(0, 0, 0, .1) 100%);
}

.tour-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.tour-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, .25);
  border: 1px solid rgba(201, 168, 76, .6);
  border-radius: 50px;
  padding: 5px 16px;
  margin-bottom: 16px;
}

.tour-hero-badge span {
  color: var(--gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.tour-hero h1 {
  font-size: clamp(30px, 5vw, 56px);
  color: #fff;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 16px;
}

.tour-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
}

.tour-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  transition: all .25s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-outline-w {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, .6);
  transition: all .25s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-outline-w:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

/*  */
.tour-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.tour-hero-bg img {
  width: 100%;
  height: 135%;
  object-fit: cover;
  display: block;
}

.tour-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(0, 0, 0, .45),
      rgba(0, 0, 0, .25));
}

/* STICKY SIDEBAR LAYOUT */
.tour-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 48px;
}

.tour-main {}

.tour-sidebar {
  position: sticky;
  top: 88px;
  align-self: start;
}

/* SECTION BLOCKS */
.ts {
  margin-bottom: 48px;
}

.ts-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cream);
}

.ts-icon {
  font-size: 20px;
}

/* HIGHLIGHTS */
.hl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hl-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--cream);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  color: var(--mid);
}

.hl-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ITINERARY */
.day-block {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 24px;
  position: relative;
}

.day-block::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.day-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.day-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.day-desc {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
}

/* INCLUSIONS */
.incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.incl-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.incl-col.yes h4 {
  color: #27AE60;
}

.incl-col.no h4 {
  color: #E74C3C;
}

.incl-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: 8px;
}

.incl-col.yes .incl-item {
  background: #F0FFF4;
}

.incl-col.no .incl-item {
  background: #FFF5F5;
}

.incl-icon {
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
}

/* PRICING */
.pricing-table {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 16px;
  overflow: hidden;
}

.pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.pricing-row.header {
  background: var(--teal);
}

.pricing-row.header div {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .5px;
}

.pricing-row:last-child {
  border-bottom: none;
}

.pricing-row div {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--mid);
}

.pricing-row.header div {
  font-size: 13px;
}

.pricing-row:nth-child(even) {
  background: var(--cream);
}

.price-amt {
  font-weight: 700;
  color: var(--teal);
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
}

/* IMAGE GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gal-item {
  border-radius: 12px;
  overflow: hidden;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  cursor: pointer;
  transition: transform .3s;
}

.gal-item:first-child {
  grid-column: span 2;
  height: 220px;
}

.gal-item:hover {
  transform: scale(1.02);
}

/* FAQ */
.faq-item {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}

.faq-q {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  transition: background .2s;
}

.faq-q:hover {
  background: var(--cream);
}

.faq-a {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
  display: none;
}

.faq-item.open .faq-a {
  display: block;
}

.faq-item.open .faq-q {
  background: var(--cream);
}

.faq-arrow {
  transition: transform .25s;
  font-size: 12px;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

/* REVIEWS */
.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.review-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 24px;
}

.review-stars {
  color: var(--gold);
  font-size: 14px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.review-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
}

.review-country {
  font-size: 12px;
  color: var(--mid);
}

/* SIDEBAR */
.sidebar-card {
  background: #fff;
  border: 1px solid rgba(201, 168, 76, .25);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.sidebar-price {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.sidebar-from {
  font-size: 12px;
  color: var(--mid);
  letter-spacing: .5px;
}

.sidebar-amt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}

.sidebar-per {
  font-size: 13px;
  color: var(--mid);
}

.sidebar-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.sm-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--mid);
}

.sm-icon {
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.sidebar-form input,
.sidebar-form select,
.sidebar-form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 10px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  outline: none;
  margin-bottom: 10px;
  transition: border-color .2s;
}

.sidebar-form input:focus,
.sidebar-form select:focus {
  border-color: var(--gold);
}

.sidebar-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 16px;
}

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: #fff;
  padding: 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-bottom: 10px;
  font-family: 'Inter', sans-serif;
  transition: background .2s;
}

.btn-submit:hover {
  background: var(--gold-dark);
}

.btn-wa-full {
  width: 100%;
  background: #25D366;
  color: #fff;
  padding: 13px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s;
}

.btn-wa-full:hover {
  background: #1DA851;
}

.sidebar-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
  font-size: 11px;
  color: var(--mid);
}

.trust-icon {
  font-size: 20px;
  display: block;
  margin-bottom: 4px;
}

/* WHY CHOOSE */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.why-item {
  display: flex;
  gap: 12px;
  background: var(--cream);
  border-radius: 12px;
  padding: 16px;
}

.why-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.why-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.why-text p {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

/* RELATED TOURS */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.rel-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .07);
  transition: all .3s;
}

.rel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.rel-img {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}

.rel-body {
  padding: 16px;
}

.rel-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
  font-family: 'Cormorant Garamond', serif;
}

.rel-price {
  font-size: 14px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 10px;
}

.btn-rel {
  background: var(--cream);
  color: var(--teal);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--teal);
  transition: all .2s;
}

.btn-rel:hover {
  background: var(--teal);
  color: #fff;
}

/* FOOTER */
footer {
  background: #0D0D0D;
  color: rgba(255, 255, 255, .7);
  padding: 64px 48px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin-top: 14px;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .6);
  font-size: 13px;
  transition: color .2s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

/* STICKY WA */
.sticky-wa {
  position: fixed;
  bottom: 28px;
  right: 22px;
  z-index: 999;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
  transition: transform .2s;
}

.sticky-wa:hover {
  transform: scale(1.1);
}

.sticky-wa-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: .8;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* RESPONSIVE */
@media(max-width:960px) {
  nav {
    padding: 0 20px;
  }

  .nav-links,
  .nav-cta .btn-nav-primary {
    display: none;
  }

  .tour-layout {
    grid-template-columns: 1fr;
    padding: 32px 20px;
  }

  .tour-sidebar {
    position: static;
  }

  .tour-hero {
    padding: 32px 24px;
    height: 420px;
  }

  .hl-grid,
  .review-grid,
  .why-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

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

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

  .breadcrumb {
    padding: 12px 20px;
  }

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

@media(max-width:600px) {
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .pricing-row {
    grid-template-columns: 1fr;
  }
}