/*!
Theme Name:       RockLimo
Theme URI:        https://rocklimo.bm
Author:           DevelopMyWeb
Author URI:       https://developmyweb.com
Description:      Custom theme for Piece of the Rock — Bermuda's family-run taxi and limousine service. Ocean-blue and coral design with compact hero, service-first layout, and custom post types for hotels and testimonials.
Version:          1.0.0
Requires at least: 6.0
Requires PHP:     7.4
License:          Proprietary
Text Domain:      rocklimo
*/


/* =========================================================
   CSS CUSTOM PROPERTIES
   ========================================================= */
:root {
  --ocean:       #1B6CA8;
  --ocean-deep:  #14537F;
  --ocean-light: #2A8FD4;
  --coral:       #E8687A;
  --coral-dark:  #D4566A;
  --coral-light: #F2919D;
  --coral-btn:   #BE3E55; /* WCAG AA for white text (4.9:1); used only for solid CTA buttons */
  --coral-btn-hover: #A6334A;
  --sand:        #F7F0E8;
  --sand-dark:   #EDE3D5;
  --white:       #FFFFFF;
  --charcoal:    #2C3344;
  --slate:       #5A6275;
  --mist:        #F4F6F9;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Lato', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1200px;
  --section-pad: 100px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}


/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.section-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--coral-btn);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--slate);
  max-width: 560px;
  line-height: 1.75;
}


/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.btn i { line-height: 1; font-size: 14px; }

.btn-coral {
  background: var(--coral-btn);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(190,62,85,0.3);
}
.btn-coral:hover {
  background: var(--coral-btn-hover);
  box-shadow: 0 6px 28px rgba(190,62,85,0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
}

.btn-ocean {
  background: var(--ocean);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27,108,168,0.3);
}
.btn-ocean:hover {
  background: var(--ocean-deep);
  box-shadow: 0 6px 28px rgba(27,108,168,0.4);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--ocean);
  border: 2px solid var(--ocean);
}
.btn-ghost:hover {
  background: var(--ocean);
  color: var(--white);
}


/* =========================================================
   NAVIGATION
   Default = subpage style (solid blue, compact, centered logo).
   .site-header--home = overrides for homepage initial state
   (transparent bg, tall padding, large logo). Scrolled state
   on homepage reverts to default subpage style.
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(27,108,168, 0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* Left — phone number */
.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
  min-width: 180px;
  min-height: 40px;
}
.nav-phone:hover { color: var(--white); }

.nav-phone i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--coral-light);
  flex-shrink: 0;
}

/* Center — logo (absolute, centered) */
.nav-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.nav-logo img {
  width: 66px;
  height: auto;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
  transition: width 0.3s ease;
}

/* Right — nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 40px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s ease;
  position: relative;
  letter-spacing: 0.3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-links a.active,
.nav-links a.current-menu-item,
.nav-links a.current_page_item {
  color: var(--coral-light);
}
.nav-links a.active::after,
.nav-links a.current-menu-item::after,
.nav-links a.current_page_item::after {
  width: 100%;
  background: var(--coral-light);
}

.nav-links .nav-cta {
  font-size: 13px;
  padding: 9px 22px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover {
  background: var(--coral-dark);
  transform: translateY(-1px);
  color: var(--white);
}
/* Pay Online button on its own page — keep text readable, show pressed state */
.nav-links .nav-cta.active,
.nav-links a.nav-cta.active {
  color: var(--white);
  background: var(--coral-dark);
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.18);
}
.nav-links .nav-cta.active::after { display: none; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: all 0.3s ease;
}

/* --- Homepage nav: transparent initial, tall padding, large logo --- */
.site-header--home {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header--home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.08) 60%, transparent 100%);
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.site-header--home .nav-inner {
  align-items: center;
  /* Padding tuned so the vertical midline of phone + nav links
     sits at the centered-logo's midpoint (logo top:14 + 140/2 = 84). */
  padding: 68px 40px 54px;
}

.site-header--home .nav-logo {
  top: 14px;
  transform: translateX(-50%);
}

.site-header--home .nav-logo img {
  width: 140px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

/* Homepage scrolled state = collapses back to default subpage style */
.site-header--home.scrolled {
  background: rgba(27,108,168, 0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.15);
  backdrop-filter: blur(10px);
}

.site-header--home.scrolled::before { opacity: 0; }

.site-header--home.scrolled .nav-inner {
  align-items: center;
  padding: 18px 40px;
}

.site-header--home.scrolled .nav-logo {
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.site-header--home.scrolled .nav-logo img {
  width: 66px;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.15));
}


/* =========================================================
   HERO (homepage — compact, services visible above fold)
   ========================================================= */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 83, 127, 0.65) 0%,
    rgba(27, 108, 168, 0.40) 40%,
    rgba(27, 108, 168, 0.25) 70%,
    rgba(20, 83, 127, 0.50) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 160px 0 60px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5.5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.3);
}

.hero h1 em {
  font-style: italic;
  color: var(--coral-light);
}

.hero-text {
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
  max-width: 500px;
  margin-bottom: 32px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6), 0 3px 10px rgba(0,0,0,0.35);
}


/* =========================================================
   PAGE HERO (subpage banner)
   ========================================================= */
.page-hero {
  position: relative;
  padding: 200px 0 80px;
  overflow: hidden;
}

.page-hero--compact { padding: 180px 0 64px; }
.page-hero--tight   { padding: 190px 0 64px; }

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20,83,127,0.82) 0%,
    rgba(27,108,168,0.65) 50%,
    rgba(20,83,127,0.75) 100%
  );
}

.page-hero--legal .page-hero-bg::after {
  background: linear-gradient(
    160deg,
    rgba(20,83,127,0.85) 0%,
    rgba(27,108,168,0.72) 50%,
    rgba(20,83,127,0.80) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
  text-shadow: 0 1px 3px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.25);
}

.page-hero--compact h1 { font-size: clamp(30px, 4.2vw, 46px); margin-bottom: 14px; }
.page-hero--legal h1   { font-size: clamp(34px, 4.6vw, 50px); margin-bottom: 12px; }

.page-hero h1 em {
  font-style: italic;
  color: var(--coral-light);
}

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.page-hero--compact p { font-size: 17px; max-width: 620px; line-height: 1.65; }

.legal-meta {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--coral-light);
  padding: 6px 16px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}


/* =========================================================
   FLEET STRIP (homepage)
   ========================================================= */
.fleet-strip {
  background: var(--ocean-deep);
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.fleet-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.fleet-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FFD4DB; /* softened coral for WCAG AA against ocean-deep bg */
  white-space: nowrap;
}

.fleet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.92);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.fleet-item i {
  font-size: 16px;
  color: var(--coral-light);
  width: 20px;
  text-align: center;
}

.fleet-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}


/* =========================================================
   SERVICES (homepage)
   ========================================================= */
.services {
  padding: 72px 0 80px;
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 52px;
}

.services-header .section-subtitle { margin: 0 auto; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--mist);
  border-radius: 20px;
  padding: 44px 32px 36px;
  text-align: center;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  background: var(--white);
}

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

.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 26px;
}

.service-card:nth-child(1) .service-icon {
  background: rgba(27,108,168,0.1);
  color: var(--ocean);
}
.service-card:nth-child(2) .service-icon {
  background: rgba(232,104,122,0.1);
  color: var(--coral);
}
.service-card:nth-child(3) .service-icon {
  background: rgba(42,143,212,0.1);
  color: var(--ocean-light);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--charcoal);
}

.service-card p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ocean);
  transition: gap 0.25s ease, color 0.25s ease;
}

.service-link:hover {
  gap: 12px;
  color: var(--coral);
}


/* =========================================================
   WHY US (homepage)
   ========================================================= */
.why-us {
  padding: 72px 0;
  background: var(--sand);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.why-item { padding: 20px; }

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 20px;
  color: var(--ocean);
  transition: background 0.3s ease, color 0.3s ease;
}

.why-item:hover .why-icon {
  background: var(--ocean);
  color: var(--white);
}

.why-item h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.why-item p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
}


/* =========================================================
   AWARDS (homepage)
   ========================================================= */
.awards {
  padding: var(--section-pad) 0;
  background: var(--ocean);
  position: relative;
  overflow: hidden;
}

.awards-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.awards-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.awards-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(20, 83, 127, 0.88) 0%,
    rgba(27, 108, 168, 0.82) 50%,
    rgba(20, 83, 127, 0.88) 100%
  );
}

.awards-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}

.awards-text { flex: 1; }
.awards-text .section-label { color: var(--coral-light); }
.awards-text .section-title { color: var(--white); }

.awards-text p {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  max-width: 480px;
}

.awards-badges {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}

.award-badge {
  background: var(--white);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  width: 200px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.award-badge:hover { transform: translateY(-4px); }

.award-badge-logo {
  display: block;
  margin: 0 auto 6px;
  width: 45px;
  height: auto;
  opacity: 0.85;
}

.award-badge-year {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
  color: var(--ocean);
  line-height: 1;
  margin-bottom: 8px;
}

.award-badge-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.award-badge-cat {
  font-size: 12px;
  color: var(--slate);
  line-height: 1.4;
}

.award-badge-winner {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--coral-btn);
  letter-spacing: 0.5px;
  padding: 4px 14px;
  background: rgba(232,104,122,0.1);
  border-radius: 20px;
}


/* =========================================================
   TEAM TEASER (homepage)
   ========================================================= */
.team-teaser {
  padding: var(--section-pad) 0;
  background: var(--sand);
}

.team-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.team-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.team-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  aspect-ratio: 3/4;
  background: var(--white);
  position: relative;
}

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

.team-photo--sr img { transform: translateY(8%); }

.team-photo-name {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 16px 14px;
  background: linear-gradient(transparent, rgba(44,51,68,0.7));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.team-photo-name span {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

.team-text .section-subtitle { margin-bottom: 24px; }

.team-text .highlight {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  font-style: italic;
  color: var(--ocean);
  margin-bottom: 20px;
  line-height: 1.5;
}

.team-text p {
  font-size: 16px;
  color: var(--slate);
  margin-bottom: 16px;
  line-height: 1.75;
}

.team-cta { margin-top: 32px; }


/* =========================================================
   TESTIMONIALS (homepage)
   ========================================================= */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonial-slider {
  max-width: 960px;
  margin: 0 auto;
}

.testimonial-page {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.testimonial-page.active {
  display: grid;
}

.testimonial-card {
  background: var(--mist);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--slate);
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  flex: 1;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
}

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

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ocean);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 15px;
  color: var(--charcoal);
}

.testimonial-detail {
  font-size: 13px;
  color: var(--slate);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #F0B254;
  font-size: 13px;
  flex-shrink: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 32px;
}

/* 44x44 hit area (WCAG touch target) wrapping a 10px visible dot.
   Previous version used `margin: 0 -12px` to overlap hit areas so the
   visible dots sat closer together — Chrome flagged this as a failing
   touch-target (overlapping targets cause mis-taps). Now uses a small
   positive gap on the wrapper instead; dots sit ~16px apart visually,
   hit areas are fully separated. */
.testimonial-dot {
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.testimonial-dot::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sand-dark);
  transition: background 0.3s ease, transform 0.3s ease;
}

.testimonial-dot.active::before {
  background: var(--coral);
  transform: scale(1.2);
}

.testimonial-dot:hover:not(.active)::before { background: var(--coral-light); }
.testimonial-dot:focus-visible { outline: 2px solid var(--coral); outline-offset: 2px; border-radius: 50%; }


/* =========================================================
   CTA SECTION (shared — homepage + about)
   ========================================================= */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--ocean-deep) 0%,
    var(--ocean) 50%,
    var(--ocean-light) 100%
  );
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::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-content {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.cta-section p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  margin-top: 28px;
  transition: color 0.2s ease;
}

.cta-phone:hover { color: var(--white); }

.cta-phone i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}


/* =========================================================
   ABOUT INTRO (about page)
   ========================================================= */
.about-intro {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.about-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-intro-photo { position: relative; }

.about-intro-photo .photo-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  /* Matches the 430×371 source image so the vehicle isn't cropped. */
  aspect-ratio: 430 / 371;
  background: var(--sand);
}

.about-intro-photo .photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-intro-photo::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  width: 80px;
  height: 80px;
  border-top: 4px solid var(--coral);
  border-left: 4px solid var(--coral);
  border-radius: 24px 0 0 0;
  z-index: 1;
}

.about-intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.about-intro-text p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-intro-text .lead {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  color: var(--ocean);
  line-height: 1.55;
  margin-bottom: 24px;
}


/* =========================================================
   TEAM SECTION (about page)
   ========================================================= */
.team-section {
  padding: var(--section-pad) 0;
  background: var(--sand);
}

.team-heading {
  text-align: center;
  margin-bottom: 64px;
}

.team-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 600;
  color: var(--charcoal);
}

.team-profiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 56px rgba(0,0,0,0.1);
}

.team-card-photo {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--white);
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-photo img { transform: scale(1.03); }

/* Sam Sr.'s portrait sits higher in its source frame than Sam Jr.'s — scale
   slightly, anchored to the bottom of the frame so his shirt still reaches
   the bottom edge and matches Sam Jr.'s vertical extent. */
.team-card-photo--sr img {
  transform: scale(0.94);
  transform-origin: center bottom;
}
.team-card:hover .team-card-photo--sr img {
  transform: scale(0.97);
}

.team-card-body { padding: 32px; }

.team-card-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 13px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.team-card-bio {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.75;
}

.team-card-bio p { margin-bottom: 12px; }
.team-card-bio p:last-child { margin-bottom: 0; }


/* =========================================================
   VALUES (about page)
   ========================================================= */
.values-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.values-heading {
  text-align: center;
  margin-bottom: 56px;
}

.values-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--charcoal);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.value-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: 20px;
  background: var(--mist);
  transition: background 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease;
}

.value-card:hover {
  background: var(--white);
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.08);
}

.value-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  background: rgba(27,108,168,0.1);
  color: var(--ocean);
  transition: background 0.3s, color 0.3s;
}

.value-card:hover .value-icon {
  background: var(--ocean);
  color: var(--white);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}


/* =========================================================
   PORTAL NOTICE (hotels page "Hotel Staff Only")
   Also used for contact-note on contact page.
   ========================================================= */
.portal-notice { padding: 56px 0 0; }

.portal-notice-card {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(232,104,122,0.09) 0%, rgba(232,104,122,0.04) 100%);
  border: 1px solid rgba(232,104,122,0.25);
  border-left: 5px solid var(--coral);
  border-radius: 16px;
  padding: 28px 36px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: 0 6px 24px rgba(232,104,122,0.08);
}

.portal-notice-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--coral);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 4px 14px rgba(232,104,122,0.35);
}

.portal-notice-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 4px;
  line-height: 1.25;
}

.portal-notice-text p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
  margin: 0;
}

.portal-notice-cta { white-space: nowrap; }


/* =========================================================
   HOTEL CARDS (hotels page)
   ========================================================= */
.hotels-section { padding: 48px 0 100px; }

.hotel-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
}

.hotel-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.06);
  display: grid;
  grid-template-columns: 320px 1fr;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.hotel-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.hotel-card-visual {
  background: var(--ocean);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hotel-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.6s ease;
}

.hotel-card:hover .hotel-card-photo { transform: scale(1.06); }

.hotel-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(20, 83, 127, 0.88) 0%,
    rgba(27, 108, 168, 0.75) 50%,
    rgba(20, 83, 127, 0.90) 100%
  );
  z-index: 1;
}

.hotel-card-visual > *:not(.hotel-card-photo) {
  position: relative;
  z-index: 2;
}

.hotel-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 20px;
}

.hotel-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
}

.hotel-card-actions {
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.hotel-action-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: var(--mist);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  cursor: pointer;
}

.hotel-action-btn:hover {
  background: var(--sand);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.hotel-action-btn > i:first-child {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* Icon colour grouped by service type:
   airport (arrivals/departure) = coral,
   flexible (taxi/hourly) = ocean */
.hotel-action-btn .icon-arrivals,
.hotel-action-btn .icon-departure {
  background: rgba(232,104,122,0.1);
  color: var(--coral);
}

.hotel-action-btn .icon-taxi,
.hotel-action-btn .icon-hourly {
  background: rgba(27,108,168,0.1);
  color: var(--ocean);
}

.hotel-action-btn .arrow {
  margin-left: auto;
  font-size: 13px;
  color: var(--slate);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: translateX(-4px);
  background: transparent;
  width: auto;
  height: auto;
}

.hotel-action-btn:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}


/* =========================================================
   NOT-A-HOTEL CTA (hotels page)
   ========================================================= */
.not-hotel-cta { padding: 0 0 100px; }

.not-hotel-card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--sand);
  border-radius: 20px;
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.not-hotel-text h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}

.not-hotel-text p {
  font-size: 15px;
  color: var(--slate);
}


/* =========================================================
   BOOKING SELECTOR (booking.html)
   ========================================================= */
.booking-options {
  padding: 64px 0 var(--section-pad);
  background: var(--white);
}

.booking-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 820px;
  margin: 0 auto;
}

.booking-card {
  background: var(--mist);
  border-radius: 20px;
  padding: 40px 32px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: inherit;
  cursor: pointer;
}

.booking-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.booking-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px rgba(0,0,0,0.08);
  background: var(--white);
}

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

.booking-card:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
}

.booking-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  margin-bottom: 22px;
}

.booking-card--arrival .booking-icon,
.booking-card--departure .booking-icon {
  background: rgba(232,104,122,0.1);
  color: var(--coral);
}
.booking-card--hourly .booking-icon,
.booking-card--transfer .booking-icon {
  background: rgba(27,108,168,0.1);
  color: var(--ocean);
}

.booking-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 16px;
}

.booking-card p {
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.65;
  margin-bottom: 20px;
}

.booking-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--ocean);
  transition: gap 0.25s ease, color 0.25s ease;
  margin-top: auto;
}

.booking-card:hover .booking-card-cta {
  gap: 14px;
  color: var(--coral);
}

.booking-card-cta i { font-size: 12px; }


/* =========================================================
   HOW IT WORKS (booking selector)
   ========================================================= */
.how-it-works {
  padding: var(--section-pad) 0;
  background: var(--sand);
  position: relative;
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}

.how-header h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}

.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16.66%;
  right: 16.66%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--sand-dark) 0,
    var(--sand-dark) 6px,
    transparent 6px,
    transparent 12px
  );
  z-index: 0;
}

.how-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.how-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  color: var(--ocean);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 6px 24px rgba(27,108,168,0.12);
  border: 2px solid var(--sand-dark);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.how-step:hover .how-step-num {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
  transform: translateY(-2px);
}

.how-step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
}

.how-step p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}


/* =========================================================
   BOOKING SHORTCODE WRAPPER (booking-form template)
   ========================================================= */
.booking-shortcode {
  padding: 64px 0 96px;
  background: var(--white);
}


/* =========================================================
   PREARRANGED TRANSFER PRICES (ocean-themed info card +
   pill-style airport-taxi redirect note below)
   ========================================================= */
.booking-prices { padding: 56px 0 0; }

.booking-prices-card {
  max-width: 580px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(27,108,168,0.08) 0%, rgba(27,108,168,0.03) 100%);
  border: 1px solid rgba(27,108,168,0.18);
  border-radius: 18px;
  padding: 30px 36px 34px;
  text-align: center;
}

.booking-prices-label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--coral-btn);
  margin-bottom: 20px;
}

.booking-prices-lines {
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.booking-prices-line {
  flex: 1 1 0;
  max-width: 240px;
  padding: 4px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.booking-prices-line + .booking-prices-line {
  border-left: 1px solid rgba(27,108,168,0.18);
}

.booking-prices-amount {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 600;
  color: var(--ocean);
  line-height: 1;
  letter-spacing: -0.5px;
}

.booking-prices-dollar {
  font-size: 28px;
  font-weight: 500;
  color: var(--ocean-light);
  vertical-align: 6px;
  margin-right: 2px;
}

.booking-prices-desc {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.45;
  max-width: 180px;
}

.booking-prices-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 18px auto 0;
  padding: 10px 22px;
  border: 1px solid var(--sand-dark);
  background: var(--white);
  border-radius: 999px;
  font-size: 13px;
  color: var(--slate);
  line-height: 1;
  transition: border-color 0.25s ease, color 0.25s ease, gap 0.25s ease;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.booking-prices-note span { font-weight: 500; }

.booking-prices-note i {
  font-size: 11px;
  color: var(--ocean);
  transition: color 0.25s ease, transform 0.25s ease;
}

.booking-prices-note:hover {
  border-color: var(--ocean);
  color: var(--charcoal);
  gap: 14px;
}

.booking-prices-note:hover i { color: var(--coral-btn); }

@media (max-width: 640px) {
  .booking-prices-card { padding: 26px 20px 28px; border-radius: 14px; }
  .booking-prices-lines { flex-direction: column; align-items: center; gap: 20px; }
  .booking-prices-line { padding: 0; max-width: 100%; }
  .booking-prices-line + .booking-prices-line {
    border-left: none;
    border-top: 1px solid rgba(27,108,168,0.18);
    padding-top: 20px;
    width: 60%;
  }
  .booking-prices-amount { font-size: 38px; }
  .booking-prices-dollar { font-size: 24px; vertical-align: 5px; }
  .booking-prices-note {
    padding: 10px 18px;
    font-size: 12.5px;
    text-align: center;
  }
}


/* =========================================================
   SHORTCODE PLACEHOLDER (dev-only, shown when shortcode
   is missing — used on booking form + contact form)
   ========================================================= */
.shortcode-placeholder {
  border: 2px dashed var(--sand-dark);
  border-radius: 14px;
  padding: 56px 36px;
  text-align: center;
  background: var(--mist);
  color: var(--slate);
}

.shortcode-placeholder--wide {
  max-width: 880px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 72px 40px;
}

.shortcode-placeholder i {
  font-size: 30px;
  color: var(--coral);
  margin-bottom: 14px;
  display: block;
}

.shortcode-placeholder--wide i {
  font-size: 32px;
  margin-bottom: 16px;
}

.shortcode-placeholder strong {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--charcoal);
  display: block;
  margin-bottom: 8px;
}

.shortcode-placeholder--wide strong {
  font-size: 22px;
  margin-bottom: 10px;
}

.shortcode-placeholder p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 440px;
  margin: 0 auto 16px;
}

.shortcode-placeholder--wide p { max-width: 520px; }

.shortcode-placeholder code {
  display: inline-block;
  padding: 8px 14px;
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 6px;
  font-family: 'Menlo', 'Consolas', monospace;
  font-size: 13px;
  color: var(--ocean);
}

.shortcode-placeholder--wide code { margin-top: 18px; }


/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-main {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  max-width: 1080px;
  margin: 0 auto;
  align-items: start;
}

.contact-form-heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.2;
}

.contact-form-intro {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Generic form styling scoped to .contact-form — inherited by Gravity Forms
   output. Selectors are written with GF-aware specificity (`.gform_wrapper`
   prefix) to override GF 2.5+ "Orbital" theme rules without needing !important.
   Disabling GF's default stylesheet in plugin settings is still recommended
   for the cleanest result. */

/* Inputs & textarea ------------------------------------------------- */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="url"],
.contact-form input[type="number"],
.contact-form textarea,
.contact-form select,
.contact-form .gform_wrapper input[type="text"],
.contact-form .gform_wrapper input[type="email"],
.contact-form .gform_wrapper input[type="tel"],
.contact-form .gform_wrapper input[type="url"],
.contact-form .gform_wrapper input[type="number"],
.contact-form .gform_wrapper textarea,
.contact-form .gform_wrapper select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--sand-dark);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
  color: var(--charcoal);
  background: var(--white);
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.contact-form .gform_wrapper input::placeholder,
.contact-form .gform_wrapper textarea::placeholder {
  color: #b8bdc6;
  opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus,
.contact-form .gform_wrapper input:focus,
.contact-form .gform_wrapper textarea:focus,
.contact-form .gform_wrapper select:focus {
  outline: none;
  border-color: var(--ocean);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(27,108,168,0.12);
}

.contact-form textarea,
.contact-form .gform_wrapper textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

/* Labels ------------------------------------------------------------ */
.contact-form label,
.contact-form .gfield_label,
.contact-form .gform_wrapper .gfield_label {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.4px;
  margin: 0 0 8px;
  text-transform: none;
}

.contact-form .gfield_required,
.contact-form .gform_wrapper .gfield_required {
  color: var(--coral);
  margin-left: 3px;
  font-weight: 700;
}

/* Field descriptions / validation messages -------------------------- */
.contact-form .gfield_description,
.contact-form .gform_wrapper .gfield_description {
  font-size: 12px;
  color: var(--slate);
  margin-top: 6px;
  line-height: 1.5;
}

.contact-form .gfield_validation_message,
.contact-form .gform_wrapper .gfield_validation_message,
.contact-form .validation_message {
  font-size: 12px;
  font-weight: 600;
  color: var(--coral-btn);
  margin-top: 6px;
  background: none;
  border: none;
  padding: 0;
}

.contact-form .gfield_error input,
.contact-form .gfield_error textarea,
.contact-form .gfield_error select,
.contact-form .gform_wrapper .gfield_error input,
.contact-form .gform_wrapper .gfield_error textarea,
.contact-form .gform_wrapper .gfield_error select {
  border-color: var(--coral);
  background: #fff8f9;
  box-shadow: 0 0 0 4px rgba(232,104,122,0.1);
}

/* Field spacing ----------------------------------------------------- */
.contact-form .gform_fields,
.contact-form .gform_wrapper .gform_fields {
  display: grid;
  grid-row-gap: 22px;
  row-gap: 22px;
}

.contact-form .gfield,
.contact-form .gform_wrapper .gfield { margin: 0; padding: 0; }

/* CAPTCHA field — drop the "CAPTCHA" label, tighten wrapper --------- */
.contact-form .gfield--type-captcha .gfield_label,
.contact-form .gform_wrapper .gfield--type-captcha .gfield_label { display: none; }

.contact-form .ginput_recaptcha,
.contact-form .gform_wrapper .ginput_recaptcha { margin-top: 4px; }

/* Submit button — coral pill, WCAG-AA coral-btn ---------------------- */
.contact-form .gform_footer,
.contact-form .gform_wrapper .gform_footer {
  padding: 20px 0 0;
  margin: 0;
}

/* Submit button — !important used because GF's Orbital theme styles
   (`.gform_wrapper.gravity-theme .gform_footer input[type="submit"]`) tie
   on specificity (0,4,1) and load after theme CSS, so they win at equal
   specificity. Escalating is the pragmatic fix without wrapping every
   selector in a body-class hack. */
.contact-form button[type="submit"],
.contact-form input[type="submit"],
.contact-form .gform_button,
.contact-form .gform_wrapper .gform_button,
.contact-form .gform_wrapper .gform_footer input[type="submit"],
.contact-form .gform_wrapper .gform_footer button[type="submit"] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  background: var(--coral-btn) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 14px 40px !important;
  border-radius: 50px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1 !important;
  cursor: pointer;
  transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.15s ease;
  box-shadow: 0 4px 20px rgba(190,62,85,0.28) !important;
  letter-spacing: 0.3px;
  text-transform: none !important;
  -webkit-appearance: none;
  appearance: none;
  width: auto !important;
  min-width: 180px;
  height: auto !important;
}

.contact-form button[type="submit"]:hover,
.contact-form input[type="submit"]:hover,
.contact-form .gform_button:hover,
.contact-form .gform_wrapper .gform_button:hover,
.contact-form .gform_wrapper .gform_footer input[type="submit"]:hover,
.contact-form .gform_wrapper .gform_footer button[type="submit"]:hover {
  background: var(--coral-btn-hover) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(190,62,85,0.38) !important;
}

.contact-form button[type="submit"]:focus-visible,
.contact-form input[type="submit"]:focus-visible,
.contact-form .gform_button:focus-visible {
  outline: 3px solid rgba(190,62,85,0.45);
  outline-offset: 3px;
}

/* GF confirmation + validation summary ------------------------------ */
.contact-form .gform_confirmation_message,
.contact-form .gform_wrapper .gform_confirmation_message {
  padding: 18px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(27,108,168,0.06) 0%, rgba(42,143,212,0.03) 100%);
  border: 1px solid rgba(27,108,168,0.18);
  border-left: 4px solid var(--ocean);
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.6;
}

.contact-form .gform_validation_errors,
.contact-form .gform_wrapper .gform_validation_errors {
  padding: 14px 18px;
  margin-bottom: 22px;
  border-radius: 10px;
  background: linear-gradient(135deg, #fff0f2 0%, #ffe4e8 100%);
  border: 1px solid #ffc9d0;
  border-left: 4px solid var(--coral);
  color: #8a1f2f;
  font-size: 14px;
  box-shadow: none;
}

.contact-form .gform_validation_errors > h2,
.contact-form .gform_wrapper .gform_validation_errors > h2 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: #8a1f2f;
  margin: 0 0 4px;
}

.contact-info-card {
  background: var(--mist);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 20px;
}

.contact-info-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 20px;
}

.contact-list { list-style: none; }

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(27,108,168,0.1);
}

.contact-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.contact-list li:last-child { padding-bottom: 0; }

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-icon--phone    { background: rgba(232,104,122,0.12); color: var(--coral); }
.contact-icon--email    { background: rgba(27,108,168,0.1);   color: var(--ocean); }
.contact-icon--location { background: rgba(42,143,212,0.12);  color: var(--ocean-light); }

.contact-list .label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 4px;
}

.contact-list .value {
  color: var(--charcoal);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.contact-list a.value:hover { color: var(--coral); }

/* Personal note card (same pattern as hotels portal notice, smaller) */
.contact-note {
  background: linear-gradient(135deg, rgba(232,104,122,0.09) 0%, rgba(232,104,122,0.04) 100%);
  border: 1px solid rgba(232,104,122,0.22);
  border-left: 4px solid var(--coral);
  border-radius: 14px;
  padding: 22px 26px;
}

.contact-note strong {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.3;
}

.contact-note p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}


/* =========================================================
   LEGAL CONTENT (legal template)
   ========================================================= */
.legal-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-toc {
  background: var(--mist);
  border-radius: 14px;
  padding: 22px 28px;
  margin-bottom: 48px;
}

.legal-toc-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 12px;
}

.legal-toc ol {
  list-style: none;
  counter-reset: toc;
  padding: 0;
  margin: 0;
}

.legal-toc li {
  counter-increment: toc;
  padding: 5px 0;
  font-size: 15px;
}

.legal-toc li::before {
  content: counter(toc) ".";
  color: var(--coral);
  font-weight: 700;
  margin-right: 10px;
}

.legal-toc a {
  color: var(--ocean);
  transition: color 0.2s ease;
}

.legal-toc a:hover { color: var(--coral); }

.legal-content .legal-intro {
  font-size: 18px;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 8px;
  font-weight: 400;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 56px;
  margin-bottom: 20px;
  padding-top: 40px;
  line-height: 1.25;
  border-top: 1px solid var(--sand-dark);
  scroll-margin-top: 120px;
}

.legal-content h2:first-of-type {
  margin-top: 40px;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.legal-content h4 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--charcoal);
  margin-top: 24px;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.legal-content p {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 18px;
}

.legal-content p:last-child { margin-bottom: 0; }

.legal-content strong { color: var(--charcoal); font-weight: 700; }
.legal-content em { font-style: italic; }

.legal-content a {
  color: var(--ocean);
  text-decoration: underline;
  text-decoration-color: var(--coral-light);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.legal-content a:hover {
  color: var(--coral);
  text-decoration-color: var(--coral);
}

.legal-content ul,
.legal-content ol {
  list-style: revert;
  margin: 0 0 24px 28px;
  padding: 0;
}

.legal-content li {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-content li::marker {
  color: var(--coral);
  font-weight: 600;
}

.legal-content li:last-child { margin-bottom: 0; }

.legal-content li > ul,
.legal-content li > ol {
  margin-top: 10px;
  margin-bottom: 4px;
}

.legal-content blockquote {
  border-left: 4px solid var(--coral);
  padding: 6px 0 6px 24px;
  margin: 28px 0;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
}

.legal-content table {
  width: 100%;
  margin: 24px 0;
  border-collapse: collapse;
  font-size: 15px;
  background: var(--white);
  border: 1px solid var(--sand-dark);
  border-radius: 8px;
  overflow: hidden;
}

.legal-content th {
  background: var(--mist);
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  color: var(--charcoal);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 2px solid var(--sand-dark);
}

.legal-content td {
  padding: 14px 16px;
  color: var(--slate);
  border-bottom: 1px solid var(--sand-dark);
  line-height: 1.6;
  vertical-align: top;
}

.legal-content tr:last-child td { border-bottom: none; }

.legal-contact-block {
  margin-top: 64px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(27,108,168,0.07) 0%, rgba(27,108,168,0.02) 100%);
  border-left: 4px solid var(--ocean);
  border-radius: 12px;
}

.legal-contact-block h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--charcoal);
  margin: 0 0 8px;
  padding: 0;
  border: none;
}

.legal-contact-block p {
  font-size: 15px;
  color: var(--slate);
  margin-bottom: 14px;
  line-height: 1.65;
}

.legal-contact-block .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ocean);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: gap 0.25s ease, color 0.25s ease;
}

.legal-contact-block .contact-link:hover {
  color: var(--coral);
  gap: 14px;
}


/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--charcoal);
  padding: 60px 0 0;
  color: rgba(255,255,255,0.85);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

.footer-logo-tagline {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

/* Hidden by default — show when social links are configured in Customizer */
.footer-social {
  display: none;
  gap: 12px;
  margin-top: 24px;
}

.footer-social.has-links { display: flex; }

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  background: var(--coral);
  color: var(--white);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  padding: 8px 0;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-links a:hover {
  color: var(--coral-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.footer-contact-item i {
  color: var(--coral-light);
  margin-top: 3px;
  width: 16px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}

.footer-bottom a {
  color: rgba(255,255,255,0.9);
  transition: color 0.2s ease;
}

.footer-bottom a:hover { color: var(--coral-light); }


/* =========================================================
   404 ERROR PAGE
   Centered recovery content between the subpage hero and the
   closing CTA. Reuses .section-label / .btn-coral / .btn-outline.
   ========================================================= */
.error-404-section {
  padding: var(--section-pad) 0;
  text-align: center;
  background: #fff;
}

.error-404-content {
  max-width: 640px;
  margin: 0 auto;
}

.error-404-content h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.6vw, 42px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--charcoal);
  margin: 0 0 18px;
}

.error-404-content > p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate);
  margin: 0 0 36px;
}

.error-404-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.error-404-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--slate);
}

.error-404-links-label {
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.5px;
}

.error-404-links a {
  color: var(--ocean);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.error-404-links a:hover,
.error-404-links a:focus-visible {
  color: var(--coral-btn);
  border-bottom-color: var(--coral);
}


/* =========================================================
   SCROLL REVEAL — disabled sitewide.
   Previously fade-up on scroll via IntersectionObserver. Removed
   because WP Rocket's "Delay JS Execution" holds main.js until
   first interaction, leaving .reveal elements at opacity:0 on
   page load — blank page until the user moves the mouse. iOS
   Safari had a similar class-change transition-paint bug on
   mobile. Content now renders at full opacity regardless of JS.
   Classes + delay modifiers kept so template markup can stay as-is.
   ========================================================= */
.reveal,
.reveal.visible {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-delay-1,
.reveal-delay-2,
.reveal-delay-3 { transition-delay: 0s; }


/* =========================================================
   RESPONSIVE — LARGE SCREENS (≥1440px)
   ========================================================= */
@media (min-width: 1440px) {
  .nav-links { gap: 40px; }
  .nav-links a { font-size: 16px; }
  .nav-links .nav-cta { font-size: 16px; padding: 10px 28px; }
  .nav-phone { font-size: 16px; }
}


/* =========================================================
   RESPONSIVE — TABLET (≤1024px)
   ========================================================= */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .nav-phone { display: none; }
  .nav-logo { position: static; transform: none; }
  .nav-logo img { width: 48px; }
  .nav-inner {
    justify-content: space-between;
    align-items: center;
    padding: 12px 40px;
  }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 13px; }

  /* Homepage/subpage initial nav on tablet — logo stays larger until scrolled */
  .site-header--home:not(.scrolled) .nav-logo { position: static; transform: none; }
  .site-header--home:not(.scrolled) .nav-logo img { width: 96px; }
  .site-header--home:not(.scrolled) .nav-inner {
    padding: 12px 40px;
  }
  /* Scrolled state on mobile/tablet: override the desktop absolute-centering
     rule, which would otherwise apply transform: translate(-50%,-50%) to a
     statically positioned logo and push it off-center. */
  .site-header--home.scrolled .nav-logo {
    position: static;
    top: auto;
    transform: none;
  }
  .site-header--home.scrolled .nav-logo img { width: 46px; }
  /* Smooth the height shrink so the logo doesn't appear to jump. */
  .nav-inner { transition: padding 0.3s ease; }

  .services-grid { gap: 24px; }
  .awards-inner { gap: 48px; }
  .team-inner { gap: 48px; }
  .about-intro-inner { gap: 48px; }
  .booking-grid { gap: 24px; }
  .booking-card { padding: 28px 24px; }
  .contact-grid { gap: 48px; }
  .fleet-inner { gap: 24px; }

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


/* =========================================================
   RESPONSIVE — MOBILE (≤768px)
   ========================================================= */
@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  .nav-toggle {
    display: block;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
  }
  .nav-inner {
    position: relative;
    justify-content: center;
  }
  /* Mobile nav = right-slide drawer. Fixed to viewport so it spans full
     width regardless of nav-inner's padding; transitions via `right`. */
  .nav-links {
    display: flex;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--ocean-deep);
    flex-direction: column;
    align-items: stretch;
    padding: 88px 28px 32px;
    gap: 0;
    z-index: 1001;
    box-shadow: -8px 0 24px rgba(0,0,0,0.25);
    transition: right 0.32s ease;
    overflow-y: auto;
    min-height: auto;
  }
  .nav-links.open { right: 0; }
  .nav-links a {
    padding: 16px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
    font-size: 15px;
  }
  .nav-links a::after { display: none; }
  .nav-links .nav-cta {
    margin-top: 16px;
    text-align: center;
    border-bottom: none;
  }
  /* Ensure hamburger stays above the drawer so it remains tappable. */
  .nav-toggle { z-index: 1002; }

  /* Hero homepage */
  .hero { min-height: 65vh; }
  .hero-content { padding: 110px 0 48px; text-align: center; }
  .hero h1 { font-size: clamp(32px, 8vw, 48px); }
  .hero-text { font-size: 16px; max-width: 100%; margin-left: auto; margin-right: auto; }
  .hero .btn { display: inline-flex; }

  /* Page hero (subpages) — padding-top clears the shorter mobile nav
     (~120px when unscrolled) with a bit of breathing room. */
  .page-hero { padding: 140px 0 48px; }
  .page-hero--compact { padding: 130px 0 40px; }
  .page-hero--legal   { padding: 140px 0 44px; }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .awards-inner {
    flex-direction: column;
    text-align: center;
  }
  .awards-text p { margin: 0 auto; }

  .team-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .team-photos {
    max-width: 400px;
    margin: 0 auto;
  }
  .team-text { text-align: center; }
  .team-text .highlight { font-size: 18px; }
  .team-cta { display: flex; justify-content: center; }

  .testimonial-page { grid-template-columns: 1fr; }

  .cta-section { padding: 72px 0; }
  .cta-section h2 { font-size: clamp(28px, 7vw, 40px); }
  .cta-section p { font-size: 16px; }

  .about-intro-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-intro-photo { max-width: 400px; margin: 0 auto; }
  .about-intro-text { text-align: center; }

  .team-profiles {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .portal-notice-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }
  .portal-notice-icon { margin: 0 auto; }
  .portal-notice-cta { justify-self: center; }

  .hotel-card { grid-template-columns: 1fr; }
  .hotel-card-visual { padding: 32px 24px; }
  .hotel-card-actions { padding: 24px; }

  .not-hotel-card {
    flex-direction: column;
    text-align: center;
    padding: 36px 28px;
  }

  .booking-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .how-steps {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .how-steps::before { display: none; }

  .booking-shortcode { padding: 48px 0 72px; }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-info-card { padding: 28px 24px; }

  .legal-content h2 { margin-top: 44px; padding-top: 32px; }
  .legal-toc { padding: 20px 22px; }
  .legal-contact-block { padding: 24px 22px; }

  .fleet-inner { gap: 16px; }
  .fleet-divider { display: none; }
  .fleet-label { display: none; }
  .fleet-item { font-size: 13px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE (≤480px)
   ========================================================= */
@media (max-width: 480px) {
  :root { --section-pad: 48px; }

  .nav-inner { padding: 10px 20px; }

  .hero { min-height: 70vh; }
  .hero-content { padding: 140px 0 48px; }
  .hero h1 { font-size: 32px; margin-bottom: 16px; }
  .hero-text { font-size: 15px; line-height: 1.6; }

  .page-hero { padding: 130px 0 48px; }
  .page-hero h1 { font-size: 32px; }
  .page-hero p { font-size: 16px; }
  .page-hero--compact { padding: 120px 0 36px; }
  .page-hero--compact h1 { font-size: 28px; }
  .page-hero--compact p { font-size: 15px; }
  .page-hero--legal { padding: 130px 0 40px; }
  .page-hero--legal h1 { font-size: 28px; }

  .services { padding: 48px 0 56px; }
  .services-header { margin-bottom: 36px; }
  .service-card { padding: 32px 24px 28px; }

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

  .awards-badges { flex-direction: column; align-items: center; }
  .award-badge { width: 180px; padding: 24px 20px; }

  .team-photos { max-width: 320px; }
  .team-photo-name { font-size: 15px; }
  .team-card-body { padding: 24px; }
  .team-card-name { font-size: 22px; }

  .testimonial-card { padding: 28px 24px; }
  .testimonial-card p { font-size: 15px; }
  .testimonial-footer { flex-direction: column; align-items: flex-start; gap: 12px; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 300px; justify-content: center; }
  .cta-phone { margin-top: 20px; }

  .hotels-section { padding: 36px 0 72px; }
  .not-hotel-cta { padding: 0 0 72px; }
  .hotel-action-btn { padding: 14px 18px; font-size: 14px; }

  .booking-card { padding: 24px 20px; }
  .booking-card h3 { font-size: 20px; }
  .how-step-num { width: 64px; height: 64px; font-size: 24px; }

  .shortcode-placeholder { padding: 40px 24px; }
  .shortcode-placeholder--wide { padding: 40px 20px; }
  .shortcode-placeholder--wide strong { font-size: 20px; }

  .contact-info-card { padding: 24px 20px; }

  .legal-content .legal-intro { font-size: 16px; }
  .legal-content p,
  .legal-content li { font-size: 15px; }

  .legal-content table {
    font-size: 14px;
    display: block;
    overflow-x: auto;
  }

  .fleet-inner { gap: 12px; }
  .fleet-item { font-size: 12px; gap: 6px; }
  .fleet-item i { font-size: 14px; }
}


/* =========================================================
   CHAUFFEUR BOOKING PLUGIN OVERRIDES
   Scoped styles that only apply on booking-form pages.
   ========================================================= */
.chbs-main .chbs-payment > li > a.chbs-payment-type-9 {
  background-image: none !important;
}

.chbs-copyright { display: none; }
