/* ==================== */
/* Prestige VTC — styles */
/* ==================== */

:root {
  --black: #0b0b0d;
  --charcoal: #16161a;
  --charcoal-2: #1e1e23;
  --gold: #c9a769;
  --gold-light: #e3cd9c;
  --white: #f7f5f1;
  --grey: #9a9a9f;
  --radius: 4px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --header-h: 84px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--white);
  background: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { border-color: rgba(247,245,241,0.4); color: var(--white); background: transparent; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }
.btn-outline-light { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline-light:hover { background: var(--gold); color: var(--black); }
.btn-lg { padding: 16px 34px; font-size: 0.98rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}
.site-header.scrolled {
  background: rgba(11,11,13,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
  height: 68px;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-mark { height: 30px; width: auto; display: block; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  letter-spacing: 1px;
  color: var(--white);
  white-space: nowrap;
  line-height: 1.3;
}
.logo-text span { color: var(--gold); display: block; font-size: 0.55rem; letter-spacing: 2px; margin-top: 1px; }

.main-nav { display: flex; gap: 6px; }
.nav-link {
  background: none; border: none; cursor: pointer;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: var(--radius);
  opacity: 0.75;
  transition: opacity 0.2s, background 0.2s;
}
.nav-link:hover { opacity: 1; background: rgba(255,255,255,0.06); }
.nav-link.active { opacity: 1; color: var(--gold); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--white); opacity: 0.85; }
.header-phone:hover { opacity: 1; color: var(--gold); }

.lang-switcher-wrap { display: flex; align-items: center; }
.lang-switcher {
  appearance: none;
  -webkit-appearance: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 30px 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='12' height='12'%3E%3Cpath fill='%23c9a769' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
}
.lang-switcher:hover { border-color: var(--gold); background-color: rgba(255,255,255,0.07); }
.lang-switcher:focus { outline: none; border-color: var(--gold); }
.lang-switcher option { background: var(--charcoal); color: var(--white); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 6px;
}
.burger span { width: 24px; height: 2px; background: var(--white); transition: 0.3s; }

/* ---------- Tabs ---------- */
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: max(640px, 100vh);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,11,13,0.55) 0%, rgba(11,11,13,0.65) 45%, rgba(11,11,13,0.95) 100%);
}
.hero-content { position: relative; z-index: 1; padding-top: var(--header-h); max-width: 760px; }
.eyebrow, .section-eyebrow {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  display: block;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 20px;
}
.hero-sub { font-size: 1.08rem; color: var(--grey); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-stats { display: flex; gap: 40px; list-style: none; }
.hero-stats li { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--font-serif); font-size: 1.6rem; color: var(--gold); }
.hero-stats span { font-size: 0.82rem; color: var(--grey); }

.scroll-cue {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  color: var(--white); opacity: 0.7; z-index: 1;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translate(-50%,0); } 50% { transform: translate(-50%,8px); } }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-dark { background: var(--charcoal); }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 56px; max-width: 620px; }

.page-hero {
  padding: calc(var(--header-h) + 70px) 0 60px;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 14px; }
.page-hero p { color: var(--grey); max-width: 560px; font-size: 1.02rem; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Service / Fleet cards ---------- */
.service-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; margin-bottom: 20px; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.service-card p { color: var(--grey); font-size: 0.92rem; }

.fleet-card {
  background: var(--charcoal);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.fleet-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.fleet-card img { aspect-ratio: 16/11; object-fit: cover; }
.fleet-info { padding: 24px; }
.fleet-info h3 { font-size: 1.2rem; margin-bottom: 6px; }
.fleet-tag { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; }
.fleet-info ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fleet-info li { font-size: 0.88rem; color: var(--grey); padding-left: 18px; position: relative; }
.fleet-info li::before { content: "—"; position: absolute; left: 0; color: var(--gold); }

/* ---------- Features ---------- */
.feature-icon {
  width: 58px; height: 58px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.feature h3 { font-size: 1.1rem; margin-bottom: 10px; }
.feature p { color: var(--grey); font-size: 0.92rem; }

/* ---------- Service areas ---------- */
.zones-intro { color: var(--grey); max-width: 640px; font-size: 0.98rem; margin-bottom: 28px; }
.zones-list { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; }
.zones-list li {
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--grey);
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  transition: border-color 0.2s, color 0.2s;
}
.zones-list li:hover { border-color: var(--gold); color: var(--gold); }

/* ---------- Testimonials ---------- */
.testimonial-slider { position: relative; overflow: hidden; }
.testimonial-track {
  display: flex;
  gap: 28px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.testimonial {
  background: var(--charcoal-2);
  border-left: 3px solid var(--gold);
  padding: 30px;
  border-radius: var(--radius);
  flex: 0 0 calc((100% - 56px) / 3);
}
.testimonial p { font-style: italic; font-size: 0.98rem; margin-bottom: 18px; color: var(--white); }
.testimonial footer { color: var(--gold); font-size: 0.85rem; }

.testimonial-controls { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 20px; margin-top: 36px; }
@media screen and (max-width: 768px) {
  .testimonial-controls {
    display: none;
  }
}

.slider-arrow {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.slider-arrow:hover { border-color: var(--gold); color: var(--gold); }
.slider-dots { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; max-width: 260px; }
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.slider-dot.active { background: var(--gold); transform: scale(1.3); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, #a3813f 100%);
  color: var(--black);
  padding: 70px 0;
}
.cta-banner-inner { text-align: center; }
.cta-banner h2 { color: var(--black); font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 28px; }
.cta-banner .btn-gold { background: var(--black); color: var(--gold); }
.cta-banner .btn-gold:hover { background: var(--charcoal); }

/* ---------- Cards / Forms ---------- */
.card {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 36px;
}
.booking-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 30px; align-items: start; }
.booking-layout > * { min-width: 0; }
.form-title { font-size: 1.3rem; margin-bottom: 26px; }
.form-title-spaced { margin-top: 12px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.form-field { margin-bottom: 20px; min-width: 0; }
.form-field label {
  display: block;
  font-size: 0.82rem;
  color: var(--grey);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 13px 14px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.94rem;
  transition: border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; }
.form-note { text-align: center; font-size: 0.82rem; color: var(--grey); margin-top: 16px; }
.form-note.success { color: #7fd18c; }
.form-note.error { color: #e08a8a; }

.booking-side { display: flex; flex-direction: column; gap: 24px; }
.side-card h3 { font-size: 1.05rem; margin-bottom: 16px; }
.side-card-dark { background: var(--black); border-color: var(--gold); }
.side-card-dark p { color: var(--grey); margin-bottom: 20px; font-size: 0.92rem; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.check-list li { font-size: 0.9rem; color: var(--grey); padding-left: 24px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.policy-section { padding: 50px 0 100px; border-top: 1px solid rgba(255,255,255,0.06); }
.policy-block { max-width: 760px; }
.policy-lead { color: var(--white); font-size: 0.95rem; margin-bottom: 26px; }
.policy-block h3 { font-size: 1.05rem; margin-bottom: 16px; color: var(--white); }
.policy-block p { color: var(--grey); font-size: 0.88rem; line-height: 1.7; margin-bottom: 12px; }
.policy-block p:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-cards { margin-bottom: 60px; }
.contact-card { text-align: left; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-card a:hover { color: var(--gold); }
.muted { color: var(--grey); font-size: 0.85rem; }

.contact-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 30px; }
.contact-layout > * { min-width: 0; }
.map-wrap { padding: 0; overflow: hidden; min-height: 420px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 420px; filter: grayscale(0.3) contrast(1.05); }

/* ---------- Footer ---------- */
.site-footer { background: var(--charcoal); border-top: 1px solid rgba(255,255,255,0.06); padding-top: 70px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 50px; }
.footer-col p { color: var(--grey); font-size: 0.9rem; margin-top: 16px; }
.footer-col h4 { font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col button {
  display: block; background: none; border: none; cursor: pointer;
  color: var(--grey); font-size: 0.92rem; padding: 6px 0; text-align: left;
  font-family: var(--font-sans);
}
.footer-col button:hover { color: var(--gold); }
.footer-col a { display: block; color: var(--grey); font-size: 0.92rem; padding: 6px 0; }
.footer-col a:hover { color: var(--gold); }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; padding: 0;
}
.social-row a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; }
.footer-bottom p { color: var(--grey); font-size: 0.82rem; text-align: center; margin: 0; }
.footer-bottom-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px 24px; }
.footer-legal-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 18px; }
.footer-legal-links button {
  background: none; border: none; padding: 0; cursor: pointer;
  color: var(--grey); font-size: 0.82rem; font-family: var(--font-sans);
}
.footer-legal-links button:hover { color: var(--gold); }

/* ---------- Legal pages ---------- */
.legal-content { max-width: 820px; }
.legal-note { color: var(--gold); font-size: 0.85rem; font-style: italic; margin-bottom: 40px; }
.legal-content h3 { font-size: 1.1rem; margin: 40px 0 14px; color: var(--white); }
.legal-content h3:first-of-type { margin-top: 0; }
.legal-content p { color: var(--grey); font-size: 0.94rem; line-height: 1.75; margin-bottom: 14px; }
.legal-content ul { color: var(--grey); font-size: 0.94rem; line-height: 1.75; margin: 0 0 14px 20px; }
.legal-content li { margin-bottom: 6px; }
.legal-content strong { color: var(--white); }
.legal-content a { color: var(--gold); text-decoration: underline; }
.inline-link {
  background: none; border: none; padding: 0; margin: 0;
  font: inherit; color: var(--gold); text-decoration: underline; cursor: pointer;
}

/* ---------- Responsive ---------- */

/* Tablet and below: the language switcher crowds the header, so the
   primary nav + phone number collapse into the burger menu here too,
   not only on phones. */
@media (max-width: 1024px) {
  .main-nav, .header-phone { display: none; }
  .burger { display: flex; }
  .header-actions { gap: 10px; }

  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .booking-layout, .contact-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .testimonial { flex-basis: calc((100% - 28px) / 2); }

  .section { padding: 80px 0; }

  .site-header.mobile-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(11,11,13,0.98);
    padding: 16px 24px 24px;
    gap: 4px;
  }
}

/* Small tablets / large phones (portrait) */
@media (max-width: 760px) {
  .hero {
    height: auto;
    min-height: 640px;
    min-height: 100svh;
    padding-bottom: 40px;
  }
  .hero-actions { flex-direction: column; margin-bottom: 28px; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 24px; }

  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .grid { gap: 20px; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .testimonial { flex-basis: 100%; }
  .testimonial-track { gap: 20px; }
  .slider-dots { max-width: 180px; }
  .card { padding: 28px 22px; }
  .map-wrap, .map-wrap iframe { min-height: 300px; }
  .section { padding: 60px 0; }
}

/* Phones */
@media (max-width: 480px) {
  .header-actions { gap: 8px; }
  .header-actions .btn { padding: 9px 14px; font-size: 0.8rem; }
  .lang-switcher { font-size: 0.76rem; padding: 7px 24px 7px 10px; }
  .site-header .logo-mark { height: 28px; }
  .site-header .logo-text { display: none; }
  .hero-stats { gap: 16px; }
  .hero-stats strong { font-size: 1.35rem; }
  .testimonial { padding: 22px; }
}

/* Very small phones: header no longer fits logo + lang switcher +
   reserve button + burger, so the secondary reserve button is dropped
   (still reachable via the burger nav, hero and CTA banner). */
@media (max-width: 400px) {
  .header-actions .btn { display: none; }
  .lang-switcher { padding: 6px 22px 6px 8px; }
}
