﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #05141f;
  --secondary-color: #1f2c35;
  --text-dark: #05141f;
  --text-light: #37434d;
  --bg-light: #ffffff;
  --white: #ffffff;
}

body {
  font-family: 'Cairo', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
}

.logo {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: 1px;
}

nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-menu {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-menu a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.lang-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

.lang-toggle:hover .lang-text {
  color: #ffffff;
}

.lang-icon {
  font-size: 18px;
  color: #ffffff;
}

.lang-text {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: var(--secondary-color);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-item {
  position: relative;
}

/* Mega Menu */
nav {
  /* position: fixed; */
  z-index: 99;
  width: 100%;

  background: rgba(36, 37, 38, 0.1);
}
nav .wrapper {
  position: relative;
  max-width: 1300px;
  padding: 0px 30px;
  height: 70px;
  margin: auto;
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  align-items: center;
  gap: 20px;
}
.wrapper .logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.wrapper .logo a {
  color: #37434d;
  font-size: 30px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 1;
}
.wrapper .logo a img {
  display: block;
  height: auto;
  max-height: 60px;
}
.wrapper .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li {
  list-style: none;
  line-height: 1;
}
.nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
  line-height: 1;
  display: inline-block;
}
.nav-links li a:hover {
  background: #37434d;
}
.nav-links .mobile-item {
  display: none;
}
.nav-links .drop-menu {
  position: absolute;
  background: #1f2c35;
  width: 180px;
  line-height: 45px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box {
  transition: all 0.3s ease;
  top: 70px;
  opacity: 1;
  visibility: visible;
}
.drop-menu li a {
  width: 100%;
  display: block;
  padding: 0 0 0 15px;
  font-weight: 400;
  border-radius: 0px;
}
.mega-box {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 0 30px;
  top: 85px;
  opacity: 0;
  visibility: hidden;
}
.mega-box .content {
  background: #1f2c35;
  padding: 25px 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 25px;
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}
.mega-box .content .row {
  width: calc(25% - 30px);
  line-height: 1.4;
}

.mega-box .mega-dynamic {
  display: flex;
  gap: 20px;
  padding: 24px;
  background: #05141f;
  border-radius: 24px;
}
.mega-dynamic {
  display: flex;
  gap: 20px;
}
.mega-preview {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}
.mega-preview__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mega-preview__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
}
.mega-preview__name {
  font-size: 22px;
  margin-bottom: 6px;
}
.mega-preview__desc {
  font-size: 14px;
  opacity: 0.85;
  margin: 0;
}
.mega-list {
  width: 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mega-car-card {
  border: none;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 14px 18px;
  border-radius: 16px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
}
.mega-car-card__info h5 {
  font-size: 15px;
  margin: 0 0 4px;
}
.mega-car-card__info span {
  font-size: 13px;
  opacity: 0.7;
}
.mega-car-card:hover,
.mega-car-card.active {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(-4px);
}
.mega-view-all {
  margin-top: 6px;
  text-align: center;
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
}
.mega-view-all:hover {
  background: rgba(255, 255, 255, 0.15);
}
@media (max-width: 992px) {
  .mega-dynamic {
    flex-direction: column;
  }
  .mega-list {
    width: 100%;
  }
}

.content .row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mega-hero-image {
  display: block;
  border-radius: 14px;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.mega-hero-image.is-swapping {
  opacity: 0;
  transform: scale(1.04);
}
.title-section::before {
  content: '';
  display: inline-block;
  width: 5rem;
  height: 5px;
  background-color: #1f2c35;
  margin: 0 10px 8px 0;
}

.title-section::after {
  content: '';
  display: inline-block;
  width: 5rem;
  height: 5px;
  background-color: #1f2c35;
  margin: 0 0 8px 10px;
}
.content .row header {
  color: #37434d;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
.content .row .mega-links {
  margin: 10px 0 0;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.row .mega-links li {
  padding: 0;
}
.row .mega-links li a {
  padding: 6px 12px;
  color: #37434d;
  font-size: 16px;
  display: block;
  border-radius: 6px;
}
.row .mega-links li a:hover {
  color: #37434d;
  background: rgba(255, 255, 255, 0.08);
}

@media screen and (min-width: 971px) {
  .wrapper .nav-links {
    height: 100%;
    align-items: stretch;
  }

  .nav-links li {
    height: 100%;
    display: flex;
    align-items: center;
  }
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 0;
  height: 36px;
  justify-self: end;
}
.lang-switcher:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.lang-switcher svg {
  color: #ffffff;
  transition: transform 0.3s ease;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.lang-switcher:hover svg {
  transform: rotate(180deg);
}
.lang-switcher .lang-text {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.5px;
  line-height: 1;
}

.nav-overlay {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(1px);
  z-index: 110;
}
#menu-btn:checked ~ .nav-overlay {
  display: block;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(1px);
  z-index: 110;
}

.wrapper .btn {
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: none;
}
.wrapper .btn.close-btn {
  position: absolute;
  right: 30px;
  top: 10px;
}

@media screen and (max-width: 970px) {
  .wrapper .btn {
    display: block;
  }
  .lang-switcher {
    position: fixed;
    top: 16px;
    left: 18px;
    z-index: 130;
    margin: 0;
    transform: translateX(-140%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  #menu-btn:checked ~ .lang-switcher,
  .nav-links.is-open ~ .lang-switcher {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
  .wrapper .nav-links {
    position: fixed;
    height: 100vh;
    width: 100%;
    max-width: 92vw;
    min-width: 280px;
    border-radius: 0 16px 16px 0;
    top: 0;
    left: 0;
    background: #1f2c35;
    display: block;
    padding: 50px 10px;
    line-height: 50px;
    overflow-y: auto;
    box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 120;
    pointer-events: none;
    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    will-change: transform, opacity;
  }
  #menu-btn:checked ~ .nav-links,
  .nav-links.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  /* custom scroll bar */
  ::-webkit-scrollbar {
    width: 10px;
  }
  ::-webkit-scrollbar-track {
    background: #1f2c35;
  }
  ::-webkit-scrollbar-thumb {
    background: #37434d;
  }
  #menu-btn:checked ~ .btn.menu-btn {
    display: none;
  }
  #close-btn:checked ~ .btn.menu-btn {
    display: block;
  }
  .nav-links li {
    margin: 15px 10px;
  }
  .nav-links li a {
    padding: 0 20px;
    display: block;
    font-size: 20px;
  }
  .nav-links .drop-menu {
    position: static;
    opacity: 1;
    top: 65px;
    visibility: visible;
    padding-left: 20px;
    width: 100%;
    max-height: 0px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
  }
  #showDrop:checked ~ .drop-menu,
  #showMega:checked ~ .mega-box {
    max-height: 100%;
  }
  .nav-links .desktop-item {
    display: none;
  }
  .nav-links .mobile-item {
    display: block;
    color: #37434d;
    font-size: 20px;
    font-weight: 500;
    padding-left: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
  }
  .nav-links .mobile-item:hover {
    background: #37434d;
  }
  .drop-menu li {
    margin: 0;
  }
  .drop-menu li a {
    border-radius: 5px;
    font-size: 18px;
  }
  .mega-box {
    position: static;
    top: 65px;
    opacity: 1;
    visibility: visible;
    padding: 0 20px;
    max-height: 0px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  .mega-box .content {
    box-shadow: none;
    flex-direction: column;
    padding: 20px 20px 0 20px;
  }
  .mega-box .content .row {
    width: 100%;
    margin-bottom: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mega-box .content .row:nth-child(1),
  .mega-box .content .row:nth-child(2) {
    border-top: 0px;
  }
  .content .row .mega-links {
    border-left: 0px;
    padding-left: 15px;
  }
  .row .mega-links li {
    margin: 0;
  }
  .content .row header {
    font-size: 19px;
  }
}
nav input {
  display: none;
}

.nav-desktop {
  display: block;
}

.nav-mobile {
  display: none;
}

@media screen and (max-width: 970px) {
  .nav-desktop,
  .nav-desktop * {
    display: none !important;
  }
  .nav-mobile {
    display: block;
    position: sticky;
    top: 0;
    z-index: 150;
    background: #1f2c35;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  }
  .nav-mobile__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    gap: 12px;
  }
  .nav-mobile__logo img {
    height: 48px;
    width: auto;
    display: block;
  }
  .nav-mobile__drawer li {
    list-style: none;
  }
  .nav-mobile__lang {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 14px;
  }
  .nav-mobile__toggle {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }
  .nav-mobile__toggle span {
    width: 20px;
    height: 2px;
    background: #ffffff;
    display: block;
  }
  .nav-mobile__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 140;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }
  .nav-mobile__overlay.is-visible {
    opacity: 1;
    visibility: visible;
  }
  .nav-mobile__drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    inset-inline-start: 0;
    width: 82vw;
    max-width: 360px;
    background: #1f2c35;
    padding: 22px 18px 28px;
    z-index: 150;
    transform: translateX(-105%);
    transition: transform 0.28s ease, opacity 0.2s ease, visibility 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
  .nav-mobile__drawer.is-open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-mobile__drawer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .nav-mobile__drawer a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    letter-spacing: 0.2px;
    display: block;
    width: 100%;
  }
  .nav-mobile__lang-row a {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
  body.mobile-nav-open {
    overflow: hidden;
  }
}
.nav-mobile[dir='rtl'] .nav-mobile__drawer,
[dir='rtl'] .nav-mobile .nav-mobile__drawer {
  inset-inline-start: auto;
  inset-inline-end: 0;
  transform: translateX(105%);
  right: 0;
}
.nav-mobile[dir='rtl'] .nav-mobile__drawer.is-open,
[dir='rtl'] .nav-mobile .nav-mobile__drawer.is-open {
  transform: translateX(0);
}

.body-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 30px;
}
.body-text div {
  font-size: 45px;
  font-weight: 600;
}
/* Hero Slider */
.hero-slider {
  /* margin-top: 70px; */
  position: relative;
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video Slide Styles */
.slide-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Add overlay to video for better text readability */
.slide-video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.slide-video .slide-content {
  z-index: 10;
}

.slide-content {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--white);
  z-index: 10;
  width: 90%;
  max-width: 800px;
}

.slide-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
}

.slide-subtitle {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
  font-weight: 400;
}

.slide-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.15s;
}
.reveal-delay-2 {
  transition-delay: 0.3s;
}
.reveal-delay-3 {
  transition-delay: 0.45s;
}
.reveal-delay-4 {
  transition-delay: 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Vision Section */
.vision-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 60%);
}
.vision-heading {
  text-align: center;
  margin-bottom: 50px;
}
.vision-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  gap: 60px;
  align-items: center;
  flex-direction: row-reverse;
}
.vision-media {
  flex: 1;
  display: flex;
  justify-content: center;
}
.vision-frame {
  width: 100%;
  border-radius: 26px;
  overflow: hidden;
  transform: rotate(-3deg);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  position: relative;
}
.vision-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.45), transparent 55%);
  transform: skewX(-8deg);
  transform-origin: top right;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.vision-frame::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 22px;
  pointer-events: none;
}
.vision-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vision-content {
  flex: 1;
  color: var(--text-dark);
}
.vision-title {
  font-size: clamp(30px, 4vw, 48px);
  text-transform: uppercase;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 20px;
  letter-spacing: 2px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 22px;
}
.line-title::before,
.line-title::after {
  content: '';
  width: 70px;
  height: 2px;
  background: var(--primary-color);
  display: inline-block;
}

.vision-content p {
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-dark);
  opacity: 0.9;
  text-align: justify;
}

@media (max-width: 992px) {
  .vision-container {
    flex-direction: column;
    text-align: center;
  }
  .vision-title::before,
  .vision-title::after {
    width: 40px;
  }
  .vision-frame {
    transform: rotate(0deg);
  }
  .vision-content h2 {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .vision-title {
    font-size: 24px;
    letter-spacing: 1px;
    gap: 12px;
  }
  .line-title {
    font-size: 22px !important;
  }
  .line-title::before,
  .line-title::after {
    width: 34px;
  }
}

.btn {
  padding: 14px 40px;
  border: none;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  font-family: 'Cairo', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-primary {
  background: var(--secondary-color);
  color: var(--white);
}

.btn-primary:hover {
  background: #1f2c35;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 0, 18, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--white);
  width: 30px;
  border-radius: 5px;
}

/* Footer */
.main-footer section {
  padding: 60px 0;
  min-height: 100vh;
}
.main-footer a,
.main-footer a:hover,
.main-footer a:focus,
.main-footer a:active {
  text-decoration: none;
  outline: none;
  color: #ffffff;
}
.main-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-footer {
  position: relative;
  background: #1f2c35;
}

.footer-content {
  position: relative;
  padding: 85px 0px 80px 0px;
}
.footer-content:before {
  position: absolute;
  content: '';
  background: url(https://i.ibb.co/jyRLrBZ/world-map.png);
  width: 744px;
  height: 365px;
  top: 50px;
  right: 0px;
  background-size: cover;
  background-repeat: no-repeat;
  animation-name: float-bob;
  animation-duration: 30s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  -webkit-animation-name: float-bob;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  -moz-animation-name: float-bob;
  -moz-animation-duration: 30s;
  -moz-animation-iteration-count: infinite;
  -moz-animation-timing-function: linear;
  -ms-animation-name: float-bob;
  -ms-animation-duration: 30s;
  -ms-animation-iteration-count: infinite;
  -ms-animation-timing-function: linear;
  -o-animation-name: float-bob;
  -o-animation-duration: 30s;
  -o-animation-iteration-count: infinite;
  -o-animation-timing-function: linear;
}
.footer-content {
  position: relative;
}
@media (max-width: 900px) {
  .footer-content:before {
    width: 520px;
    height: 255px;
    right: -80px;
    top: 40px;
    opacity: 0.12;
  }
}
@media (max-width: 600px) {
  .footer-content:before {
    width: 320px;
    height: 170px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    opacity: 0.1;
    background-position: center;
  }
}
.footer-content .logo-widget {
  position: relative;
  margin-top: -5px;
}
.footer-content .logo-widget .footer-social li {
  position: relative;
  display: inline-block;
}
.footer-content .logo-widget .footer-social {
  display: inline-flex;
  gap: 19px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-content .logo-widget .footer-social li a {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  background: #ffffff;
  color: #000;
  text-align: center;
  border-radius: 50%;
}
.footer-content .logo-widget .footer-social li a:hover {
  color: #ffffff;
  background: #1f2c35;
}
.footer-content .logo-widget .logo-box {
  margin-bottom: 25px;
}
.footer-content .logo-widget .text p {
  color: #ffffff;
  margin-bottom: 32px;
}
.footer-content .footer-title {
  position: relative;
  font-size: 24px;
  line-height: 35px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 27px;
}
.footer-content .service-widget .list li {
  display: block;
  margin-bottom: 12px;
}
.footer-content .service-widget .list li a {
  position: relative;
  display: inline-block;
  color: #ffffff;
}
.footer-content .service-widget .list li a:hover {
  color: #37434d;
}
.footer-content .contact-widget p {
  color: #ffffff;
  margin-bottom: 15px;
}
.footer-content .contact-widget {
  margin-left: 90px;
}
.footer-content .contact-widget .footer-title {
  margin-bottom: 29px;
}

/** footer-bottom **/

.footer-bottom {
  position: relative;
  background: #05141f;
  padding: 25px 0px 22px 0px;
}
.footer-bottom .copyright,
.footer-bottom .copyright a,
.footer-bottom .footer-nav li a {
  position: relative;
  color: #ffffff;
}
.footer-bottom .copyright a:hover,
.footer-bottom .footer-nav li a:hover {
  color: #37434d;
}
.footer-bottom .footer-nav {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding: 0;
  margin: 0;
  margin-inline-start: auto;
  list-style: none;
}
.footer-bottom .footer-nav li {
  position: relative;
  margin: 0;
}
.footer-bottom .footer-nav li + li:before {
  position: absolute;
  content: '';
  background: #37434d;
  width: 1px;
  height: 14px;
  top: 7px;
  inset-inline-start: -9px;
}
.logo-box img {
  max-width: 220px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #128c7e 0%, #25d366 100%);
}

.whatsapp-float i {
  animation: shake 1s ease-in-out infinite;
}

.whatsapp-float:hover i {
  animation: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: rotate(0deg);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: rotate(-10deg);
  }
  20%,
  40%,
  60%,
  80% {
    transform: rotate(10deg);
  }
}

/* Responsive */
/* Mobile */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .lang-toggle {
    position: absolute;
    left: 20px;
  }

  .slide-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 32px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 26px;
    bottom: 20px;
    right: 20px;
  }
}
/* Contact Page */
.contact-hero {
  padding: 160px 30px 140px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)),
    url('../images/service-1.jpg') center/cover;
  color: #fff;
  min-height: 70vh;
}
.contact-hero__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  align-items: center;
}
.contact-hero__media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}
.contact-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 10px;
}
.contact-hero__content h1 {
  font-size: clamp(36px, 4vw, 54px);
  margin-bottom: 16px;
}
.contact-hero__content p {
  font-size: 18px;
  max-width: 520px;
  line-height: 1.8;
  opacity: 0.9;
}
.contact-hero__actions {
  margin-top: 30px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.contact-info {
  padding: 80px 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-info__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}
.contact-card {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(230, 0, 18, 0.08);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
}
.contact-info__details {
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.contact-info__details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info__details li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 16px;
}
.contact-info__details li:last-child {
  border-bottom: none;
}

.contact-form-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.contact-form__content,
.contact-form__aside {
  background: #fff;
  border-radius: 28px;
  padding: 40px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.contact-form__content h3 {
  margin-bottom: 10px;
}
.contact-form__content p {
  margin-bottom: 30px;
  color: var(--text-light);
}
.contact-form .form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.contact-form input,
.contact-form textarea {
  margin-top: 8px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 15px;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(230, 0, 18, 0.15);
  outline: none;
}
.contact-form__aside ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.contact-form__aside li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 600;
}
.contact-form__note {
  margin-top: 20px;
  color: var(--text-light);
}

.contact-map {
  padding: 80px 30px 120px;
  max-width: 1200px;
  margin: 0 auto;
}
.contact-map__frame {
  margin-top: 24px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.contact-map__frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 700px) {
  .contact-map__frame {
    margin-top: 16px;
    border-radius: 16px;
  }
  .contact-map__frame iframe {
    height: 300px;
  }
}

@media (max-width: 520px) {
  .contact-map__frame iframe {
    height: 240px;
  }
}

.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 30px 100px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.4)),
    url('../images/hero-cars.jpg') center/cover;
}
.about-hero__bg {
  position: absolute;
  inset: 0;
  background: inherit;
  opacity: 0.1;
}
.about-hero__content {
  max-width: 900px;
  z-index: 2;
}
.about-eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.about-hero__content h1 {
  font-size: clamp(38px, 5vw, 68px);
  margin: 15px 0;
}
.about-hero__content p {
  font-size: 18px;
  opacity: 0.9;
}
.about-hero__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.about-pillars {
  padding: 80px 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.about-pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.about-pillar {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}
.about-pillar h3 {
  margin-bottom: 12px;
  font-size: 20px;
}
.about-story {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px 80px;
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 30px;
}
.about-story__panel {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
}
.about-story__panel h4 {
  margin-bottom: 16px;
  font-size: 18px;
}
.about-story__panel ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.about-story__panel li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.about-story__image {
  margin-top: 20px;
}
.about-story__image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}
.about-future {
  padding: 80px 30px;
  background: #ffffff;
}
.about-future__content,
.about-future__values {
  max-width: 1000px;
  margin: 0 auto 50px;
}
.about-future__content ol {
  padding-inline-start: 20px;
  line-height: 1.9;
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.about-values__grid article {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}
.about-leadership {
  padding: 80px 30px;
}
.about-leadership__card {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, #05141f, #1f2c35);
  color: #fff;
  border-radius: 30px;
  padding: 50px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.about-leadership__card .lead-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}
.about-leadership__card .lead-role {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}
.lead-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 3px solid rgba(255, 255, 255, 0.4);
}
.about-cta {
  padding: 80px 30px 120px;
}
.about-cta__content {
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}
.about-cta__content h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.car-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  color: #fff;
  padding: 140px 30px 80px;
  overflow: hidden;
}
.car-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}
.car-hero__content {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  text-align: center;
}
.car-breadcrumbs {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.75);
}
.car-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}
.car-hero__title {
  font-size: clamp(38px, 5vw, 64px);
  margin-bottom: 12px;
}
.car-hero__subtitle {
  font-size: 18px;
  opacity: 0.9;
}
.car-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

.car-summary {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  margin: -80px auto 60px;
  position: relative;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.car-summary__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.car-summary__label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--text-light);
}
.car-summary__value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}
.car-summary__status {
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
}
.car-summary__status.sold {
  background: rgba(230, 0, 18, 0.15);
  color: var(--secondary-color);
}

.car-specs {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 30px;
}
.car-section-title {
  font-size: 26px;
  margin-bottom: 24px;
  position: relative;
}
.car-section-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
}
.car-section-title.line-title {
  text-align: center;
}
.car-section-title.line-title::after {
  display: none;
}
.car-specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.car-spec-card {
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.car-spec-card span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.car-spec-card strong {
  font-size: 18px;
  color: var(--text-dark);
}

.car-description {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 30px;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
  line-height: 1.9;
}

.car-gallery {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 30px;
}
.car-gallery__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.car-gallery__item {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
.car-gallery__item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.car-gallery__item:hover img {
  transform: scale(1.05);
}

.car-features {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 30px;
}
.car-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.car-feature-card {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  align-items: center;
}
.car-feature-card i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(230, 0, 18, 0.12);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.car-feature-card div strong {
  display: block;
  font-size: 16px;
  color: var(--text-dark);
}
.car-feature-card div span {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.car-feature-card div small {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: var(--text-dark);
  opacity: 0.8;
}

.car-similar {
  max-width: 1100px;
  margin: 0 auto 100px;
  padding: 0 30px;
}
.car-similar__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.car-similar__card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}
.car-similar__card:hover {
  transform: translateY(-6px);
}
.car-similar__card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.car-similar__body {
  padding: 20px;
}
.car-similar__body h4 {
  margin-bottom: 6px;
  font-size: 18px;
}
.car-similar__body span {
  font-size: 13px;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .car-summary {
    padding: 26px;
  }
  .car-description {
    padding: 30px;
  }
  .car-hero {
    padding: 120px 20px 70px;
    min-height: 60vh;
  }
}

.car-hero-banner {
  position: relative;
  padding: 140px 30px 90px;
  color: #fff;
  overflow: hidden;
  background: #05141f;
}
.car-hero-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
  transform: scale(1.05);
}
.car-hero-banner__content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}
.car-hero-banner__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: center;
}
.car-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.car-hero-banner__text h1 {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 16px;
}
.car-hero-stats {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
}
.car-hero-stats li {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 14px 18px;
}
.car-hero-stats small {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 4px;
}
.car-hero-stats strong {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}
.car-hero-banner__media {
  position: relative;
}
.car-hero-banner__media img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.35);
  display: block;
}
.car-hero-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.car-hero-banner .car-hero__actions {
  justify-content: flex-start;
}
.car-hero-metrics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.car-hero-chip {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.car-hero-chip i {
  font-size: 16px;
  color: #1f2c35;
}
.car-hero-chip small {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.car-hero-chip strong {
  color: #fff;
  font-size: 15px;
}

.car-details-section {
  background: #ffffff;
  padding: 80px 20px;
}
.car-details-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(280px, 1fr);
  gap: 30px;
}
.car-details-main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.car-details-aside {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 120px;
  align-self: flex-start;
}
.car-card {
  background: #fff;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(15, 15, 15, 0.08);
}
.car-card__header {
  padding: 28px 28px 0;
}
.car-gallery-card {
  padding: 0;
  overflow: hidden;
}
.car-main-image {
  width: 100%;
  height: 420px;
}
.car-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.car-thumbnail-grid {
  padding: 20px 28px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
}
.car-thumb {
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.car-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.car-thumb:hover {
  border-color: var(--secondary-color);
}
.car-stats-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}
.stat-tile {
  padding: 18px;
  border-radius: 18px;
  background: var(--bg-light);
  text-align: center;
}
.stat-tile i {
  display: block;
  font-size: 22px;
  color: var(--secondary-color);
  margin-bottom: 8px;
}
.stat-tile small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 4px;
}
.stat-tile strong {
  font-size: 18px;
  color: var(--text-dark);
}
.car-info-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.info-item {
  padding: 14px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.info-item span {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 4px;
}
.info-item strong {
  font-size: 16px;
  color: var(--primary-color);
}
.car-description-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-dark);
  text-align: justify;
}
.car-price-card {
  text-align: center;
}
.car-price-card .price-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary-color);
}
.car-price-card .price-meta {
  display: block;
  color: var(--text-light);
  margin-top: 6px;
}
.availability-status {
  margin: 20px 0;
}
.availability-status span {
  border-radius: 999px;
  padding: 8px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
}
.availability-status .is-sold {
  background: rgba(230, 0, 18, 0.15);
  color: var(--secondary-color);
}
.rating-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--bg-light);
  color: var(--text-dark);
  font-size: 14px;
}
.car-price-card .car-hero__actions {
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}
.car-price-card .car-hero__actions .btn {
  width: 100%;
}
.car-feature-groups .feature-group {
  padding: 18px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.car-feature-groups .feature-group:last-child {
  border-bottom: 0;
}
.feature-group__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.feature-group__header h4 {
  margin: 0;
  font-size: 16px;
}
.feature-group__header i {
  color: var(--secondary-color);
}
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
}
.feature-name {
  font-weight: 600;
  color: var(--text-dark);
}
.feature-value {
  color: var(--text-light);
  font-size: 13px;
}
.car-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.car-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.car-contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(230, 0, 18, 0.1);
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.car-contact-item small {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}
.car-contact-item a {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}
html[dir='rtl'] .car-hero-banner__text,
html[dir='rtl'] .car-hero-stats li,
html[dir='rtl'] .car-hero-metrics {
  text-align: right;
}
.car-ownership-card .car-ownership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.ownership-item {
  display: flex;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #ffffff;
}
.ownership-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(230, 0, 18, 0.08);
  color: var(--secondary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.ownership-item strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.ownership-item p {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}
.car-action-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.car-action-btn {
  width: 100%;
  justify-content: flex-start;
  border-radius: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
}
.car-action-btn i {
  color: var(--secondary-color);
}
.car-action-btn:hover {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}
.car-action-btn.is-copied,
.car-action-btn.is-copied i {
  color: #05141f;
}
.car-action-btn.is-copied {
  border-color: #05141f;
  background: rgba(28, 124, 84, 0.08);
}
.car-cta-banner {
  margin: 80px auto 60px;
  max-width: 1100px;
  background: linear-gradient(135deg, #05141f, #1f2c35);
  border-radius: 32px;
  color: #fff;
  padding: 40px 48px;
  position: relative;
  overflow: hidden;
}
.car-cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(230, 0, 18, 0.25),
    transparent 55%
  );
  pointer-events: none;
}
.car-cta-banner__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.car-cta-eyebrow {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.car-cta-banner__content h3 {
  font-size: 32px;
  margin: 0;
}
.car-cta-banner__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
.car-cta-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.car-cta-banner .btn {
  border-radius: 12px;
  padding: 12px 24px;
}
.car-experience {
  padding: 30px 20px;
  background: #fff;
}
.car-experience__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.car-experience__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(230, 0, 18, 0.08);
  color: var(--secondary-color);
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.car-experience__header h3 {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 12px;
}
.car-experience__header p {
  color: var(--text-light);
  line-height: 1.7;
}
.car-experience-grid {
  display: grid;
  gap: 24px;
}
.car-experience-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.car-experience-card:nth-child(odd) {
  background: #1f2c35;
  color: #ffffff;
  border-color: transparent;
}
.car-experience-card:nth-child(odd) .car-experience-eyebrow {
  color: #ffffff;
}
.car-experience-card:nth-child(odd) .car-experience-body h4,
.car-experience-card:nth-child(odd) .car-experience-body p,
.car-experience-card:nth-child(odd) .car-experience-list li {
  color: #ffffff;
}
.car-experience-card:nth-child(odd) .car-experience-list i {
  color: #ffffff;
}
.car-experience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.car-experience-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.car-experience-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--secondary-color);
}
.car-experience-body h4 {
  font-size: 24px;
  margin: 0;
}
.car-experience-body p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.7;
}
.car-experience-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.car-experience-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
}
.car-experience-list i {
  color: #05141f;
  margin-top: 3px;
}
html[dir='rtl'] .car-experience-card {
  text-align: right;
}
html[dir='rtl'] .car-experience-eyebrow {
  flex-direction: row-reverse;
}
html[dir='rtl'] .car-experience-list li {
  flex-direction: row-reverse;
}

@media (min-width: 992px) {
  .car-hero-banner__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

@media (max-width: 1024px) {
  .car-details-grid {
    grid-template-columns: 1fr;
  }
  .car-details-aside {
    position: static;
  }
  .car-experience-card {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .car-hero-banner {
    padding: 120px 20px 60px;
  }
  .car-hero-banner .car-hero__actions {
    justify-content: center;
  }
  .car-hero-metrics {
    justify-content: center;
  }
  .car-cta-banner {
    margin: 60px 20px;
    padding: 32px;
  }
  .car-experience {
    padding: 60px 20px;
  }
  .car-experience-body {
    padding: 24px;
  }
  .car-main-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .contact-form .form-row {
    flex-direction: column;
  }
  .contact-form__content,
  .contact-form__aside {
    padding: 28px;
  }
}
.page-loader {
  position: fixed;
  inset: 0;
  background: #05141f;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.loader-orbit {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgb(254 254 254 / 8%);
  border-top-color: #ffffff;
  border-left-color: #e8f6ff;
  animation: loaderSpin 1.1s linear infinite;
  box-shadow: 0 0 32px rgba(230, 0, 18, 0.25);
}

.loader-ring--ghost {
  inset: 12px;
  border-color: rgba(255, 255, 255, 0.06);
  border-bottom-color: #ffffff;
  border-right-color: transparent;
  animation-duration: 1.4s;
  animation-direction: reverse;
  opacity: 0.75;
}

.loader-logo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.08);
}

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

@media (max-width: 640px) {
  .loader-orbit {
    width: 120px;
    height: 120px;
  }
  .loader-logo {
    padding: 10px;
  }
  .loader-logo img {
    max-width: 90px;
  }
}

/* Cars Page */
.cars-page {
  background-color: #ffffff;
  color: #05141f;
  padding-block-start: 0;
  position: relative;
  z-index: 0;
}

.cars-shell {
  width: min(1280px, calc(100% - 2.5rem));
  margin-inline: auto;
}

@media (max-width: 768px) {
  .cars-shell {
    width: min(100%, calc(100% - 1.5rem));
  }
}

.cars-hero {
  position: relative;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  background: #05141f;
  margin-block: 0;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

.cars-hero__media {
  position: absolute;
  inset: 0;
}

.cars-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) brightness(0.65);
}

.cars-hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(5, 5, 5, 0.92) 20%,
    rgba(5, 5, 5, 0.55) 60%,
    rgba(10, 10, 10, 0.85) 100%
  );
}

.cars-hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(3rem, 8vw, 7rem);
}

.cars-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(-10px);
  animation: carsHeroFade 0.9s ease forwards;
}

.cars-hero__title span {
  font-size: clamp(2.8rem, 6vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  display: block;
  background: linear-gradient(120deg, #ffffff, #ffffff, #1f2c35);
  background-size: 200% auto;
  -webkit-background-clip: text;
  color: transparent;
  animation: carsHeroShimmer 6s ease-in-out infinite,
    carsHeroSlide 1s ease forwards;
  opacity: 0;
}

@keyframes carsHeroShimmer {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}

@keyframes carsHeroFade {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes carsHeroSlide {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.cars-hero__lead {
  max-width: 620px;
  font-size: 1.125rem;
  line-height: 1.8;
  margin-block: 1.5rem 2rem;
  color: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: translateY(15px);
  animation: carsHeroFade 0.9s ease forwards;
  animation-delay: 0.35s;
}

.cars-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  opacity: 0;
  animation: carsHeroFade 0.9s ease forwards;
  animation-delay: 0.55s;
}

.cars-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.9rem 1.8rem;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  background: transparent;
}

.cars-btn--primary {
  background: linear-gradient(120deg, #1f2c35, #1f2c35);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(255, 77, 77, 0.3);
}

.cars-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(255, 77, 77, 0.45);
}

.cars-btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.9);
}

.cars-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}

.cars-btn--compact {
  padding: 0.65rem 1.2rem;
  font-size: 0.95rem;
}

.cars-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  opacity: 0;
  animation: carsHeroFade 0.9s ease forwards;
  animation-delay: 0.75s;
}

.cars-hero__stat {
  padding: 1rem 1.2rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  opacity: 0;
  animation: carsHeroFade 0.8s ease forwards;
  animation-delay: 0.85s;
}

.cars-hero__stat:nth-child(2) {
  animation-delay: 1s;
}

.cars-hero__stat:nth-child(3) {
  animation-delay: 1.15s;
}

.cars-hero__stat-value {
  font-size: 1.9rem;
  font-weight: 700;
  display: block;
}

.cars-hero__stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.cars-hero__stat small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.6);
}

.cars-collection {
  background: #ffffff;
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 20px 40px rgba(15, 15, 15, 0.08);
}

.cars-collection__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-end;
}

.cars-collection__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.78rem;
  color: rgba(17, 17, 17, 0.55);
  margin-bottom: 0.5rem;
}

.cars-collection__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin: 0;
  color: #05141f;
}

.cars-collection__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: end;
}

.cars-collection__count {
  font-size: 1.05rem;
  font-weight: 600;
  color: #05141f;
}

.cars-collection__legend {
  font-size: 0.9rem;
  color: rgba(17, 17, 17, 0.65);
}

.cars-filter-wrapper {
  margin-block: 1.5rem 2rem;
}

.cars-filter {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.9rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  scroll-behavior: smooth;
}

.cars-filter::-webkit-scrollbar {
  height: 6px;
}

.cars-filter::-webkit-scrollbar-thumb {
  background: rgba(17, 17, 17, 0.2);
  border-radius: 999px;
}

.cars-filter__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: rgba(17, 17, 17, 0.85);
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cars-filter__pill:hover {
  border-color: rgba(0, 0, 0, 0.3);
  transform: translateY(-1px);
}

.cars-filter__pill.is-active {
  background: linear-gradient(120deg, #1f2c35, #1f2c35);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 10px 25px rgba(255, 77, 77, 0.35);
}

.cars-filter__count {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.08);
}

.cars-filter__pill.is-active .cars-filter__count {
  background: rgba(0, 0, 0, 0.15);
  color: #05141f;
}

.cars-insights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.cars-insight-card {
  padding: 1.4rem;
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  min-height: 190px;
}

.cars-insight-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(17, 17, 17, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.cars-insight-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.cars-insight-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.6;
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.cars-grid .car-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #05141f;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cars-grid .car-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.24);
  border-color: rgba(255, 255, 255, 0.12);
}

.car-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #05141f;
}

.car-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.car-card__badge-row {
  position: absolute;
  inset: 12px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.car-card__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.car-card__pill--ghost {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.26);
}

.car-card__pill--status {
  background: rgba(57, 181, 74, 0.2);
  border-color: rgba(57, 181, 74, 0.4);
  color: #05141f;
}

.car-card__pill--status.is-sold {
  background: rgba(230, 0, 18, 0.2);
  border-color: rgba(230, 0, 18, 0.35);
  color: #05141f;
}

.cars-grid .car-card__content {
  padding: 1.1rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: #ffffff;
}

.cars-grid .car-card__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

.car-card__subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.car-card__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.car-card__price {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.car-card__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.65rem;
}

.car-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(5, 5, 5, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  color: #ffffff;
}

.cars-grid .car-card__full-link {
  position: absolute;
  inset: 0;
  z-index: 2;
  text-indent: -9999px;
  display: block;
}

.cars-grid .car-card.is-hidden {
  display: none;
}

@media (max-width: 1200px) {
  .cars-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .cars-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.cars-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
  text-align: center;
  padding: 2rem;
  border-radius: 24px;
  border: 1px dashed rgba(17, 17, 17, 0.2);
  color: rgba(17, 17, 17, 0.75);
}

.cars-empty i {
  font-size: 3rem;
  color: rgba(17, 17, 17, 0.3);
}

.cars-empty.is-visible {
  display: flex;
}

/* Legal Pages */
.legal-page {
  background: #ffffff;
  color: #05141f;
  padding-top: 0;
}

.legal-shell {
  width: min(1180px, calc(100% - 2.8rem));
  margin: 0 auto;
}

.legal-hero {
  position: relative;
  min-height: 60vh;
  border-radius: 0 0 36px 36px;
  overflow: hidden;
  margin-bottom: 3rem;
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.legal-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(4, 4, 4, 0.8),
    rgba(4, 4, 4, 0.55),
    rgba(4, 4, 4, 0.85)
  );
  z-index: 0;
}

.legal-hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  color: #ffffff;
}

.legal-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.75rem;
}

.legal-hero__lead {
  max-width: 720px;
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 1rem 0 2rem;
}

.legal-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.legal-section {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.legal-section--muted {
  background: #ffffff;
}

.legal-section__stack {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-article {
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(12, 12, 12, 0.06);
}

.legal-article h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.legal-article p {
  margin-bottom: 1rem;
  color: rgba(17, 17, 17, 0.75);
  line-height: 1.7;
}

.legal-list h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #05141f;
}

.legal-list ul {
  margin: 0;
  padding-inline-start: 1.2rem;
  color: rgba(17, 17, 17, 0.85);
  line-height: 1.7;
}

.legal-list li {
  margin-bottom: 0.35rem;
}

.legal-grid {
  display: grid;
  gap: 1.5rem;
}

.legal-grid--three {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.legal-card {
  padding: 1.8rem;
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  box-shadow: 0 15px 30px rgba(15, 15, 15, 0.08);
}

.legal-card h3 {
  margin-top: 0;
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.legal-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.6;
}

.legal-hero--secondary .legal-hero__overlay {
  background: linear-gradient(
    110deg,
    rgba(11, 23, 39, 0.92),
    rgba(10, 10, 10, 0.85)
  );
}

@media (max-width: 768px) {
  .legal-article {
    padding: 1.5rem;
  }
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  inset-inline: 0;
  bottom: 1.5rem;
  display: none;
  justify-content: center;
  z-index: 1100;
  padding-inline: 1rem;
  pointer-events: none;
}

.cookie-consent.is-visible {
  display: flex;
  pointer-events: none;
}

.cookie-consent__card {
  width: min(820px, 100%);
  border-radius: 26px;
  padding: 1.5rem;
  background: rgba(15, 15, 15, 0.9);
  color: #ffffff;
  box-shadow: 0 20px 40px rgba(5, 5, 5, 0.25);
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  align-items: center;
  pointer-events: auto;
}

.cookie-consent__content h3 {
  margin: 0 0 0.35rem;
}

.cookie-consent__content p {
  margin: 0 0 0.5rem;
  color: rgba(255, 255, 255, 0.78);
}

.cookie-consent__link {
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.cookie-consent__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-left: auto;
}

.cookie-btn {
  border: none;
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cookie-btn--primary {
  background: linear-gradient(120deg, #1f2c35, #1f2c35);
  color: #05141f;
}

.cookie-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

/* Technology Page */
.tech-page {
  background: #05141f;
  color: #ffffff;
  padding-top: 0;
}

.tech-shell {
  width: min(1200px, calc(100% - 2.8rem));
  margin-inline: auto;
}

.tech-hero {
  position: relative;
  min-height: 80vh;
  overflow: hidden;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
}

.tech-hero__media {
  position: absolute;
  inset: 0;
}

.tech-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) brightness(0.6);
}

.tech-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(0, 150, 255, 0.25),
    rgba(5, 5, 5, 0.9)
  );
}

.tech-hero__content {
  position: relative;
  z-index: 1;
  padding: clamp(3rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
}

.tech-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.5em;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.8rem;
}

.tech-hero__lead {
  max-width: 720px;
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.tech-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  margin: 0 0 1rem;
}

.tech-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.tech-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  border-radius: 999px;
  padding: 0.85rem 1.7rem;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tech-btn--primary {
  background: linear-gradient(120deg, #1f2c35, #37434d);
  color: #fff;
  box-shadow: 0 15px 40px rgba(51, 214, 255, 0.35);
}

.tech-btn--ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.tech-btn:hover {
  transform: translateY(-2px);
}

.tech-hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.tech-stat {
  padding: 1.2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-stat__value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}

.tech-stat__label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.tech-stat small {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.6);
}

.tech-section-heading {
  margin-bottom: 2rem;
}

.tech-section-heading p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 720px;
}

.tech-section-heading p:first-child {
  letter-spacing: 0.35em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
}

.tech-section-heading h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 3rem);
}

.tech-section-heading--center {
  text-align: center;
}

.tech-pillars {
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.tech-grid {
  display: grid;
  gap: 1.5rem;
}

.tech-grid--pillars {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.tech-pillar-card {
  padding: 1.8rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.tech-pillar-card h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}

.tech-pillar-card ul {
  margin: 1rem 0 0;
  padding-inline-start: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.tech-modules {
  padding: clamp(2rem, 6vw, 4rem) 0;
  background: #ffffff;
  color: #05141f;
}

.tech-grid--modules {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.tech-module-card {
  position: relative;
  padding: 1.8rem;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 40px rgba(15, 15, 15, 0.15);
}

.tech-module-card__badge {
  position: absolute;
  inset-inline-start: 1.5rem;
  top: 1.5rem;
  width: 3rem;
  height: 0.35rem;
  border-radius: 999px;
  background: linear-gradient(120deg, #1f2c35, #37434d);
}

.tech-module-card h3 {
  margin-top: 2.2rem;
  margin-bottom: 0.6rem;
}

.tech-module-card p {
  margin: 0;
  color: rgba(17, 17, 17, 0.7);
  line-height: 1.7;
}

.tech-timeline {
  padding: clamp(2rem, 6vw, 4rem) 0;
}

.tech-timeline__list {
  display: grid;
  gap: 1rem;
}

.tech-timeline__item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.tech-timeline__index {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.tech-cta {
  padding: clamp(2rem, 6vw, 4rem) 0 4rem;
}

.tech-cta__card {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-radius: 32px;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(120deg, #05141f, #1f2c35);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.tech-cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 768px) {
  .tech-hero__actions,
  .tech-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tech-btn {
    width: 100%;
    justify-content: center;
  }

  .tech-timeline__item {
    flex-direction: column;
  }
}

@media (max-width: 600px) {
  .cookie-consent__card {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent__actions {
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .cookie-consent {
    inset: 0;
    justify-content: center;
    align-items: flex-end;
    padding: 0.75rem;
    bottom: 0;
  }
  .cookie-consent__card {
    width: 100%;
    border-radius: 16px;
    padding: 1rem;
    gap: 0.75rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  }
  .cookie-consent__content h3 {
    font-size: 1rem;
  }
  .cookie-consent__content p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .cookie-consent__actions {
    gap: 0.5rem;
  }
  .cookie-btn {
    padding: 0.65rem 1rem;
  }
}
@media (max-width: 992px) {
  .cars-collection__meta {
    text-align: start;
  }

  .cars-grid .car-card__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .cars-hero__title span {
    font-size: 2.3rem;
  }

  .cars-filter {
    padding: 0.65rem;
  }

  .cars-grid .car-card__meta {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .cars-btn {
    width: 100%;
    justify-content: center;
  }
}
