/* ===== HOMEPAGE PREMIUM STYLES ===== */
:root {
  --coffee: #2b1b13;
  --linen: #fff7ea;
  --sand: #f3d8a6;
  --clay: #b85c38;
  --orange: #e86f32;
  --white: #ffffff;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

/* ===== HERO ===== */
.hero-home {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-home > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroPan 30s ease-in-out infinite alternate;
}
@keyframes heroPan {
  0% { transform: scale(1.05) translateX(-1%); }
  100% { transform: scale(1.1) translateX(1%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43,27,19,0.82) 0%, rgba(43,27,19,0.5) 60%, rgba(43,27,19,0.3) 100%);
  z-index: 1;
}
.hero-dunes {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 2;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80'%3E%3Cpath fill='%23fff7ea' d='M0 40c120-20 240-40 360-30s240 40 360 40 240-30 360-40 240 10 360 20v50H0z'/%3E%3C/svg%3E") no-repeat bottom center;
  background-size: cover;
  animation: duneDrift 12s ease-in-out infinite alternate;
}
@keyframes duneDrift {
  0% { transform: translateX(-5px); }
  100% { transform: translateX(5px); }
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-top: 120px;
  padding-bottom: 100px;
  max-width: 680px;
}
.hero-content .eyebrow {
  color: var(--sand);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--sand);
  font-weight: 600;
  margin-bottom: 12px;
}
.hero-intro {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ===== SECTION INTRO ===== */
.section-intro {
  background: var(--linen);
  background-image: radial-gradient(ellipse at center, rgba(243,216,166,0.25) 0%, transparent 70%);
}
.intro-card {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(43,27,19,0.08);
}
.intro-card p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
  color: #4a3728;
  margin-bottom: 18px;
}
.intro-card p:last-child { margin-bottom: 0; }

/* ===== DESTINATIONS GRID ===== */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.dest-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(43,27,19,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.dest-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(43,27,19,0.15);
}
.dest-img {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.dest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dest-card:hover .dest-img img {
  transform: scale(1.08);
}
.dest-body {
  padding: 20px;
}
.dest-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--coffee);
  margin-bottom: 8px;
}
.dest-body p {
  font-size: 0.88rem;
  color: #5a4a3e;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* ===== TOUR CARDS ===== */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.tour-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(43,27,19,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tour-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(43,27,19,0.15);
}
.tour-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.tour-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-img img {
  transform: scale(1.08);
}
.tour-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(43,27,19,0.5) 0%, transparent 60%);
}
.tour-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--clay);
  color: white;
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
}
.tour-body {
  padding: 20px;
}
.tour-body h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--coffee);
  margin-bottom: 8px;
}
.tour-body > p {
  font-size: 0.88rem;
  color: #5a4a3e;
  line-height: 1.6;
  margin-bottom: 14px;
}
.tour-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 0.82rem;
  color: #7a6a5e;
}
.tour-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.tour-meta svg {
  flex-shrink: 0;
}

/* ===== FEATURES / TAILORED ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.feature-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(243,216,166,0.15);
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}
.feature-icon {
  margin-bottom: 18px;
}
.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--sand);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
}

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.review-card {
  background: var(--white);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(43,27,19,0.08);
  transition: transform 0.3s ease;
}
.review-card:hover {
  transform: translateY(-4px);
}
.stars {
  color: #f5a623;
  font-size: 1.2rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.92rem;
  color: #4a3728;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.review-author strong {
  color: var(--coffee);
  font-size: 0.9rem;
}
.review-author span {
  color: #7a6a5e;
  font-size: 0.8rem;
  margin-left: 8px;
}

/* ===== BLOG SLIDER ===== */
.blog-slider {
  position: relative;
  margin-top: 40px;
}
.blog-slide {
  display: none;
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(43,27,19,0.08);
}
.blog-slide.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  animation: fadeSlide 0.5s ease;
}
@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.blog-slide-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.blog-slide-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-slide-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-slide-content .eyebrow {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.blog-slide-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--coffee);
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-slide-content p {
  font-size: 0.9rem;
  color: #5a4a3e;
  line-height: 1.7;
  margin-bottom: 20px;
}
.blog-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.blog-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--clay);
  background: transparent;
  cursor: pointer;
  transition: background 0.3s;
}
.blog-dots .dot.active {
  background: var(--clay);
}

/* ===== BOOKING SECTION ===== */
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 40px;
  align-items: start;
}
.booking-left h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--sand);
  margin-bottom: 24px;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.checklist li svg {
  flex-shrink: 0;
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s;
}
.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
}
.booking-right {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(243,216,166,0.15);
  border-radius: 12px;
  padding: 32px 28px;
}
.booking-form label {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.booking-form input,
.booking-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  border: 1px solid rgba(243,216,166,0.2);
  border-radius: 6px;
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: 0.92rem;
  font-family: var(--font-body);
}
.booking-form input::placeholder,
.booking-form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}
.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--sand);
  background: rgba(255,255,255,0.12);
}
.booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.booking-form .btn {
  width: 100%;
  margin-top: 8px;
}

/* ===== SECTION HELPERS ===== */
.section {
  padding: 80px 0;
}
.section.alt {
  background: var(--linen);
}
.section.dark {
  background: var(--coffee);
}
.section.dark h2,
.section.dark .lead {
  color: var(--white);
}
.section.dark .lead {
  color: rgba(255,255,255,0.72);
}
.center {
  text-align: center;
}
h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--coffee);
  margin-bottom: 12px;
}
.lead {
  font-size: 1rem;
  color: #5a4a3e;
  max-width: 600px;
  margin: 0 auto 8px;
}

/* ===== BUTTONS ===== */
.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}
.btn-sm {
  padding: 8px 18px;
  font-size: 0.82rem;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid,
  .reviews-grid {
    grid-template-columns: 1fr 1fr;
  }
  .booking-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .blog-slide.active {
    grid-template-columns: 1fr;
  }
  .blog-slide-img {
    aspect-ratio: 16/9;
  }
}

@media (max-width: 680px) {
  .hero-content {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .dest-grid {
    grid-template-columns: 1fr;
  }
  .tour-grid {
    grid-template-columns: 1fr;
  }
  .features-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .intro-card {
    padding: 28px 20px;
  }
  .section {
    padding: 56px 0;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .booking-form .form-row {
    grid-template-columns: 1fr;
  }
  .blog-slide-content {
    padding: 24px 20px;
  }
}
