/* =============================================
   BASELINE TRAVEL LIMITED — Main Stylesheet
   Design System: Refined Safari Luxury
   ============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  color: var(--color-ink);
  background: var(--color-cream);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }

/* ---- CSS VARIABLES ---- */
:root {
  --color-earth:    #2C1A0E;   /* deep espresso */
  --color-rust:     #C1440E;   /* warm rust / brand accent */
  --color-gold:     #D4A853;   /* savanna gold */
  --color-sage:     #5C7A4E;   /* bush green */
  --color-cream:    #FAF7F2;   /* warm cream bg */
  --color-sand:     #EDE4D4;   /* light sand */
  --color-ink:      #1A1009;   /* near-black text */
  --color-muted:    #6B5B4E;   /* muted brown-grey */
  --color-white:    #FFFFFF;
  --color-dark-bg:  #1A100B;   /* dark section bg */

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Outfit', sans-serif;

  --transition:    0.3s cubic-bezier(.25,.8,.25,1);
  --radius:        6px;
  --radius-lg:     14px;

  --max-w:         1280px;
  --section-pad:   7rem 0;
  --section-pad-sm:4rem 0;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

em { font-style: italic; color: var(--color-rust); }
.light em { color: var(--color-gold); }

p { line-height: 1.75; color: var(--color-muted); }

/* ---- UTILITIES ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.section         { padding: var(--section-pad); }
.section--dark   { background: var(--color-dark-bg); }
.section--warm   { background: var(--color-sand); }

.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--color-rust);
  margin-bottom: 1rem;
}
.section-label.light { color: var(--color-gold); }
.section-title  { margin-bottom: 2.5rem; color: var(--color-earth); }
.section-title.light { color: var(--color-white); }

.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.section-header-row .section-title { margin-bottom: 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--color-rust);
  color: var(--color-white);
  border-color: var(--color-rust);
}
.btn-primary:hover {
  background: var(--color-earth);
  border-color: var(--color-earth);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(193,68,14,.3);
}
.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--color-white);
}
.btn-outline-nav {
  background: transparent;
  color: var(--color-earth);
  border-color: var(--color-earth);
  padding: .6rem 1.4rem;
  font-size: .85rem;
}
.btn-outline-nav:hover {
  background: var(--color-earth);
  color: var(--color-white);
}
.btn-text-link {
  font-size: .9rem;
  font-weight: 600;
  color: var(--color-rust);
  padding: 0;
  border: none;
  letter-spacing: .02em;
}
.btn-text-link:hover { color: var(--color-earth); }

/* =============================================
   HEADER / NAV
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0;
}
.site-header.scrolled {
  background: rgba(250,247,242,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(44,26,14,.08);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 80px;
  transition: height var(--transition);
}
.site-header.scrolled .nav-inner { height: 68px; }

.brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0;
}
.brand-icon {
  color: var(--color-rust);
  font-size: 1.4rem;
  line-height: 1;
}
.brand-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: .01em;
  transition: color var(--transition);
}
.site-header.scrolled .brand-text { color: var(--color-earth); }
.brand-thin { font-weight: 300; }

.main-nav { flex: 1; }
.main-nav ul { list-style: none; display: flex; align-items: center; gap: .25rem; }
.nav-link {
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  padding: .6rem .9rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  display: flex;
  align-items: center;
  gap: .3rem;
}
.site-header.scrolled .nav-link { color: var(--color-earth); }
.nav-link:hover,
.nav-link.active { color: var(--color-rust) !important; background: rgba(193,68,14,.08); }
.chevron { font-size: .6rem; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  min-width: 200px;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(44,26,14,.15);
  padding: .75rem 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all var(--transition);
  list-style: none;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: .65rem 1.25rem;
  font-size: .88rem;
  color: var(--color-earth);
  transition: background var(--transition), color var(--transition);
}
.dropdown a:hover { background: var(--color-sand); color: var(--color-rust); }

.nav-cta { display: flex; align-items: center; gap: 1rem; margin-left: auto; }
.nav-phone { font-size: .85rem; font-weight: 500; color: rgba(255,255,255,.8); transition: color var(--transition); }
.site-header.scrolled .nav-phone { color: var(--color-earth); }
.nav-phone:hover { color: var(--color-rust) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  transition: all var(--transition);
  border-radius: 2px;
}
.site-header.scrolled .hamburger span { background: var(--color-earth); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,16,9,.75) 0%, rgba(26,16,9,.3) 60%, transparent 100%);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 800px;
  text-align: center;
  color: var(--color-white);
}

.hero-eyebrow {
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.hero-title {
  color: var(--color-white);
  font-weight: 300;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.hero-title em { color: var(--color-gold); font-style: italic; }

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Slide Controls */
.hero-controls {
  position: absolute;
  bottom: 11rem;
  right: 3rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 10;
}
.slide-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5);
  background: rgba(255,255,255,.1);
  color: var(--color-white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.slide-btn:hover { background: var(--color-rust); border-color: var(--color-rust); }
.slide-dots { display: flex; gap: .5rem; }
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all var(--transition);
}
.dot.active { background: var(--color-gold); transform: scale(1.2); }

/* Search Bar */
.hero-search {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 860px;
  z-index: 10;
}
.search-bar {
  background: rgba(250,247,242,.97);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  padding: .5rem;
  gap: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
.search-field {
  flex: 1;
  padding: .75rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.search-field label {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-rust);
}
.search-field select {
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--color-earth);
  cursor: pointer;
  outline: none;
}
.search-divider {
  width: 1px;
  height: 40px;
  background: var(--color-sand);
}
.search-btn {
  background: var(--color-rust);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius);
  padding: .9rem 1.75rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
  margin: .25rem;
}
.search-btn:hover { background: var(--color-earth); transform: translateY(-1px); }

/* =============================================
   MARQUEE STRIP
   ============================================= */
.marquee-strip {
  background: var(--color-earth);
  overflow: hidden;
  padding: .85rem 0;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-track span {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-gold);
  white-space: nowrap;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   WHY US
   ============================================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--color-sand);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 0;
  background: var(--color-rust);
  transition: height .4s ease;
}
.feature-card:hover::before { height: 100%; }
.feature-card:hover {
  box-shadow: 0 16px 40px rgba(44,26,14,.1);
  transform: translateY(-4px);
}
.feature-icon {
  font-size: 2rem;
  color: var(--color-rust);
  margin-bottom: 1.25rem;
  line-height: 1;
}
.feature-card h3 { font-size: 1.3rem; color: var(--color-earth); margin-bottom: .75rem; }
.feature-card p  { font-size: .92rem; }

/* =============================================
   DESTINATIONS
   ============================================= */
.destinations { background: var(--color-cream); }

.dest-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 320px 220px;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.dest-col { display: flex; flex-direction: column; gap: 1.25rem; }
.dest-col .dest-card { flex: 1; }

.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: block;
  cursor: pointer;
}
.dest-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .7s ease;
}
.dest-card:hover .dest-img { transform: scale(1.07); }

.dest-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,16,9,.85) 0%, rgba(26,16,9,.15) 50%, transparent 100%);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--color-white);
}
.dest-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--color-rust);
  color: var(--color-white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: 100px;
}
.dest-info h3 { font-size: 1.8rem; font-weight: 600; margin-bottom: .25rem; }
.dest-info p  { font-size: .88rem; color: rgba(255,255,255,.8); margin-bottom: .75rem; }
.dest-cta {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--color-gold);
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--transition);
}
.dest-card:hover .dest-cta { opacity: 1; transform: translateY(0); }
.dest-card--large { grid-row: span 2; }
.dest-card--large .dest-info h3 { font-size: 2.5rem; }

.dest-card--bottom { min-height: 200px; }

/* =============================================
   SERVICES
   ============================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  color: var(--color-white);
  transition: all var(--transition);
  position: relative;
}
.service-card:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--color-gold);
  transform: translateY(-4px);
}
.service-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(212,168,83,.15);
  line-height: 1;
  margin-bottom: .75rem;
}
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.2rem; color: var(--color-white); margin-bottom: .75rem; }
.service-card p  { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; margin-bottom: 1.5rem; }
.service-link {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--color-gold);
  display: inline-block;
  transition: color var(--transition);
}
.service-link:hover { color: var(--color-rust); }

/* =============================================
   EXPERIENCE STRIP
   ============================================= */
.exp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.exp-text .section-title { margin-bottom: 1.5rem; }
.exp-body { margin-bottom: 2.5rem; font-size: 1rem; }
.exp-stats {
  display: flex;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-rust);
  line-height: 1;
}
.stat-label { font-size: .8rem; font-weight: 500; letter-spacing: .05em; color: var(--color-muted); margin-top: .25rem; }

.exp-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}
.exp-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.exp-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--color-earth);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 8px 32px rgba(44,26,14,.25);
}
.badge-icon { font-size: 1.5rem; color: var(--color-gold); display: block; margin-bottom: .5rem; }
.exp-badge span:last-child {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(44,26,14,.08);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(44,26,14,.1);
  transform: translateY(-3px);
}
.testimonial-card--featured {
  background: var(--color-earth);
  color: var(--color-white);
  border-color: var(--color-earth);
}
.testimonial-card--featured p { color: rgba(255,255,255,.8); }
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-rust);
  line-height: .5;
  margin-bottom: 1rem;
}
.testimonial-card--featured .quote-mark { color: var(--color-gold); }
.testimonial-card p { font-size: .92rem; line-height: 1.75; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; margin-bottom: 1rem; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-rust);
  color: var(--color-white);
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card--featured .author-avatar { background: var(--color-gold); color: var(--color-earth); }
.testimonial-author strong { display: block; font-size: .95rem; color: var(--color-earth); font-weight: 600; }
.testimonial-card--featured .testimonial-author strong { color: var(--color-white); }
.testimonial-author span { font-size: .8rem; color: var(--color-muted); }
.testimonial-card--featured .testimonial-author span { color: rgba(255,255,255,.6); }
.star-rating { color: var(--color-gold); font-size: .9rem; letter-spacing: .1em; }

/* =============================================
   PARTNERS
   ============================================= */
.partners { background: var(--color-white); }
.partners-sub { text-align: center; margin-bottom: 3rem; font-size: .95rem; color: var(--color-muted); }
.partners-track-wrapper {
  overflow: hidden;
  position: relative;
}
.partners-track-wrapper::before,
.partners-track-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
}
.partners-track-wrapper::before { left: 0; background: linear-gradient(90deg, var(--color-white), transparent); }
.partners-track-wrapper::after  { right: 0; background: linear-gradient(-90deg, var(--color-white), transparent); }

.partners-track {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
}
.partners-track img {
  height: 44px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(.5);
  transition: all var(--transition);
}
.partners-track img:hover { filter: grayscale(0) opacity(1); }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.cta-banner:hover .cta-bg { transform: scale(1); }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,16,9,.72);
}
.cta-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
  padding: 4rem 2rem;
}
.cta-content h2 {
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}
.cta-content p { color: rgba(255,255,255,.75); margin-bottom: 2.5rem; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--color-dark-bg);
  color: rgba(255,255,255,.65);
  padding-top: 5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .brand-text { color: var(--color-white); }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--color-gold);
  margin: .75rem 0 1.5rem;
}
.footer-socials {
  display: flex;
  gap: .75rem;
  margin-bottom: 2rem;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: all var(--transition);
}
.footer-socials a:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: rgba(212,168,83,.1);
}
.footer-members {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-members img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(.7);
  transition: filter var(--transition);
}
.footer-members img:hover { filter: brightness(0) invert(1); }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--color-white); }
.footer-col address,
.footer-col p {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: .5rem;
}
.footer-col a { transition: color var(--transition); }
.footer-col a:hover { color: var(--color-gold); }

.footer-bottom {
  padding: 1.5rem 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  z-index: 900;
  transition: all var(--transition);
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 32px rgba(37,211,102,.5);
}

/* =============================================
   MOBILE MENU
   ============================================= */
@media (max-width: 1024px) {
  .features-grid,
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonial-card--featured { grid-column: span 2; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 4rem 0; }

  .main-nav, .nav-phone {
    display: none;
  }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--color-earth);
    z-index: 999;
    padding: 5rem 2rem 2rem;
    overflow-y: auto;
  }
  .main-nav.open ul {
    flex-direction: column;
    gap: 0;
  }
  .main-nav.open .nav-link {
    color: var(--color-white);
    font-size: 1.3rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    text-transform: none;
  }
  .dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    background: rgba(255,255,255,.05);
    padding: .5rem 1rem;
    border-radius: var(--radius);
    margin-top: .25rem;
    box-shadow: none;
  }
  .dropdown a { color: rgba(255,255,255,.75); }

  .hamburger { display: flex; z-index: 1001; }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .hero-controls { bottom: 14rem; right: 1rem; }
  .hero-search { width: 95%; }
  .search-bar { flex-direction: column; border-radius: var(--radius); }
  .search-divider { width: 100%; height: 1px; }
  .search-btn { width: 100%; border-radius: var(--radius); }

  .dest-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .dest-card--large { grid-row: auto; height: 280px; }
  .dest-col { flex-direction: row; }
  .dest-col .dest-card { min-height: 200px; }
  .dest-card--bottom { min-height: 200px; }

  .features-grid,
  .services-grid { grid-template-columns: 1fr; }

  .exp-inner { grid-template-columns: 1fr; }
  .exp-image { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { grid-column: auto; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .exp-stats { gap: 1.5rem; flex-wrap: wrap; }
  .dest-col { flex-direction: column; }
  .hero-controls { display: none; }
}
