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

:root {
  --beige: #18181b;
  --beige-dark: #212126;
  --black: #f2f1ee;
  --dark: #cfcfd3;
  --grey: #9c9ca2;
  --grey-light: #6f6f76;
  --white: #FFFFFF;
  --border: #2a2a2f;
  --bg: #0d0d0f;
  --accent: #8b5cf6;
  --accent-dark: #7c3aed;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Georgia', serif;
  background-color: var(--bg);
  color: var(--black);
  overflow-x: hidden;
}

/* ── ANNOUNCEMENT BANNER ── */
.announce-bar {
  background: var(--black);
  color: var(--beige);
  padding: 12px 24px;
  position: relative;
  z-index: 500;
  animation: slideDown .5s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.announce-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.announce-dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  border-radius: 50%;
  background: #7CFC9A;
  animation: announcePulse 2s ease-in-out infinite;
}

@keyframes announcePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .4; }
}

.announce-text {
  flex: 1;
  font-family: Arial, sans-serif;
  font-size: .82rem;
  line-height: 1.5;
  color: #ccc;
}

.announce-text strong {
  color: var(--beige);
  font-weight: 700;
}

.announce-close {
  background: none;
  border: none;
  color: #666;
  font-size: .9rem;
  cursor: pointer;
  padding: 4px 8px;
  line-height: 1;
  flex-shrink: 0;
  transition: color .2s;
}

.announce-close:hover {
  color: var(--beige);
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding 0.3s;
}

header.scrolled {
  padding: 14px 60px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--black);
  font-family: Arial, sans-serif;
}

.logo span {
  color: var(--grey);
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  cursor: pointer;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-logo {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  object-fit: cover;
  animation: brandSpin 9s linear infinite;
}

@keyframes brandSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

footer .brand-logo {
  width: 38px;
  height: 38px;
  min-width: 38px;
  animation: none;
}

.logo-tag {
  font-family: Arial, sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 600;
}

.logo-sub {
  font-family: Arial, sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
}

nav {
  display: flex;
  gap: 36px;
}

nav a {
  text-decoration: none;
  color: var(--grey);
  font-size: 0.9rem;
  font-family: Arial, sans-serif;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--black);
}

.nav-home {
  display: flex;
  align-items: center;
}

.header-btn {
  background: var(--accent);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-family: Arial, sans-serif;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.header-btn:hover {
  background: var(--accent-dark);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background-color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 120px 60px 80px;
  gap: 60px;
}

.hero-tag {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}

.hero-left {
  flex: 1;
  max-width: 520px;
}

.hero-left h1 {
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  line-height: 1.1;
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 20px;
  font-family: Arial, sans-serif;
}

.hero-deal-flash {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffd60a;
  margin-bottom: 6px;
  animation: dealFlash 2.6s ease-in-out infinite;
}

@keyframes dealFlash {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

.hero-pricing-line {
  margin-bottom: 24px;
}

.hero-pricing-line a {
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #39e07a;
  text-decoration: none;
  letter-spacing: 0.01em;
  animation: heroPricingGlow 2.2s ease-in-out infinite;
}

.hero-pricing-line a:hover {
  text-decoration: underline;
}

@keyframes heroPricingGlow {
  0%, 100% { text-shadow: 0 0 6px rgba(57, 224, 122, 0.6), 0 0 14px rgba(57, 224, 122, 0.35); }
  50%      { text-shadow: 0 0 12px rgba(57, 224, 122, 0.95), 0 0 26px rgba(57, 224, 122, 0.6); }
}

.hero-pricing-detail {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.6;
  max-width: 460px;
  margin-bottom: 24px;
}

.hero-pricing-detail strong {
  color: var(--black);
}

.hero-contact {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hero-contact-link {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: var(--grey);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.hero-contact-link:hover {
  color: var(--black);
}

.hero-right {
  flex: 1;
  max-width: 480px;
  width: 100%;
}

.hero-right .image-box {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--beige-dark);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

/* ── HERO PHOTO GALLERY ── */
.hero-gallery-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-gallery-img.active {
  opacity: 1;
}

.hero-gallery-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}

.hero-gallery {
  cursor: pointer;
}

.hero-gallery-hint {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: rgba(13, 13, 15, 0.72);
  backdrop-filter: blur(4px);
  color: #fff;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
  pointer-events: none;
  transition: background 0.2s;
}

.hero-gallery:hover .hero-gallery-hint {
  background: var(--accent);
}

.hero-gallery-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.hero-gallery-dot.active {
  background: #fff;
  transform: scale(1.3);
}

.hero-gallery-viewall {
  display: block;
  margin: 14px auto 0;
  background: none;
  border: 1px solid var(--border);
  color: var(--grey);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.hero-gallery-viewall:hover {
  border-color: var(--accent);
  color: var(--black);
}

/* ── PHOTO GALLERY LIGHTBOX ── */
.gallery-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px 20px;
  backdrop-filter: blur(3px);
}

.gallery-lightbox-overlay.open {
  display: flex;
}

.gallery-lightbox {
  background: var(--beige);
  border-radius: 20px;
  width: 100%;
  max-width: 720px;
  max-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalSlideIn 0.25s ease;
}

.gallery-lightbox-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.gallery-lightbox-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  font-family: Arial, sans-serif;
  letter-spacing: 0.03em;
}

.gallery-lightbox-grid {
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gallery-lightbox-grid img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* ── HERO LOCATION PICKER ── */
.hero-location-picker {
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  margin: 32px 0 28px;
  max-width: 500px;
}

.hlp-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 4px;
}

.hlp-divider {
  height: 1px;
  background: var(--border);
  margin: 0 20px;
}

.hlp-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: var(--black);
  outline: none;
}

.hlp-input::placeholder {
  color: var(--grey-light);
}

.use-location-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--black);
  padding: 2px 0;
  transition: opacity .2s;
  flex: 1;
}

.use-location-btn:hover {
  opacity: .65;
}

.use-location-submit {
  width: 100%;
  display: block;
  text-align: center;
  border-radius: 12px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 4px;
  border: none;
  cursor: pointer;
}

/* ── HOW PRICING WORKS ── */
.how-pricing {
  padding: 100px 60px;
  background: var(--beige-dark);
  color: var(--white);
}

.how-pricing-inner {
  max-width: 600px;
}

.how-pricing .section-label {
  color: #555;
}

.how-pricing h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.how-pricing p {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  color: #999;
  line-height: 1.8;
}

/* ── RIDE CARD ── */
.ride-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

.ride-card-title {
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.ride-inputs {
  background: var(--beige);
  border-radius: 12px;
  padding: 4px 0;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

.ride-input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.ride-divider {
  height: 1px;
  background: var(--border);
  margin: 0 16px;
}

.ride-dot {
  width: 10px;
  height: 10px;
  min-width: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.pickup-dot {
  background: var(--accent);
}

.dropoff-dot {
  background: #555;
  border: 2px solid var(--accent);
  width: 10px;
  height: 10px;
  border-radius: 2px;
}

.ride-input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--black);
  outline: none;
}

.ride-input::placeholder {
  color: var(--grey-light);
}

.ride-btn {
  display: block;
  text-align: center;
  width: 100%;
  border-radius: 12px;
  padding: 16px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ride-card-note {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  color: var(--grey-light);
  text-align: center;
  margin-top: 12px;
}

.location-detect-btn {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--black);
  font-weight: 600;
  padding: 2px 0;
  text-align: left;
  transition: opacity .2s;
}

.location-detect-btn:hover {
  opacity: .7;
}

.gps-retry-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey-light);
  padding: 4px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  transition: color .2s;
}

.gps-retry-btn:hover {
  color: var(--black);
}

.contact-label {
  font-weight: 700;
  color: var(--black);
}

.gps-status {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  color: var(--grey);
  min-height: 18px;
  margin: 6px 0 10px;
  padding: 0 4px;
}

/* Hero autocomplete dropdown */
.hero-ac-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: 10px;
  list-style: none;
  z-index: 200;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: none;
  overflow: hidden;
}

.hero-ac-list.open {
  display: block;
}

.hero-ac-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: var(--black);
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}

.hero-ac-list li:last-child {
  border-bottom: none;
}

.hero-ac-list li:hover,
.hero-ac-list li.selected {
  background: var(--beige);
}

.hero-ac-list .ac-main {
  font-weight: 600;
  font-size: 0.85rem;
}

.hero-ac-list .ac-sub {
  font-size: 0.75rem;
  color: var(--grey);
}

/* Ride policy checkbox */
.ride-policy-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  margin: 14px 0 16px;
}

.ride-policy-label input[type="checkbox"] {
  display: none;
}

.ride-policy-checkmark {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 1px;
  border: 2px solid var(--black);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
}

.ride-policy-label.agreed .ride-policy-checkmark {
  background: var(--black);
}

.ride-policy-label.agreed .ride-policy-checkmark::after {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.ride-policy-text {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--grey);
  line-height: 1.5;
}

.ride-policy-text a {
  color: var(--black);
  font-weight: 600;
}

.ride-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-dark {
  background: var(--accent);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

.btn-dark:hover {
  background: var(--accent-dark);
}

.btn-dark.intro-glow {
  animation: btnSaberGlow 3s ease-out forwards;
}

@keyframes btnSaberGlow {
  0%   { box-shadow: none; }
  15%  {
    box-shadow:
      0 0 4px 1px #fff,
      0 0 12px 4px rgba(180,220,255,0.9),
      0 0 28px 8px rgba(100,180,255,0.7),
      0 0 55px 16px rgba(80,160,255,0.4),
      0 0 90px 24px rgba(60,130,255,0.2);
  }
  55%  {
    box-shadow:
      0 0 4px 1px #fff,
      0 0 12px 4px rgba(180,220,255,0.85),
      0 0 28px 8px rgba(100,180,255,0.65),
      0 0 55px 16px rgba(80,160,255,0.35),
      0 0 90px 24px rgba(60,130,255,0.18);
  }
  100% { box-shadow: none; }
}

.btn-outline {
  border: 1px solid var(--black);
  color: var(--black);
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

/* ── MARQUEE STRIP ── */
.strip {
  background: var(--beige-dark);
  color: var(--dark);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}

.strip-track {
  display: inline-block;
  animation: marquee 22s linear infinite;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.strip-track span {
  margin: 0 20px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── FOUNDER QUOTE ── */
.founder-quote {
  background: var(--beige);
  padding: 64px 60px;
  display: flex;
  justify-content: center;
}

.founder-quote-inner {
  max-width: 780px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.founder-quote-inner .section-label {
  width: 100%;
  flex-shrink: 0;
}

.quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: .75;
  color: var(--border);
  flex-shrink: 0;
  user-select: none;
}

.founder-quote blockquote {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-style: italic;
  line-height: 1.8;
  color: var(--grey);
  border: none;
  padding: 0;
  margin: 0;
}

@media (max-width: 768px) {
  .founder-quote {
    padding: 48px 24px;
  }

  .quote-mark {
    font-size: 3.5rem;
  }
}

/* ── SERVICES ── */
.services {
  padding: 100px 60px;
  background: var(--bg);
}

.section-label {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 18px;
}

.services h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 60px;
  line-height: 1.2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  border: 1px solid var(--border);
}

.service-card {
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: background 0.3s;
}

.service-card:hover {
  background: var(--beige-dark);
}

.service-num {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  color: var(--grey-light);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 14px;
}

.service-card p {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
}

/* ── ABOUT ── */
.about {
  background: var(--beige);
  padding: 100px 60px;
}

.about-inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 28px;
  line-height: 1.2;
}

.about-text p {
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-stat-grid {
  flex: 1;
  min-width: 260px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border: 1px solid var(--border);
  align-self: center;
}

.stat {
  padding: 36px 28px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--beige);
}

.stat-num {
  font-size: 2rem;
  font-weight: 400;
  color: var(--black);
}

.stat-label {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  color: var(--grey);
  letter-spacing: 0.05em;
}

/* ── OWNER PROFILE ── */
.owner {
  background: var(--beige-dark);
  padding: 100px 60px;
}

.owner-inner {
  display: flex;
  gap: 70px;
  align-items: center;
  max-width: 1000px;
  flex-wrap: wrap;
}

.owner-photo {
  width: 240px;
  height: 300px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--dark);
}

.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.owner-text {
  flex: 1;
  min-width: 260px;
}

blockquote {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--dark);
  font-style: italic;
  margin: 16px 0 28px;
  border-left: 2px solid var(--black);
  padding-left: 20px;
}

.owner-name {
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
}

.owner-company {
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--grey);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .owner {
    padding: 70px 24px;
  }
  .owner-inner {
    flex-direction: column;
    gap: 32px;
  }
  .owner-photo {
    width: 100%;
    height: 320px;
  }
}

/* ── BOOKING ── */
.book {
  padding: 100px 60px;
  background: var(--bg);
}

.book h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 50px;
  line-height: 1.2;
}

.booking-form {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  width: 100%;
}

label {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}

.field-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.locate-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: none;
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.locate-btn:hover { opacity: 0.7; }
.locate-btn:disabled { opacity: 0.5; cursor: wait; }

.location-hint {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: -2px;
}

.optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--grey-light);
  font-size: 0.78rem;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="time"],
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--beige);
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  color-scheme: dark;
}

input:focus,
textarea:focus {
  border-color: var(--accent);
}

textarea {
  resize: vertical;
}

/* AUTOCOMPLETE */
.autocomplete-wrap {
  position: relative;
}

.autocomplete-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 8px 8px;
  list-style: none;
  z-index: 50;
  max-height: 240px;
  overflow-y: auto;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  display: none;
}

.autocomplete-list.open {
  display: block;
}

.autocomplete-list li {
  padding: 12px 16px;
  font-family: Arial, sans-serif;
  font-size: 0.87rem;
  color: var(--dark);
  cursor: pointer;
  border-bottom: 1px solid var(--beige);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: background 0.15s;
}

.autocomplete-list li:last-child {
  border-bottom: none;
}

.autocomplete-list li:hover,
.autocomplete-list li.selected {
  background: var(--beige);
}

.autocomplete-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--grey-light);
}

.autocomplete-list li .ac-main {
  font-weight: 600;
  color: var(--black);
}

.autocomplete-list li .ac-sub {
  font-size: 0.78rem;
  color: var(--grey);
  margin-top: 2px;
}

/* LOCATION INPUT */
.location-input-wrap {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.location-input-wrap input {
  flex: 1;
}

.location-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: background 0.2s;
}

.location-btn:hover {
  background: #333;
}

.location-status {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  color: var(--grey);
  margin-top: 4px;
  min-height: 18px;
}

/* MAP PREVIEW */
.map-preview {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  background: var(--beige);
}

.map-label {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: 12px;
}

.map-open-link {
  display: inline-block;
  margin-top: 10px;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--black);
  text-decoration: underline;
}

/* UPLOAD */
.upload-area {
  border: 1px dashed var(--border);
  border-radius: 8px;
  padding: 36px;
  background: var(--beige);
  cursor: pointer;
  text-align: center;
  transition: border-color 0.2s;
}

.upload-area:hover {
  border-color: var(--black);
}

#upload-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--grey);
}

#upload-placeholder p {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
}

/* SUBMIT */
.submit-btn {
  align-self: flex-start;
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s;
}

.submit-btn:hover {
  background: var(--accent-dark);
}

.submit-btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

/* ── FOOTER ── */
footer {
  background: var(--beige-dark);
  padding: 50px 60px;
  color: var(--grey-light);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

footer .logo {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 6px;
}

footer p {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: var(--grey-light);
}

.footer-phone {
  color: var(--dark);
  font-family: Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.footer-phone:hover {
  color: white;
}

.footer-small {
  font-size: 0.78rem;
  color: #555;
}

/* ── HERO PAYMENT ICONS ── */
.pay-icons-label {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #b48bf5;
  text-shadow: 0 0 8px rgba(139, 92, 246, 0.8), 0 0 18px rgba(139, 92, 246, 0.5);
  margin-bottom: 10px;
}

.hero-pay-icons {
  display: flex;
  gap: 12px;
  margin: 0 0 20px;
  flex-wrap: wrap;
  align-items: center;
}

.pay-icon-badge {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: #f97316;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.2s;
  overflow: hidden;
}

.pay-icon-badge-sm {
  width: 38px;
  height: 38px;
  font-size: 1rem;
  border-radius: 11px;
}

.pay-icon-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pay-icon-fallback {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.pay-icon-badge:hover {
  transform: translateY(-3px);
}

.pay-icon-pill {
  width: auto;
  height: 38px;
  padding: 0 16px;
  border-radius: 19px;
  gap: 6px;
}

.pay-icon-pill-img {
  width: 18px !important;
  height: 18px !important;
  object-fit: contain;
  flex-shrink: 0;
}

.pay-icon-pill .pay-icon-fallback {
  width: auto;
  height: auto;
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Zelle badge background (shown behind transparent logo / as fallback) and glow */
.pay-icon-zelle { background: #6d1ed4; animation: glowZelle 2.4s ease-in-out infinite; }

@keyframes glowZelle {
  0%, 100% { box-shadow: 0 0 8px 1px rgba(109,30,212,0.45), 0 0 18px 3px rgba(109,30,212,0.25); }
  50%      { box-shadow: 0 0 16px 3px rgba(109,30,212,0.8), 0 0 34px 8px rgba(109,30,212,0.5); }
}

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

/* ── POLICY BOX ── */
.policy-box {
  max-width: 860px;
  width: 100%;
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 20px;
}

.policy-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--black);
}

.policy-text {
  font-size: .93rem;
  line-height: 1.7;
  color: var(--grey);
  margin-bottom: 20px;
}

.policy-text a {
  color: var(--black);
  font-weight: 600;
}

.policy-check-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.policy-check-label input[type="checkbox"] {
  display: none;
}

.policy-checkmark {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border: 2px solid var(--black);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s, border-color .18s;
}

.policy-check-label.agreed .policy-checkmark {
  background: var(--accent);
}

.policy-check-label.agreed .policy-checkmark::after {
  content: '';
  display: block;
  width: 6px;
  height: 11px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.policy-check-text {
  font-size: .93rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.4;
}

.request-gate {
  max-width: 860px;
  width: 100%;
  border: 2px dashed var(--border);
  border-radius: 16px;
  padding: 40px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: var(--beige);
}

.gate-msg {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--grey);
  font-size: .95rem;
  font-weight: 500;
}

/* ── REQUEST FORM ── */
.request-form-wrap {
  max-width: 760px;
}

.request-success {
  max-width: 760px;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  background: var(--beige);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.request-success svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.request-success h3 {
  font-family: Arial, sans-serif;
  font-size: 1.05rem;
  color: var(--black);
  margin-bottom: 8px;
}

.request-success p {
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.6;
}

.request-error {
  display: none;
  max-width: 760px;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: #f87171;
  margin-top: 14px;
}

.quote-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--beige);
  border: 1px solid #ffb020;
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: -4px;
  animation: quoteGlow 2.2s ease-in-out infinite;
}

@keyframes quoteGlow {
  0%, 100% {
    box-shadow:
      0 0 8px 1px rgba(255, 176, 32, 0.35),
      0 0 20px 2px rgba(255, 140, 0, 0.2);
  }
  50% {
    box-shadow:
      0 0 16px 3px rgba(255, 176, 32, 0.65),
      0 0 36px 6px rgba(255, 140, 0, 0.4);
  }
}

.quote-box svg {
  color: #ffb020;
  flex-shrink: 0;
}

.quote-label {
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 2px;
}

.quote-amount {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffb020;
}

.quote-miles {
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  color: var(--grey-light);
}

.quote-pending,
.quote-fallback {
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  color: var(--grey);
  margin-top: -4px;
}

/* ── BOTTOM NAV ── */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--beige-dark);
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 10px 0 14px;
  border-top: 1px solid #2a2a2a;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #666;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 4px 16px;
}

.bottom-nav-item:hover,
.bottom-nav-item.active {
  color: var(--dark);
}

/* ── SIDE CHAT ── */
.side-chat {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 600;
}

/* ── CHAT POPUP BUBBLE ── */
.chat-popup {
  position: fixed;
  top: calc(50% - 120px);
  right: 24px;
  z-index: 601;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--beige);
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 6px 8px 6px 16px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateX(20px) scale(.96);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
}

.chat-popup.visible {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.chat-popup::after {
  content: '';
  position: absolute;
  right: 18px;
  bottom: -7px;
  width: 14px;
  height: 14px;
  background: var(--beige);
  border-right: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
  transform: rotate(45deg);
}

.chat-popup-body {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  padding: 6px 2px;
}

.chat-popup-emoji {
  font-size: 1.1rem;
}

.chat-popup-close {
  background: none;
  border: none;
  color: var(--grey-light);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 6px;
  line-height: 1;
  border-radius: 50%;
  transition: color .2s, background .2s;
}

.chat-popup-close:hover {
  color: var(--black);
  background: var(--beige-dark);
}

@media (max-width: 768px) {
  .chat-popup {
    top: auto;
    bottom: 90px;
    right: 16px;
  }
}

.side-chat-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: #111;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 20px 11px;
  border-radius: 14px 0 0 14px;
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
  white-space: nowrap;
  transition: background .2s;
  box-shadow:
    -4px 0 20px rgba(60,130,255,0.45),
    -1px 0 6px rgba(60,130,255,0.3),
    0 0 0 1px rgba(60,130,255,0.2);
  animation: chatTabGlow 2.5s ease-in-out infinite;
}

@keyframes chatTabGlow {
  0%, 100% {
    box-shadow:
      -4px 0 20px rgba(60,130,255,0.45),
      -1px 0 6px rgba(60,130,255,0.3),
      0 0 0 1px rgba(60,130,255,0.2);
  }
  50% {
    box-shadow:
      -6px 0 32px rgba(60,130,255,0.8),
      -2px 0 10px rgba(60,130,255,0.55),
      0 0 0 1px rgba(100,160,255,0.4);
  }
}

.side-chat-tab:hover {
  background: #1a1a2e;
}

.side-chat-tab svg {
  transform: rotate(180deg);
  opacity: .85;
}

.side-chat-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 370px;
  background: var(--bg);
  box-shadow: -6px 0 40px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  z-index: 599;
}

.side-chat-panel.open {
  transform: translateX(0);
}

.side-chat-header {
  background: var(--beige-dark);
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.side-chat-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chat-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--beige);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
}

.chat-name {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--white);
}

.chat-status {
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  color: #7CFC9A;
}

.chat-close {
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1;
  padding: 4px;
}

.chat-close:hover {
  color: white;
}

.chat-messages {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  overflow-y: auto;
  background: var(--bg);
}

.chat-msg {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 12px;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  line-height: 1.5;
}

.chat-msg.bot {
  background: var(--beige);
  color: var(--black);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.chat-msg.user {
  background: var(--accent);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.chat-input-row {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid var(--border);
  background: var(--beige);
}

.chat-input-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  outline: none;
  background: var(--beige-dark);
  color: var(--black);
}

.chat-input-row input:focus {
  border-color: var(--black);
}

.chat-input-row button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}

.chat-input-row button:hover {
  background: var(--accent-dark);
}

/* Chat suggestion chips */
.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.chat-suggestions button {
  background: var(--beige);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 13px;
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  color: var(--grey);
  cursor: pointer;
  transition: border-color .2s, color .2s;
  width: auto;
  height: auto;
  flex-shrink: 0;
}

.chat-suggestions button:hover {
  border-color: var(--black);
  color: var(--black);
}

/* Typing indicator */
.chat-typing {
  display: flex !important;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  width: fit-content;
}

.chat-typing span {
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #bbb;
  animation: typingBounce 1.2s ease-in-out infinite;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30%            { transform: translateY(-6px); opacity: 1; }
}

/* Book button inside chat */
.chat-book-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  background: var(--accent);
  color: var(--white);
  padding: 9px 16px;
  border-radius: 50px;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background .2s;
}

.chat-book-btn:hover {
  background: var(--accent-dark);
}

@media (min-width: 769px) {
  .bottom-nav {
    display: none;
  }
}

/* ── PRICING ── */
.pricing {
  padding: 100px 60px;
  background: var(--black);
  color: var(--white);
}

.pricing .section-label {
  color: #555;
}

.pricing h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 50px;
  line-height: 1.2;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: #2a2a2a;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 28px;
}

.pricing-card {
  background: #1a1a1a;
  padding: 36px 28px;
  transition: background 0.3s;
}

.pricing-card:hover {
  background: #222;
}

.pricing-card.featured {
  background: #1e1e1e;
  border-left: 2px solid var(--beige);
  border-right: 2px solid var(--beige);
}

.pricing-type {
  font-family: Arial, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 16px;
}

.pricing-amount {
  font-size: 1.1rem;
  color: var(--beige);
  margin-bottom: 12px;
  font-family: Arial, sans-serif;
}

.pricing-amount span {
  font-size: 1.6rem;
  font-weight: 700;
}

.pricing-card p {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: #777;
  line-height: 1.6;
}

.pricing-note {
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  color: #888;
  margin-top: 32px;
}

.pricing-cta {
  display: inline-block;
  margin-top: 20px;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: opacity .2s;
}

.pricing-cta:hover {
  opacity: .75;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 100px 60px;
  background: var(--beige);
}

.testimonials h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 50px;
  line-height: 1.2;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 10px;
  padding: 32px 28px;
  border: 1px solid var(--border);
}

.testimonial-card p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 18px;
}

.testimonial-name {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  color: var(--grey);
  letter-spacing: 0.04em;
}

/* ── SERVICE AREA ── */
.service-area {
  padding: 100px 60px;
  background: var(--bg);
}

.service-area-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}

.service-area-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--black);
  margin: 16px 0 18px;
  line-height: 1.15;
}

.service-area-text p {
  font-family: Arial, sans-serif;
  font-size: 0.92rem;
  color: var(--grey);
  line-height: 1.75;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

/* ── FAQ ── */
.faq {
  padding: 100px 60px;
  background: var(--beige-dark);
}

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.faq-left h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  margin: 16px 0 18px;
  line-height: 1.1;
}

.faq-left p {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.faq-call-link {
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

.faq-call-link:hover {
  color: white;
}

.faq-left .section-label {
  color: #444;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  overflow: hidden;
}

.faq-item {
  background: #181818;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
  text-align: left;
  font-weight: 500;
  transition: background 0.2s;
  gap: 16px;
}

.faq-q:hover {
  background: #222;
}

.faq-icon {
  font-size: 1.3rem;
  color: #555;
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-family: Arial, sans-serif;
  font-size: 0.9rem;
  color: #888;
  line-height: 1.7;
  border-top: 1px solid #2a2a2a;
}

.faq-item.open .faq-a {
  display: block;
}

/* Call nav item */
.call-nav {
  color: #7CFC9A !important;
}

.bottom-chat-btn {
  color: rgba(180, 220, 255, 0.9) !important;
  filter: drop-shadow(0 0 6px rgba(100, 180, 255, 0.8));
  animation: chatNavGlow 2s ease-in-out infinite;
}

@keyframes chatNavGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(100,180,255,0.6)); }
  50%       { filter: drop-shadow(0 0 10px rgba(100,180,255,1)); }
}

.book-nav {
  color: rgba(255, 220, 120, 0.95) !important;
  animation: bookNavGlow 2s ease-in-out infinite;
}

@keyframes bookNavGlow {
  0%, 100% { filter: drop-shadow(0 0 4px rgba(255, 200, 60, 0.6)); }
  50%       { filter: drop-shadow(0 0 10px rgba(255, 200, 60, 1)); }
}

@media (max-width: 768px) {
  .pricing,
  .service-area,
  .faq {
    padding: 70px 24px;
  }

  .service-area-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* ── POLICY MODAL ── */
.policy-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px 20px;
  backdrop-filter: blur(3px);
}

.policy-modal-overlay.open {
  display: flex;
}

.policy-modal {
  background: var(--beige);
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  animation: modalSlideIn .25s ease;
  max-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@keyframes modalSlideIn {
  from { transform: translateY(-20px); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.policy-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.policy-modal-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  font-family: Arial, sans-serif;
  letter-spacing: .03em;
}

.policy-modal-close {
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--grey-light);
  cursor: pointer;
  padding: 4px 8px;
  transition: color .2s;
}

.policy-modal-close:hover {
  color: var(--black);
}

.policy-modal-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
}

.policy-modal-body > p {
  font-family: Arial, sans-serif;
  font-size: .9rem;
  color: var(--grey);
  margin-bottom: 16px;
  line-height: 1.6;
}

.policy-modal-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  padding: 0;
}

.policy-modal-list li {
  font-family: Arial, sans-serif;
  font-size: .88rem;
  color: var(--grey);
  line-height: 1.6;
  padding-left: 20px;
  position: relative;
}

.policy-modal-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--grey-light);
}

.policy-modal-list a {
  color: var(--black);
  font-weight: 600;
}

.policy-modal-check-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  padding: 16px;
  background: var(--beige);
  border-radius: 10px;
  border: 1px solid var(--border);
  user-select: none;
  font-family: Arial, sans-serif;
  font-size: .88rem;
  color: var(--black);
  font-weight: 600;
  line-height: 1.5;
  transition: background .2s;
}

.policy-modal-check-label:hover {
  background: var(--beige-dark);
}

.policy-modal-check-label input[type="checkbox"] {
  display: none;
}

.policy-modal-checkmark {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 1px;
  border: 2px solid var(--black);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .18s;
}

.policy-modal-check-label.agreed .policy-modal-checkmark {
  background: var(--accent);
}

.policy-modal-check-label.agreed .policy-modal-checkmark::after {
  content: '';
  display: block;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
}

.policy-modal-footer {
  display: flex;
  gap: 12px;
  padding: 20px 28px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.policy-modal-cancel {
  flex: 1;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: none;
  font-family: Arial, sans-serif;
  font-size: .9rem;
  color: var(--grey);
  cursor: pointer;
  transition: border-color .2s, color .2s;
}

.policy-modal-cancel:hover {
  border-color: var(--black);
  color: var(--black);
}

.policy-modal-confirm {
  flex: 2;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
}

.policy-modal-confirm:disabled {
  opacity: .35;
  cursor: not-allowed;
}

/* ── SCROLL ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease forwards;
}

.fade-up.delay {
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  header {
    padding: 16px 24px;
  }

  nav {
    display: none;
  }

  .hero {
    flex-direction: column;
    padding: 100px 24px 60px;
    gap: 40px;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
    width: 100%;
  }

  .hero-location-picker {
    padding: 18px;
  }

  .hero-right {
    display: block;
  }

  .hero-right .image-box {
    aspect-ratio: 4/5;
    border-radius: 14px;
  }

  .how-pricing {
    padding: 70px 24px;
  }

  .services,
  .about,
  .book {
    padding: 70px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .about-inner {
    flex-direction: column;
    gap: 40px;
  }

  .location-input-wrap {
    flex-direction: column;
  }

  body {
    padding-bottom: 70px;
  }

  .side-chat-panel {
    width: 100%;
    bottom: 70px;
  }

  .side-chat-tab {
    padding: 12px 8px;
    font-size: 0.65rem;
  }
}

/* ── LIMITED TIME DEAL BANNER ── */
.deal-banner-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  pointer-events: none;
  overflow: hidden;
}

.deal-banner-overlay.visible {
  display: block;
}

.confetti-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.confetti-piece {
  position: absolute;
  top: -20px;
  border-radius: 2px;
  opacity: 0;
  animation-name: confettiFall;
  animation-timing-function: ease-in;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}

@keyframes confettiFall {
  0%   { transform: translateY(-20px) rotate(0deg); opacity: 1; }
  100% { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

.deal-banner {
  position: absolute;
  left: 50%;
  top: 50%;
  animation: dealBadgePop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.deal-banner.dropping {
  animation: dealBadgeDrop 1s cubic-bezier(0.55, 0, 0.65, 1) forwards;
}

@keyframes dealBadgePop {
  0%   { transform: translate(-50%, -50%) scale(0.05); opacity: 0; }
  65%  { transform: translate(-50%, -50%) scale(1.1);  opacity: 1; }
  82%  { transform: translate(-50%, -50%) scale(0.96); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1);    opacity: 1; }
}

@keyframes dealBadgeDrop {
  0%   { transform: translate(-50%, -50%)                scale(1);    opacity: 1; }
  15%  { transform: translate(-50%, calc(-50% - 18px))    scale(1.04); opacity: 1; }
  100% { transform: translate(-50%, calc(-50% + 110vh))   scale(0.8);  opacity: 0; }
}

.deal-banner-inner {
  position: relative;
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px 36px;
  border-radius: 26px;
  text-align: center;
  max-width: 380px;
  width: calc(100vw - 40px);
  background: linear-gradient(135deg, rgba(139,92,246,0.97), rgba(109,30,212,0.96));
  box-shadow: 0 0 60px rgba(139,92,246,0.65), 0 0 130px rgba(139,92,246,0.25), 0 24px 60px rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.22);
  backdrop-filter: blur(8px);
}

.deal-banner-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}

.deal-banner-close:hover {
  color: #fff;
}

.deal-banner-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.deal-flourish {
  color: #ffd60a;
}

.deal-banner-headline {
  font-family: Arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: #fff;
  line-height: 1.02;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35);
  margin: 4px 0;
}

.deal-banner-rate {
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffd60a;
}

.deal-banner-sub {
  font-family: Arial, sans-serif;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-top: 6px;
}

.deal-banner-brand {
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  margin-top: 8px;
}
