/* ============================================================
   HOME PAGE STYLES
   ============================================================ */

/* HERO */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 25% 65%, rgba(196,151,90,.22) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 25%, rgba(160,110,50,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 85%, rgba(120,75,20,.12) 0%, transparent 45%),
    linear-gradient(160deg, #1C1206 0%, #2A1A08 30%, #1E1409 60%, #140E05 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(196,151,90,.025) 0px, rgba(196,151,90,.025) 1px, transparent 1px, transparent 60px),
    repeating-linear-gradient(-45deg, rgba(196,151,90,.025) 0px, rgba(196,151,90,.025) 1px, transparent 1px, transparent 60px);
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,14,5,.1) 0%, rgba(20,14,5,.15) 40%, rgba(20,14,5,.55) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 32px;
  width: 100%; max-width: 1080px;
  animation: fadeUp .9s ease both;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 32px;
}
.hero-split-text { text-align: left; }
.hero-split-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/2;
  box-shadow: 0 12px 40px rgba(0,0,0,.55);
}
.hero-split-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(196,151,90,.18);
  border: 1px solid rgba(196,151,90,.4);
  color: #E8C07A;
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px;
  margin-bottom: 16px;
}
.hero-badge svg { width: 7px; height: 7px; }

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 700; line-height: 1.18;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: #F5C97A; }

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.85);
  line-height: 1.65;
  font-weight: 400;
  max-width: 460px;
}

/* BOOKING WIDGET */
.booking-widget {
  background: var(--white);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px 28px;
  width: 100%;
  animation: fadeUp .9s .2s ease both;
}
.booking-widget-title {
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-soft);
  margin-bottom: 16px; text-align: left;
}
.booking-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.booking-field {
  padding: 14px 18px;
  border-right: 1.5px solid var(--border);
  background: var(--white);
  transition: background .15s;
  text-align: left;
}
.booking-field:last-of-type { border-right: none; }
.booking-field:hover { background: var(--sand-pale); }
.booking-field label {
  display: block;
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-soft);
  margin-bottom: 4px;
}
.booking-field select,
.booking-field input {
  width: 100%; border: none; background: transparent;
  font-family: inherit;
  font-size: 15px; font-weight: 500; color: var(--text);
  outline: none; cursor: pointer;
  appearance: none; -webkit-appearance: none;
}
.booking-field .guests-row {
  display: flex; align-items: center; gap: 10px;
}
.guests-row .g-count { font-size: 15px; font-weight: 500; }
.guests-row button {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--border);
  font-size: 16px; line-height: 1;
  color: var(--text-mid); display: flex; align-items: center; justify-content: center;
  transition: border-color .15s, color .15s;
}
.guests-row button:hover { border-color: var(--sandstone); color: var(--sandstone); }

.btn-search {
  background: var(--sandstone);
  color: var(--white);
  font-size: 15px; font-weight: 600;
  padding: 0 28px;
  display: flex; align-items: center; gap: 8px;
  transition: background .2s;
  border-radius: 0;
  white-space: nowrap;
}
.btn-search:hover { background: var(--gold); }
.btn-search svg { width: 18px; height: 18px; }

/* TRUST BAR */
.trust-bar {
  background: var(--sand-pale);
  border-bottom: 1px solid var(--border);
  padding: 20px 32px;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--text);
}
.trust-item strong { color: var(--text); font-weight: 600; }
.trust-stars { color: var(--sandstone); font-size: 16px; letter-spacing: 2px; }
.trust-divider { width: 1px; height: 24px; background: var(--border); }

/* TOURS GRID */
.tours-section { background: var(--white); }
.tours-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}
.tour-card {
  background: var(--bg);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .25s, box-shadow .25s;
  display: flex; flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.tour-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.tour-card:hover .tour-img img { transform: scale(1.05); }

.tour-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--white);
  color: var(--text); font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px;
}
.tour-badge.popular { background: var(--sandstone); color: var(--white); }

.tour-wishlist {
  position: absolute; top: 12px; right: 12px;
  background: rgba(255,255,255,.9);
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: transform .15s;
}
.tour-wishlist:hover { transform: scale(1.1); }
.tour-wishlist svg { width: 16px; height: 16px; color: var(--text-soft); }

.tour-body { padding: 18px 20px 22px; flex: 1; display: flex; flex-direction: column; }
.tour-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-mid);
  margin-bottom: 10px;
}
.tour-meta svg { width: 13px; height: 13px; }
.tour-dot { width: 3px; height: 3px; background: var(--border); border-radius: 50%; }

.tour-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem; font-weight: 600; line-height: 1.3;
  color: var(--text); margin-bottom: 10px;
}
.tour-rating {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; margin-bottom: 14px;
}
.rating-stars { color: var(--sandstone); }
.rating-val { font-weight: 700; color: var(--text); }
.rating-count { color: var(--text-soft); }

.tour-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--border);
}
.tour-price .from { font-size: 11px; color: var(--text-soft); display: block; }
.tour-price .amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem; font-weight: 700; color: var(--text);
}
.tour-price .per { font-size: 12px; color: var(--text-soft); }

.btn-book {
  background: var(--sandstone);
  color: var(--white); font-size: 13px; font-weight: 600;
  padding: 9px 18px; border-radius: 8px;
  transition: background .2s, transform .15s;
}
.btn-book:hover { background: var(--gold); transform: translateY(-1px); }

/* WHY US */
.why-section { background: var(--bg); padding: 88px 32px; }
.why-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
}
.why-item {
  text-align: center; padding: 36px 28px;
  background: var(--white);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.why-item:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.why-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--sand-pale);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 26px;
}
.why-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.7rem; font-weight: 600;
  margin-bottom: 12px;
  color: var(--text);
}
.why-text { font-size: 16px; color: var(--text-mid); line-height: 1.65; }

/* REVIEWS */
.reviews-section { background: var(--sand-pale); padding: 88px 32px; }
.reviews-summary {
  max-width: 1200px; margin: 0 auto 48px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.reviews-big-score {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5rem; font-weight: 700; line-height: 1;
  color: var(--text);
}
.reviews-meta { display: flex; flex-direction: column; gap: 4px; }
.reviews-stars-big { color: var(--sandstone); font-size: 22px; letter-spacing: 3px; }
.reviews-meta p { font-size: 14px; color: var(--text-soft); }
.reviews-meta strong { color: var(--text); }

.reviews-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.review-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 24px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 12px;
}
.review-header { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  background: var(--sand);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem; font-weight: 600; color: var(--gold-dark);
  overflow: hidden;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name { font-weight: 600; font-size: 15px; color: var(--text); }
.review-date { font-size: 13px; color: var(--text-mid); }
.review-stars { color: var(--sandstone); font-size: 15px; letter-spacing: 1px; }
.review-text { font-size: 16px; color: var(--text); line-height: 1.65; }
.review-tour { font-size: 13px; color: var(--sandstone); font-weight: 600; }

/* DESTINATIONS */
.dest-section { padding: 88px 32px; background: var(--white); }
.dest-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}
.dest-card {
  position: relative; border-radius: var(--r-lg);
  overflow: hidden; cursor: pointer;
}
.dest-card.large { grid-column: span 2; grid-row: span 2; }
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s;
  aspect-ratio: 1;
}
.dest-card.large img { aspect-ratio: unset; }
.dest-card:hover img { transform: scale(1.06); }
.dest-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,6,2,.65) 100%);
}
.dest-label {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  padding: 16px 18px;
}
.dest-label h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem; font-weight: 600; color: white;
}
.dest-label p { font-size: 12px; color: rgba(255,255,255,.75); }

/* CTA */
.cta-section {
  position: relative;
  padding: 100px 32px;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('/assets/images/10-day-trip.jpg');
  background-size: cover; background-position: center;
}
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(15,9,3,.7);
}
.cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600; color: var(--white);
  margin-bottom: 16px; line-height: 1.2;
}
.cta-content p { color: rgba(255,255,255,.75); font-size: 16px; margin-bottom: 32px; }
.btn-cta-white {
  background: var(--white);
  color: var(--gold-dark);
  font-size: 15px; font-weight: 700;
  padding: 14px 34px; border-radius: 10px;
  transition: background .2s, transform .15s;
  display: inline-block;
}
.btn-cta-white:hover { background: var(--sand-pale); transform: translateY(-2px); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .booking-fields {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .booking-field:nth-child(2) { border-right: none; }
  .booking-field:nth-child(3) { border-right: 1.5px solid var(--border); border-top: 1.5px solid var(--border); }
  .booking-field:nth-child(4) { border-top: 1.5px solid var(--border); border-right: none; }
  .btn-search { border-top: 1.5px solid var(--border); grid-column: 1/-1; padding: 16px; border-radius: 0; }
}
@media (max-width: 860px) {
  .hero {
    height: auto;
    min-height: 0;
    padding: calc(var(--header-h) + 28px) 0 56px;
    align-items: flex-start;
  }
  .hero-content { padding: 0 24px; margin: 0 auto; }
  .hero-split { grid-template-columns: 1fr; gap: 24px; }
  .hero-split-img { aspect-ratio: 16/9; }
  .hero-split-text { text-align: center; }
  .hero-sub { max-width: 100%; margin-left: auto; margin-right: auto; }
  .booking-widget { margin-bottom: 12px; }
}
@media (max-width: 680px) {
  .why-section, .reviews-section, .dest-section, .cta-section { padding: 60px 20px; }
  .hero { padding: calc(var(--header-h) + 20px) 0 48px; }
  .hero-content { padding: 0 18px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-badge { font-size: 11px; }
  .booking-widget { padding: 18px 16px; border-radius: 16px; }
  .booking-fields { grid-template-columns: 1fr; border-radius: 10px; }
  .booking-field { border-right: none; border-bottom: 1.5px solid var(--border); }
  .booking-field:last-of-type { border-bottom: none; }
  .btn-search { padding: 16px; }
  .dest-grid { grid-template-columns: 1fr 1fr; }
  .dest-card.large { grid-column: span 2; }
  .trust-inner { gap: 20px; }
  .trust-divider { display: none; }
  .reviews-summary { flex-direction: column; gap: 8px; }
}
