/* Valencia Safe Transfer — design Next, CSS local (sans Tailwind CDN) */

:root {
  --background: #f8f5ed;
  --foreground: #17130b;
  --brand: #f5a300;
  --brand-strong: #d88900;
  --brand-soft: #fff2cf;
  --brand-ink: #1a1203;
  --charcoal: #080808;
  --muted: #6d6455;
  --max: 80rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  background: var(--background);
  scroll-behavior: smooth;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--background);
  color: var(--foreground);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

html[dir="rtl"],
html[dir="rtl"] body,
[dir="rtl"] {
  font-family: "Tajawal", Arial, Helvetica, sans-serif;
}

html[dir="rtl"] .hero-title,
html[dir="rtl"] .section-title,
html[dir="rtl"] .hero-badge,
html[dir="rtl"] .btn,
html[dir="rtl"] .nav-pill,
html[dir="rtl"] .driver-body h3 {
  font-family: "Tajawal", Arial, Helvetica, sans-serif;
}

html[dir="rtl"] .float-dock {
  right: auto;
  left: 1.1rem;
}

html[dir="rtl"] .chat-sheet__panel {
  right: auto;
  left: 1rem;
}

@media (max-width: 720px) {
  html[dir="rtl"] .float-dock {
    left: max(0.65rem, env(safe-area-inset-left, 0px));
    right: auto;
  }
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.wrap {
  width: min(var(--max), calc(100% - clamp(1.5rem, 4vw, 3rem)));
  margin-inline: auto;
}

/* Header */
.hero-block {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
  padding-bottom: 6rem;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.logo-pill,
.brand-cluster {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 2;
  text-decoration: none;
  color: inherit;
}

.logo-circle {
  position: relative;
  z-index: 2;
  display: inline-flex;
  width: 3.75rem;
  height: 3.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #fff;
  padding: 0.4rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.logo-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Legacy logo pill fallback */
.logo-pill {
  height: 3.5rem;
  width: auto;
  max-width: 14rem;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.95);
  padding: 0.35rem 1.15rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.logo-pill img {
  width: auto;
  max-width: 11rem;
  max-height: 2.45rem;
  height: auto;
  object-fit: contain;
}

.nav-pill {
  display: none;
  align-items: center;
  gap: 0.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.12);
  padding: 0.25rem;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.nav-pill a {
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  color: rgba(255, 255, 255, 0.9);
}

.nav-pill a:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  position: relative;
  z-index: 40;
}

.lang-switch {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 2.75rem;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.lang-caret {
  font-size: 0.65rem;
  opacity: 0.85;
  line-height: 1;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.2rem);
  inset-inline-end: 0;
  z-index: 50;
  display: none;
  margin: 0;
  min-width: 10.5rem;
  list-style: none;
  padding: 0.4rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(8, 8, 8, 0.94);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Open: focus-within + JS class (touch); hover only on fine pointers */
.lang-switch:focus-within .lang-menu,
.lang-switch.is-open .lang-menu {
  display: block;
}

@media (hover: hover) and (pointer: fine) {
  .lang-switch:hover .lang-menu {
    display: block;
  }
}

.lang-menu li {
  margin: 0;
}

.lang-menu button {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 0.65rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  padding: 0.7rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: start;
  cursor: pointer;
}

.lang-menu button:hover,
.lang-menu button.lang-active {
  background: var(--brand);
  color: #111;
}

.menu-btn {
  display: inline-flex;
  height: 44px;
  width: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  cursor: pointer;
  padding: 0;
}

.menu-btn__bars,
.menu-btn__bars::before,
.menu-btn__bars::after {
  display: block;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-btn__bars {
  position: relative;
}

.menu-btn__bars::before,
.menu-btn__bars::after {
  content: "";
  position: absolute;
  inset-inline-start: 0;
}

.menu-btn__bars::before {
  top: -5px;
}

.menu-btn__bars::after {
  top: 5px;
}

.menu-btn[aria-expanded="true"] .menu-btn__bars {
  background: transparent;
}

.menu-btn[aria-expanded="true"] .menu-btn__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-btn[aria-expanded="true"] .menu-btn__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: absolute;
  left: 1rem;
  right: 1rem;
  top: 5.5rem;
  z-index: 45;
  flex-direction: column;
  gap: 0.35rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.94);
  padding: 0.75rem;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.mobile-nav.is-open {
  display: flex;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.mobile-nav a:last-child {
  background: var(--brand);
  color: #111;
  text-align: center;
}

/* Hero media */
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity 1s ease, transform 1s ease;
}

.hero-bg-img.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 22%, rgba(245, 163, 0, 0.14), transparent 30%),
    linear-gradient(
      105deg,
      rgba(0, 0, 0, 0.78),
      rgba(0, 0, 0, 0.5) 40%,
      rgba(0, 0, 0, 0.28) 72%,
      rgba(0, 0, 0, 0.34)
    );
}

.hero-line {
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 1px;
  background: rgba(245, 163, 0, 0.8);
}

.hero-stage {
  position: relative;
  z-index: 5;
  min-height: 540px;
  display: grid;
  align-items: center;
  padding: 1rem 0 3rem;
  color: #fff;
}

.hero-panels {
  position: relative;
  min-height: 430px;
}

/* In-flow active panel (no opacity:0 trap if JS/CSS partially fails) */
.hero-panel {
  display: none;
  max-width: 48rem;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}

.hero-panel.is-active {
  display: flex;
  pointer-events: auto;
  animation: hero-panel-in 0.65s ease both;
}

@keyframes hero-panel-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 1.25rem;
  border-radius: 999px;
  background: var(--brand);
  color: #000;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.hero-title {
  margin: 0;
  max-width: 48rem;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.65);
}

.hero-text {
  margin: 1.5rem 0 0;
  max-width: 42rem;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0.75rem 1.6rem;
  font-size: 0.875rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-brand {
  background: var(--brand);
  color: #000;
  box-shadow: 0 12px 28px rgba(245, 163, 0, 0.28);
}

.btn-brand:hover {
  background: #fff;
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border-color: transparent;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.28em;
  text-decoration-thickness: 1.5px;
}

.btn-ghost:hover {
  border-color: transparent;
  color: var(--brand);
}

.btn-dark {
  box-shadow: none;
}

.btn-dark:hover {
  background: var(--charcoal);
  color: var(--brand);
}

.hero-dots {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(0, 0, 0, 0.35);
  padding: 0.5rem 0.75rem;
  backdrop-filter: blur(12px);
}

.hero-dot {
  position: relative;
  height: 0.625rem;
  width: 0.625rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.hero-dot::before {
  content: "";
  position: absolute;
  inset: -12px -10px;
}

.hero-dot.is-active {
  width: 2.25rem;
  background: var(--brand);
}

/* Booking */
.booking {
  position: relative;
  z-index: 20;
  margin-top: -6rem;
  padding-bottom: 2.5rem;
}

.booking-shell {
  /* visible so address autocomplete dropdown is not clipped */
  overflow: visible;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: #fffef9;
  padding: 0.75rem;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
  color: var(--charcoal);
}

.booking-inner {
  display: grid;
  gap: 1.5rem;
  border-radius: 28px;
  background: var(--background);
  padding: 1.25rem;
}

.booking-head {
  margin: 0 auto;
  max-width: 48rem;
  text-align: center;
}

.eyebrow {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brand-strong);
}

.section-title {
  margin: 0.75rem 0 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.muted {
  color: var(--muted);
}

.booking-head p {
  margin: 0.75rem auto 0;
  max-width: 36rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-size: 0.875rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea,
.vst-places input {
  width: 100%;
  max-width: 100%;
  min-height: 48px;
  border-radius: 0.75rem;
  border: 1px solid #d6d3d1;
  background: #fff;
  padding: 0.7rem 0.85rem;
  color: var(--foreground);
  -webkit-appearance: none;
  appearance: none;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236d6455' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-inline-end: 2.4rem;
}

html[dir="rtl"] .field select {
  background-position: left 0.9rem center;
  padding-inline-end: 0.85rem;
  padding-inline-start: 2.4rem;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.vst-places {
  position: relative;
  z-index: 1;
}

.vst-places:focus-within {
  z-index: 10060;
}

.vst-places__list {
  position: absolute;
  z-index: 10050; /* above .float-dock (9999) */
  left: 0;
  right: 0;
  top: calc(100% + 0.25rem);
  margin: 0;
  padding: 0.35rem;
  list-style: none;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 0.85rem;
  box-shadow: 0 16px 40px rgba(23, 19, 11, 0.14);
  max-height: min(16rem, 50vh);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.vst-places__item,
.vst-places__hint {
  padding: 0.75rem 0.85rem;
  border-radius: 0.55rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #17130b;
}

.vst-places__item {
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.vst-places__item:hover,
.vst-places__item.is-active {
  background: #fff7e6;
}

.vst-places__hint {
  color: #78716c;
  font-weight: 600;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(245, 163, 0, 0.45);
  border-color: var(--brand);
}

.form-status {
  display: none;
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-ok {
  background: rgba(31, 122, 76, 0.1);
  color: #1f7a4c;
}

.form-status.is-err {
  background: rgba(180, 35, 24, 0.1);
  color: #b42318;
}

.honeypot {
  position: absolute;
  left: -10000px;
  opacity: 0;
  pointer-events: none;
}

.btn-block {
  width: 100%;
}

.field--notes {
  margin-top: 1rem;
}

.form-submit {
  margin-top: 1rem;
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-white {
  background: #fff;
}

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

.section-team {
  position: relative;
  overflow: hidden;
  background: #e9eef2;
  color: var(--charcoal);
  padding: 5rem 0;
}

.section-team::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(245, 163, 0, 0.16), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.72), transparent 30%);
}

.section-team .wrap {
  position: relative;
}

.team-head {
  margin: 0 auto 3rem;
  max-width: 48rem;
  text-align: center;
}

.team-head .section-title {
  color: var(--brand-strong);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
}

.team-head p {
  margin: 1.25rem auto 0;
  max-width: 36rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--muted);
}

.cards-4 {
  display: grid;
  gap: 1.25rem;
}

.cards-6 {
  display: grid;
  gap: 1.25rem;
}

.footer-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  justify-content: center;
  align-items: center;
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
}

.footer-services strong {
  width: 100%;
  text-align: center;
  margin-bottom: 0.15rem;
}

.footer-services a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.service-card,
.photo-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid #e7e5e4;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover,
.photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.media-4x3 {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.media-4x3 img,
.cover-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.service-card:hover .media-4x3 img,
.gallery-item:hover img,
.partners-media:hover img {
  transform: scale(1.08);
}

.card-body {
  padding: 1.25rem;
}

.card-body h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.card-body p {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

/* Fleet — one static photo (no carousel / no heavy gallery) */
.fleet-static {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.fleet-static__copy .eyebrow {
  color: var(--brand);
}

.fleet-static__copy .section-title {
  margin: 0.35rem 0 0;
  max-width: 36rem;
  color: #fff;
}

.fleet-static__copy p:not(.eyebrow) {
  margin: 1rem 0 0;
  max-width: 36rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.fleet-static__media {
  margin: 0;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.fleet-static__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.pill {
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-strong);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 900;
}

/* Gallery (kept for SEO pages; homepage uses fleet-static) */
.gallery-head {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.gallery-head .eyebrow {
  color: var(--brand);
}

.gallery-head p {
  margin: 0;
  max-width: 36rem;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-auto-rows: 190px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item--wide {
  grid-column: span 1;
}

/* Drivers */
.team-grid {
  display: grid;
  gap: 1.25rem;
}

.driver-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: #fff;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  perspective: 1200px;
}

.driver-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.18);
}

.driver-photo-frame {
  position: relative;
  height: 430px;
  overflow: hidden;
  border-radius: 28px 28px 0 0;
  background: #d6d3d1;
  transform-origin: center bottom;
  transition: transform 0.45s ease, box-shadow 0.45s ease;
}

.driver-card:hover .driver-photo-frame {
  transform: translateY(-8px) rotateX(4deg) rotateY(-3deg);
  box-shadow: 0 28px 55px rgb(0 0 0 / 0.22);
}

.driver-slide {
  position: absolute;
  inset: 0;
  animation: driver-photo-cycle 12s ease-in-out infinite;
  opacity: 0;
  visibility: hidden;
}

@keyframes driver-photo-cycle {
  0%,
  28% {
    opacity: 1;
    transform: scale(1);
    visibility: visible;
  }
  34%,
  100% {
    opacity: 0;
    transform: scale(1.025);
    visibility: hidden;
  }
}

.driver-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.7s ease;
}

.driver-card:hover .driver-slide img {
  transform: scale(1.055) translateY(-8px);
}

.driver-body {
  min-height: 16rem;
  padding: 1.75rem;
  text-align: center;
}

.driver-body h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
}

.driver-role {
  margin: 0.5rem 0 0;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-strong);
}

.driver-detail {
  margin: 1.25rem auto 0;
  max-width: 14rem;
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--muted);
}

.driver-langs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.driver-langs span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid #fde68a;
  background: var(--brand-soft);
  color: var(--brand-ink);
  padding: 0.4rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

/* Partners */
.partners {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 4rem 0;
}

.partners-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.partners-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.partners .section-title + p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--muted);
}

.partners .btn {
  margin-top: 2rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.55);
  padding: 3rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(16px);
}

.footer-logo {
  width: 14rem;
  margin: 0 auto;
  border-radius: 28px;
  border: 1px solid rgba(251, 191, 36, 0.7);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.75rem 1.5rem;
  object-fit: contain;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.site-footer .desc {
  margin: 1.25rem auto 0;
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 900;
}

.footer-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.footer-nav a:hover {
  color: var(--brand-strong);
}

.sponsors {
  margin: 2rem auto 0;
  max-width: 64rem;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.8);
  padding: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.sponsors img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }

  .nav-pill {
    display: flex;
  }

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

  .cards-4 {
    grid-template-columns: 1fr 1fr;
  }

  .cards-6 {
    grid-template-columns: 1fr 1fr;
  }

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

  .gallery-item--wide {
    grid-column: span 2;
    grid-row: span 2;
  }

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

  .booking-inner {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-block {
    padding-bottom: 8rem;
  }

  .hero-stage {
    min-height: 590px;
  }

  .fleet-static {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.5rem;
  }

  .cards-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  .cards-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-head {
    grid-template-columns: 0.72fr 1fr;
    align-items: end;
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (prefers-reduced-motion: reduce) {
  .hero-bg-img,
  .hero-panel,
  .driver-slide,
  .service-card,
  .driver-card {
    animation: none !important;
    transition: none !important;
  }

  .hero-panel.is-active {
    opacity: 1;
    transform: none;
  }

  .driver-slide:first-child {
    opacity: 1;
    visibility: visible;
  }
}

/* Floating side icons (PreparedChatbot dock — must stay visible) */
.float-dock {
  position: fixed !important;
  right: max(1.15rem, env(safe-area-inset-right, 0px));
  top: 50%;
  z-index: 9999 !important;
  display: grid !important;
  gap: 1rem;
  transform: translateY(-50%);
  pointer-events: auto;
  visibility: visible !important;
  opacity: 1 !important;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

body.vst-places-focus .float-dock {
  opacity: 0.28;
  pointer-events: none;
}

.float-btn {
  display: inline-flex;
  width: 72px;
  height: 72px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.92);
  color: var(--charcoal);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.18);
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  box-shadow: 0 24px 60px rgba(255, 158, 0, 0.34);
}

.float-btn--wa {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

.float-btn--wa:hover {
  background: #1fb85a;
  border-color: #1fb85a;
  color: #fff;
  box-shadow: 0 24px 60px rgba(37, 211, 102, 0.42);
}

.chat-sheet[hidden] {
  display: none !important;
}

.chat-sheet {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(4px);
}

.chat-sheet__panel {
  position: absolute;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  width: min(420px, calc(100% - 2rem));
  border-radius: 28px;
  background: #fff;
  color: var(--charcoal);
  padding: 1.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.chat-sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.chat-sheet__head button {
  border: 0;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  min-width: 44px;
  min-height: 44px;
}

.chat-sheet__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.btn-ghost-dark {
  background: #111;
  color: #fff;
}

.btn-ghost-dark:hover {
  background: var(--brand);
  color: #111;
}

@media (max-width: 720px) {
  body {
    padding-bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
  }

  .wrap {
    width: min(var(--max), calc(100% - 1.25rem));
  }

  .site-header {
    gap: 0.65rem;
    padding: 0.85rem 0;
  }

  .logo-circle {
    width: 2.85rem;
    height: 2.85rem;
  }

  .header-actions {
    gap: 0.4rem;
  }

  .lang-toggle {
    min-width: 2.6rem;
    padding: 0.45rem 0.7rem;
  }

  .mobile-nav {
    left: 0.65rem;
    right: 0.65rem;
    top: 4.75rem;
    max-height: min(70vh, 28rem);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .hero-block {
    padding-bottom: 3.5rem;
    min-height: 100svh;
  }

  .hero-stage {
    min-height: min(420px, 68svh);
    padding: 0.35rem 0 4.25rem;
  }

  .hero-panels {
    min-height: 0;
  }

  .hero-badge {
    margin-bottom: 0.9rem;
    font-size: 0.8rem;
    padding: 0.45rem 0.9rem;
  }

  .hero-title {
    font-size: clamp(1.75rem, 8.5vw, 2.55rem);
    line-height: 1.05;
  }

  .hero-text {
    font-size: 0.98rem;
    margin-top: 0.95rem;
    line-height: 1.65;
  }

  .hero-cta {
    margin-top: 1.25rem;
    gap: 0.65rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-dots {
    bottom: 1.15rem;
    padding: 0.4rem 0.65rem;
  }

  .booking {
    margin-top: -3rem;
    padding-bottom: 1.75rem;
  }

  .booking-shell {
    border-radius: 22px;
    padding: 0.4rem;
  }

  .booking-inner {
    border-radius: 18px;
    padding: 1rem 0.9rem;
    gap: 1.15rem;
  }

  .booking-head p {
    font-size: 0.88rem;
  }

  .form-grid {
    gap: 0.9rem;
  }

  .field input,
  .field select,
  .field textarea,
  .vst-places input {
    font-size: 16px; /* avoid iOS zoom on focus */
    min-height: 48px;
  }

  .vst-places__list {
    max-height: min(14rem, 42vh);
    z-index: 10070;
  }

  .section {
    padding: 2.75rem 0;
  }

  .section-team {
    padding: 3.25rem 0;
  }

  .team-head {
    margin-bottom: 2rem;
  }

  .driver-photo-frame {
    height: min(360px, 58vw);
  }

  .driver-body {
    min-height: 0;
    padding: 1.35rem 1.15rem 1.5rem;
  }

  .partners {
    padding: 2.75rem 0;
    gap: 1.5rem;
  }

  .gallery-grid {
    grid-auto-rows: 160px;
  }

  .site-footer {
    padding: 2.25rem 1rem 1.5rem;
  }

  .footer-logo {
    width: min(14rem, 72vw);
    padding: 0.65rem 1.15rem;
  }

  .sponsors {
    margin-top: 1.5rem;
    padding: 0.75rem;
    border-radius: 1.1rem;
  }

  .float-dock {
    right: max(0.65rem, env(safe-area-inset-right, 0px));
    left: auto;
    top: auto;
    bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    transform: none;
    grid-auto-flow: column;
    gap: 0.55rem;
    padding: 0.35rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
  }

  html[dir="rtl"] .float-dock {
    left: max(0.65rem, env(safe-area-inset-left, 0px));
    right: auto;
  }

  body.vst-places-focus .float-dock {
    opacity: 0.2;
    transform: translateY(0.35rem);
  }

  .float-btn {
    width: 48px;
    height: 48px;
  }

  .float-btn svg {
    width: 24px;
    height: 24px;
  }

  .chat-sheet__panel {
    right: max(0.65rem, env(safe-area-inset-right, 0px));
    left: max(0.65rem, env(safe-area-inset-left, 0px));
    bottom: max(0.75rem, env(safe-area-inset-bottom, 0px));
    width: auto;
    border-radius: 1.25rem;
    padding: 1.1rem;
  }

  html[dir="rtl"] .chat-sheet__panel {
    left: max(0.65rem, env(safe-area-inset-left, 0px));
    right: max(0.65rem, env(safe-area-inset-right, 0px));
  }
}

@media (min-width: 721px) and (max-width: 1023px) {
  .hero-stage {
    min-height: 500px;
  }

  .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
  }

  .float-dock {
    right: max(0.9rem, env(safe-area-inset-right, 0px));
    gap: 0.85rem;
  }

  .float-btn {
    width: 62px;
    height: 62px;
  }

  .booking-inner {
    padding: 1.5rem;
  }

  .section {
    padding: 3.25rem 0;
  }
}

