:root {
  --bg: #050608;
  --bg-alt: #0e1218;
  --card: rgba(18, 22, 29, 0.9);
  --text: #f5f7fb;
  --muted: #a5afc5;
  --accent: #d4af37;
  --accent-strong: #f3d067;
  --border: rgba(255, 255, 255, 0.08);
  --shadow: 0 25px 80px rgba(0, 0, 0, 0.45);
  --font-heading: 'Playfair Display', 'Times New Roman', serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --header-height: calc(72px + env(safe-area-inset-top, 0px));
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.6;
  color-scheme: dark;
}

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

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

p {
  margin: 0 0 1rem;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 90px 0;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 640px;
  color: var(--muted);
  margin: 0 auto 2.5rem;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 0 0 1rem;
}

h1 span,
h2 span {
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
}

.button-primary {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: black;
  box-shadow: var(--shadow);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--text);
  background: transparent;
}

.button-ghost {
  border-color: transparent;
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.button-large {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

.button:hover {
  transform: translateY(-2px);
}

.icon-left {
  margin-right: 0.3rem;
}

.icon-right {
  margin-left: 0.3rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(5, 6, 8, 0.85);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  padding-top: env(safe-area-inset-top, 0px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.brand {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand img {
  width: 140px;
  height: auto;
  border-radius: 12px;
}
.brand span {
  color: var(--accent-strong);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.locale-switch {
  display: flex;
  gap: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
}

.locale-switch a {
  color: inherit;
  opacity: 0.5;
  font-weight: 600;
}

.locale-switch a.is-active {
  color: var(--accent-strong);
  opacity: 1;
}

.locale-switch-mobile {
  display: none;
  gap: 0.65rem;
  margin-left: auto;
  margin-right: 1rem;
}

.main-nav ul {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.button-primary {
  background: linear-gradient(120deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: black;
  box-shadow: var(--shadow);
}

.main-nav a {
  
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.nav-cta {
  display: flex;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  z-index: 50;
  position: relative;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: currentColor;
}

/* Hero */

.hero {
  padding: 120px 0 90px;
}

.page-hero {
  padding-top: 120px;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.page-hero .hero-copy h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
}

.page-hero .hero-lead {
  max-width: 560px;
}

.hero-tag {
  font-size: 0.95rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 3.5vw, 3.8rem);
}

.hero-lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.hero-checklist i {
  color: var(--accent);
}

.hero-media {
  position: relative;
}

.hero-image {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card {
  position: absolute;
  bottom: -35px;
  right: -25px;
  background: rgba(5, 6, 8, 0.85);
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  width: min(280px, 80%);
  box-shadow: var(--shadow);
}

.hero-card p {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

/* Stats */

.stats-grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.stat-card {
  padding: 1.8rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(15, 17, 24, 0.7);
}

.stat-card span {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}

.stat-card p {
  color: var(--muted);
}

/* Features */

.service-showcase {
  background: rgba(5, 6, 8, 0.6);
}

.feature-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2rem;
  min-height: 230px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  color: var(--accent);
}

.feature-card p {
  color: var(--muted);
}

/* Fleet */

.section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-end;
  margin-bottom: 2.5rem;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.car-card {
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(12, 13, 20, 0.7);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.car-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.car-body {
  padding: 2rem;
}

.car-tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-top: -0.5rem;
  margin-bottom: 1rem;
}

.car-body ul {
  color: var(--muted);
  margin-bottom: 1rem;
  padding-left: 1rem;
}

.car-body ul li {
  list-style: disc;
  margin: 0.2rem 0;
}

/* Content blocks for secondary pages */

.split-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.narrative-card {
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 2rem;
  background: rgba(13, 15, 19, 0.8);
  box-shadow: var(--shadow);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pill-list li {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem;
}

.timeline-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.5rem;
  background: rgba(8, 9, 15, 0.85);
  position: relative;
}

.timeline-card span {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--accent);
  text-transform: uppercase;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.team-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.5rem;
  background: rgba(9, 11, 17, 0.85);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

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

.spec-card {
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.5rem;
  background: rgba(11, 13, 19, 0.8);
}

.spec-card ul {
  color: var(--muted);
  padding-left: 1rem;
  margin: 0;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.service-tile {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.3rem;
  background: rgba(12, 14, 19, 0.75);
}

.contact-panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.contact-panel {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  background: rgba(7, 9, 14, 0.8);
}

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

.faq-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  background: rgba(8, 10, 15, 0.85);
}

/* Concierge */

.concierge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: center;
}

.concierge-gallery {
  position: relative;
}

.concierge-gallery img {
  border-radius: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.concierge-note {
  position: absolute;
  bottom: 40px;
  left: -25px;
  padding: 1.2rem 1.4rem;
  background: rgba(5, 6, 8, 0.85);
  border: 1px solid var(--border);
  border-radius: 20px;
  max-width: 270px;
  font-size: 0.9rem;
}

.concierge-note span {
  color: var(--muted);
}

.value-list {
  display: grid;
  gap: 1.2rem;
  margin: 2rem 0;
}

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(12, 13, 18, 0.7);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1rem 1.2rem;
}

.value-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--accent);
}

/* Testimonials */

.testimonials {
  background: rgba(6, 7, 12, 0.8);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
  background: rgba(9, 11, 17, 0.85);
}

.testimonial-quote {
  font-size: 1.05rem;
  font-style: italic;
  margin-bottom: 1rem;
}

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

/* Contact */

.contact {
  background: linear-gradient(120deg, rgba(212, 175, 55, 0.08), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: start;
}

.contact-card,
.contact-highlight {
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 2rem;
  background: rgba(9, 11, 17, 0.8);
}

.contact-info {
  display: flex;
  gap: 1rem;
  margin: 1.5rem 0;
}

.info-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.contact-link {
  color: var(--text);
  font-weight: 600;
}

.contact-highlight ul li {
  color: var(--muted);
  margin-bottom: 0.5rem;
}

/* CTA Final */

.cta-final {
  text-align: center;
}

.cta-inner {
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 3rem;
  background: rgba(8, 10, 15, 0.9);
  box-shadow: var(--shadow);
}

.cta-inner p {
  color: var(--muted);
  margin-bottom: 2rem;
}

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

/* Footer */

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--border);
  background: #030307;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-grid h4 {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-grid p,
.footer-grid a {
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Responsive */

@media (max-width: 900px) {
  .mobile{
    display: none;
  }
  .hero{
    margin-top: -60px;
  }
  .locale-switch-mobile {
    display: flex;
  }

  .main-nav .locale-switch {
    display: none;
  }

  .brand img {
    width: 100px;
  }
  .main-nav {
    position: fixed;
    top: calc(var(--header-height) + 55px);
    right: 0;
    bottom: 0;
    left: 0;
    padding-top: 200px;
    background: linear-gradient(180deg, rgba(5, 6, 8, 0.98) 0%, rgba(5, 6, 8, 0.92) 70%, rgba(5, 6, 8, 0.9) 100%),
      radial-gradient(circle at top center, rgba(212, 175, 55, 0.12), transparent 50%);
    backdrop-filter: blur(18px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.25s ease;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    transition: margin-top 0.3s ease;
  }

  .main-nav.is-open ul {
    margin-top: -40px;
  }

  .main-nav.is-open {
    border-radius:0px 0px 40px 40px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(5, 6, 8, 0.92) 70%, rgba(8, 8, 5, 0.9) 100%),
      radial-gradient(circle at top center, rgba(238, 189, 27, 0.12), transparent 50%);
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    padding-bottom: 125px;
    box-shadow: 0 80px 120px rgba(255, 255, 255, 0.18);
  }

  .menu-toggle {
    display: flex;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 640px) {
  .hero-card {
    position: static;
    margin-top: 1.5rem;
  }

  .section {
    padding: 70px 0;
  }

  .car-body {
    padding: 1.5rem;
  }
}
