/* ============================================================
   SELENA TRANSFER & TRAVEL GMBH — Premium Website Stylesheet
   Design System: Black / White / Gold (#C9A84C)
   Font: Poppins (Google Fonts)
   Mobile-first responsive
   ============================================================ */

/* ── 1. CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  /* Brand Colors */
  --clr-black:        #0A0A0A;
  --clr-black-soft:   #111111;
  --clr-black-card:   #161616;
  --clr-black-deep:   #060606;
  --clr-white:        #FFFFFF;
  --clr-white-soft:   #F5F5F5;
  --clr-white-muted:  #A0A0A0;
  --clr-gold:         #C9A84C;
  --clr-gold-light:   #D4AF37;
  --clr-gold-dark:    #A0822A;
  --clr-gold-bg:      rgba(201, 168, 76, 0.08);
  --clr-gold-border:  rgba(201, 168, 76, 0.2);

  /* Typography */
  --font-primary:  'Poppins', sans-serif;
  --fw-light:      300;
  --fw-regular:    400;
  --fw-medium:     500;
  --fw-semibold:   600;
  --fw-bold:       700;

  /* Fluid font sizes */
  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1rem;
  --fs-lg:   1.125rem;
  --fs-xl:   1.25rem;
  --fs-2xl:  1.5rem;
  --fs-3xl:  1.875rem;
  --fs-4xl:  2.25rem;
  --fs-5xl:  3rem;

  /* Spacing Scale */
  --sp-xs:  0.5rem;
  --sp-sm:  1rem;
  --sp-md:  1.5rem;
  --sp-lg:  2rem;
  --sp-xl:  3rem;
  --sp-2xl: 5rem;
  --sp-3xl: 6rem;

  /* Layout */
  --container-max: 1280px;
  --container-pad: 1.25rem;
  --section-space: clamp(4.75rem, 8vw, 7.5rem);
  --content-measure: 64ch;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-gold:   0 4px 30px rgba(201, 168, 76, 0.15);
  --shadow-card:   0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-heavy:  0 20px 60px rgba(0, 0, 0, 0.8);
  --shadow-sm:     0 2px 8px rgba(0, 0, 0, 0.4);

  /* Transitions */
  --transition-fast:  150ms ease;
  --transition-base:  300ms ease;
  --transition-slow:  600ms ease;

  /* Header */
  --header-h: 80px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-primary);
  background-color: var(--clr-black);
  color: var(--clr-white);
  line-height: 1.65;
  overflow-x: hidden;
  width: 100%;
  overscroll-behavior-x: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 2px;
}

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--fw-bold);
  line-height: 1.15;
}

/* ── 3. UTILITIES ─────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section {
  padding-block: var(--section-space);
}

.section--alt {
  background-color: var(--clr-black-soft);
}

.section-tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-sm);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: clamp(1rem, 1.45vw, 1.125rem);
  color: var(--clr-white-muted);
  max-width: var(--content-measure);
  line-height: 1.75;
}

.section-header {
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}

.divider-gold {
  width: 60px;
  height: 2px;
  background: var(--clr-gold);
  margin-block: var(--sp-md);
}

.gold-text { color: var(--clr-gold); }
.text-muted { color: var(--clr-white-muted); }

/* ── 4. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-base), border-color var(--transition-base), background-color var(--transition-base), color var(--transition-base), box-shadow var(--transition-base);
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  isolation: isolate;
}

.btn--primary {
  background-color: var(--clr-gold);
  color: var(--clr-black);
  border-color: var(--clr-gold);
}

.btn--primary:hover {
  background-color: var(--clr-gold-light);
  border-color: var(--clr-gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--clr-black);
}

.btn--outline {
  background-color: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.38);
}

.btn--outline:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  background-color: rgba(201, 168, 76, 0.08);
}

.btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.28);
}

.btn--hero-secondary {
  border-color: rgba(201, 168, 76, 0.36);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(9, 9, 9, 0.35);
}

.btn--hero-secondary:hover {
  color: var(--clr-white);
  border-color: rgba(201, 168, 76, 0.68);
  background: rgba(201, 168, 76, 0.12);
}

.btn--sm {
  font-size: var(--fs-xs);
  padding: 0.625rem 1.25rem;
}

.btn--lg {
  font-size: var(--fs-base);
  padding: 1rem 2.25rem;
}

/* ── 5. SCROLL REVEAL ANIMATIONS ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0ms; }
.stagger-children > *:nth-child(2) { transition-delay: 100ms; }
.stagger-children > *:nth-child(3) { transition-delay: 200ms; }
.stagger-children > *:nth-child(4) { transition-delay: 300ms; }
.stagger-children > *:nth-child(5) { transition-delay: 400ms; }

/* ── 6. KEYFRAMES ─────────────────────────────────────────── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

@keyframes shimmerGold {
  to { background-position: 200% center; }
}

@keyframes bounceY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

@keyframes pulse-ring {
  0%   { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70%  { transform: scale(1.05); box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes navItemIn {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── 7. HEADER ────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: calc(var(--header-h) + var(--safe-top));
  padding-top: var(--safe-top);
  z-index: 1000;
  background: transparent;
  overflow: hidden;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.header > .container {
  height: 100%;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-md);
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  color: var(--clr-gold);
  flex-shrink: 0;
}

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

.logo-name {
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 0.625rem;
  font-weight: var(--fw-medium);
  color: var(--clr-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Desktop Nav */
.header__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}

.header__nav-link {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  padding-block: 0.25rem;
  transition: color var(--transition-base);
}

.header__nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--clr-gold);
  transition: width var(--transition-base);
}

.header__nav-link:hover,
.header__nav-link.active {
  color: var(--clr-gold);
}

.header__nav-link.active::after,
.header__nav-link:hover::after {
  width: 100%;
}

/* Language Switcher */
.lang-switcher {
  display: none;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px 7px;
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.625rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
  line-height: 1;
}

.lang-btn span {
  font-size: 0.6rem;
}

.lang-btn:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.lang-btn.active {
  border-color: var(--clr-gold);
  background: rgba(201, 168, 76, 0.1);
  color: var(--clr-gold);
}

.hero-lang {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.95rem;
}

.hero-lang__label {
  font-size: 0.7rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.hero-lang__buttons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.42rem;
  flex-wrap: wrap;
}

.hero-lang .lang-btn {
  gap: 0.35rem;
  min-height: 2.15rem;
  padding: 0.45rem 0.72rem;
  border-radius: var(--radius-full);
  border-color: rgba(201, 168, 76, 0.45);
  background: rgba(10, 10, 10, 0.55);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.72rem;
}

.hero-lang .lang-btn span {
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.hero-lang .lang-btn.active {
  color: #fff;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.35) 0%, rgba(201, 168, 76, 0.16) 100%);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.7), 0 8px 22px rgba(0, 0, 0, 0.28);
}

.header__cta {
  display: none;
  flex-shrink: 0;
}

/* Hamburger */
.header__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 1001;
  transition: background var(--transition-fast);
}

.header__hamburger:hover {
  background: var(--clr-gold-bg);
}

.hamburger__line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--clr-gold);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.header__hamburger.open .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger.open .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__hamburger.open .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 6, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-md);
  width: 100%;
  padding: var(--sp-xl);
}

.mobile-nav__link {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-semibold);
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 1rem;
  transition: color var(--transition-base);
  opacity: 0;
}

.mobile-nav__link.animate-in {
  animation: navItemIn 0.4s ease forwards;
}

.mobile-nav__link:hover,
.mobile-nav__link.active {
  color: var(--clr-gold);
}

.mobile-nav__link--cta {
  background: var(--clr-gold);
  color: var(--clr-black) !important;
  padding: 0.75rem 2.5rem;
  border-radius: var(--radius-sm);
  font-size: var(--fs-xl);
  margin-top: var(--sp-sm);
}

.mobile-nav__contact {
  margin-top: var(--sp-lg);
  font-size: var(--fs-sm);
  color: var(--clr-white-muted);
}

.mobile-nav__contact a {
  color: var(--clr-gold);
  font-weight: var(--fw-medium);
}

.mobile-nav__lang {
  display: none;
}

/* ── 8. HERO SECTION ──────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Bottom gradient fade into trust bar */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to bottom, transparent 0%, #161616 100%);
  z-index: 2;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-inline: var(--container-pad);
  max-width: 980px;
  width: 100%;
}

.hero__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--sp-md);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--clr-gold-border);
  padding: 0.375rem 1rem;
  border-radius: var(--radius-full);
  opacity: 0;
  animation: fadeUp 0.7s ease 0.1s forwards;
}

.hero__title {
  font-size: clamp(2.35rem, 5.8vw, 4.6rem);
  line-height: 1.02;
  color: var(--clr-white);
  margin-bottom: 1.05rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

/* Line reveal wrapper — clips overflow so inner slides up from hidden */
.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em; /* prevent descender clip */
}

.hero__line-inner {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  animation: lineReveal 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Stagger each line */
.hero__line:nth-child(1) .hero__line-inner { animation-delay: 0.25s; }
.hero__line:nth-child(2) .hero__line-inner { animation-delay: 0.48s; }
.hero__line:nth-child(3) .hero__line-inner { animation-delay: 0.68s; }

/* Mixed weight typography for the title */
.hero__word-light {
  font-weight: 300;
  font-size: 0.72em;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
}

.hero__word-bold {
  font-weight: 800;
  font-size: 1.1em;
  letter-spacing: -0.02em;
  color: var(--clr-white);
}

.hero__word-gold {
  font-weight: 600;
  font-size: 0.88em;
  background: linear-gradient(90deg, #C9A84C 0%, #f0d68a 40%, #D4AF37 60%, #C9A84C 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerGold 3s linear 1.4s infinite;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.85vw, 1.125rem);
  font-weight: var(--fw-light);
  color: rgba(255, 255, 255, 0.75);
  max-width: 54ch;
  margin: 0 auto 1.5rem;
  line-height: 1.72;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}

.hero-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 1.35s forwards;
}

.hero-proof__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(6, 6, 6, 0.55);
  border: 1px solid rgba(201, 168, 76, 0.42);
  border-radius: var(--radius-full);
  padding: 0.35rem 0.85rem;
}

.hero-proof__stars {
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  color: #f1d182;
}

.hero-proof__rating-text {
  font-size: 0.72rem;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.03em;
}

.hero-proof__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.hero-proof__badge {
  font-size: 0.68rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(0, 0, 0, 0.28);
  border-radius: var(--radius-full);
  padding: 0.28rem 0.68rem;
}

.hero-proof__hubs {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-proof__hubs-label {
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-right: 0.1rem;
}

.hero-proof__hub {
  min-width: 2.25rem;
  text-align: center;
  font-size: 0.64rem;
  font-weight: var(--fw-semibold);
  color: #f0d68a;
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.08);
  border-radius: 999px;
  padding: 0.24rem 0.52rem;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  transition: opacity var(--transition-base);
  cursor: default;
}

.hero__scroll-icon {
  width: 20px;
  height: 20px;
  animation: bounceY 1.8s ease-in-out infinite;
}

/* ── 9. SERVICES SECTION ──────────────────────────────────── */
.services {
  background: var(--clr-black-soft);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.95rem, 2vw, 1.4rem);
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  .services-grid .service-card {
    padding: var(--sp-md);
  }
}

.service-card {
  background: var(--clr-black-card);
  border: 1px solid var(--clr-gold-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--clr-gold);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38), 0 0 0 1px rgba(201, 168, 76, 0.2);
  background: linear-gradient(180deg, rgba(22, 22, 22, 1) 0%, rgba(18, 18, 18, 1) 100%);
}

.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--clr-gold-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  margin-bottom: var(--sp-md);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__title {
  font-size: var(--fs-lg);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  line-height: 1.3;
  min-height: 2.6em;
  margin-bottom: 0.5rem;
}

.service-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-white-muted);
  line-height: 1.65;
  min-height: 4.95em;
  margin-bottom: 0;
}

.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-top: var(--sp-sm);
}

.service-card__list li {
  font-size: var(--fs-xs);
  color: var(--clr-white-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-card__list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr-gold);
  flex-shrink: 0;
}

/* ── 10. FLEET SECTION ────────────────────────────────────── */
.fleet {
  background: var(--clr-black);
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(0.95rem, 2vw, 1.4rem);
  align-items: stretch;
}

.fleet-card {
  background: var(--clr-black-card);
  border: 1px solid var(--clr-gold-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.fleet-card:hover {
  transform: translateY(-5px);
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-heavy);
}

.fleet-card__image {
  aspect-ratio: 4 / 3;
  min-height: 238px;
  height: auto;
  overflow: hidden;
  position: relative;
}

.fleet-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.4s ease;
}

.fleet-photo--s-class {
  object-position: 43% 52%;
}

.fleet-photo--bmw-7 {
  object-position: 52% 56%;
}

.fleet-photo--v-class {
  object-position: 50% 46%;
}

.fleet-photo--sprinter {
  object-position: 49% 42%;
}

.fleet-card__image img.loaded {
  opacity: 1;
}

.fleet-card:hover .fleet-card__image img {
  transform: scale(1.06);
}

.fleet-card__badge {
  position: absolute;
  top: var(--sp-sm);
  left: var(--sp-sm);
  background: var(--clr-gold);
  color: var(--clr-black);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.fleet-card__body {
  padding: var(--sp-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.fleet-card__category {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.375rem;
}

.fleet-card__name {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.fleet-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-white-muted);
  line-height: 1.6;
  margin-bottom: 0.9rem;
  min-height: 4.8em;
}

.fleet-card__specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.48rem;
  margin-top: auto;
  padding-top: var(--sp-sm);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-item {
  display: grid;
  grid-template-columns: 14px auto 1fr;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.42rem 0.52rem;
}

.spec-item svg {
  width: 13px;
  height: 13px;
  color: var(--clr-gold);
  flex-shrink: 0;
}

.spec-item__label {
  font-size: 0.63rem;
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.spec-item__value {
  justify-self: end;
  font-weight: var(--fw-medium);
  color: rgba(255, 255, 255, 0.95);
}

/* ── 11. ABOUT SECTION ────────────────────────────────────── */
.about {
  background: var(--clr-black-soft);
}

.about__grid {
  display: grid;
  gap: var(--sp-xl);
  align-items: center;
}

.about__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-sm);
}

.about__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: var(--sp-md);
  line-height: 1.2;
}

.about__body p {
  font-size: var(--fs-base);
  color: var(--clr-white-muted);
  line-height: 1.8;
  margin-bottom: var(--sp-sm);
}

.about__features {
  list-style: none;
  margin-top: var(--sp-lg);
  padding-top: var(--sp-lg);
  border-top: 1px solid var(--clr-gold-border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
}

.about__features li {
  display: flex;
  align-items: center;
  gap: var(--sp-sm);
  font-size: 0.9rem;
  color: var(--clr-white-muted);
}

.about__features li svg {
  width: 18px;
  height: 18px;
  color: var(--clr-gold);
  flex-shrink: 0;
}

.about__features li span {
  line-height: 1.4;
}

/* kept for any lingering references */
.stat-label {
  font-size: var(--fs-xs);
  color: var(--clr-white-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.375rem;
}

.about__image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--clr-gold-border);
  box-shadow: 0 0 48px rgba(201, 168, 76, 0.08);
}

.about__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius-xl);
  display: block;
}

/* ── 12. DESTINATIONS SECTION ─────────────────────────────── */
.destinations {
  background: var(--clr-black);
}

.destinations__grid {
  display: grid;
  gap: var(--sp-xl);
}

.destinations__intro {
  font-size: var(--fs-base);
  color: var(--clr-white-muted);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: var(--sp-lg);
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}

.coverage-tag {
  display: inline-block;
  border: 1px solid var(--clr-gold-border);
  color: var(--clr-white-muted);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.coverage-tag:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.routes__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  margin-bottom: var(--sp-md);
}

.routes-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.route-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-sm) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: var(--sp-sm);
  transition: background var(--transition-fast);
}

.route-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.route-item__journey {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.route-item__from,
.route-item__to {
  font-size: var(--fs-sm);
  color: var(--clr-white);
  font-weight: var(--fw-medium);
}

.route-item__arrow {
  color: var(--clr-gold);
  flex-shrink: 0;
}

.route-item__arrow svg {
  width: 16px;
  height: 16px;
}

.route-item__duration {
  font-size: var(--fs-xs);
  color: var(--clr-gold);
  font-weight: var(--fw-medium);
  white-space: nowrap;
}

/* ── 13. WHY CHOOSE US SECTION ────────────────────────────── */
.features {
  background: var(--clr-black-soft);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--sp-md);
}

.feature-card {
  background: var(--clr-black-card);
  border: 1px solid var(--clr-gold-border);
  border-radius: var(--radius-lg);
  padding: var(--sp-lg) var(--sp-md);
  text-align: center;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--clr-gold);
  box-shadow: var(--shadow-gold);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  background: var(--clr-gold-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  margin: 0 auto var(--sp-md);
}

.feature-card__icon svg {
  width: 30px;
  height: 30px;
}

.feature-card__title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.feature-card__desc {
  font-size: var(--fs-sm);
  color: var(--clr-white-muted);
  line-height: 1.65;
}

/* ── 14. BOOKING FORM ─────────────────────────────────────── */
.booking {
  background: var(--clr-black);
}

.booking__form {
  background: var(--clr-black-card);
  border: 1px solid var(--clr-gold-border);
  border-radius: var(--radius-xl);
  padding: var(--sp-xl);
  max-width: 800px;
  margin-inline: auto;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.32);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-md);
  margin-bottom: var(--sp-lg);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.form-label span[aria-label="required"] {
  color: #f6d783;
  font-weight: var(--fw-bold);
  margin-left: 0.25rem;
}

.form-required-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: var(--sp-sm);
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--fs-xs);
}

.form-required-hint .required-star {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid rgba(201, 168, 76, 0.45);
  color: #f6d783;
  font-weight: var(--fw-bold);
  line-height: 1;
}

.form-control {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--clr-white);
  padding: 0.8125rem 1rem;
  font-size: var(--fs-sm);
  font-family: var(--font-primary);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  outline: none;
  border-color: var(--clr-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-control.field--error {
  border-color: #e05252;
  box-shadow: 0 0 0 3px rgba(224, 82, 82, 0.12);
}

.form-control.field--ok {
  border-color: #4caf7d;
  box-shadow: 0 0 0 3px rgba(76, 175, 125, 0.1);
}

.form-field-feedback {
  min-height: 1.05rem;
  margin-top: 0.08rem;
  font-size: 0.72rem;
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.56);
}

.form-field-feedback.is-error {
  color: #f7aaaa;
}

/* Date input color fix for webkit */
.form-control::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg);
  cursor: pointer;
}

/* Custom select arrow */
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.875rem center;
  background-size: 16px;
  padding-right: 2.75rem;
  cursor: pointer;
}

select.form-control option {
  background: var(--clr-black-card);
  color: var(--clr-white);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-status {
  display: none;
  padding: var(--sp-sm) var(--sp-md);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  margin-bottom: var(--sp-md);
}

.form-status--success {
  display: block;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #86efac;
}

.form-status--error {
  display: block;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

.form-submit {
  width: 100%;
  justify-content: center;
  padding: 1rem;
  font-size: var(--fs-base);
  letter-spacing: 0.04em;
}

.form-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-top-color: var(--clr-black);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 0.5rem;
}

/* ── 15. CONTACT SECTION ──────────────────────────────────── */
.contact {
  background: var(--clr-black-soft);
}

.contact__grid {
  display: grid;
  gap: var(--sp-xl);
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.contact__intro-card {
  border: 1px solid var(--clr-gold-border);
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.08) 0%, rgba(22, 22, 22, 0.7) 100%);
  border-radius: var(--radius-lg);
  padding: 1rem;
}

.contact__intro-title {
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: #f0d68a;
  margin-bottom: 0.35rem;
}

.contact__intro-text {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.65;
}

.contact__quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.contact__quick-btn {
  min-height: 2.25rem;
  padding: 0.48rem 0.9rem;
}

.contact-item {
  display: flex;
  gap: var(--sp-md);
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.015);
  transition: border-color var(--transition-base), background var(--transition-base), transform var(--transition-base);
}

.contact-item:hover {
  border-color: rgba(201, 168, 76, 0.46);
  background: rgba(201, 168, 76, 0.06);
  transform: translateY(-2px);
}

.contact-item__icon {
  width: 44px;
  height: 44px;
  background: var(--clr-gold-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  flex-shrink: 0;
}

.contact-item__icon svg {
  width: 20px;
  height: 20px;
}

.contact-item__label {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.contact-item__label--languages {
  margin-bottom: 0.75rem;
}

.contact-item__value {
  font-size: var(--fs-base);
  color: var(--clr-white);
  font-weight: var(--fw-medium);
}

.contact-item__value a:hover {
  color: var(--clr-gold);
}

.contact__languages {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: var(--sp-md);
}

.lang-badge {
  border: 1px solid var(--clr-gold-border);
  color: var(--clr-white-muted);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-gold-border);
  height: 380px;
  background: var(--clr-black-card);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── 16. FOOTER ───────────────────────────────────────────── */
.footer {
  background: var(--clr-black-deep);
  border-top: 1px solid var(--clr-gold-border);
  padding-block: var(--sp-xl) var(--sp-lg);
}

.footer__grid {
  display: grid;
  gap: var(--sp-xl);
  margin-bottom: var(--sp-xl);
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--sp-md);
}

.footer__tagline {
  font-size: var(--fs-sm);
  color: var(--clr-white-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: var(--sp-md);
}

.footer__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: var(--sp-md);
}

.footer__trust-item {
  border: 1px solid rgba(201, 168, 76, 0.35);
  background: rgba(201, 168, 76, 0.08);
  color: rgba(255, 255, 255, 0.83);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius-full);
  padding: 0.25rem 0.62rem;
}

.footer__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.footer__cta-btn {
  min-height: 2.2rem;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--clr-gold);
  color: var(--clr-black);
  border-color: var(--clr-gold);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.footer__col-title {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--sp-md);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__link {
  font-size: var(--fs-sm);
  color: var(--clr-white-muted);
  transition: all var(--transition-base);
  display: inline-block;
}

.footer__link:hover {
  color: var(--clr-gold);
  transform: translateX(2px);
}

.footer__link--static {
  color: rgba(255, 255, 255, 0.68);
}

.footer__link--static:hover {
  color: rgba(255, 255, 255, 0.68);
  transform: none;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: var(--sp-md);
  display: flex;
  flex-direction: column;
  gap: var(--sp-sm);
  align-items: center;
  text-align: center;
}

.footer__copy {
  font-size: var(--fs-xs);
  color: var(--clr-white-muted);
}

.footer__legal {
  display: flex;
  gap: var(--sp-md);
}

.footer__legal a {
  font-size: var(--fs-xs);
  color: var(--clr-white-muted);
}

.footer__legal a:hover {
  color: var(--clr-gold);
}

/* ── 17. WHATSAPP FLOATING BUTTON ─────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 998;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform var(--transition-base), box-shadow var(--transition-base), bottom 0.3s ease;
  animation: pulse-ring 2.5s ease-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.65);
  animation-play-state: paused;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  color: white;
}

/* ── 18. RESPONSIVE — 768px+ (Tablet) ─────────────────────── */
@media (min-width: 768px) {
  :root {
    --container-pad: 2rem;
    --sp-3xl: 7rem;
  }

  .header__nav   { display: flex; }
  .header__cta   { display: inline-flex; }
  .lang-switcher { display: flex; }
  .header__hamburger { display: none; }

  .about__grid         { grid-template-columns: 1fr 1fr; }
  .destinations__grid  { grid-template-columns: 1fr 1fr; }
  .contact__grid       { grid-template-columns: 1fr 1fr; }
  .footer__grid        { grid-template-columns: 2fr 1fr 1fr; }
  .footer__bottom      { flex-direction: row; justify-content: space-between; text-align: left; }
  .form-grid           { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .lang-switcher {
    gap: 0.35rem;
  }

  .lang-btn {
    gap: 0.3rem;
    min-height: 2rem;
    padding: 0.4rem 0.55rem;
    border-radius: var(--radius-full);
    border-color: rgba(201, 168, 76, 0.4);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.68rem;
  }

  .lang-btn span {
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }
}

/* ── 19. RESPONSIVE — 1024px+ (Desktop) ───────────────────── */
@media (min-width: 1024px) {
  :root {
    --sp-3xl: 8rem;
  }

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

/* ── 21. TRUST BAR ───────────────────────────────────────── */
.trust-bar {
  background: var(--clr-black-card);
  border-top: 1px solid var(--clr-gold-border);
  border-bottom: 1px solid var(--clr-gold-border);
}

.trust-bar__inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  text-align: center;
  flex: 1;
}

.trust-item__number {
  font-size: 1.875rem;
  font-weight: var(--fw-bold);
  color: var(--clr-gold);
  line-height: 1;
}

.trust-item__label {
  font-size: 0.65rem;
  color: var(--clr-white-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.375rem;
}

.trust-divider {
  width: 1px;
  background: var(--clr-gold-border);
  flex-shrink: 0;
  align-self: stretch;
  margin-block: 0.75rem;
}

@media (max-width: 767px) {
  :root {
    --header-h: 74px;
    --container-pad: 0.95rem;
    --sp-3xl: 4.5rem;
  }

  html {
    scroll-padding-top: calc(var(--header-h) + var(--safe-top) + 0.5rem);
  }

  html,
  body {
    overflow-x: clip;
  }

  body {
    touch-action: pan-y;
  }

  .trust-bar__inner { flex-wrap: wrap; }
  .trust-item {
    min-width: 50%;
    padding: 1rem 0.65rem;
    border-bottom: 1px solid var(--clr-gold-border);
  }
  .trust-item:nth-child(n+6) { border-bottom: none; }
  .trust-divider { display: none; }

  .trust-item__number {
    font-size: 1.55rem;
  }

  .trust-item__label {
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    margin-top: 0.3rem;
  }

  .header__inner {
    gap: 0.4rem;
    height: 100%;
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .header__logo {
    gap: 0.55rem;
    line-height: 1;
    position: relative;
    top: 1px;
  }

  .logo-text {
    display: flex;
    max-width: 138px;
  }

  .logo-name {
    font-size: 0.84rem;
    line-height: 1.1;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
  }

  .lang-switcher {
    display: none;
  }

  .header__hamburger {
    margin-left: auto;
    padding: 0.4rem;
    line-height: 0;
    position: relative;
    top: 1px;
  }

  .hamburger__line {
    width: 24px;
  }

  .mobile-nav__inner {
    gap: 0.9rem;
    padding: calc(1.25rem + var(--safe-top)) 1.25rem calc(1.5rem + var(--safe-bottom));
  }

  .mobile-nav__link {
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    padding: 0.4rem 0.9rem;
  }

  .mobile-nav__link--cta {
    font-size: 1rem;
    padding: 0.7rem 1.8rem;
  }

  .mobile-nav__lang {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    width: min(320px, 100%);
    margin-top: 0.35rem;
  }

  .mobile-nav__lang .lang-btn {
    justify-content: center;
    gap: 0.35rem;
    min-width: 0;
    min-height: 2.2rem;
    padding: 0.5rem 0.55rem;
    border-radius: var(--radius-full);
    border-color: rgba(201, 168, 76, 0.45);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.75rem;
  }

  .mobile-nav__lang .lang-btn span {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .mobile-nav__lang .lang-btn.active {
    color: #fff;
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.3) 0%, rgba(201, 168, 76, 0.16) 100%);
    box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.7), 0 8px 22px rgba(0, 0, 0, 0.35);
  }

  .hero {
    min-height: 560px;
    height: auto;
    padding-top: calc(var(--header-h) + var(--safe-top) + 1rem);
    padding-bottom: 3.5rem;
  }

  .hero__content {
    padding-inline: 0.25rem;
  }

  .hero-lang {
    display: inline-flex;
    margin-bottom: 0.85rem;
  }

  .hero-lang__buttons {
    gap: 0.35rem;
  }

  .hero-lang .lang-btn {
    min-height: 2.05rem;
    padding: 0.42rem 0.62rem;
    font-size: 0.7rem;
  }

  .hero-lang .lang-btn span {
    font-size: 0.68rem;
  }

  .hero__title {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .hero__subtitle {
    font-size: 0.96rem;
    line-height: 1.6;
    margin-bottom: 1.35rem;
  }

  .hero__cta-group {
    gap: 0.65rem;
    max-width: 320px;
    margin-inline: auto;
  }

  .hero__cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-proof {
    margin-top: 0.2rem;
    gap: 0.55rem;
  }

  .hero-proof__rating {
    width: 100%;
    justify-content: center;
  }

  .hero-proof__badges {
    gap: 0.35rem;
  }

  .hero-proof__badge {
    font-size: 0.61rem;
    padding: 0.24rem 0.55rem;
  }

  .hero__scroll {
    display: none;
  }

  .whatsapp-float {
    right: 0.85rem;
    bottom: calc(0.8rem + var(--safe-bottom));
    width: 54px;
    height: 54px;
  }

  .back-to-top {
    left: 0.85rem;
    bottom: calc(0.8rem + var(--safe-bottom));
  }

  .booking__form {
    padding: 1.1rem 0.95rem;
    border-radius: var(--radius-lg);
  }

  .form-required-hint {
    margin-bottom: 0.75rem;
    font-size: 0.72rem;
  }

  .form-grid {
    gap: 0.9rem;
    margin-bottom: 1rem;
  }

  .form-group {
    gap: 0.42rem;
  }

  .form-label {
    letter-spacing: 0.08em;
  }

  .form-control {
    min-height: 3rem;
    padding: 0.9rem 0.9rem;
    font-size: 1rem;
  }

  select.form-control {
    padding-right: 2.35rem;
    background-position: right 0.75rem center;
  }

  textarea.form-control {
    min-height: 112px;
  }

  .form-submit {
    min-height: 3.05rem;
    font-size: 0.98rem;
  }

  .form-note {
    margin-top: 0.8rem;
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .form-field-feedback {
    font-size: 0.69rem;
  }

  .contact__quick-actions {
    gap: 0.45rem;
  }

  .contact__quick-btn {
    flex: 1;
    justify-content: center;
    min-width: 0;
  }

  .footer__cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .services-grid .service-card.reveal:nth-child(1),
  .services-grid .service-card.reveal:nth-child(2) {
    transition-delay: 40ms;
  }

  .services-grid .service-card.reveal:nth-child(3),
  .services-grid .service-card.reveal:nth-child(4) {
    transition-delay: 120ms;
  }

  .services-grid .service-card.reveal:nth-child(5) {
    transition-delay: 200ms;
  }

  .fleet-grid .fleet-card.reveal:nth-child(1) { transition-delay: 30ms; }
  .fleet-grid .fleet-card.reveal:nth-child(2) { transition-delay: 90ms; }
  .fleet-grid .fleet-card.reveal:nth-child(3) { transition-delay: 150ms; }
  .fleet-grid .fleet-card.reveal:nth-child(4) { transition-delay: 210ms; }

  .fleet-photo--s-class {
    object-position: 42% 53%;
  }

  .fleet-photo--bmw-7 {
    object-position: 54% 55%;
  }

  .fleet-photo--v-class {
    object-position: 50% 45%;
  }

  .fleet-photo--sprinter {
    object-position: 49% 40%;
  }
}

/* iOS font-size fix — prevents auto-zoom on input focus */
@media (max-width: 767px) {
  .form-control { font-size: 1rem; }
}

/* ── 22. FLEET CARD IMAGE GRADIENT ───────────────────────── */
.fleet-card__image {
  position: relative;
}

.fleet-card__image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.75) 0%, transparent 100%);
  pointer-events: none;
}

/* ── 23. CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--clr-black-soft) 0%, #130f00 50%, var(--clr-black-soft) 100%);
  border-top: 1px solid var(--clr-gold-border);
  border-bottom: 1px solid var(--clr-gold-border);
  padding: var(--sp-2xl) 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  left: 5%;
  width: 35%;
  height: 220%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-lg);
}

.cta-banner__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.cta-banner__sub {
  font-size: var(--fs-base);
  color: var(--clr-white-muted);
}

.cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-sm);
  justify-content: center;
}

@media (min-width: 768px) {
  .cta-banner__inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
  }
  .cta-banner__actions { justify-content: flex-end; flex-shrink: 0; }
}

/* ── 24. FORM NOTE ───────────────────────────────────────── */
.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: var(--sp-sm);
  font-size: var(--fs-xs);
  color: var(--clr-white-muted);
}

.form-note svg {
  color: var(--clr-gold);
  flex-shrink: 0;
}

/* ── 20. REDUCED MOTION ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    transition: none;
    opacity: 1;
    transform: none;
  }

  .hero__line-inner,
  .hero__tag,
  .hero__subtitle,
  .hero__cta-group,
  .hero-proof {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .hero__word-gold {
    animation: none;
    background-position: 0 center;
  }

  .whatsapp-float,
  .hero__scroll-icon {
    animation: none;
  }

  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── HOW IT WORKS ────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  margin-top: var(--sp-2xl);
}

@media (max-width: 767px) {
  .process-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
}

.process-step {
  position: relative;
  text-align: center;
  padding: var(--sp-xl) var(--sp-lg);
  background: var(--clr-black-card);
  border: 1px solid var(--clr-gold-border);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.process-step:hover {
  border-color: var(--clr-gold);
  transform: translateY(-4px);
}

/* Connector lines between steps on desktop */
@media (min-width: 768px) {
  .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1.5rem;
    width: 3rem;
    height: 1px;
    background: linear-gradient(to right, var(--clr-gold-border), transparent);
    pointer-events: none;
  }
}

.process-step__number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--clr-gold-border);
  line-height: 1;
  margin-bottom: var(--sp-sm);
  font-variant-numeric: tabular-nums;
}

.process-step__icon {
  width: 52px;
  height: 52px;
  margin: 0 auto var(--sp-md);
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
}

.process-step__icon svg {
  width: 26px;
  height: 26px;
}

.process-step__title {
  font-size: 1.1rem;
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  margin-bottom: var(--sp-xs);
}

.process-step__desc {
  font-size: 0.9rem;
  color: var(--clr-white-muted);
  line-height: 1.65;
}

/* ── MOBILE STICKY CTA BAR ───────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  background: linear-gradient(180deg, rgba(22, 22, 22, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
  border-top: 1px solid rgba(201, 168, 76, 0.38);
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.65rem 0.9rem calc(0.65rem + var(--safe-bottom));
  gap: 0.6rem;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-cta-bar.visible {
  transform: translateY(0);
}

@media (max-width: 767px) {
  .mobile-cta-bar { display: flex; }
}

.mobile-cta-bar__call {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: #f3d17a;
  font-size: 0.98rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.01em;
  text-decoration: none;
  flex: 1;
  white-space: nowrap;
}

.mobile-cta-bar__call svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.mobile-cta-bar .btn {
  flex-shrink: 0;
  min-height: 2.6rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

.mobile-cta-bar .btn--primary {
  background: #e2bf65;
  border-color: #f0d58b;
  color: #0a0c12;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.36);
}

.mobile-cta-bar .btn--primary:hover {
  background: #edd183;
  border-color: #edd183;
  color: #080a0f;
  transform: none;
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.36);
}

/* ── BACK TO TOP ─────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 44px;
  height: 44px;
  background: var(--clr-black-card);
  border: 1px solid var(--clr-gold-border);
  border-radius: 50%;
  color: var(--clr-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, border-color 0.2s ease, background 0.2s ease;
  pointer-events: none;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--clr-gold);
  border-color: var(--clr-gold);
  color: var(--clr-black);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}

/* ── Lift floating buttons above mobile CTA bar when it's visible ── */
@media (max-width: 767px) {
  /* Lift floating controls above the CTA bar and iOS home indicator. */
  .mobile-cta-bar.visible ~ .back-to-top,
  .mobile-cta-bar.visible ~ .whatsapp-float {
    bottom: calc(74px + var(--safe-bottom) + 0.75rem);
    transition: bottom 0.3s ease, opacity 0.3s ease, transform 0.3s ease,
                border-color 0.2s ease, background 0.2s ease,
                box-shadow 0.2s ease;
  }
}
