/* =============================================
   SWISS TRAVELER — SwissChauffeur-inspired Theme
   Black · White · Gold luxury palette
   ============================================= */

:root {
  --black: #0b0b0b;
  --black-soft: #141414;
  --black-card: #1a1a1a;
  --white: #ffffff;
  --off-white: #f4f2ee;
  --gray: #8a8a8a;
  --gray-light: #c8c8c8;
  --gold: #b8965a;
  --gold-light: #d4b06a;
  --gold-dark: #96783f;
  --border: rgba(184, 150, 90, 0.25);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;

  --header-h: 72px;
  --topbar-h: 0px;
  --ease: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 2px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--white);
  background: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--ease); }
ul { list-style: none; }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: 5.5rem 0; }
.section--dark { background: var(--black-soft); }

/* --- Typography --- */
.section-tag {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-head p {
  color: var(--gray-light);
  font-size: 0.92rem;
  margin-top: 0.75rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--ease);
}

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

.btn--primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

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

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--block { width: 100%; }

/* --- Top Bar --- */
.topbar {
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar__phone {
  font-size: 0.78rem;
  color: var(--gray-light);
  letter-spacing: 0.04em;
}

.topbar__phone:hover { color: var(--gold); }

.topbar__langs { display: flex; gap: 0.5rem; }

.topbar__lang {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 0.72rem;
  cursor: pointer;
  padding: 0.2rem 0.5rem;
  font-family: var(--font-sans);
}

.topbar__lang.active,
.topbar__lang:hover { color: var(--gold); }

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #000000;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow var(--ease);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo__mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.logo__text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.logo__text span { color: var(--gold); }

.logo__img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--ease);
}

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

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__cta { flex-shrink: 0; }

.nav__menu-cta { display: none; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--ease);
}

.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--topbar-h));
  display: flex;
  align-items: center;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 22s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 11, 11, 0.82) 0%,
    rgba(11, 11, 11, 0.55) 50%,
    rgba(11, 11, 11, 0.75) 100%
  );
}

.hero__body {
  position: relative;
  z-index: 2;
  padding: 3rem 1.25rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  max-width: 420px;
}

/* Hero Booking Panel */
.hero-booking {
  background: rgba(20, 20, 20, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  padding: 1.75rem;
  border-radius: var(--radius);
}

.hero-booking__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-booking__field label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 0.4rem;
}

.hero-booking__field input {
  width: 100%;
  padding: 0.75rem 0.85rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  transition: border-color var(--ease);
}

.hero-booking__field input:focus {
  outline: none;
  border-color: var(--gold);
}

.hero-booking__check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--gray-light);
  margin-bottom: 1rem;
  cursor: pointer;
}

.hero-booking__check input { accent-color: var(--gold); }

/* Hero Stats */
.hero-stats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stats__item {
  text-align: center;
}

.hero-stats__item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.hero-stats__item span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
}

/* --- Intro --- */
.intro {
  background: var(--off-white);
  color: var(--black);
  text-align: center;
}

.intro__inner { max-width: 720px; margin: 0 auto; }

.intro .section-tag { color: var(--gold-dark); }

.intro__subtitle {
  font-size: 1rem;
  color: #444;
  margin-bottom: 0.75rem;
}

.intro__text {
  color: #666;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.intro__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.intro .btn--ghost {
  color: var(--black);
  border-color: var(--black);
}

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

/* --- About --- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__media img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about__content p {
  color: var(--gray-light);
  font-size: 0.92rem;
  margin-bottom: 1rem;
}

.about__values {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about__values li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.about__values li span { color: var(--gold); font-size: 0.55rem; margin-top: 0.45rem; }
.about__values strong { display: block; font-size: 0.88rem; margin-bottom: 0.1rem; }
.about__values p { font-size: 0.82rem; color: var(--gray); margin: 0; }

/* --- Fleet --- */
.fleet { background: var(--off-white); color: var(--black); }

.fleet .section-tag { color: var(--gold-dark); }
.fleet .section-head p { color: #666; }

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.fleet-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  transition: transform var(--ease);
}

.fleet-card:hover { transform: translateY(-6px); }

.fleet-card__img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #ececec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fleet-card__img::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16px;
  background: #ececec;
  pointer-events: none;
  z-index: 1;
}

.fleet-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.6s ease;
}

.fleet-card:hover .fleet-card__img img { transform: scale(1.04); }

.fleet-card__body { padding: 1.5rem; }

.fleet-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.fleet-card__specs {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.fleet-card__specs span {
  font-size: 0.75rem;
  color: var(--gray);
}

.fleet-card__features {
  margin-bottom: 1rem;
}

.fleet-card__features li {
  font-size: 0.82rem;
  color: #555;
  padding: 0.2rem 0 0.2rem 1rem;
  position: relative;
}

.fleet-card__features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-dark);
}

.fleet-card__rates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 1rem;
}

.fleet-card__rates small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 0.2rem;
}

.fleet-card__rates strong {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
}

.fleet-card .btn--outline {
  color: var(--black);
  border-color: var(--black);
}

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

/* --- Services --- */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  padding: 2rem 1.5rem;
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--ease);
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.service-card__icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.service-card__icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.82rem;
  color: var(--gray-light);
  line-height: 1.65;
}

.services-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.services-featured__card {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.services-featured__card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.services-featured__card p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.75;
}

.cta-banner {
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(184, 150, 90, 0.06);
}

.cta-banner h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* --- Why Choose Us --- */
.why { background: var(--off-white); color: var(--black); }
.why .section-tag { color: var(--gold-dark); }

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  transition: all var(--ease);
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.why-card span {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.45;
  display: block;
  margin-bottom: 0.75rem;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.82rem;
  color: #666;
}

/* --- Stats --- */
.stats {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 4.5rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats__item { color: var(--black); }

.stats__num {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
}

.stats__plus {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
}

.stats__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* --- Testimonials --- */
.reviews-badge {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.reviews-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.reviews-badge__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.reviews-badge__rating .stars { color: var(--gold); letter-spacing: 0.1em; }
.reviews-badge__rating span:last-child { font-weight: 600; }
.reviews-badge small { font-size: 0.72rem; color: var(--gray); }

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

.testimonials__track {
  position: relative;
  min-height: 260px;
}

.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.55s ease;
  pointer-events: none;
  text-align: center;
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

.testimonial__stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}

.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.75rem;
}

.testimonial footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
}

.testimonial footer img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.testimonial footer strong { display: block; font-size: 0.88rem; }
.testimonial footer span { font-size: 0.75rem; color: var(--gray); }

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.testimonials__nav button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--gold);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: all var(--ease);
}

.testimonials__nav button:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(184,150,90,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--ease);
}

.testimonial-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

#testimonial-dots { display: flex; gap: 0.45rem; }

/* --- Booking --- */
.booking { background: var(--off-white); color: var(--black); }
.booking .section-tag { color: var(--gold-dark); }

.booking__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  align-items: start;
}

.booking__info p {
  color: #555;
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}

.booking__contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.booking__contact a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--black);
}

.booking__contact a:hover { color: var(--gold-dark); }

.booking-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 12px 50px rgba(0,0,0,0.08);
}

.form-group { margin-bottom: 1.1rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: #333;
}

.form-group label em { color: var(--gold-dark); font-style: normal; }

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.8rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  background: var(--off-white);
  color: var(--black);
  transition: border-color var(--ease);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

.form-group input.error,
.form-group select.error { border-color: #c0392b; }

.form-error {
  display: block;
  font-size: 0.72rem;
  color: #c0392b;
  margin-top: 0.3rem;
  min-height: 1rem;
}

.form-success {
  margin-top: 1rem;
  padding: 0.9rem;
  background: rgba(184,150,90,0.12);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  text-align: center;
  font-size: 0.88rem;
  color: var(--gold-dark);
}

/* --- Contact --- */
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.contact__item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
}

.contact__icon svg { width: 18px; height: 18px; }

.contact__item h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact__item a,
.contact__item address {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.7;
}

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

.contact__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.contact__social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--gold);
  transition: all var(--ease);
}

.contact__social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.contact__social svg { width: 16px; height: 16px; }

.contact__map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(25%) contrast(1.05);
}

/* --- Footer --- */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3.5rem 0 0;
}

.footer__about {
  max-width: 720px;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__about p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.75;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer__col h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--gold);
}

.footer__col li { margin-bottom: 0.5rem; }

.footer__col a,
.footer__col li {
  font-size: 0.82rem;
  color: var(--gray);
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.78rem;
  color: var(--gray);
}

.footer__legal { display: flex; gap: 1.25rem; }
.footer__legal a:hover { color: var(--gold); }

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 54px;
  height: 54px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--ease);
}

.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; color: var(--white); }

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

.hero .reveal {
  animation: heroIn 0.9s ease forwards;
}

.hero .reveal:nth-child(1) { animation-delay: 0.2s; }
.hero .reveal:nth-child(2) { animation-delay: 0.4s; }
.hero .reveal:nth-child(3) { animation-delay: 0.6s; }

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

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .services__grid,
  .why__grid { grid-template-columns: repeat(2, 1fr); }

  .stats__grid { grid-template-columns: repeat(2, 1fr); }

  .services-featured { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  .topbar__langs { display: none; }

  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    max-width: 300px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.25rem;
    padding: 2rem;
    background: #000000;
    backdrop-filter: blur(14px);
    transition: right var(--ease);
    z-index: 999;
  }

  .nav__menu.open { right: 0; }

  .nav__cta { display: none; }

  .nav__menu-cta {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
  }

  .nav__menu-cta .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__body {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2rem;
  }

  .hero-booking__row { grid-template-columns: 1fr; }

  .hero-stats { grid-template-columns: 1fr; gap: 1rem; }

  .about__grid,
  .fleet__grid,
  .booking__grid,
  .contact__grid { grid-template-columns: 1fr; }

  .about__media img { height: 280px; }

  .services__grid,
  .why__grid { grid-template-columns: 1fr; }

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

  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  body { padding-bottom: 5.5rem; }
}

@media (max-width: 480px) {
  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .logo__img { height: 42px; }

  .topbar__phone {
    font-size: 0.68rem;
    letter-spacing: 0.02em;
  }

  .footer__legal {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 1rem;
    right: 1rem;
  }

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

  .intro__actions { flex-direction: column; align-items: center; }
  .intro__actions .btn { width: 100%; max-width: 260px; }

  .booking-form { padding: 1.25rem; }
}
