/* =============================================
   GROUP VOYAGES - Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root {
  --navy:       #109bc5;   /* turquoise */
  --red:        #d94f3d;   /* red — for headings */
  --gold:       #109bc5;   /* kept as alias for accent elements */
  --gold-light: #4db8db;   /* turquoise light */
  --cream:      #f0f8fc;   /* very light blue tint */
  --white:      #ffffff;
  --gray:       #5a7080;
  --gray-light: #e4f3f9;
  --dark:       #0d2535;
  --shadow:     0 4px 24px rgba(16,155,197,0.12);
  --shadow-lg:  0 8px 40px rgba(16,155,197,0.18);
  --radius:     8px;
  --transition: all 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.7;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 {
  font-family: 'Exo 2', sans-serif;
  line-height: 1.25;
  color: var(--red);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { font-size: 1rem; color: var(--gray); }

/* Base links — colored + underlined when not inside a button or nav */
a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
/* Standalone links (not nav, not buttons, not card-link) get turquoise + underline */
p a,
li a:not(nav li a):not(.footer-col li a):not(.top-bar a),
.contact-info-list .ci-text a,
.breadcrumb a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}
p a:hover,
li a:not(nav li a):not(.footer-col li a):not(.top-bar a):hover,
.contact-info-list .ci-text a:hover,
.breadcrumb a:hover {
  color: var(--red);
}

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

/* ---- TOP BAR ---- */
.top-bar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
  font-family: 'Nunito Sans', sans-serif;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.top-bar a { color: var(--white); }
.top-bar a:hover { color: rgba(255,255,255,0.75); }
.top-bar-links { display: flex; gap: 20px; align-items: center; }

/* ---- HEADER / NAV ---- */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-family: 'Exo 2', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.logo-sub {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
nav ul li a {
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--navy);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none !important;
}
nav ul li a:hover,
nav ul li a.active {
  background: var(--navy);
  color: var(--white);
}
.nav-cta a {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
}
.nav-cta a:hover {
  background: var(--red) !important;
  color: var(--white) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.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 ---- */
.hero {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-img-placeholder {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 30, 50, 0.45) 0%,
    rgba(10, 30, 50, 0.62) 60%,
    rgba(10, 30, 50, 0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 20px;
  animation: fadeUp 0.9s ease both;
}
.hero-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  font-weight: 700;
}
.hero-content h1 { color: var(--white) !important; margin-bottom: 16px; }
.hero-content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 28px;
}
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-gold:hover {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  margin-left: 10px;
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

/* ---- WHO WE SERVE (HOMEPAGE) ---- */
.groups-strip {
  background: var(--navy);
  padding: 16px 0;
}
.groups-strip .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 30px;
  text-align: center;
}
.group-tag {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 7px;
}
.group-tag .icon { font-size: 1.1rem; }

/* ---- SECTION COMMON ---- */
.section { padding: 72px 0; }
.section-alt { background: var(--cream); }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 10px;
}
/* Headings on dark backgrounds stay white */
.hero-content h1,
.cta-banner h2,
.dest-hero-content h1,
.page-banner h1,
footer h1, footer h2, footer h3, footer h4 {
  color: var(--white) !important;
}
/* Section headings in red */
.section-header h2 { color: var(--red); margin-bottom: 12px; }
.card-body h3      { color: var(--red); margin-bottom: 8px; }
.about-text h2     { color: var(--red); margin-bottom: 16px; }
.day-content h4    { color: var(--red); font-size: 0.95rem; margin-bottom: 4px; }
.feature-item h4   { color: var(--red); margin-bottom: 8px; font-size: 1rem; }
.booking-card .price { font-family: 'Exo 2', sans-serif; font-size: 2rem; color: var(--red); font-weight: 700; margin: 4px 0 4px; }
.section-header p { max-width: 560px; margin: 0 auto; }
.divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* ---- DESTINATION CARDS ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.card-img {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #c8e8ea, #a0d0d4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #2a7a80;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  border: 2px dashed #8fc8cc;
  text-align: center;
  padding: 10px;
  gap: 8px;
}
.card-img .img-icon { font-size: 2rem; opacity: 0.5; }
.card-img .img-label { font-size: 0.7rem; opacity: 0.7; }
.card-img .img-size {
  position: absolute;
  bottom: 8px;
  font-size: 0.65rem;
  background: rgba(255,255,255,0.6);
  border-radius: 4px;
  padding: 2px 8px;
}
.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 50px;
}
.card-date-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 50px;
}
.card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-meta {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 6px;
}
.card-body h3 { color: var(--navy); margin-bottom: 8px; }
.card-body p { font-size: 0.9rem; margin-bottom: 18px; flex: 1; }
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--gray-light);
}
.card-footer .duration {
  font-size: 0.8rem;
  color: var(--navy);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
}
.card-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  background: var(--navy);
  border: 2px solid var(--navy);
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none !important;
}
.card-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* ---- WHY US ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
}
.feature-item { text-align: center; padding: 24px 16px; }
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.feature-item h4 { color: var(--navy); margin-bottom: 8px; font-size: 1rem; }
.feature-item p { font-size: 0.88rem; }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--navy);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(217,79,61,0.04) 40px,
    rgba(217,79,61,0.04) 80px
  );
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.72); max-width: 520px; margin: 0 auto 28px; }
.btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- TESTIMONIALS ---- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
}
.testimonial-card .quote { font-size: 2rem; color: var(--gold); line-height: 1; margin-bottom: 10px; }
.testimonial-card p { font-style: italic; font-size: 0.93rem; margin-bottom: 18px; }
.testimonial-author { font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.testimonial-org { font-size: 0.78rem; color: var(--gray); }

/* ---- DESTINATION PAGE HERO ---- */
.dest-hero {
  height: 420px;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: flex-end;
}
.dest-hero-img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #065f66, #0e7c86);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.18);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.dest-hero-img::after {
  content: '[ Banner Photo — recommended size: 1920 × 600 px ]';
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px dashed rgba(255,255,255,0.3);
  border-radius: 4px;
  padding: 5px 14px;
  white-space: nowrap;
  font-size: 0.72rem;
}
.dest-hero-overlay { position: absolute; inset: 0; background: rgba(10,20,40,0.6); }
.dest-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 32px 24px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.dest-hero-content .eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}
.dest-hero-content h1 { color: var(--white); }

/* ---- PACKAGE DETAIL ---- */
.package-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.package-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
}
.gallery-main {
  grid-column: 1 / -1;
  height: 300px;
  background: linear-gradient(135deg, #c8e8ea, #a0d0d4);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #2a7a80;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px dashed #8fc8cc;
  gap: 8px;
}
.gallery-main .img-icon { font-size: 2.5rem; opacity: 0.4; }
.gallery-main .img-size { font-size: 0.7rem; opacity: 0.6; }
.gallery-thumb {
  height: 160px;
  background: linear-gradient(135deg, #d8f0f2, #b8dce0);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #2a7a80;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px dashed #8fc8cc;
  gap: 6px;
}
.gallery-thumb .img-icon { font-size: 1.5rem; opacity: 0.4; }
.gallery-thumb .img-size { font-size: 0.6rem; opacity: 0.6; }

.package-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tag {
  background: var(--cream);
  border: 1px solid #ddd;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.package-description { color: var(--gray); line-height: 1.8; margin-bottom: 24px; }
.itinerary { margin-bottom: 32px; }
.itinerary h3 { color: var(--navy); margin-bottom: 16px; }
.itinerary-day {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
}
.day-num {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.day-content h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 4px; }
.day-content p { font-size: 0.88rem; margin: 0; }

/* Sidebar booking card */
.booking-card {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 30px 26px;
  border-top: 4px solid var(--gold);
  position: sticky;
  top: 90px;
}
.booking-card .price-label { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }
.booking-card .price span { font-size: 0.9rem; color: var(--gray); font-family: 'Lato', sans-serif; font-weight: 400; }
.booking-divider { height: 1px; background: var(--gray-light); margin: 18px 0; }
.booking-info-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  margin-bottom: 10px;
}
.booking-info-row .label { color: var(--gray); }
.booking-info-row .value { color: var(--navy); font-weight: 700; }
.booking-card .btn { width: 100%; text-align: center; margin-top: 6px; }
.booking-card .whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: var(--white);
  border-radius: 50px;
  padding: 13px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 10px;
  transition: var(--transition);
}
.booking-card .whatsapp-btn:hover { background: #1db954; }

/* ---- ABOUT / CONTACT ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-img-block {
  height: 420px;
  border-radius: 14px;
  background: linear-gradient(135deg, #c8e8ea, #a0d0d4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #2a7a80;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: 2px dashed #8fc8cc;
  gap: 10px;
}
.about-img-block .img-icon { font-size: 3rem; opacity: 0.35; }
.about-img-block .img-size { font-size: 0.68rem; opacity: 0.6; }
.about-text .eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 10px;
}
.about-text h2 { color: var(--navy); margin-bottom: 16px; }
.about-text p { margin-bottom: 14px; }
.stats-row { display: flex; gap: 32px; margin-top: 24px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat .num { font-family: 'Exo 2', sans-serif; font-size: 2rem; color: var(--navy); font-weight: 700; }
.stat .lbl { font-size: 0.78rem; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #b2d8db;
  border-radius: var(--radius);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--navy);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  font-size: 0.93rem;
}
.contact-info-list .ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-info-list .ci-text strong { display: block; color: var(--navy); font-size: 0.85rem; }
.contact-info-list .ci-text span { color: var(--gray); }

/* ---- FOOTER ---- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
}
.footer-brand .logo-main { color: var(--white); }
.footer-brand .logo-sub { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; margin-top: 12px; line-height: 1.7; }
.footer-col h4 {
  color: var(--white);
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.3);
}
.footer-col ul li a:hover { color: var(--white); text-decoration-color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---- WHATSAPP FLOAT ---- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  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,.4);
  transition: transform .25s, box-shadow .25s;
  animation: waPop .6s 1.5s ease both;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1) translateY(-2px); box-shadow: 0 10px 32px rgba(37,211,102,.5); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; display: block; }
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 10px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity .25s, transform .25s;
}
.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -7px;
  top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-right: none;
  border-left-color: var(--dark);
}
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); }
@keyframes waPop { from { opacity:0; transform:scale(.5); } to { opacity:1; transform:scale(1); } }
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid #e5e0d6;
}
.breadcrumb .container { display: flex; gap: 8px; align-items: center; font-size: 0.82rem; }
.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gray); }
.breadcrumb .current { color: var(--gray); }

/* ---- PAGE HEADER (inner pages) ---- */
.page-banner {
  background: var(--navy);
  padding: 52px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(217,79,61,0.05) 30px,
    rgba(217,79,61,0.05) 60px
  );
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: var(--white); }
.page-banner p { color: rgba(255,255,255,0.7); margin-top: 10px; }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.8); }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .package-layout { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-img-block { height: 280px; }
}

@media (max-width: 768px) {
  /* Nav */
  nav { display: none; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); box-shadow: var(--shadow-lg); padding: 16px; z-index: 999; }
  nav.open { display: block; }
  nav ul { flex-direction: column; gap: 2px; }
  nav ul li a { display: block; padding: 10px 14px; }
  .hamburger { display: flex; }

  /* Hero — taller so image shows people not just sky */
  .hero {
    height: auto;
    min-height: 560px;
    align-items: flex-end;
    padding-bottom: 40px;
  }
  .hero-img-placeholder {
    background-position: center 35%;
  }
  /* Shrink hero text to fit without stacking */
  .hero-content {
    padding: 0 16px;
    width: 100%;
  }
  .hero-eyebrow { font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 8px; }
  .hero-content h1 { font-size: 1.8rem !important; margin-bottom: 10px; line-height: 1.2; }
  .hero-content p { font-size: 0.92rem; margin-bottom: 18px; }
  /* Stack buttons vertically */
  .hero-content .btn { display: block; width: 100%; margin: 0 0 10px 0 !important; text-align: center; }

  /* General */
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .package-gallery { grid-template-columns: 1fr; }
  .gallery-thumb { height: 140px; }
  .top-bar .container { flex-direction: column; align-items: center; gap: 4px; text-align: center; }
  .stats-row { gap: 20px; }
  .btn-group { flex-direction: column; align-items: center; }
  .btn-group .btn { margin: 0 !important; width: 240px; text-align: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 48px 0; }
  .whatsapp-float { bottom: 20px; right: 20px; }

  .hero {
    min-height: 520px;
    padding-bottom: 32px;
  }
  .hero-img-placeholder {
    background-position: center 45%;
  }
  .hero-content h1 { font-size: 1.55rem !important; }
  .hero-content p { font-size: 0.88rem; }

  /* Top bar compact */
  .top-bar { font-size: 0.78rem; padding: 6px 0; }
  .top-bar-links { gap: 12px; }

  /* Header compact */
  .header-inner { padding: 10px 16px; }
  .logo-main { font-size: 1.25rem; }
}
