/*
Theme Name: Zama
Theme URI: https://zama-travel.com
Author: Zama Travel
Description: Zama v2 — Premium bilingual airport transfer booking for Cancun & Riviera Maya.
Version: 3.0.0
Text Domain: zama
*/

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* Brand palette (Z-Arrow Mark rebrand — 2026-04-19) */
  --z-ocean:      #0e7490;
  --z-teal:       #0891b2;
  --z-teal-lt:    #e0f2f7;
  --z-dark:       #0f1a22;
  --z-navy:       #0c4a6e;
  --z-gold:       #f97316;
  --z-gold-lt:    #fef3e2;
  --z-bg:         #ffffff;
  --z-surface:    #f8fafc;
  --z-muted:      #64748b;
  --z-border:     #e2e8f0;

  /* Typography */
  --z-font-head:  'DM Sans', system-ui, sans-serif;
  --z-font-body:  'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --z-container:  1200px;
  --z-radius-sm:  8px;
  --z-radius:     14px;
  --z-radius-lg:  22px;

  /* Shadows */
  --z-shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --z-shadow:     0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
  --z-shadow-lg:  0 12px 40px rgba(0,0,0,.12);

  /* Transitions */
  --z-ease:       cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--z-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--z-dark);
  background: var(--z-bg);
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.z-shell {
  width: min(var(--z-container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section--alt {
  background: var(--z-surface);
}

.section--dark {
  background: var(--z-navy);
  color: #fff;
}

.section-header {
  margin-bottom: 56px;
}

.section-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--z-teal);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--z-font-head);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--z-dark);
}

.section-title--light { color: #fff; }

.section-lead {
  margin-top: 16px;
  font-size: 18px;
  color: var(--z-muted);
  max-width: 640px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--z-font-body);
  font-size: 15px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--z-ease), box-shadow .18s var(--z-ease), background .18s var(--z-ease);
  white-space: nowrap;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--z-gold);
  color: var(--z-dark);
}
.btn-primary:hover {
  background: #e8961a;
  box-shadow: 0 6px 20px rgba(245,166,35,.35);
}

.btn-ocean {
  background: var(--z-ocean);
  color: #fff;
}
.btn-ocean:hover {
  background: #005a6c;
  box-shadow: 0 6px 20px rgba(0,110,130,.3);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: #fff;
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
}

.btn-ghost {
  background: transparent;
  border-color: var(--z-border);
  color: var(--z-dark);
}
.btn-ghost:hover {
  border-color: var(--z-teal);
  color: var(--z-ocean);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--z-border);
  transition: box-shadow .2s var(--z-ease);
}

.site-header.is-scrolled {
  box-shadow: var(--z-shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 8px 0;
}

/* Logo */
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--z-font-head);
  font-weight: 800;
  font-size: 20px;
  color: var(--z-ocean);
  flex-shrink: 0;
}

.brand-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-icon svg { width: 100%; height: 100%; display: block; }

/* Primary nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.site-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--z-navy);
  transition: background .15s, color .15s;
}

.site-nav a:hover,
.site-nav a.is-active {
  background: var(--z-teal-lt);
  color: var(--z-ocean);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  gap: 4px;
}

.lang-switch a {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid var(--z-border);
  color: var(--z-muted);
  transition: all .15s;
}

.lang-switch a.is-current {
  background: var(--z-ocean);
  border-color: var(--z-ocean);
  color: #fff;
}

.header-book-btn {
  display: inline-flex;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1.5px solid var(--z-border);
  border-radius: var(--z-radius-sm);
  cursor: pointer;
  color: var(--z-dark);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--z-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1600&q=80&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
  opacity: .45;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(13,27,42,.85) 0%,
    rgba(0,110,130,.60) 55%,
    rgba(13,27,42,.4) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
  padding: 120px 0 100px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}

.hero h1 {
  font-family: var(--z-font-head);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.hero h1 span {
  color: var(--z-gold);
}

.hero-lead {
  font-size: 19px;
  color: rgba(255,255,255,.8);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.hero-stat-val {
  font-family: var(--z-font-head);
  font-size: 28px;
  font-weight: 800;
  color: var(--z-gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 4px;
}

/* Hero booking card */
.hero-card {
  background: rgba(255,255,255,.97);
  border-radius: var(--z-radius-lg);
  padding: 32px;
  box-shadow: var(--z-shadow-lg);
  position: relative;
  z-index: 2;
}

.hero-card-title {
  font-family: var(--z-font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--z-dark);
  margin-bottom: 24px;
  text-align: center;
}

/* ============================================================
   BOOKING SECTION (full form, below hero)
   ============================================================ */
.booking-section {
  display: block;
  padding: 80px 0 96px;
  background: var(--z-bg);
  scroll-margin-top: 80px;
}

@keyframes zf-section-reveal {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.booking-section-inner {
  max-width: 720px;
  margin-inline: auto;
}

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

.booking-section-header h2 {
  font-family: var(--z-font-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  color: var(--z-dark);
  margin: 8px 0 12px;
}

.booking-section-header p {
  font-size: 16px;
  color: var(--z-muted);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  padding: 28px 0;
  background: var(--z-ocean);
  color: #fff;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--z-bg);
  border: 1.5px solid var(--z-border);
  border-radius: var(--z-radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s var(--z-ease), box-shadow .2s var(--z-ease), border-color .2s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--z-ocean), var(--z-teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--z-ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--z-shadow);
  border-color: var(--z-teal);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card--featured {
  background: linear-gradient(135deg, var(--z-ocean) 0%, #004d68 100%);
  border-color: var(--z-ocean);
  color: #fff;
}

.service-card--featured .service-price {
  color: var(--z-gold);
}

.service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--z-gold);
  color: var(--z-dark);
  font-size: 10px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.service-icon {
  font-size: 32px;
  line-height: 1;
}

.service-name {
  font-family: var(--z-font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--z-dark);
}

.service-card--featured .service-name { color: #fff; }

.service-desc {
  font-size: 14px;
  color: var(--z-muted);
  line-height: 1.5;
  flex: 1;
}

.service-card--featured .service-desc { color: rgba(255,255,255,.7); }

.service-price {
  font-family: var(--z-font-head);
  font-weight: 800;
  font-size: 22px;
  color: var(--z-ocean);
}

.service-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--z-muted);
}

/* ============================================================
   FLEET SECTION
   ============================================================ */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fleet-card {
  background: var(--z-bg);
  border: 1.5px solid var(--z-border);
  border-radius: var(--z-radius);
  overflow: hidden;
  transition: transform .2s var(--z-ease), box-shadow .2s;
}

.fleet-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--z-shadow);
}

.fleet-img {
  aspect-ratio: 4/3;
  background: var(--z-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 60px;
}

.fleet-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fleet-body {
  padding: 20px;
}

.fleet-class {
  font-family: var(--z-font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--z-dark);
  margin-bottom: 8px;
}

.fleet-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.fleet-spec {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--z-muted);
  font-weight: 500;
}

.fleet-action {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: var(--z-radius-sm);
  background: var(--z-teal-lt);
  color: var(--z-ocean);
  font-size: 14px;
  font-weight: 700;
  transition: background .15s, color .15s;
}

.fleet-action:hover {
  background: var(--z-ocean);
  color: #fff;
}

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.pricing-tab {
  padding: 10px 22px;
  border-radius: 999px;
  border: 2px solid var(--z-border);
  font-size: 14px;
  font-weight: 700;
  color: var(--z-muted);
  cursor: pointer;
  background: var(--z-bg);
  transition: all .15s;
}

.pricing-tab:hover,
.pricing-tab.is-active {
  background: var(--z-ocean);
  border-color: var(--z-ocean);
  color: #fff;
}

.pricing-table-wrap {
  overflow-x: auto;
  border-radius: var(--z-radius);
  border: 1.5px solid var(--z-border);
  box-shadow: var(--z-shadow-sm);
}

.pricing-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}

.pricing-table-wrap thead {
  background: var(--z-navy);
  color: #fff;
}

.pricing-table-wrap th {
  padding: 14px 18px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-table-wrap td {
  padding: 13px 18px;
  border-bottom: 1px solid var(--z-border);
}

.pricing-table-wrap tbody tr:last-child td { border-bottom: none; }

.pricing-table-wrap tbody tr:nth-child(odd) { background: var(--z-surface); }

.pricing-table-wrap tbody tr:hover { background: var(--z-teal-lt); }

.price-cell {
  font-family: var(--z-font-head);
  font-weight: 700;
  color: var(--z-ocean);
}

/* ============================================================
   WHY ZAMA SECTION
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.why-card {
  min-width: 0;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--z-radius);
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: background .2s;
}

.why-card:hover {
  background: rgba(255,255,255,.12);
}

.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--z-radius-sm);
  background: var(--z-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--z-dark);
}

.why-title {
  font-family: var(--z-font-head);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.why-text {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  flex: 1;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  background: var(--z-bg);
  border: 1.5px solid var(--z-border);
  border-radius: var(--z-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--z-gold);
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: var(--z-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}

.testimonial-text::before { content: '\201C'; }
.testimonial-text::after  { content: '\201D'; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--z-teal-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--z-font-head);
  font-weight: 800;
  color: var(--z-ocean);
  flex-shrink: 0;
  font-size: 16px;
}

.testimonial-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--z-dark);
}

.testimonial-origin {
  font-size: 13px;
  color: var(--z-muted);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1.5px solid var(--z-border);
  border-radius: var(--z-radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--z-bg);
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--z-font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--z-dark);
  cursor: pointer;
  text-align: left;
  transition: background .15s;
}

.faq-question:hover { background: var(--z-surface); }

.faq-question.is-open { background: var(--z-teal-lt); color: var(--z-ocean); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform .25s var(--z-ease);
  color: var(--z-muted);
}

.faq-question.is-open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--z-muted);
}

.faq-answer.is-open { display: block; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--z-ocean) 0%, #004d68 60%, var(--z-navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: var(--z-font-head);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 18px;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  max-width: 540px;
  margin-inline: auto;
}

.cta-banner-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  transition: transform .18s var(--z-ease), box-shadow .18s;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--z-dark);
  color: rgba(255,255,255,.7);
  padding-top: 64px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand .brand { color: #fff; margin-bottom: 16px; }

.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
  margin-bottom: 20px;
  max-width: 260px;
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition: opacity .15s;
}

.footer-wa:hover { opacity: .88; }

.footer-col-title {
  font-family: var(--z-font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .15s;
}

.footer-links a:hover { color: var(--z-teal); }

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--z-radius-sm);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   WHATSAPP FAB
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s var(--z-ease);
  color: #fff;
  font-size: 26px;
  text-decoration: none;
}

.wa-fab:hover { transform: scale(1.1); }

.wa-fab::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: .5;
  animation: wa-pulse 2.5s infinite;
}

@keyframes wa-pulse {
  0%   { transform: scale(1); opacity: .5; }
  70%  { transform: scale(1.3); opacity: 0; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s var(--z-ease), transform .55s var(--z-ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .45s var(--z-ease), transform .45s var(--z-ease);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}

.reveal-stagger.is-visible > *:nth-child(1) { opacity:1; transform:none; transition-delay: .05s; }
.reveal-stagger.is-visible > *:nth-child(2) { opacity:1; transform:none; transition-delay: .12s; }
.reveal-stagger.is-visible > *:nth-child(3) { opacity:1; transform:none; transition-delay: .19s; }
.reveal-stagger.is-visible > *:nth-child(4) { opacity:1; transform:none; transition-delay: .26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .40s; }

/* ============================================================
   BOOKING FORM (from zama-booking plugin)
   ============================================================ */
.booking-form-wrap {
  background: var(--z-bg);
  border-radius: var(--z-radius-lg);
  overflow: visible;
  padding: 32px;
}

/* Fallback panel */
.booking-fallback {
  background: var(--z-gold-lt);
  border: 1.5px solid #fde68a;
  border-radius: var(--z-radius);
  padding: 24px;
  text-align: center;
}

.booking-fallback h3 {
  font-family: var(--z-font-head);
  margin-bottom: 10px;
  color: var(--z-dark);
}

.booking-fallback p {
  color: var(--z-muted);
  margin-bottom: 16px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-card { max-width: 540px; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .hero { min-height: auto; }
  .hero-content { padding: 80px 0 60px; }
  .hero-stats { gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .trust-strip-inner { flex-direction: column; gap: 16px; }
}

@media (max-width: 640px) {
  .site-nav { display: none; flex-direction: column; }
  .site-nav.is-open {
    display: flex;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--z-border);
    padding: 12px 24px;
    box-shadow: var(--z-shadow);
    z-index: 99;
  }
  .nav-toggle { display: flex; }
  .header-book-btn { display: none; }
  .hero h1 { font-size: 32px; }
  .hero-lead { font-size: 16px; }
}

/* ── Hero CTA card (replaces embedded compact form) ─────────────── */
.hero-book-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  text-align: center;
}
.hero-book-desc {
  font-size: 15px;
  color: var(--z-text-muted);
  margin: 0;
}
.hero-book-note {
  font-size: 12px;
  color: var(--z-text-muted);
  margin: 0;
  opacity: .8;
}

/* ============================================================
   STATIC PAGES (.zp-*)  About / FAQ / Privacy / Terms / Cancellation / Contact
   ============================================================ */
.zp-main { background: var(--z-sand, #fafaf7); min-height: 60vh; }
.zp-hero {
  background: linear-gradient(135deg, #0e7490 0%, #155e75 60%, #0e3b47 100%);
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.zp-hero::after {
  content: ""; position: absolute; left:0; right:0; bottom:0; height:4px;
  background: linear-gradient(90deg, #f97316 0%, #fb923c 100%);
}
.zp-hero .z-shell { max-width: 900px; }
.zp-eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-weight: 700;
  font-size: 12px; color: #fcd34d; margin: 0 0 12px;
}
.zp-title { font-size: clamp(28px, 4vw, 44px); margin: 0 0 12px; line-height: 1.15; font-weight: 800; }
.zp-subtitle { font-size: 17px; opacity: .92; max-width: 720px; margin: 0 auto; line-height: 1.5; }
.zp-content { max-width: 860px; padding: 48px 20px 80px; }
.zp-content p { line-height: 1.65; color: #1f2937; }
.zp-meta { color: #6b7280; font-size: 13px; margin-bottom: 24px; }
.zp-section { margin: 36px 0; padding: 28px; background: #fff; border-radius: 14px; box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 1px 2px rgba(0,0,0,.03); }
.zp-section-title { font-size: 22px; font-weight: 700; color: #0e7490; margin: 0 0 14px; line-height: 1.3; }
.zp-section-body > *:first-child { margin-top: 0; }
.zp-section-body > *:last-child { margin-bottom: 0; }
.zp-list-check, .zp-list-plain, .zp-list-ordered { padding-left: 0; margin: 12px 0; }
.zp-list-check li, .zp-list-plain li { list-style: none; position: relative; padding: 6px 0 6px 28px; line-height: 1.55; }
.zp-list-check li::before {
  content: ""; position: absolute; left: 4px; top: 12px; width: 14px; height: 14px;
  background: #f97316; border-radius: 4px;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}
.zp-list-plain li::before { content: "•"; position: absolute; left: 8px; top: 6px; color: #0e7490; font-weight: 700; }
.zp-list-ordered { list-style: decimal inside; padding-left: 6px; }
.zp-list-ordered li { padding: 6px 0; line-height: 1.55; }

.zp-cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 20px; }

.zp-disclaimer {
  background: #fff7ed;
  border-left: 4px solid #f97316;
  padding: 14px 18px;
  border-radius: 8px;
  margin: 0 0 24px;
  color: #7c2d12;
  font-size: 14px;
  line-height: 1.55;
}
.zp-alert { padding: 14px 18px; border-radius: 8px; margin-bottom: 18px; font-weight: 600; }
.zp-alert-success { background: #ecfdf5; color: #065f46; border-left: 4px solid #10b981; }
.zp-alert-error   { background: #fef2f2; color: #991b1b; border-left: 4px solid #dc2626; }

.zp-faq-list { display: flex; flex-direction: column; gap: 10px; }
.zp-faq-item { border: 1px solid #e5e7eb; border-radius: 12px; padding: 14px 18px; background: #fff; transition: border-color .2s, box-shadow .2s; }
.zp-faq-item[open] { border-color: #0e7490; box-shadow: 0 4px 14px rgba(14,116,144,.12); }
.zp-faq-item summary { cursor: pointer; font-weight: 600; color: #0f172a; list-style: none; padding: 6px 28px 6px 0; position: relative; outline: none; }
.zp-faq-item summary::-webkit-details-marker { display: none; }
.zp-faq-item summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-weight: 400; font-size: 22px; color: #0e7490; transition: transform .2s;
}
.zp-faq-item[open] summary::after { content: "−"; }
.zp-faq-answer { padding: 8px 0 4px; color: #374151; line-height: 1.6; }

.zp-faq-group-title { font-size: 18px; color: #0e7490; font-weight: 700; margin: 28px 0 12px; text-transform: uppercase; letter-spacing: .04em; }

.zp-table { width: 100%; border-collapse: collapse; margin: 12px 0; font-size: 15px; }
.zp-table th, .zp-table td { text-align: left; padding: 12px 14px; border-bottom: 1px solid #e5e7eb; }
.zp-table th { background: #f3f4f6; color: #374151; font-weight: 700; }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 22px; border-radius: 999px; font-weight: 600;
  border: 2px solid #0e7490; color: #0e7490; background: transparent;
  text-decoration: none; transition: background .2s, color .2s;
}
.btn-ghost:hover { background: #0e7490; color: #fff; }

/* Contact page */
.zp-contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 36px; align-items: start; }
@media (max-width: 820px) { .zp-contact-grid { grid-template-columns: 1fr; } }
.zp-channel-card {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px; background: #fff; border: 1px solid #e5e7eb; border-radius: 12px;
  text-decoration: none; color: inherit; margin-bottom: 12px;
  transition: border-color .2s, transform .15s, box-shadow .2s;
}
.zp-channel-card:hover { border-color: #0e7490; transform: translateY(-1px); box-shadow: 0 4px 14px rgba(14,116,144,.10); }
.zp-channel-icon { width: 44px; height: 44px; border-radius: 10px; background: #ecfeff; color: #0e7490; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.zp-channel-wa .zp-channel-icon { background: #dcfce7; color: #16a34a; }
.zp-channel-title { font-weight: 600; margin: 0 0 2px; color: #0f172a; }
.zp-channel-meta { margin: 0; font-size: 13px; color: #6b7280; }

.zp-form { display: flex; flex-direction: column; gap: 14px; background: #fff; padding: 24px; border-radius: 14px; box-shadow: 0 1px 3px rgba(0,0,0,.04); }
.zp-form label { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 600; color: #374151; }
.zp-form input, .zp-form textarea { padding: 11px 14px; border: 1px solid #d1d5db; border-radius: 8px; font-size: 15px; font-family: inherit; transition: border-color .2s, box-shadow .2s; }
.zp-form input:focus, .zp-form textarea:focus { outline: none; border-color: #0e7490; box-shadow: 0 0 0 3px rgba(14,116,144,.15); }
.zp-form-hint { font-size: 13px; color: #6b7280; margin: 4px 0 0; }

/* Regulatory sub-heading inside legal pages */
.zp-subheading { font-size: 17px; margin: 18px 0 8px; color: #0e7490; font-weight: 700; }

/* Footer regulatory micro-notice */
.footer-regnotice { max-width: 100%; margin-top: 10px; padding-top: 10px; border-top: 1px dashed rgba(255,255,255,.12); font-size: 11.5px; line-height: 1.5; opacity: .72; }

/* ============================================================
   FOOTER PAYMENT ICONS & SSL BADGE
   ============================================================ */
.footer-payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.footer-payment-icons svg {
  opacity: .75;
  transition: opacity .15s;
}
.footer-payment-icons svg:hover { opacity: 1; }

.footer-ssl-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px;
  padding: 3px 7px;
  letter-spacing: .04em;
}

/* ============================================================
   MOBILE STICKY BOOK NOW CTA BAR
   ============================================================ */
.mobile-cta-bar {
  display: none; /* hidden by default on desktop */
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 190;
    gap: 0;
    box-shadow: 0 -2px 16px rgba(0,0,0,.18);
  }

  .mobile-cta-book {
    flex: 1;
    background: var(--z-coral, #f97316);
    color: #fff;
    text-align: center;
    padding: 15px 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: var(--z-font-head);
    text-decoration: none;
    transition: background .15s;
  }
  .mobile-cta-book:hover { background: #ea6c0d; }

  .mobile-cta-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    background: #25D366;
    color: #fff;
    padding: 15px 18px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s;
    white-space: nowrap;
  }
  .mobile-cta-wa:hover { background: #1da851; }

  /* Push WA FAB up so it doesn't overlap the bar */
  .wa-fab { bottom: 82px; }

  /* Add bottom padding to body so content isn't hidden behind bar */
  body { padding-bottom: 56px; }
}
