/* ===== RESET & BASE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Lato', sans-serif; color: #222; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { width: 100%; display: block; }

/* ===== COLORS ===== */
:root {
  --green: #2C6E49;
  --gold: #C8963E;
  --dark: #1a1a1a;
  --light: #f8f5f0;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
  padding: 16px 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: white; display: flex; align-items: center; gap: 10px; }
.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links { display: flex; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; letter-spacing: 0.05em; }
.nav-links a:hover { color: var(--gold); }
.btn-nav {
  background: var(--gold); color: white !important;
  padding: 8px 20px; border-radius: 4px;
}
.hamburger { display: none; background: none; border: none; color: white; font-size: 1.5rem; cursor: pointer; }

/* ===== HERO ===== */
.hero {
  height: 100vh; min-height: 600px;
  position: relative;
  background: url('images/hero.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(
      105deg,
      rgba(0,0,0,0.72) 0%,
      rgba(0,0,0,0.45) 55%,
      rgba(0,0,0,0.2) 100%
    );
}

/* Location tag — top left */
.hero-location {
  position: absolute; top: 100px; left: 48px;
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: fadeInDown 1s ease 0.3s both;
}
.hero-location-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #C8963E;
  box-shadow: 0 0 0 3px rgba(200,150,62,0.3);
}

/* Main content — left-aligned */
.hero-content {
  position: relative;
  max-width: 1200px; margin: 0 auto;
  padding: 0 48px;
  width: 100%;
}

.hero-eyebrow {
  display: block;
  font-size: 0.75rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: #C8963E;
  margin-bottom: 20px;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  color: white; line-height: 1.08;
  margin-bottom: 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.hero-title-line {
  display: block;
  animation: fadeInUp 0.9s ease 0.55s both;
}
.hero-title-line--italic {
  font-style: italic;
  color: rgba(255,255,255,0.88);
  animation-delay: 0.7s;
}

.hero-subtitle {
  font-size: clamp(0.9rem, 1.6vw, 1.05rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.8; max-width: 480px;
  margin-bottom: 36px;
  animation: fadeInUp 0.9s ease 0.85s both;
}

/* CTAs */
.hero-ctas {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 1s both;
}
.hero-btn-primary {
  background: #C8963E; color: white;
  padding: 15px 36px; border-radius: 4px;
  font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.hero-btn-primary:hover {
  background: #a87830; transform: translateY(-2px);
}
.hero-btn-secondary {
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem; font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.hero-btn-secondary:hover {
  color: white; border-color: white;
}

/* Stats bar — bottom */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  display: flex; align-items: center;
  justify-content: center; gap: 0;
  padding: 20px 48px;
  animation: fadeInUp 0.9s ease 1.2s both;
}
.hero-stat {
  display: flex; flex-direction: column;
  align-items: center; padding: 0 40px;
}
.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: white;
  font-weight: 700; line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 0.68rem; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.12em;
}
.hero-stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.15);
}

/* Scroll indicator — right side */
.hero-scroll {
  position: absolute; right: 40px;
  bottom: 100px;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  animation: fadeInDown 1s ease 1.4s both;
}
.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,0.4));
  animation: scrollPulse 2s ease-in-out infinite;
}
.hero-scroll-text {
  font-size: 0.62rem; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.2em;
  writing-mode: vertical-rl;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* ===== HERO MOBILE ===== */
@media (max-width: 768px) {
  .hero-location { left: 24px; top: 88px; }
  .hero-content { padding: 0 24px; }
  .hero-stats {
    gap: 0; padding: 16px 16px;
    overflow-x: auto;
  }
  .hero-stat { padding: 0 20px; }
  .hero-stat-number { font-size: 1.2rem; }
  .hero-scroll { display: none; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gold); color: white;
  padding: 14px 36px; border-radius: 4px;
  font-size: 0.9rem; letter-spacing: 0.1em; text-transform: uppercase;
  transition: background 0.2s;
}
.btn-primary:hover { background: #a87830; }
.btn-secondary {
  display: inline-block; margin-top: 12px;
  border: 2px solid var(--green); color: var(--green);
  padding: 10px 24px; border-radius: 4px; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.08em;
  transition: all 0.2s;
}
.btn-secondary:hover { background: var(--green); color: white; }

/* ===== TOURS SECTION ===== */
.tours-section { padding: 80px 24px; background: var(--light); text-align: center; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; margin-bottom: 48px; color: var(--dark);
}
.tours-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
.tour-card {
  background: white; border-radius: 8px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: 0 8px 30px rgba(0,0,0,0.14); }
.tour-card img { height: 220px; object-fit: cover; }
.tour-info { padding: 24px; text-align: left; }
.tour-info h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 6px; }
.tour-duration { color: #888; font-size: 0.85rem; margin-bottom: 8px; }
.tour-price { font-size: 1.1rem; font-weight: 700; color: var(--green); }

/* ===== ABOUT ===== */
.about-section {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1200px; margin: 0 auto; padding: 80px 24px; gap: 60px; align-items: center;
}
.about-image img { border-radius: 8px; height: 460px; object-fit: cover; }
.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; margin-bottom: 20px;
}
.about-text p { line-height: 1.8; color: #555; margin-bottom: 16px; }
.about-text .btn-primary { display: inline-block; margin-top: 12px; }

/* ===== INCLUDES ===== */
.includes-section { background: var(--green); padding: 80px 24px; text-align: center; }
.includes-section .section-title { color: white; }
.includes-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px; max-width: 900px; margin: 0 auto;
}
.include-item { color: white; }
.icon { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.include-item h3 { font-size: 1rem; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.06em; }
.include-item p { font-size: 0.9rem; opacity: 0.8; line-height: 1.6; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: url('images/hero.jpg') center/cover fixed;
  position: relative; padding: 100px 24px; text-align: center;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(0,0,0,0.55);
}
.cta-banner h2, .cta-banner p, .cta-banner a { position: relative; }
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  color: white; font-size: 2.5rem; margin-bottom: 12px;
}
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1.1rem; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 60px 24px 24px; }
.footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px; max-width: 1200px; margin: 0 auto 40px;
}
.footer h4 { color: white; margin-bottom: 12px; font-size: 1rem; }
.footer p, .footer li { font-size: 0.85rem; line-height: 1.8; }
.footer li a:hover { color: var(--gold); }
.footer-copy { text-align: center; font-size: 0.8rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; width: 100%; background: rgba(0,0,0,0.95); padding: 20px; }
  .nav-links.open { display: flex; }
  .hamburger { display: block; }
  .about-section { grid-template-columns: 1fr; }
  .about-image { display: none; }
  .logo-img { height: 32px; }
}

/* ===== TESTIMONIALS ===== */
.reviews-section {
  background: #1a1a1a;
  padding: 80px 24px;
}
.reviews-container {
  max-width: 1100px; margin: 0 auto; text-align: center;
}
.reviews-eyebrow {
  display: block;
  text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.75rem; color: #C8963E;
  font-weight: 700; margin-bottom: 10px;
}
.reviews-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem; color: white;
  margin-bottom: 14px;
}
.reviews-stars-summary {
  display: flex; align-items: center;
  justify-content: center; gap: 10px;
  margin-bottom: 52px; flex-wrap: wrap;
}
.reviews-stars-big {
  color: #F5A623; font-size: 1.3rem; letter-spacing: 2px;
}
.reviews-score {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: white; font-weight: 700;
}
.reviews-count {
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
}

/* Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-bottom: 40px;
  text-align: left;
}

/* Cards */
.review-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.2s, background 0.2s;
}
.review-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.review-card--featured {
  grid-column: span 2;
  background: rgba(200,150,62,0.08);
  border-color: rgba(200,150,62,0.25);
}
.review-card--featured:hover {
  border-color: rgba(200,150,62,0.45);
}
.review-card--gyg {
  background: rgba(255,85,51,0.06);
  border-color: rgba(255,85,51,0.2);
}
.review-card--gyg:hover {
  border-color: rgba(255,85,51,0.35);
}

/* Header row */
.review-header {
  display: flex; align-items: center; gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: #2C6E49; color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.review-avatar--gyg { background: #FF5533; }
.review-meta {
  display: flex; flex-direction: column; gap: 3px; flex: 1;
}
.review-name {
  font-weight: 700; font-size: 0.92rem; color: white;
  display: flex; align-items: center; gap: 6px;
}
.review-country { font-size: 0.85rem; }
.review-platform {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; letter-spacing: 0.06em;
  text-transform: uppercase; font-weight: 700;
}
.review-platform--google { color: #4285F4; }
.review-platform--gyg { color: #FF5533; }
.review-stars {
  color: #F5A623; font-size: 0.95rem;
  letter-spacing: 1px; margin-left: auto;
  flex-shrink: 0;
}

/* Quote */
.review-text {
  font-size: 0.93rem; color: rgba(255,255,255,0.75);
  line-height: 1.85; font-style: italic;
  border-left: 3px solid rgba(200,150,62,0.4);
  padding-left: 16px; margin: 0; flex: 1;
}
.review-card--gyg .review-text {
  border-left-color: rgba(255,85,51,0.4);
}

/* Footer */
.review-footer {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.review-tour {
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}
.review-verified {
  color: rgba(255,255,255,0.5);
}
.review-date {
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  white-space: nowrap;
}

/* Platform links */
.reviews-platforms {
  display: flex; justify-content: center;
  gap: 16px; flex-wrap: wrap;
}
.reviews-platform-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 24px; border-radius: 6px;
  font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.05em; text-decoration: none;
  transition: opacity 0.2s;
}
.reviews-platform-link:hover { opacity: 0.8; }
.reviews-platform-link--google {
  background: rgba(66,133,244,0.12);
  border: 1px solid rgba(66,133,244,0.3);
  color: #7ab3f7;
}
.reviews-platform-link--gyg {
  background: rgba(255,85,51,0.12);
  border: 1px solid rgba(255,85,51,0.3);
  color: #ff8066;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .review-card--featured { grid-column: span 1; }
  .reviews-stars-summary { flex-direction: column; gap: 4px; }
  .review-footer { flex-direction: column; align-items: flex-start; }
}
