/* =============================================
   SEAN'S REGGAE TOURS — Main Stylesheet
   Color Palette:
     --midnight:     #0F1923  (deep midnight navy)
     --navy:         #162033  (rich dark navy)
     --amber:        #FF6B2B  (sunset amber-orange — primary CTA)
     --amber-dark:   #E0561A  (deep amber hover)
     --amber-light:  #FFF1EB  (pale amber tint)
     --teal:         #00C4A7  (Caribbean teal — accent)
     --teal-dark:    #009F87  (deep teal)
     --teal-light:   #E0FAF6  (pale teal tint)
     --charcoal:     #1A1A2E  (near-black)
     --text:         #2D2D3A  (dark text)
     --text-muted:   #7B7B9A  (muted text)
     --white:        #FFFFFF
     --off-white:    #FAF9F7  (warm background)
============================================= */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --midnight:     #0F1923;
  --navy:         #162033;
  --amber:        #FF6B2B;
  --amber-dark:   #E0561A;
  --amber-light:  #FFF1EB;
  --teal:         #00C4A7;
  --teal-dark:    #009F87;
  --teal-light:   #E0FAF6;
  /* Legacy aliases so old references still work */
  --green-dark:   #0F1923;
  --green:        #00C4A7;
  --green-light:  #E0FAF6;
  --gold:         #FF6B2B;
  --gold-dark:    #E0561A;
  --gold-light:   #FFF1EB;
  --charcoal:     #1A1A2E;
  --text:         #2D2D3A;
  --text-muted:   #7B7B9A;
  --white:        #FFFFFF;
  --off-white:    #FAF9F7;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:    0 8px 40px rgba(0,0,0,0.16);
  --transition:   0.3s ease;
  --font-head:    'Playfair Display', Georgia, serif;
  --font-body:    'Poppins', sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  text-align: center;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,169,23,0.40);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: translateY(-2px);
}
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header.light .section-title,
.section-header.light .section-desc { color: var(--white); }
.section-header.light .section-badge {
  background: rgba(255,255,255,0.15);
  color: var(--teal);
}

.section-badge {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
}
.navbar.scrolled {
  background: var(--green-dark);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}
.logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links li { position: relative; }
.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
}
.nav-links a:hover { background: rgba(255,255,255,0.12); }

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 220px;
  overflow: hidden;
  z-index: 100;
}
.dropdown-menu li a {
  color: var(--text);
  display: block;
  padding: 11px 18px;
  font-size: 0.88rem;
  border-radius: 0;
}
.dropdown-menu li a:hover {
  background: var(--green-light);
  color: var(--green);
}
.dropdown:hover .dropdown-menu { display: block; }

.nav-cta {
  background: var(--gold) !important;
  color: var(--charcoal) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--charcoal) !important;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
  /* Fallback gradient if no image is loaded */
  background-color: var(--green-dark);
}
.hero-slide.active { opacity: 1; }

/* Gradient overlay — deep midnight at top, amber tint at bottom */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(15,25,35,0.65) 0%,
    rgba(15,25,35,0.45) 50%,
    rgba(255,107,43,0.30) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
  max-width: 800px;
}
.hero-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title .accent { color: var(--gold); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.hero-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ===== MARQUEE BAR ===== */
.marquee-bar {
  background: var(--midnight);
  color: var(--white);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track span {
  display: inline-block;
  padding: 0 40px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  opacity: 0.9;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ===== STATS SECTION ===== */
.stats-section {
  padding: 80px 0;
  background: var(--white);
}
.section-tagline {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--midnight);
  text-align: center;
  margin-bottom: 52px;
  font-style: italic;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--green-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--amber));
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--midnight);
  line-height: 1;
}
.stat-number::after { content: '+'; font-size: 0.6em; }
.stat-card:last-child .stat-number::after { content: '%'; }
.stat-icon { font-size: 1.8rem; margin: 8px 0; }
.stat-label { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== PACKAGES SECTION ===== */
.packages-section {
  padding: 100px 0;
  background: var(--gold-light);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  text-align: center;
  padding-bottom: 32px;
}
.package-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.package-card.featured {
  transform: scale(1.04);
  box-shadow: 0 12px 50px rgba(255,107,43,0.25);
  border: 3px solid var(--amber);
}
.package-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.package-ribbon {
  position: absolute;
  top: 16px; right: -28px;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 36px;
  transform: rotate(45deg);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.package-header {
  padding: 36px 28px 24px;
  color: var(--white);
}
.pkg-1 { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); }
.pkg-2 { background: linear-gradient(135deg, var(--midnight), var(--navy)); }
.pkg-3 { background: linear-gradient(135deg, #0a1220, var(--midnight)); }
.pkg-icon { font-size: 2.8rem; margin-bottom: 10px; }
.package-header h3 { font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; margin-bottom: 8px; }
.pkg-note { font-size: 0.9rem; opacity: 0.85; }
.pkg-features {
  padding: 24px 32px;
  text-align: left;
}
.pkg-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
  color: var(--text);
}
.pkg-features li:last-child { border-bottom: none; }
.package-card .btn { margin-top: 8px; }

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 100px 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-bottom: 52px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.service-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--green-light);
}
.service-img-wrap img {
  width: 100%; height: 100%;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img { transform: scale(1.08); }
.service-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,25,35,0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-overlay { opacity: 1; }
.service-overlay a {
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 22px;
  border-radius: 50px;
}
.service-info {
  padding: 14px 16px;
}
.service-info h4 {
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--charcoal);
}
.service-price {
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.88rem;
}
.services-cta {
  text-align: center;
}
.services-cta p {
  color: var(--text-muted);
  margin-bottom: 18px;
  font-size: 1rem;
}

/* ===== TOP PLACES SECTION ===== */
.top-places-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--midnight), var(--navy));
}
.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.place-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  background: var(--green);
}
.place-card img {
  width: 100%; height: 100%;
  transition: transform 0.5s ease;
}
.place-card:hover img { transform: scale(1.08); }
.place-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.place-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 18px 20px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-images {
  position: relative;
  height: 520px;
}
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 75%;
  height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img { width: 100%; height: 100%; }
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 50%;
  height: 50%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 5px solid var(--white);
}
.about-img-accent img { width: 100%; height: 100%; }
.about-badge-float {
  position: absolute;
  top: 50%; left: 70%;
  transform: translate(-50%, -50%);
  background: var(--amber);
  border-radius: 50%;
  width: 100px; height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 30px rgba(255,107,43,0.45);
  z-index: 3;
}
.badge-num { font-family: var(--font-head); font-size: 1.5rem; font-weight: 900; color: var(--charcoal); line-height: 1; }
.badge-text { font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--charcoal); line-height: 1.2; }

.about-content .section-title { text-align: left; }
.about-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.97rem;
  line-height: 1.75;
}
.about-features { margin: 24px 0 32px; }
.about-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid #f0f0f0;
}
.about-feat span { color: var(--teal-dark); font-size: 1rem; font-weight: 700; }

/* ===== PARTNERS SECTION ===== */
.partners-section {
  padding: 56px 0;
  background: var(--off-white);
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}
.partners-label {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 28px;
  font-weight: 600;
}
.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 52px;
  flex-wrap: wrap;
}
.partner-logo img {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: var(--transition);
}
.partner-logo:hover img { filter: grayscale(0%) opacity(1); }

/* ===== REVIEWS SECTION ===== */
.reviews-section {
  padding: 100px 0;
  background: var(--green-light);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--amber);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-stars { color: var(--amber); font-size: 1.1rem; margin-bottom: 14px; }
.review-text {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--charcoal); }
.reviewer-origin { font-size: 0.8rem; color: var(--text-muted); }

/* ===== GALLERY SECTION ===== */
.gallery-section {
  padding: 100px 0 0;
  background: var(--midnight);
}
.gallery-section .section-title { color: var(--white); }
.gallery-scroll {
  margin-top: 40px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 24px 60px;
  scrollbar-width: none;
  scroll-behavior: smooth;
  cursor: grab;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-scroll:active { cursor: grabbing; }
.gallery-scroll img {
  height: 260px;
  width: auto;
  min-width: 200px;
  flex-shrink: 0;
  border-radius: var(--radius);
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery-scroll img:hover { transform: scale(1.03); }

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: 100px 0;
  background: var(--off-white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-content .section-badge { margin-bottom: 10px; }
.contact-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  line-height: 1.2;
}
.contact-content > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1rem;
}
.contact-info { margin-bottom: 32px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-item strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 2px; }
.contact-item p { color: var(--charcoal); font-weight: 600; }
.contact-socials { display: flex; gap: 12px; flex-wrap: wrap; }
.social-btn {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 50px;
  background: var(--teal-light);
  color: var(--midnight);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.social-btn:hover { background: var(--midnight); color: var(--white); }
.social-btn.whatsapp { background: #25D366; color: var(--white); }
.social-btn.whatsapp:hover { background: #1ebe5d; }

.contact-cta-box {
  background: linear-gradient(135deg, var(--amber), var(--teal));
  border-radius: var(--radius-lg);
  padding: 4px;
}
.cta-box-inner {
  background: linear-gradient(160deg, var(--midnight), var(--navy));
  border-radius: calc(var(--radius-lg) - 4px);
  padding: 52px 44px;
  text-align: center;
  color: var(--white);
}
.cta-box-inner h3 {
  font-family: var(--font-head);
  font-size: 1.9rem;
  margin-bottom: 14px;
}
.cta-box-inner p {
  opacity: 0.85;
  margin-bottom: 28px;
  font-size: 0.97rem;
  line-height: 1.6;
}
.cta-footnote {
  font-size: 0.8rem;
  opacity: 0.65;
  margin-top: 14px !important;
  margin-bottom: 0 !important;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--midnight);
  color: rgba(255,255,255,0.8);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  height: 52px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
}
.footer-logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-bottom: 12px;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; opacity: 0.7; }
.footer h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 18px; }
.footer-links ul li, .footer-tours ul li { margin-bottom: 10px; }
.footer-links a, .footer-tours a {
  font-size: 0.88rem;
  opacity: 0.7;
  transition: var(--transition);
}
.footer-links a:hover, .footer-tours a:hover { opacity: 1; color: var(--teal); }
.footer-contact p { font-size: 0.88rem; opacity: 0.7; margin-bottom: 8px; }
.footer-socials { display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--amber); color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  opacity: 0.55;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { opacity: 1; text-decoration: underline; }

/* ===== FLOATING WHATSAPP ===== */
.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;
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  background: #1ebe5d;
  animation: none;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 40px rgba(37,211,102,0.8); }
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--green-dark); justify-content: center; align-items: center; gap: 6px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.1rem; padding: 14px 24px; }
  .dropdown-menu { position: static; display: none !important; box-shadow: none; background: rgba(255,255,255,0.1); }
  .nav-toggle { display: flex; z-index: 1000; position: relative; }

  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .places-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; }
  .about-images { height: 360px; margin-bottom: 40px; }

  .reviews-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .places-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .about-images { height: 280px; }
  .about-badge-float { width: 80px; height: 80px; }
  .badge-num { font-size: 1.2rem; }
}
