﻿/* ============================================
   Noel's Jamaica Vibes Tour â€” Global Stylesheet
   Brand: White-dominant, Gold #F9B233, Green #009B3A, Black #111111
   ============================================ */

:root {
  --white: #ffffff;
  --black: #111111;
  --gold: #F9B233;
  --gold-dark: #d4921e;
  --green: #009B3A;
  --green-dark: #007a2d;
  --gray-light: #F5F5F5;
  --gray-mid: #e0e0e0;
  --gray-text: #555555;
  --font-head: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', 'Open Sans', sans-serif;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --shadow-soft: 0 4px 24px rgba(17,17,17,0.07);
  --shadow-md: 0 8px 40px rgba(17,17,17,0.12);
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; padding-left: 0; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p { color: var(--gray-text); line-height: 1.75; }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 560px;
}

/* ---- LAYOUT ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--gray-light);
}

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ---- NAVIGATION ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-mid);
  padding: 0 1.5rem;
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-soft);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--black);
  white-space: nowrap;
}

.nav-logo .logo-badge {
  background: var(--black);
  width: 44px;
  height: 30px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--black);
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover, .nav-links a.active {
  background: var(--gray-light);
  color: var(--green);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #25D366;
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  border: 1.5px solid #25D366;
  transition: all var(--transition);
}
.nav-whatsapp:hover {
  background: #25D366;
  color: white;
}

.nav-book-btn {
  background: var(--green);
  color: white;
  font-weight: 700;
  font-size: 0.88rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.nav-book-btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--transition);
}
.nav-hamburger:hover { background: var(--gray-light); }
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid var(--gray-mid);
  padding: 1.25rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mobile-menu a:hover { background: var(--gray-light); color: var(--green); }
.mobile-menu .mobile-book-btn {
  margin-top: 0.5rem;
  background: var(--green);
  color: white;
  font-weight: 700;
  text-align: center;
  padding: 0.85rem;
  border-radius: 50px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary {
  background: var(--green);
  color: white;
}
.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,155,58,0.3);
}
.btn-secondary {
  background: white;
  color: var(--black);
  border: 2px solid var(--gray-mid);
}
.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(249,178,51,0.35);
}
.btn-outline-green {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}
.btn-outline-green:hover {
  background: var(--green);
  color: white;
}
.btn-sm { font-size: 0.82rem; padding: 0.5rem 1.2rem; }
.btn-lg { font-size: 1.05rem; padding: 0.9rem 2.2rem; }

/* ---- CARDS ---- */
.card {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.card-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.card-body {
  padding: 1.25rem;
}
.card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  background: var(--gray-light);
  color: var(--gray-text);
  margin-bottom: 0.6rem;
}
.card-tag.green { background: rgba(0,155,58,0.1); color: var(--green); }
.card-tag.gold { background: rgba(249,178,51,0.12); color: var(--gold-dark); }

/* ---- EXCURSIONS CATALOG ---- */
.catalog-quick-tabs {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin: 0 0 1.25rem;
}

.catalog-quick-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--gray-mid);
  background: white;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--black);
  transition: all var(--transition);
}

.catalog-quick-tab:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-1px);
}

.catalog-quick-tab.is-active {
  background: var(--green);
  border-color: var(--green);
  color: white;
  box-shadow: 0 10px 24px rgba(0,155,58,0.18);
}

.catalog-category-hidden {
  display: none;
}

.catalog-grid .catalog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Clickable gallery strip */
.home-visual-strip > a {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  display: block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.home-visual-strip > a::after {
  content: 'â†’ Book Now';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 1rem;
  font-weight: 700;
  font-size: 0.85rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  display: flex;
  align-items: flex-end;
}

.home-visual-strip > a:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.home-visual-strip > a:hover::after {
  transform: translateY(0);
}

.catalog-card .catalog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.catalog-card .catalog-actions {
  margin-top: auto;
}

/* ---- BADGE ---- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.9rem;
  border-radius: 50px;
  background: var(--gray-light);
  color: var(--gray-text);
}
.badge-verified { background: rgba(0,155,58,0.1); color: var(--green); }
.badge-gold { background: rgba(249,178,51,0.12); color: var(--gold-dark); }
.badge-dark { background: rgba(17,17,17,0.06); color: var(--black); }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--black);
  color: white;
  padding: 0.75rem 0;
  font-size: 0.82rem;
  display: none !important;
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  align-items: center;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.85);
}
.trust-bar-item svg, .trust-bar-item .icon { color: var(--gold); }

/* ---- STAR RATING ---- */
.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.85rem;
}

/* ---- HERO ---- */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 48%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,155,58,0.04) 0%, rgba(249,178,51,0.06) 100%);
  border-radius: 0 0 0 80px;
  pointer-events: none;
}
.hero-accent-line {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--gold) 50%, var(--black) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,155,58,0.08);
  border: 1px solid rgba(0,155,58,0.2);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--black);
}
.hero-title .highlight {
  color: var(--green);
  position: relative;
}
.hero-title .highlight-gold {
  color: var(--gold-dark);
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-text);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

/* ---- FEATURE BADGES ---- */
.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  background: var(--gray-light);
  padding: 0.4rem 0.9rem;
  border-radius: 50px;
}
.feature-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ---- CATEGORY GRID ---- */
.category-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  aspect-ratio: 1;
}
.category-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-md);
}
.category-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-card:hover img { transform: scale(1.06); }
.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.75) 0%, rgba(17,17,17,0.1) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.category-overlay h3 {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.category-overlay p {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
}

/* ---- TESTIMONIAL ---- */
.testimonial-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--gray-mid);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.5rem;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-name { font-weight: 700; font-size: 0.9rem; }
.testimonial-origin { font-size: 0.78rem; color: var(--gray-text); }

/* ---- PRICING TABLE ---- */
.pricing-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--gray-mid);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
}
.pricing-card:hover, .pricing-card.featured {
  border-color: var(--green);
  box-shadow: 0 12px 48px rgba(0,155,58,0.15);
  transform: translateY(-4px);
}
.pricing-card.featured {
  background: var(--black);
  color: white;
}
.pricing-card.featured h3 { color: white; }
.pricing-card.featured .pricing-price { color: var(--gold); }
.pricing-badge {
  position: absolute;
  top: -12px;
  right: 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-price {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--green);
  line-height: 1;
  margin: 1rem 0;
}
.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-text);
}
.pricing-includes {
  margin: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--gray-text);
}
.pricing-card.featured .pricing-includes li { color: rgba(255,255,255,0.8); }
.pricing-includes li .check {
  color: var(--green);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-card.featured .pricing-includes li .check { color: var(--gold); }

/* ---- FORM ---- */
.booking-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-mid);
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.45rem;
}
.form-label .req { color: var(--green); }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--gray-mid);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: white;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,155,58,0.1);
}
.form-input::placeholder { color: #aaa; }
.form-textarea { resize: vertical; min-height: 110px; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23555' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-hint { font-size: 0.78rem; color: var(--gray-text); margin-top: 0.35rem; }
.form-error { font-size: 0.78rem; color: #e53e3e; margin-top: 0.35rem; display: none; }
.form-error.visible { display: block; }

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17,17,17,0.55);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  backdrop-filter: blur(4px);
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: white;
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(24px) scale(0.97);
  transition: transform var(--transition);
  position: relative;
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}
.modal-header {
  padding: 1.75rem 2rem 1.25rem;
  border-bottom: 1px solid var(--gray-mid);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}
.modal-header h2 { font-size: 1.4rem; }
.modal-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-light);
  font-size: 1.2rem;
  color: var(--gray-text);
  flex-shrink: 0;
  transition: background var(--transition);
}
.modal-close:hover { background: var(--gray-mid); }
.modal-body { padding: 1.75rem 2rem; }
.modal-footer { padding: 1.25rem 2rem 1.75rem; border-top: 1px solid var(--gray-mid); }

/* ---- STICKY CTA ---- */
.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  background: white;
  padding: 0.65rem 0.75rem;
  border-radius: 60px;
  box-shadow: 0 8px 32px rgba(17,17,17,0.18);
  border: 1px solid var(--gray-mid);
  transition: opacity var(--transition), transform var(--transition);
}
.sticky-cta.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}
.sticky-cta .whatsapp-pill {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  background: #25D366;
  padding: 0.5rem 1.1rem;
  border-radius: 50px;
}

/* ---- ACCORDION ---- */
.accordion-item {
  border-bottom: 1px solid var(--gray-mid);
}
.accordion-btn {
  width: 100%;
  text-align: left;
  padding: 1.1rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.accordion-btn:hover { color: var(--green); }
.accordion-icon {
  font-size: 1.25rem;
  color: var(--green);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.accordion-btn.open .accordion-icon { transform: rotate(45deg); }
.accordion-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}
.accordion-content.open {
  padding-bottom: 1.25rem;
}
.accordion-content p { font-size: 0.95rem; }

/* ---- TRUST INDICATORS ---- */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}
.trust-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,155,58,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.trust-item-icon:empty::before {
  content: '\2022';
  font-size: 1.4rem;
  color: var(--green);
  line-height: 1;
}
.premium-icon-token {
  font-size: 0.72rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}
.trust-item-text strong { font-size: 0.9rem; display: block; }
.trust-item-text span { font-size: 0.78rem; color: var(--gray-text); }

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 0.75rem;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.footer-social {
  display: flex;
  gap: 0.6rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 0.95rem;
  transition: background var(--transition);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.footer-social a:hover { background: var(--green); }
.footer-heading {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }
.footer-flag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--black);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--black));
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: white; }
.page-hero .section-label { color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.7); }

/* ---- ACCESSIBILITY PANEL ---- */
.a11y-panel {
  display: none !important;
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  z-index: 800;
}
.a11y-trigger {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
}
.a11y-trigger:empty::before {
  content: 'A';
  font-size: 0.95rem;
  font-weight: 800;
}
.a11y-trigger:hover { transform: scale(1.08); }
.a11y-menu {
  position: absolute;
  bottom: 56px; right: 0;
  background: white;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-mid);
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}
.a11y-menu.open { display: flex; }
.a11y-menu button {
  font-size: 0.88rem;
  font-weight: 600;
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.a11y-menu button:hover { background: var(--gray-light); color: var(--green); }

/* ---- SITEWIDE WHATSAPP CHAT ---- */
.global-whatsapp-chat {
  position: fixed;
  right: 1.5rem;
  bottom: 10.2rem;
  z-index: 801;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(12, 88, 43, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.global-whatsapp-chat:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 14px 34px rgba(12, 88, 43, 0.42);
  background: #1fb95a;
}
.global-whatsapp-chat:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}
.global-whatsapp-chat-text {
  position: absolute;
  right: calc(100% + 0.6rem);
  top: 50%;
  transform: translateY(-50%);
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 0.26rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.global-whatsapp-chat:hover .global-whatsapp-chat-text,
.global-whatsapp-chat:focus-visible .global-whatsapp-chat-text {
  opacity: 1;
}

/* ---- HIGH CONTRAST MODE ---- */
body.high-contrast {
  filter: contrast(1.6) grayscale(0.2);
}

/* ---- DYSLEXIA FONT ---- */
body.dyslexia-font * {
  font-family: 'OpenDyslexic', 'Arial', sans-serif !important;
  letter-spacing: 0.05em !important;
  word-spacing: 0.15em !important;
}

/* ---- LARGE TEXT ---- */
body.large-text { font-size: 18px; }

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- FILTER BAR ---- */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  padding: 1.25rem 0;
}
.filter-pill {
  padding: 0.45rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--gray-mid);
  color: var(--black);
  background: white;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-pill:hover, .filter-pill.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
}

/* ---- STEP INDICATOR ---- */
.steps {
  display: flex;
  gap: 0;
  counter-reset: step;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 0; right: 0;
  height: 2px;
  background: var(--gray-mid);
  z-index: 0;
}
.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gray-mid);
  color: var(--gray-text);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.7rem;
  transition: all var(--transition);
}
.step.active .step-circle {
  background: var(--green);
  color: white;
  box-shadow: 0 0 0 4px rgba(0,155,58,0.15);
}
.step-label { font-size: 0.8rem; font-weight: 600; color: var(--gray-text); }
.step.active .step-label { color: var(--green); }

/* ---- SEARCH BAR ---- */
.search-bar {
  position: relative;
}
.search-input {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 3rem;
  border: 1.5px solid var(--gray-mid);
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0,155,58,0.1);
}
.search-icon {
  position: absolute;
  left: 1.1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray-text);
  font-size: 1rem;
}

/* ---- DIVISION LINES ---- */
.divider {
  border: none;
  border-top: 1px solid var(--gray-mid);
  margin: 2rem 0;
}
.divider-gold {
  border-top: 2px solid var(--gold);
  width: 48px;
  margin: 0.75rem 0 1.5rem;
}

/* ---- ALERT & NOTICE ---- */
.notice {
  padding: 0.85rem 1.25rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.notice-success { background: rgba(0,155,58,0.08); border-left: 3px solid var(--green); color: var(--green-dark); }
.notice-warning { background: rgba(249,178,51,0.1); border-left: 3px solid var(--gold); color: #856404; }
.notice-info { background: rgba(17,17,17,0.05); border-left: 3px solid var(--black); color: var(--black); }

/* ---- JAMAICAN ACCENT GRADIENT STRIP ---- */
.jamaica-strip {
  height: 5px;
  background: linear-gradient(90deg, #000000 0%, #009B3A 40%, #F9B233 70%, #000000 100%);
}

/* ---- IMAGE GALLERY ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.gallery-img {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 1;
}
.gallery-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-img:hover img { transform: scale(1.06); }

/* ---- LOADING SPINNER ---- */
.spinner {
  width: 24px; height: 24px;
  border: 3px solid var(--gray-mid);
  border-top-color: var(--green);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .nav-inner { height: 64px; }
  .nav-logo { font-size: 1rem; gap: 0.5rem; }
  .nav-logo .logo-badge { width: 36px; height: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero {
    min-height: 80vh;
    background-image: url('../images/jamaica-beach.jpg');
    background-size: cover;
    background-position: center 40%;
  }
  .hero::before {
    display: block;
    inset: 0;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: rgba(255,255,255,0.82);
  }
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); line-height: 1.08; letter-spacing: -0.01em; }
  .hero-sub { font-size: 1rem; line-height: 1.55; }
  .hero-features { gap: 0.5rem; margin-bottom: 1.5rem; }
  .feature-badge { font-size: 0.8rem; padding: 0.35rem 0.75rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .catalog-quick-tabs { gap: 0.45rem; }
  .catalog-quick-tab { font-size: 0.76rem; padding: 0.35rem 0.7rem; }
  .catalog-filter-bar { flex-direction: column; align-items: stretch; }
  .catalog-resort-filter { margin-left: 0 !important; }
  .card-img, .blog-img {
    aspect-ratio: 16 / 10;
    height: auto;
    object-position: center;
  }
  .hero [style*="height:200px"],
  .hero [style*="height:150px"] {
    height: 160px !important;
  }
  .hero [style*="height:200px"] img,
  .hero [style*="height:150px"] img {
    object-position: center;
  }
  .trust-bar { padding: 0.55rem 0; }
  .trust-bar-inner {
    gap: 0.5rem;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .trust-bar-inner::-webkit-scrollbar { display: none; }
  .trust-bar-item {
    white-space: nowrap;
    font-size: 0.76rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
  }
  .sticky-cta {
    width: calc(100% - 2rem);
    max-width: 360px;
    bottom: 0.9rem;
    padding: 0.55rem;
    gap: 0.45rem;
  }
  .sticky-cta .btn,
  .sticky-cta .whatsapp-pill { flex: 1; justify-content: center; }
  .a11y-panel { right: 0.85rem; bottom: 5.5rem; }
  .global-whatsapp-chat { right: 0.85rem; bottom: 10rem; }
  .a11y-trigger { width: 42px; height: 42px; font-size: 0.85rem; }
  .festival-photo-strip { grid-template-columns: repeat(2, 1fr) !important; }
  .festival-photo-strip > div { height: 170px !important; }
  .home-visual-strip { grid-template-columns: repeat(2, 1fr) !important; }
  .home-visual-strip > * { height: 160px !important; }
  .booking-form { padding: 1.5rem; }
  .modal-header, .modal-body, .modal-footer { padding-left: 1.25rem; padding-right: 1.25rem; }
  .steps::before { display: none; }
}

@media (max-width: 480px) {
  .section { padding: 40px 0; }
  .container { padding: 0 1.1rem; }
  .hero-content { padding-top: 0.35rem; }
  .hero-badge { font-size: 0.72rem; padding: 0.35rem 0.85rem; margin-bottom: 1.2rem; }
  .hero-title { font-size: clamp(1.95rem, 12vw, 2.55rem); line-height: 1.08; }
  .hero-sub { font-size: 0.95rem; }
  .nav { padding: 0 1rem; }
  .mobile-menu { padding: 1rem 1rem 1.25rem; }
  .mobile-menu a { font-size: 0.95rem; padding: 0.65rem 0.75rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .btn-lg { width: 100%; justify-content: center; }
  .sticky-cta { display: none !important; }

  /* Sitewide inline-grid cleanup for pages using inline layout styles */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns:2fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  [style*="grid-template-columns:repeat(3,1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 0.9rem !important;
  }
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns:repeat(5,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.6rem !important;
  }

  .home-hero-layout {
    grid-template-columns: 1fr !important;
    gap: 1.25rem !important;
  }
  .home-hero-collage,
  .home-hero-rating {
    display: none !important;
  }

  .quickbook-card {
    grid-template-columns: 1fr !important;
    padding: 1.5rem !important;
    gap: 1rem !important;
  }
  .quickbook-side {
    padding: 1rem !important;
  }

  .global-whatsapp-chat {
    width: 52px;
    height: 52px;
    right: 0.7rem;
    bottom: 1.2rem;
  }
  .a11y-panel { right: 0.7rem; bottom: 1rem; }
  .a11y-trigger { width: 46px; height: 46px; }
  .nav-logo span { max-width: none; overflow: visible; text-overflow: clip; white-space: nowrap; font-size: 0.8rem; }
  .hero-sub br { display: none; }
  .hero-sub-secondary { display: none; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .card-img, .blog-img {
    aspect-ratio: 4 / 3;
  }
  .hero [style*="height:200px"],
  .hero [style*="height:150px"] {
    height: 145px !important;
  }
  .sticky-cta { max-width: 340px; }
  .sticky-cta .btn,
  .sticky-cta .whatsapp-pill { font-size: 0.82rem; padding: 0.55rem 0.8rem; }
  .festival-photo-strip { grid-template-columns: 1fr !important; }
  .festival-photo-strip > div { height: 180px !important; }
  .home-visual-strip { grid-template-columns: repeat(2, 1fr) !important; }
  .home-visual-strip > * { height: 160px !important; }
}


/* Portrait tour photos â€” show faces, not feet */
.dest-card img,
.excursion-card img,
.package-card img,
.feature-card img,
.hero-strip img,
.a11y-card img,
.blog-card img {
  object-position: top center;
}

/* ---- HERO SLIDESHOW MOBILE FIXES ---- */
/* The hero uses a JS video/image slideshow â€” override the legacy static-bg mobile rules */
@media (max-width: 768px) {
  .hero {
    min-height: 85vh;
    background-image: none !important;
  }
  /* Kill the white overlay that would cover the slideshow */
  .hero::before {
    display: none !important;
  }
  /* Tighten hero content padding on mobile */
  .hero .container[style*="padding-top:4rem"] {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  /* Hero text stack â€” center and tighten */
  .hero-btns {
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
  }
  .hero-btns .btn-lg {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  /* Stats 4-col â†’ 2-col at 768 */
  [style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 80vh;
  }
  /* Hero content padding even tighter on small phones */
  .hero .container {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }
  /* Kill forced line breaks inside hero â€” let text reflow naturally */
  .hero br { display: none; }
  /* Feature badges â€” tighter on small screens */
  .feature-badge {
    font-size: 0.75rem;
    padding: 0.3rem 0.65rem;
  }
}

