/* =========================================================
   SPLENDOR AFRICA SAFARIS — styles.css
   Premium Safari Tourism Website
   ========================================================= */

/* ── CSS Variables ──────────────────────────────────────── */
:root {
  --gold:        #C89B3C;
  --gold-light:  #DEB96A;
  --gold-dark:   #A07828;
  --green:       #1F4D3A;
  --green-light: #2A6B51;
  --beige:       #F4EDE4;
  --beige-dark:  #E8DDD0;
  --brown:       #4A2E1F;
  --brown-light: #6B4532;
  --white:       #FFFFFF;
  --black:       #0D0D0D;
  --text:        #2C1E14;
  --text-muted:  #7A6355;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', sans-serif;

  --nav-h: 80px;
  --section-py: 100px;
  --container: 1200px;

  --radius-sm:  6px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --shadow-card: 0 8px 40px rgba(74,46,31,0.12);
  --shadow-hover: 0 20px 60px rgba(74,46,31,0.22);

  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--beige);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: var(--section-py) 0; }

/* ── Typography ─────────────────────────────────────────── */
.section-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--brown);
}
.section-title em { color: var(--green); font-style: italic; font-weight: 300; }
.section-title.light { color: var(--beige); }
.section-title.light em { color: var(--gold-light); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 16px auto 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 6px 30px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  background: #1dbd5a;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(200,155,60,0.35);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(200,155,60,0.45);
}

.btn-book {
  background: var(--green);
  color: var(--white);
  width: 100%;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-top: 20px;
}
.btn-book:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn-submit {
  background: linear-gradient(135deg, #25D366, #1dbd5a);
  color: var(--white);
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 18px;
  border-radius: var(--radius-sm);
  box-shadow: 0 6px 30px rgba(37,211,102,0.4);
  margin-top: 8px;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}

.btn-whatsapp-sm {
  background: #25D366;
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.85rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  transition: var(--transition);
}
.btn-whatsapp-sm:hover { background: #1dbd5a; }

/* =========================================================
   NAVIGATION
   ========================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(31, 77, 58, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-splendor {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
}
.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.nav-link.nav-cta {
  background: var(--gold);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 600;
}
.nav-link.nav-cta::after { display: none; }
.nav-link.nav-cta:hover { background: var(--gold-dark); color: var(--white); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,20,15,0.55) 0%,
    rgba(31,77,58,0.45) 50%,
    rgba(74,46,31,0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 0 24px;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-heading {
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}
.hero-heading em {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
}

.hero-sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 110px;
  right: 40px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeIn {
  to { opacity: 1; }
}

/* Hero stats bar */
.hero-stats {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  background: rgba(31,77,58,0.92);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 22px 24px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}
.stat strong {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* =========================================================
   MARQUEE STRIP
   ========================================================= */
.marquee-strip {
  background: var(--gold);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
}
.marquee-track span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}
.marquee-track .dot {
  font-size: 0.6rem;
  opacity: 0.6;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.about { background: var(--beige); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-images {
  position: relative;
}
.about-img-main {
  width: 85%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-img-main img { transition: transform 0.8s ease; }
.about-img-main:hover img { transform: scale(1.04); }

.about-img-accent {
  position: absolute;
  bottom: -40px; right: 0;
  width: 52%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 4px solid var(--white);
}

.about-badge {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(31,77,58,0.95), transparent);
  padding: 20px 16px 14px;
  text-align: center;
  color: var(--white);
}
.about-badge strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-badge span {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-content { padding-left: 20px; }
.about-lead {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--brown);
  line-height: 1.5;
  margin: 20px 0 16px;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
}
.about-body {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 32px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}
.feature-item i {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.feature-item strong { display: block; font-weight: 600; font-size: 0.95rem; }
.feature-item span { font-size: 0.82rem; color: var(--text-muted); }

/* =========================================================
   PACKAGES SECTION
   ========================================================= */
.packages {
  background: var(--green);
  position: relative;
  overflow: hidden;
}
.packages::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 300px; height: 300px;
  background: rgba(200,155,60,0.06);
  border-radius: 50%;
}

.packages .section-title { color: var(--beige); }
.packages .section-title em { color: var(--gold); }
.packages .section-eyebrow { color: var(--gold); }
.packages .section-desc { color: rgba(244,237,228,0.7); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.package-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.package-img {
  position: relative;
  aspect-ratio: 3/2;
  overflow: hidden;
}
.package-img img {
  transition: transform 0.6s ease;
}
.package-card:hover .package-img img {
  transform: scale(1.08);
}

.package-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
}

.package-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.package-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.package-duration {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}
.package-price {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.package-price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-muted);
}

.package-name {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 14px;
}

.package-activities {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.package-activities li {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.package-activities li i {
  color: var(--gold);
  width: 16px;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* =========================================================
   GALLERY SECTION
   ========================================================= */
.gallery { background: var(--beige-dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 6px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: zoom-in;
}
.gallery-item.gallery-large {
  grid-column: span 1;
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item.gallery-tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.gallery-item img {
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(10,20,15,0.8), transparent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition), transform var(--transition);
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--beige); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--beige-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.testimonial-card.testimonial-featured {
  border-top-color: var(--gold);
  transform: scale(1.03);
}
.testimonial-card.testimonial-featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.stars {
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testimonial-text {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.6;
  margin-bottom: 24px;
}
.testimonial-text::before { content: '"'; font-size: 3rem; color: var(--gold); line-height: 0; vertical-align: -0.5em; margin-right: 4px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-author img {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}
.testimonial-author strong { display: block; font-size: 0.9rem; font-weight: 600; }
.testimonial-author span { font-size: 0.75rem; color: var(--text-muted); }

/* =========================================================
   BOOKING SECTION
   ========================================================= */
.booking {
  position: relative;
  overflow: hidden;
}

.booking-bg {
  position: absolute;
  inset: 0;
}
.booking-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31,77,58,0.95) 0%, rgba(74,46,31,0.92) 100%);
  z-index: 1;
}
.booking .container { position: relative; z-index: 2; }

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.booking-intro { color: var(--white); padding-top: 20px; }
.booking-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  margin: 20px 0 32px;
  line-height: 1.8;
}

.booking-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.booking-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}
.booking-info-item i {
  width: 38px; height: 38px;
  background: rgba(200,155,60,0.2);
  border: 1px solid rgba(200,155,60,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 0.95rem;
  flex-shrink: 0;
}

/* Form */
.booking-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group.full { margin-bottom: 20px; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-group label i { color: var(--gold); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--beige-dark);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--beige);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(200,155,60,0.12);
}
.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C89B3C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 100px; }

/* =========================================================
   CONTACT SECTION
   ========================================================= */
.contact { background: var(--green); }
.contact .section-title { color: var(--beige); }
.contact .section-title em { color: var(--gold-light); }
.contact .section-eyebrow { color: var(--gold); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
}
.contact-icon {
  width: 52px; height: 52px;
  background: rgba(200,155,60,0.15);
  border: 1px solid rgba(200,155,60,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 3px;
}
.contact-item a, .contact-item span {
  color: var(--beige);
  font-size: 0.95rem;
  transition: color var(--transition);
}
.contact-item a:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-3px);
}
.social-link.whatsapp-social:hover { background: #25D366; border-color: #25D366; }

.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 380px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  border: 3px solid rgba(200,155,60,0.25);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--brown); }

.footer-top { padding: 70px 0; }

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

.footer-brand p {
  color: rgba(244,237,228,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 14px;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  color: rgba(244,237,228,0.6);
  font-size: 0.88rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer-socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,237,228,0.65);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

.footer-tagline {
  font-family: var(--ff-display);
  font-style: italic;
  color: rgba(200,155,60,0.6);
  font-size: 0.95rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(244,237,228,0.4);
}

/* =========================================================
   FLOATING ELEMENTS
   ========================================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
  transition: all var(--transition);
  animation: pulse 3s ease infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 12px 36px rgba(37,211,102,0.55);
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 6px 24px rgba(37,211,102,0.4), 0 0 0 12px rgba(37,211,102,0.1); }
}

.back-to-top {
  position: fixed;
  bottom: 100px; right: 30px;
  z-index: 999;
  width: 44px; height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  box-shadow: 0 4px 16px rgba(31,77,58,0.35);
  transition: all var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--gold);
  transform: translateY(-3px);
}

/* =========================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE — TABLET
   ========================================================= */
@media (max-width: 1100px) {
  .packages-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  :root { --section-py: 70px; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(31,77,58,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    padding: 40px 24px;
    gap: 28px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-link { font-size: 1rem; }

  .hamburger { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-content { padding-left: 0; }
  .about-img-main { width: 100%; }
  .about-img-accent { bottom: -30px; right: 0; width: 44%; }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card.testimonial-featured { transform: none; }

  .booking-wrapper { grid-template-columns: 1fr; gap: 40px; }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { min-height: 300px; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.gallery-large, .gallery-item.gallery-tall {
    grid-column: auto; grid-row: auto; aspect-ratio: 1;
  }

  .stat { padding: 0 24px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; padding: 16px 24px; }
  .stat-divider { display: none; }
}

/* =========================================================
   RESPONSIVE — MOBILE
   ========================================================= */
@media (max-width: 600px) {
  :root { --section-py: 60px; }

  .hero-heading { font-size: clamp(2.5rem, 9vw, 4rem); }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn { padding: 13px 24px; font-size: 0.85rem; }

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

  .form-row { grid-template-columns: 1fr; }
  .booking-form { padding: 28px 20px; }

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

  .scroll-indicator { display: none; }
  .hero-stats { display: none; }

  .about-img-accent { position: static; width: 70%; margin: 16px auto 0; }
}
