:root {
  --bg: #070708;
  --bg-soft: #101014;
  --card: rgba(255, 255, 255, 0.075);
  --card-strong: rgba(255, 255, 255, 0.11);
  --text: #f8f8f8;
  --muted: #b9b9c3;
  --line: rgba(255, 255, 255, 0.14);
  --red: #d71920;
  --red-dark: #a50f15;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(215, 25, 32, 0.22), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.09), transparent 28%),
    var(--bg);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding: 105px 0;
  position: relative;
}

.page-glow {
  position: fixed;
  inset: auto -18vw -22vw auto;
  width: 46vw;
  height: 46vw;
  background: radial-gradient(circle, rgba(215, 25, 32, 0.22), transparent 65%);
  pointer-events: none;
  filter: blur(12px);
  z-index: -1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 7, 8, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--white);
  background: linear-gradient(135deg, var(--red), #65070b 78%);
  box-shadow: 0 12px 32px rgba(215, 25, 32, 0.34);
}

.brand-text {
  display: grid;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 11px 14px;
  color: var(--muted);
  font-size: 0.94rem;
  border-radius: 999px;
  transition: 0.22s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.nav-links .nav-cta {
  color: var(--white);
  background: var(--red);
  margin-left: 8px;
  box-shadow: 0 14px 30px rgba(215, 25, 32, 0.25);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  border-radius: 2px;
  transition: 0.22s ease;
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 84px 0;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 8, 0.95) 0%, rgba(7, 7, 8, 0.72) 42%, rgba(7, 7, 8, 0.44) 100%),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?auto=format&fit=crop&w=1800&q=86") center / cover;
  transform: scale(1.03);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, var(--bg));
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: 42px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #ff8b8f;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
}

.hero-lead,
.section-heading p,
.about-content p,
.booking-copy p,
.map-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-lead {
  max-width: 650px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 36px;
}

.btn {
  border: 0;
  min-height: 52px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 44px rgba(215, 25, 32, 0.32);
}

.btn-primary:hover {
  box-shadow: 0 22px 54px rgba(215, 25, 32, 0.42);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.btn-full {
  width: 100%;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  gap: 12px;
}

.trust-row div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.trust-row strong {
  display: block;
  font-size: 1.55rem;
}

.trust-row span {
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-card {
  position: relative;
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.055));
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(215, 25, 32, 0.28);
  filter: blur(4px);
}

.status-dot {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 999px;
  background: #25d366;
  box-shadow: 0 0 0 7px rgba(37, 211, 102, 0.13);
}

.card-kicker {
  margin: 22px 0 10px;
  color: #ffb4b7;
  font-weight: 800;
}

.hero-card h2 {
  font-size: 2rem;
  letter-spacing: -0.035em;
}

.hero-checklist {
  padding: 0;
  margin: 24px 0;
  list-style: none;
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.hero-checklist li {
  position: relative;
  padding-left: 28px;
}

.hero-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff7075;
  font-weight: 900;
}

.mini-link,
.service-card a {
  color: #ff8b8f;
  font-weight: 800;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading.split {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr minmax(240px, 420px);
  gap: 28px;
  align-items: end;
}

.service-grid,
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.fleet-card,
.booking-form,
.contact-box,
.map-card {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.service-card {
  min-height: 280px;
  padding: 28px;
  border-radius: var(--radius-lg);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--card-strong);
  border-color: rgba(215, 25, 32, 0.5);
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 16px;
  color: var(--white);
  background: rgba(215, 25, 32, 0.2);
  border: 1px solid rgba(215, 25, 32, 0.32);
}

.service-card p,
.fleet-body p {
  color: var(--muted);
  line-height: 1.65;
}

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

.fleet-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: 0.25s ease;
}

.fleet-card:hover {
  transform: translateY(-8px);
  border-color: rgba(215, 25, 32, 0.48);
}

.fleet-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
  transition: transform 0.35s ease;
}

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

.fleet-body {
  padding: 22px;
}

.fleet-body span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #ffb4b7;
  font-weight: 900;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.specs b {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.about-grid,
.booking-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 46px;
  align-items: center;
}

.about-image {
  min-height: 560px;
  position: relative;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.08), rgba(7, 7, 8, 0.72)),
    url("https://images.unsplash.com/photo-1568605114967-8130f3a36994?auto=format&fit=crop&w=1100&q=84") center / cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.driver-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(7, 7, 8, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.driver-card span {
  display: block;
  color: #ffb4b7;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.driver-card strong {
  font-size: 1.35rem;
}

.about-list {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.about-list div {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
}

.about-list strong {
  color: #ff787d;
}

.about-list span {
  color: var(--muted);
}

.booking {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.035), transparent);
}

.booking-grid {
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
}

.contact-box {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  padding: 22px;
  border-radius: var(--radius-lg);
}

.contact-box a,
.contact-box p {
  margin: 0;
  color: var(--muted);
}

.contact-box strong {
  color: var(--white);
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
}

.form-row.two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-weight: 800;
  font-size: 0.92rem;
}

input,
select,
textarea {
  width: 100%;
  color: var(--text);
  background: rgba(7, 7, 8, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 14px 15px;
  outline: none;
  transition: 0.2s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(215, 25, 32, 0.78);
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.16);
}

textarea {
  resize: vertical;
}

.estimate-panel {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(215, 25, 32, 0.22), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(215, 25, 32, 0.36);
}

.estimate-panel span,
.estimate-panel small {
  color: var(--muted);
}

.estimate-panel strong {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
}

.form-message {
  min-height: 24px;
  margin: 0;
  color: #8ff0b8;
  font-weight: 800;
}

.map-section {
  padding: 0 0 95px;
}

.map-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  padding: 22px;
  border-radius: var(--radius-xl);
  align-items: stretch;
}

.map-card > div {
  padding: 24px;
}

.map-card iframe {
  width: 100%;
  min-height: 330px;
  border: 0;
  border-radius: 22px;
  filter: grayscale(1) invert(0.92) contrast(0.95);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.socials a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid var(--line);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-footer p {
  margin: 8px 0 0;
}

.back-top {
  color: #ff8b8f;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

@media (max-width: 1040px) {
  .hero-grid,
  .about-grid,
  .booking-grid,
  .map-card,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }
}

@media (max-width: 820px) {
  :root {
    --container: min(100% - 28px, 1180px);
  }

  .section {
    padding: 76px 0;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 60;
  }

  .nav-links {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 86px;
    display: grid;
    gap: 8px;
    padding: 16px;
    border-radius: 24px;
    background: rgba(10, 10, 12, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: 0.22s ease;
  }

  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-links a,
  .nav-links .nav-cta {
    margin: 0;
    padding: 14px 16px;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    padding: 74px 0 58px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-card,
  .booking-form {
    padding: 22px;
  }

  .trust-row,
  .service-grid,
  .fleet-grid,
  .form-row.two {
    grid-template-columns: 1fr;
  }

  .about-image {
    min-height: 430px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .brand-text small {
    display: none;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

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

  .map-card {
    padding: 14px;
  }

  .map-card > div {
    padding: 12px;
  }
}

/* Luxcars primary logo */
.logo-mark {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 6px 12px rgba(215, 25, 32, 0.18));
}

.hero-logo-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 8px 16px 8px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.hero-logo-badge img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  padding: 6px;
  border-radius: 999px;
  background: var(--white);
}

.hero-logo-badge span {
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.hero-card-logo {
  position: absolute;
  right: 24px;
  top: 22px;
  width: 72px;
  height: 72px;
  object-fit: contain;
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(215, 25, 32, 0.24);
  z-index: 1;
}

.hero-card > *:not(.hero-card-logo) {
  position: relative;
  z-index: 2;
}

.section-logo-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.section-logo-line img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  padding: 6px;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(215, 25, 32, 0.2);
}

.section-logo-line .eyebrow {
  margin: 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  padding: 7px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(215, 25, 32, 0.18);
  flex: 0 0 auto;
}

@media (max-width: 480px) {
  .logo-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .hero-logo-badge {
    padding-right: 13px;
  }

  .hero-card-logo {
    width: 58px;
    height: 58px;
    right: 18px;
    top: 18px;
  }

  .footer-brand {
    align-items: flex-start;
  }
}


/* AQ transparent logo fix */
.logo-mark,
.hero-logo-badge img,
.hero-card-logo,
.section-logo-line img,
.footer-brand img {
  background: transparent !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

.logo-mark {
  padding: 0 !important;
}

.logo-mark img,
.hero-logo-badge img,
.hero-card-logo,
.section-logo-line img,
.footer-brand img {
  padding: 0 !important;
  filter: drop-shadow(0 10px 18px rgba(237, 26, 42, 0.35)) !important;
}

.hero-card-logo {
  width: 86px !important;
  height: 86px !important;
}

.hero-logo-badge img {
  width: 46px !important;
  height: 46px !important;
}
/* /AQ transparent logo fix */
