/* =============================================================
   Ernie's Taxi & Limousine — Main Stylesheet
   Version: 1.0.0
   ============================================================= */

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

:root {
  --black: #0d0d0d;
  --navy: #0b1f3a;
  --navy-mid: #122d52;
  --gold: #b8892a;
  --gold-light: #d4a84b;
  --gold-pale: #f5e9cc;
  --white: #ffffff;
  --off-white: #f9f7f3;
  --gray-light: #f2efe9;
  --gray-mid: #9a9690;
  --gray-dark: #4a4741;
  --text: #1a1714;
  --text-muted: #6b6862;
  --border: rgba(180,160,120,0.25);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

/* ANNOUNCEMENT BAR */
.announce-bar {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.announce-bar a { color: var(--gold-light); font-weight: 500; }
.announce-bar strong { color: #fff; }

/* NAV */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1160px;
  margin: 0 auto;
  gap: 24px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.logo-main span { color: var(--gold); }
.logo-sub {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--gray-mid);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--gray-dark);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 1.5px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-white { background: #fff; color: var(--gold); font-weight: 500; }
.btn-white:hover { background: var(--off-white); }
.btn-dark-gold { background: rgba(0,0,0,0.2); color: #fff; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-dark-gold:hover { background: rgba(0,0,0,0.35); }
.btn-lg { padding: 15px 32px; font-size: 15px; }
.btn-sm { padding: 8px 16px; font-size: 12.5px; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* HERO */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(184,137,42,0.12) 0%, transparent 60%),
    linear-gradient(135deg, #071524 0%, #0b1f3a 50%, #122d52 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px),
    repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px);
}
.hero-accent {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(184,137,42,0.15);
}
.hero-accent-2 {
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(184,137,42,0.08);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
  padding: 6px 14px 6px 6px;
  border: 1px solid rgba(184,137,42,0.3);
  border-radius: 20px;
  background: rgba(184,137,42,0.08);
}
.hero-eyebrow span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--gold-light);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 66px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.hero-trust-item svg { flex-shrink: 0; }
.hero-trust-item strong { color: rgba(255,255,255,0.9); }

/* QUICK BOOK STRIP */
.quick-book { background: var(--gold); padding: 0; }
.quick-book-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1160px;
  margin: 0 auto;
}
.quick-book-text { color: #fff; }
.quick-book-text strong { display: block; font-size: 17px; font-family: 'Cormorant Garamond', serif; font-weight: 600; }
.quick-book-text span { font-size: 13px; opacity: 0.85; }
.quick-book-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* SECTION SHARED */
section { padding: 90px 0; }
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title { font-size: clamp(30px, 4vw, 46px); color: var(--navy); margin-bottom: 1rem; }
.section-lead { font-size: 17px; color: var(--text-muted); max-width: 580px; line-height: 1.8; }
.section-head { margin-bottom: 3.5rem; }
.section-head.centered { text-align: center; }
.section-head.centered .section-lead { margin: 0 auto; }

/* SERVICES */
.services-bg { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(11,31,58,0.1); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(11,31,58,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.service-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }
.service-link { font-size: 13px; font-weight: 500; color: var(--gold); display: flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.service-card:hover .service-link { gap: 10px; }

/* AIRPORTS */
.airports-bg { background: var(--navy); }
.airports-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 16px; }
.airport-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 24px 22px;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.airport-card:hover { background: rgba(184,137,42,0.12); border-color: rgba(184,137,42,0.4); transform: translateY(-2px); }
.airport-code { font-family: 'Cormorant Garamond', serif; font-size: 32px; font-weight: 600; color: var(--gold-light); margin-bottom: 4px; letter-spacing: -0.02em; }
.airport-name { font-size: 13.5px; color: rgba(255,255,255,0.75); line-height: 1.4; margin-bottom: 12px; }
.airport-tag { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 0.05em; }
.airports-note { margin-top: 2rem; text-align: center; color: rgba(255,255,255,0.5); font-size: 14px; }
.airports-note a { color: var(--gold-light); }

/* FLEET */
.fleet-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.fleet-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.25s;
  background: var(--white);
}
.fleet-card:hover { box-shadow: 0 12px 40px rgba(11,31,58,0.1); transform: translateY(-3px); }
.fleet-visual {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  position: relative;
  overflow: hidden;
}
.fleet-visual.sedan { background: linear-gradient(135deg, #0b1f3a, #1a3460); }
.fleet-visual.suv { background: linear-gradient(135deg, #1a1714, #3a3530); }
.fleet-visual.van { background: linear-gradient(135deg, #0f2a1e, #1e4d36); }
.fleet-visual-label {
  position: absolute;
  bottom: 12px;
  right: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.fleet-body { padding: 24px; }
.fleet-type { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.fleet-body h3 { font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.fleet-body p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }
.fleet-features { display: flex; flex-direction: column; gap: 6px; }
.fleet-feature {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.fleet-feature::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23b8892a'%3E%3Cpath fill-rule='evenodd' d='M16.704 4.153a.75.75 0 01.143 1.052l-8 10.5a.75.75 0 01-1.127.075l-4.5-4.5a.75.75 0 011.06-1.06l3.894 3.893 7.48-9.817a.75.75 0 011.05-.143z' clip-rule='evenodd'/%3E%3C/svg%3E") center/contain no-repeat;
  flex-shrink: 0;
}

/* COVERAGE */
.coverage-bg { background: var(--off-white); }
.coverage-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.coverage-list { display: flex; flex-direction: column; gap: 0; }
.coverage-region { padding: 20px 0; border-bottom: 1px solid var(--border); }
.coverage-region:first-child { border-top: 1px solid var(--border); }
.coverage-region h4 { font-size: 16px; color: var(--navy); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.coverage-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.coverage-region p { font-size: 13.5px; color: var(--text-muted); padding-left: 16px; }
.coverage-map-placeholder {
  background: var(--navy);
  border-radius: 12px;
  height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.coverage-map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(184,137,42,0.18) 0%, transparent 65%);
}
.map-label { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 8px; position: relative; z-index: 1; }
.map-headline { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: #fff; position: relative; z-index: 1; text-align: center; padding: 0 24px; line-height: 1.25; }
.map-headline em { color: var(--gold-light); font-style: italic; }

/* TRUST */
.trust-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.trust-card {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  transition: box-shadow 0.25s;
}
.trust-card:hover { box-shadow: 0 8px 32px rgba(11,31,58,0.07); }
.trust-icon { font-size: 36px; margin-bottom: 16px; }
.trust-card h4 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.trust-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.75; }

/* REVIEWS */
.reviews-bg { background: var(--gray-light); }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 28px; }
.stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 17px; color: var(--text); line-height: 1.8; margin-bottom: 20px; font-style: italic; font-family: 'Cormorant Garamond', serif; }
.review-author { font-size: 13px; font-weight: 500; color: var(--navy); }
.review-detail { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ROUTES */
.routes-bg { background: var(--off-white); }
.routes-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }
.route-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.25s;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.route-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s;
}
.route-card:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(11,31,58,0.09); }
.route-card:hover::before { transform: scaleY(1); }
.route-from-to { display: flex; align-items: center; gap: 10px; }
.route-origin { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--navy); }
.route-arrow { font-size: 16px; color: var(--gold); flex-shrink: 0; }
.route-dest { font-family: 'Cormorant Garamond', serif; font-size: 18px; font-weight: 600; color: var(--navy); }
.route-meta { display: flex; gap: 12px; flex-wrap: wrap; }
.route-badge { font-size: 11px; font-weight: 500; letter-spacing: 0.06em; padding: 3px 10px; border-radius: 20px; background: rgba(11,31,58,0.06); color: var(--navy); }
.route-badge.gold { background: var(--gold-pale); color: var(--gold); }
.route-cta { font-size: 13px; font-weight: 500; color: var(--gold); display: flex; align-items: center; gap: 5px; transition: gap 0.2s; margin-top: 4px; }
.route-card:hover .route-cta { gap: 9px; }
.routes-view-all { margin-top: 2rem; text-align: center; }

/* COMMUNITIES */
.communities-bg { background: var(--navy); }
.communities-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.community-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 22px 20px;
  transition: all 0.25s;
  text-decoration: none;
  display: block;
}
.community-card:hover { background: rgba(184,137,42,0.12); border-color: rgba(184,137,42,0.4); transform: translateY(-2px); }
.community-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.community-county { font-size: 11px; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); text-transform: uppercase; margin-bottom: 10px; }
.community-links { display: flex; flex-direction: column; gap: 4px; }
.community-link { font-size: 12.5px; color: var(--gold-light); text-decoration: none; transition: color 0.2s; display: flex; align-items: center; gap: 5px; }
.community-link:hover { color: #fff; }

/* FAQ */
.faq-bg { background: var(--gray-light); }
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.3;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(11,31,58,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  font-family: monospace;
  transition: transform 0.3s, background 0.2s;
  font-style: normal;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p { font-size: 15px; color: var(--text-muted); line-height: 1.8; padding-bottom: 20px; }
.faq-answer a { color: var(--gold); font-weight: 500; }

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3460 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,137,42,0.12) 0%, transparent 70%);
}
.cta-banner h2 { color: #fff; font-size: clamp(28px, 4vw, 46px); margin-bottom: 1rem; position: relative; }
.cta-banner h2 em { color: var(--gold-light); font-style: italic; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 17px; margin-bottom: 2.5rem; position: relative; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* LOCATIONS STRIP */
.locations-strip { padding: 60px 0; border-top: 1px solid var(--border); }
.locations-title { font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 20px; text-align: center; }
.locations-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.loc-tag { font-size: 13px; color: var(--navy); padding: 6px 14px; border: 1px solid var(--border); border-radius: 20px; transition: all 0.2s; text-decoration: none; }
.loc-tag:hover { background: var(--navy); color: #fff; border-color: var(--navy); }

/* URGENCY BADGE */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: #c0392b;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
  animation: pulse-badge 2s infinite;
}
.urgency-dot { width: 7px; height: 7px; background: #fff; border-radius: 50%; animation: blink 1.2s infinite; flex-shrink: 0; }
@keyframes pulse-badge { 0%,100%{opacity:1} 50%{opacity:0.85} }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* GOOGLE REVIEW BADGE */
.google-badge { display: inline-flex; align-items: center; gap: 10px; background: var(--white); border: 1px solid var(--border); border-radius: 40px; padding: 8px 18px 8px 10px; margin-bottom: 2rem; }
.google-g { width: 32px; height: 32px; border-radius: 50%; background: #4285F4; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 16px; color: #fff; font-family: serif; flex-shrink: 0; }
.google-text { line-height: 1.25; }
.google-text strong { font-size: 13px; font-weight: 500; color: var(--navy); display: block; }
.google-text span { font-size: 11.5px; color: var(--text-muted); }
.google-stars { color: #f4a11b; font-size: 13px; letter-spacing: 1px; }

/* FOOTER */
footer.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo-main { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: #fff; margin-bottom: 4px; }
.footer-logo-main span { color: var(--gold-light); }
.footer-logo-sub { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer-brand p { font-size: 13.5px; line-height: 1.8; max-width: 280px; margin-bottom: 20px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--gold-light); margin-bottom: 8px; transition: color 0.2s; }
.footer-contact a:hover { color: #fff; }
.footer-col h5 { font-size: 12px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 12.5px; color: rgba(255,255,255,0.3); }
.footer-nap { font-size: 12px; color: rgba(255,255,255,0.3); text-align: right; }

/* PHONE FLOAT */
.phone-float { position: fixed; bottom: 24px; right: 24px; z-index: 200; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 40px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: all 0.2s;
}
.float-call { background: var(--navy); color: #fff; }
.float-call:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
.float-book { background: var(--gold); color: #fff; }
.float-book:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }

/* MOBILE STICKY BAR */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 10px 16px;
  gap: 8px;
}
.mobile-sticky-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: 4px;
  font-size: 13.5px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}
.msb-call { background: var(--gold); color: #fff; }
.msb-text { background: rgba(255,255,255,0.1); color: #fff; border: 1px solid rgba(255,255,255,0.25); }
.msb-book { background: #fff; color: var(--navy); }

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(11,31,58,0.95);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Cormorant Garamond', serif; font-size: 28px; color: #fff; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--gold-light); }
.mobile-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #fff; font-size: 32px; cursor: pointer; line-height: 1; }

/* WORDPRESS PAGE CONTENT */
.page-content { padding: 80px 0; }
.entry-content { max-width: 780px; margin: 0 auto; }
.entry-content h2 { font-size: clamp(24px, 3vw, 36px); color: var(--navy); margin-bottom: 1rem; margin-top: 2rem; }
.entry-content h3 { font-size: 24px; color: var(--navy); margin-bottom: 0.75rem; margin-top: 1.5rem; }
.entry-content p { margin-bottom: 1.25rem; color: var(--text); line-height: 1.8; }
.entry-content a { color: var(--gold); font-weight: 500; }
.entry-content ul, .entry-content ol { margin: 1rem 0 1.25rem 1.5rem; }
.entry-content li { margin-bottom: 0.5rem; color: var(--text); }

/* PAGE HERO (for inner pages) */
.page-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184,137,42,0.12) 0%, transparent 60%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(28px, 4vw, 52px); color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 17px; max-width: 560px; }

/* WORDPRESS MENU STYLES */
.wp-nav-menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 28px; align-items: center; }
.wp-nav-menu li a { font-size: 13.5px; font-weight: 400; color: var(--gray-dark); transition: color 0.2s; letter-spacing: 0.01em; }
.wp-nav-menu li a:hover { color: var(--navy); }
.wp-nav-menu li.current-menu-item > a { color: var(--navy); font-weight: 500; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .coverage-layout { grid-template-columns: 1fr; }
  .coverage-map-placeholder { height: 280px; }
}
@media (max-width: 768px) {
  .mobile-sticky-bar { display: flex; }
  body { padding-bottom: 70px; }
  .phone-float { display: none; }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero { min-height: auto; padding: 80px 0 60px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .quick-book-inner { flex-direction: column; align-items: flex-start; }
  .phone-float { bottom: 16px; right: 16px; }
  .float-btn span.label { display: none; }
  .float-btn { padding: 13px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ELEMENTOR COMPATIBILITY */
.elementor-section-wrap { width: 100%; }
body.elementor-page .site-main { padding: 0; }
