/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --main: #111721;
  --main-3: #40454d;
  --white: #ffffff;
  --grey-1: #f2f2f2;
  --grey-2: #dbdbdb;
  --grey-3:#C4C4C4;
  --grey-4: #adadad;
  --grey-5: #969696;
  --grey-6: #808080;
  --grey-7: #696969;
  --grey-9: #3b3b3b;
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 32px;
  --radius-full: 36px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--main);
  background: var(--white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(17, 23, 33, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  max-width: 1240px;
  margin: 0 auto;
}

.logo {
  display: block;
  position: relative;
  width: 190px;
  height: 48px;
  overflow: hidden;
  flex-shrink: 0;
}

.logo img {
  position: absolute;
  width: 100%;
  height: auto;
  top: -148%;
  left: 0;
  max-width: none;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 24px;
}

/* WP nav menu reset */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu > .menu-item {
  position: relative;
  list-style: none;
}

.nav-menu > .menu-item > a,
.nav-link {
  font-size: 16px;
  font-weight: 400;
  color: var(--main);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
  white-space: nowrap;
  text-decoration: none;
}

.nav-menu > .menu-item > a:hover,
.nav-link:hover {
  opacity: 0.7;
}

/* Chevron for parent items with sub-menus */
.nav-menu > .menu-item-has-children > a::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23111721' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 20px;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.nav-menu > .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* ===== Dropdown (future-ready) ===== */
.nav-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: var(--white);
  border: 1px solid rgba(17, 23, 33, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(17, 23, 33, 0.08);
  padding: 8px 0;
  margin-top: 12px;
  list-style: none;
  z-index: 110;
}

/* Invisible hover bridge so menu doesn't close between item and dropdown */
.nav-menu .menu-item-has-children::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 12px;
  display: none;
}

.nav-menu .menu-item-has-children:hover::after {
  display: block;
}

.nav-menu .menu-item-has-children:hover > .sub-menu {
  display: block;
}

.nav-menu .sub-menu li {
  list-style: none;
}

.nav-menu .sub-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  color: var(--main);
  white-space: nowrap;
  transition: background 0.15s;
  text-decoration: none;
}

.nav-menu .sub-menu a:hover {
  background: var(--grey-1);
}

/* Active/current page highlight */
.nav-menu > .current-menu-item > a,
.nav-menu > .current-menu-ancestor > a {
  font-weight: 700;
}

.nav-menu .sub-menu .current-menu-item > a {
  font-weight: 500;
  background: var(--grey-1);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 36px;
}

.btn-header-contact {
  display: none;
  align-items: center;
  justify-content: space-between;
  background: var(--main);
  color: var(--white);
  width: 200px;
  height: 58px;
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 400;
  transition: opacity 0.2s;
}

.btn-header-contact .btn-icon-right {
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-header-contact:hover {
  opacity: 0.85;
}

.hamburger-btn {
  width: 50px;
  height: 50px;
  background: var(--main);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(17, 23, 33, 0.08);
}

.close-btn {
  width: 50px;
  height: 50px;
  border: 1px solid var(--main);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-content {
  padding: 40px 0 0 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.menu-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-6);
}

.menu-line {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--grey-6);
}

.menu-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-left: 44px;
  list-style: none;
}

.menu-links a {
  font-size: 16px;
  font-weight: 400;
  color: var(--main);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* WP menu items inside mobile menu */
.menu-links .menu-item {
  list-style: none;
}

.menu-links .menu-item a {
  font-size: 16px;
  font-weight: 400;
  color: var(--main);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.social-icons-menu {
  display: flex;
  gap: 10px;
  padding-left: 44px;
}

.social-icons-menu a {
  display: flex;
}

.mobile-menu-cta {
  margin: auto 44px 0 44px;
  width: calc(100% - 88px);
  max-width: 302px;
  margin-left: auto;
  margin-right: auto;
}

.mobile-menu-logo {
  padding: 40px 16px;
  display: flex;
  justify-content: center;
}

.mobile-menu-logo img {
  height: 42px;
  opacity: 0.5;
}

/* ===== Buttons ===== */
.btn-dark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--main);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  transition: opacity 0.2s;
}

.btn-dark:hover {
  opacity: 0.85;
}

.btn-outline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 1px solid var(--main);
  color: var(--main);
  padding: 12px 16px;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--main);
  color: var(--white);
}

.btn-outline:hover .btn-icon-right-dark {
  background: var(--white);
}

.btn-outline:hover .btn-icon-right-dark svg path {
  stroke: var(--main);
}

.btn-light {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 24px;
  background: var(--white);
  color: var(--main);
  padding: 10px 12px 10px 28px;
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 400;
  transition: opacity 0.2s;
}

.btn-light:hover {
  opacity: 0.9;
}

.btn-icon-right,
.btn-icon-right-dark {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon-right {
  background: var(--white);
}

.btn-icon-right-dark {
  background: var(--main);
}

.full-width {
  width: 100%;
}

/* ===== Hero ===== */
.hero {
  padding: 24px 16px 0;
}

.hero-inner {
  max-width: 358px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.hero-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* gap: 20px; */
}

.hero h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 52px;
  color: var(--main);
}

.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--grey-9);
  margin-top: 8px;
        margin-bottom: 20px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.btn-hero-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--main);
  color: var(--white);
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  transition: opacity 0.2s;
}

.btn-hero-dark:hover {
  opacity: 0.85;
}

.btn-hero-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--main);
  color: var(--main);
  border-radius: var(--radius-lg);
  font-size: 16px;
  font-weight: 400;
  height: 50px;
  transition: background 0.2s, color 0.2s;
}

.btn-hero-outline:hover {
  background: var(--main);
  color: var(--white);
}

.hero-image {
  width: 100%;
}

.hero-image img {
  width: 100%;
  height: auto;
}

/* Stats */
.stats {
  max-width: 390px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 24px 16px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 12px 0;
  gap: 2px;
}

.stat-label {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--grey-9);
}

.stat-value {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
  color: var(--main);
}

.stat-value-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Mobile: horizontal line dividers between rows */
.stat-divider-line {
  display: none;
}

/* Children: 1=stat, 2=divider, 3=stat, 4=divider, 5=stat, 6=divider, 7=stat */
/* First row stats get border-bottom */
.stats .stat-item:nth-child(1),
.stats .stat-item:nth-child(3) {
  border-bottom: 1px solid var(--grey-2);
}

/* Right column stats get left padding */
.stats .stat-item:nth-child(3),
.stats .stat-item:nth-child(7) {
  padding-left: 24px;
}

/* ===== Cars Section ===== */
.cars-section {
  position: relative;
  padding: 0 0 60px;
  margin-top: -25px;
}

.cars-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: url('../assets/cars-bg.svg?v=3') center top / 100% auto no-repeat;
      width: 100%;
    height: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.cars-scroll-btn {
  display: flex;
  justify-content: center;
  padding-top: 5px;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.cars-scroll-btn button {
  width: 50px;
  height: 50px;
  background: var(--main);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .section-header {
  margin-bottom: 36px;
} */

.section-header h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: var(--main);
  margin-bottom: 8px;
}

.section-header p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--grey-9);
}

/* Cars header row */
.cars-header-row {
  display: flex;
  flex-direction: column;
  padding-top: 52px;
  margin-bottom: 36px;
}

.cars-header-btn {
  display: none;
}

.cars-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.car-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.car-card-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 260px;
}

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

.car-card-info {
  padding: 0 2px;
}

.car-card-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}

.car-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 24px;
  color: var(--main-3);
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--main-3);
}

.car-card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px;
  height: 34px;
}

.price-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-5);
}

.price-value {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
.label-month{
  color: var(--grey-9);

/* Body Text/Desktop */
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 28px;
}
/* Card outline button */
.btn-card-outline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--main);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  height: 50px;
  font-size: 16px;
  color: var(--main);
  background: transparent;
  transition: background 0.2s;
}

.btn-card-outline:hover {
  background: rgba(17, 23, 33, 0.04);
}

/* Cars carousel controls */
.cars-carousel-controls {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.carousel-nav-btn {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-lg);
  background: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.2s;
}

.carousel-nav-btn:hover {
  opacity: 0.85;
}

.carousel-nav-btn.disabled {
  background: #adadad;
  cursor: default;
}

.carousel-indicators {
  display: flex;
  align-items: center;
  gap: 7px;
}

.indicator {
  width: 8px;
  height: 8px;
  border-radius: 32px;
  background: var(--grey-2);
}

.indicator.active {
  width: 50px;
  background: var(--main);
}

/* Cars CTA mobile */
.cars-cta {
  display: flex;
}

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

/* ===== Deals Section ===== */
.deals-section {
  padding: 60px 0;
}

.deals-header-row {
  display: flex;
  flex-direction: column;
}

.deals-header-btn {
  display: none;
}

.deals-section-header {
  margin-bottom: 24px;
}

.deal-carousel {
  position: relative;
  margin-bottom: 24px;
}

.deal-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.deal-slide {
  position: absolute;
  transition: transform 0.5s ease, opacity 0.5s ease;
  width: 100%;
  opacity: 0;
  pointer-events: none;
}

.deal-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 2;
}

.deal-slide.prev,
.deal-slide.next {
  display: none;
}

.deal-slide img {
  width: 100%;
  object-fit: contain;
}

.deal-nav-btn {
  display: none;
  width: 58px;
  height: 58px;
  background: var(--main);
  border-radius: var(--radius-lg);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: opacity 0.2s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}

.deal-nav-prev {
  left: 0;
}

.deal-nav-next {
  right: 0;
}

.deal-nav-btn:hover {
  opacity: 0.85;
}

.deal-nav-btn.disabled {
  background: var(--grey-4);
  cursor: default;
}

.deal-info-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.deal-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.deal-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e1e1e1;
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.16px;
  width: fit-content;
}

.deal-title {
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}

.deal-divider-vertical {
  display: none;
}

.deal-divider-horizontal {
  height: 1px;
  background: var(--grey-2);
}

.deal-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.deal-price {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 2px;
}

.deal-price-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--grey-5);
}

.deal-price-amount {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: var(--main);
}

.deal-price-period {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  color: var(--grey-9);
}

.deal-description {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-9);
}

.deal-contact-btn {
  width: 100%;
}

.deal-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 24px;
}

.dot-indicator {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-lg);
  background: var(--grey-2);
}

.dot-indicator.active {
  width: 50px;
  background: var(--main);
}

.deals-cta {
  display: flex;
}

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

/* ===== About Section ===== */
.about-section {
  position: relative;
  margin: 60px 0;
}

.about-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: var(--main);
  border-radius: 0;
  z-index: -1;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 56px 0 0;
}

.about-info {
  display: flex;
  flex-direction: column;
 
}

.about-info h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 36px;
  color: var(--white);
  margin-bottom: 8px;
}

.about-subtitle {
  font-size: 16px;
  line-height: 24px;
  color: var(--white);
}

.about-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-2);
  margin-bottom: 24px;
}

.about-checkpoints {
  display: grid;
  grid-template-columns: 250px 250px;
  grid-template-rows: auto auto;
  grid-auto-flow: column;
  gap: 12px 40px;
  margin-bottom: 20px;
}

.checkpoint {
  max-width: 250px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-2);
  padding: 12px 16px;
  border-radius: var(--12, 12px);
background: linear-gradient(0deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.02) 100%), radial-gradient(189.21% 70.1% at 15.34% 39.06%, rgba(131, 113, 243, 0.08) 0%, rgba(69, 156, 236, 0.00) 100%), radial-gradient(51.42% 94.92% at 19.32% 40.62%, rgba(24, 100, 183, 0.00) 0%, rgba(23, 61, 102, 0.00) 100%), radial-gradient(132.71% 129.73% at 63.64% -12.5%, rgba(133, 40, 251, 0.02) 0%, rgba(86, 84, 74, 0.00) 100%);
}

.checkpoint svg {
  flex-shrink: 0;
}

.about-image {
  position: relative;
  margin: 0 -16px;
  max-height: 300px;


    
}

.about-image img {
 
  max-width: none;
  margin-left: -20%;
  margin-top: -10%;
  
}

@media (max-width:1260px) {
  .about-checkpoints{

  }
}

/* ===== Steps Section ===== */
.steps-section {
  padding: 60px 0;
}

.steps-header {
  display: grid;
  grid-template-columns: 48% 48%;
  gap: 8px;
  margin-bottom: 36px;
}

.steps-header h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: var(--main);
}

.steps-header p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-9);
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-card {
  border: 1px solid var(--grey-4);
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 248px;
}

.step-top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.step-number {
  font-size: 14px;
  font-weight: 400;
  color: var(--main);
}

.step-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--main);
}

.step-card p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-9);
}

/* ===== Blog Section ===== */
.blog-section {
  padding: 60px 0;
}

.blog-section .container {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.blog-header-row {
  display: flex;
  flex-direction: column;
}

.blog-header-btn {
  display: none;
}

.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-card {
  background: var(--main);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(17, 23, 33, 0.12);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-card-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--main) 0%, transparent 100%);
}

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

.blog-card-body {
  padding: 20px 24px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.blog-card-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-card-bottom {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  flex: 1;
}

.blog-author {
  font-size: 14px;
  color: var(--grey-4);
}

.blog-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--white);
}

.blog-excerpt {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-2);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  width: 100%;
}

.blog-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
}

.blog-date {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-1);
  width: 100%;
}

.blog-arrow {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* ===== Reviews Section ===== */
.reviews-section {
  padding: 60px 0;
}

.reviews-section .container {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.reviews-header-row {
  display: flex;
  flex-direction: column;
}

.reviews-header-btn {
  display: none;
}

.reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card {
  border: 0.5px solid var(--grey-4);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.04);
}

.review-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.review-user-info {
  flex: 1;
}

.review-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #1a1a1a;
}

.review-date {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
}

.review-google {
  width: 24px;
  height: 24px;
}

.review-rating {
  width: 136px;
  height: 24px;
}

.review-text {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-9);
}

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

/* ===== FAQ Section ===== */
.faq-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}

.faq-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/faq-bg.jpg') center / cover no-repeat;
  z-index: -2;
}

.faq-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 23, 33, 0.92);
  z-index: -1;
}

.faq-content {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.faq-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-header h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: var(--white);
}

.faq-header p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-1);
}

.faq-list {
  display: flex;
  flex-direction: column; 
}

.faq-item {
  border-bottom: 1px solid var(--grey-7);
  padding: 16px 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  gap: 16px;
}

.faq-question span {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: var(--white);
}

.faq-icon {
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  margin-top: 12px;
}

.faq-answer p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-2);
}
 

/* ===== CTA Section ===== */
.cta-section {
  padding: 60px 0;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  padding: 60px 28px;
}

.cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/cta-bg.jpg') center / cover no-repeat;
  z-index: 0;
}

.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 23, 33, 0.82);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  max-width: 318px;
  margin: 0 auto;
}

.cta-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cta-content h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: var(--white);
}

.cta-content p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-1);
}

.cta-btn {
  width: 100%;
  margin: 0 auto;
}

/* ===== Footer ===== */
.footer {
  border-top: 1px solid rgba(17, 23, 33, 0.08);
  padding: 32px 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 52px;
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social a {
  display: flex;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer-col a {
  font-size: 16px;
  color: var(--main);
  transition: opacity 0.2s;
}

.footer-col a:hover {
  opacity: 0.7;
}

.footer-logo {
  width: 100%;
}

.footer-logo img {
  width: 100%;
  height: auto;
  max-height: 42px;
  object-fit: contain;
  margin: 0 auto;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-copyright {
  font-size: 16px;
  color: var(--grey-6);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 16px;
  color: var(--main);
  transition: opacity 0.2s;
}

.footer-legal a:hover {
  opacity: 0.7;
}

/* ===== Tablet Styles (768px+) ===== */
@media (min-width: 768px) {
  .mobile-only {
    display: none;
  }

  /* Cars Grid - tablet: 2 column grid */
  .cars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cars-cta {
    justify-content: center;
  }

  .cars-cta-btn {
    width: auto;
    min-width: 250px;
    justify-content: center;
  }

  /* Deals */
  .deals-cta {
    display: none;
  }

  /* About */
  .about-section {
    min-height: 680px;
  }

  .about-bg {
    max-height: 498px;
    height: 100%;
  }

  .about-content {
    position: relative;
    flex-direction: row;
    align-items: flex-start;
    padding: 46px 0;
    min-height: 680px;
  }

  .about-info {
    max-width: 600px;
width: 100%;
  }

  .about-info h2 {
    font-size: 32px;
    line-height: 48px;
  }

  .about-subtitle {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 16px;
  }

  .about-checkpoints {
    gap: 12px 40px;
  }



  .about-image img {
   
    max-width: none;
    margin: 0;
    
    position: absolute;
    object-fit: contain;
        height: 100%;
        right: 0;
   
    
  }
 
  @media (max-width:1098px) {
.about-image,.about-image img{
}
  }

  /* Steps */
  .steps-header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }

  .steps-header h2 {
    font-size: 36px;
    line-height: 48px;
    
  }

  .steps-header p {
    font-size: 18px;
    line-height: 28px;
   
    
  }

  .steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .step-card {
    min-height: 304px;
  }

  .step-card h3 {
    font-size: 24px;
    line-height: 34px;
  }

  /* Blog */
  .blog-header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
  }

  .blog-header-btn {
    display: flex;
    width: 180px;
    height: 58px;
    justify-content: center;
    flex-shrink: 0;
  }

  .blog-section-header {
    max-width: 600px;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .blog-card {
    /* height handled by content */
  }

  .blog-title {
    font-size: 24px;
    line-height: 34px;
  }

  .blog-author {
    font-size: 16px;
  }

  .blog-arrow {
    width: 58px;
    height: 58px;
  }

  .blog-cta {
    display: none;
  }

  /* Reviews */
  .reviews-header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .reviews-header-btn {
    display: flex;
    width: 180px;
    height: 58px;
    justify-content: center;
    flex-shrink: 0;
  }

  .reviews-section-header {
    max-width: 600px;
  }

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* .review-card {
    height: 294px;
  } */

  .review-header {
    gap: 16px;
  }

  .reviews-cta {
    display: none;
  }

  /* FAQ */
  .faq-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .faq-header {
    width: 600px;
    flex-shrink: 0;
  }

  .faq-list {
    flex: 1;
  }

  /* Footer */
  .footer-links {
    gap: 24px;
  }

  .footer-col {
    display: contents;
  }

  .footer-logo img {
    max-height: 100px;
    max-width: 1060px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}
 @media (max-width:1220px) {
        
      
.about-image{
  top: 15%;
}
    
  }

/* ===== Large Desktop (1024px+) ===== */
@media (min-width: 1024px) {
  .hamburger-btn {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }

  .btn-header-contact {
    display: flex;
  }

  .container {
    padding: 0 40px;
  }

  .header-inner {
    padding: 16px 40px;
  }

  .logo {
    width: 202px;
    height: 51px;
  }

  /* .hero {
    padding: 60px 16px 0;
  } */

  .hero-inner {
    max-width: 960px;
    gap: 24px;
  }

  /* .hero-text {
    gap: 24px;
  } */

  .hero h1 {
    font-size: 64px;
    line-height: 76px;
  }

  .hero-subtitle {
    font-size: 18px;
    line-height: 28px;
    max-width: 600px;
  }

  .hero-buttons {
    flex-direction: row;
    width: auto;
    gap: 16px;
  }

  .btn-hero-dark,
  .btn-hero-outline {
    width: 180px;
    height: 58px;
  }

  .hero-image {
    max-width: 820px;
  }

  /* Stats desktop */
  .stats {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    padding: 20px 0;
    gap: 0;
    justify-content: space-between;
    align-items: stretch;
    padding-top: 24px;
    margin-bottom: -45px;
    padding-bottom: 0px;
  }
.stat-item-flex{
  display: flex;
}
  .stats .stat-item {
    flex: 1;
    padding: 0 32px;
    border-bottom: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .stats .stat-item:first-child {
    padding-left: 0;
  }

  .stats .stat-item:last-child {
    padding-right: 0;
  }

  .stats .stat-item:nth-child(1),
  .stats .stat-item:nth-child(3) {
    border-bottom: none;
  }

  .stats .stat-item:nth-child(3),
  .stats .stat-item:nth-child(7) {
    padding-left: 32px;
  }

  .stat-divider-line {
    display: block;
    width: 1px;
    background: var(--grey-2);
    align-self: stretch;
    flex-shrink: 0;
  }

  .stat-label {
    font-size: 18px;
    line-height: 28px;
    width:max-content;
  }

  .stat-value {
    font-size: 32px;
    line-height: 42px;
  }

  .section-header h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .section-header p {
    font-size: 18px;
    line-height: 28px;
  }

  /* Cars desktop layout */
  .cars-section {
    margin-top: -15px;
    padding-bottom: 84px;
    overflow-x: clip;
  }

  /* About desktop */
  .about-section {
    margin:  0;
    position: relative;
    /* background: var(--main); */
  }

  .cars-scroll-btn {
    padding-top: 16px;
    margin-bottom: 40px;
  }

  .cars-scroll-btn button {
    width: 58px;
    height: 58px;
  }

  .cars-header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .cars-section-header {
    max-width: 600px;
  }

  .cars-header-btn {
    display: flex;
    width: 180px;
    height: 58px;
    justify-content: center;
    flex-shrink: 0;
  }

  .cars-grid {
    overflow: hidden;
    margin-right: -95px;
  }

  .cars-grid-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
  }

  .car-card {
    min-width: 397px;
    width: 397px;
    flex-shrink: 0;
  }

  .car-card-image {
    height: 280px;
  }

  .car-card-title {
    font-size: 24px;
    line-height: 34px;
  }

  .car-card-meta {
    font-size: 18px;
    line-height: 28px;
  }

  .price-value {
    font-size: 24px;
    line-height: 34px;
  }

  .btn-card-outline {
    height: 58px;
    padding: 12px 20px;
  }

  .cars-carousel-controls {
    display: flex;
    margin-top: 36px;
  }

  .cars-cta {
    display: none;
  }

  /* Deals desktop */
  .deals-section {
    padding: 84px 0;
  }

  .deals-header-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 36px;
  }

  .deals-section-header {
    max-width: 600px;
    margin-bottom: 0;
  }

  .deals-header-btn {
    display: flex;
    width: 180px;
    height: 58px;
    justify-content: center;
    flex-shrink: 0;
  }

  .deal-carousel {
    margin-bottom: 32px;
  }

  .deal-slider {
    height: 308px;
  }

  .deal-slide {
    width: 80%;
    max-width: 984px;
  }

  .deal-slide.prev,
  .deal-slide.next {
    display: block;
    opacity: 0.6;
  }

  .deal-slide.prev {
    transform: translateX(-115%);
    z-index: 1;
  }

  .deal-slide.next {
    transform: translateX(115%);
    z-index: 1;
  }

  .deal-nav-btn {
    display: flex;
  }

  .deal-info-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    max-width: 836px;
    margin: 0 auto 36px;
  }

  .deal-meta {
    width: 240px;
    flex-shrink: 0;
  }

  .deal-divider-horizontal {
    display: none;
  }

  .deal-divider-vertical {
    display: block;
    width: 1px;
    height: 150px;
    background: var(--grey-2);
    flex-shrink: 0;
  }

  .deal-details {
    flex: 1;
  }

  .deal-title {
    font-size: 24px;
    line-height: 34px;
  }

  .deal-contact-btn {
    width: 200px;
  }

  .deal-dots {
    margin-bottom: 0;
  }

  /* Blog desktop */
  .blog-section {
    padding: 84px 0;
  }

  /* Reviews desktop */
  .reviews-section {
    padding: 84px 0;
  }

  /* Steps desktop */
  .steps-section {
    padding: 84px 0;
  }

  /* FAQ desktop */
  .faq-section {
    padding: 84px 0;
  }

  .faq-header h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .faq-header p {
    font-size: 18px;
    line-height: 28px;
    max-width: 400px;
  }

  .faq-list {
    width: 605px;
    flex: none;
  }

  /* CTA desktop */
  .cta-section {
    padding: 84px 0;
  }

  .cta-card {
    padding: 80px 0;
  }

  .cta-content {
    max-width: 600px;
  }

  .cta-content h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .cta-content p {
    font-size: 18px;
    line-height: 28px;
  }

  .cta-btn {
    width: 200px;
    height: 58px;
    justify-content: center;
    margin: 0 auto;
  }
}

/* ===== Full Desktop (1440px+) ===== */
@media (min-width: 1440px) {
  .header-inner {
    max-width: 1440px;
    padding: 16px 100px;
  }

  .container {
    max-width: 1440px;
    padding: 0 100px;
  }


}

/* ===== ABOUT US PAGE ===== */

/* About Hero */
.about-hero {
  position: relative;
  padding: 252px 0 0;
  overflow: hidden;
  z-index: 0;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(17,23,33,0.6) 0%, rgba(9,12,17,0.8) 50%, rgba(4,6,8,0.9) 75%, rgba(0,0,0,1) 100%);
  opacity: 0.72;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}

.about-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding-bottom: 252px;
}

.about-hero-content h1 {
  font-size: 42px;
  font-weight: 600;
  line-height: 52px;
  color: var(--white);
}

.about-hero-content p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-1);
  max-width: 354px;
}

/* About Intro Section */
.about-intro {
  position: relative;
  padding: 0;
  margin-top: -70px;
  z-index: 1;
}

.about-intro-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 
  z-index: 0;
}
.about-intro-bg.desk {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/cars-bg.svg?v=3') center top / 100% auto no-repeat;
  z-index: 0;
}
.about-intro-bg.mob {
  display: none;
}
@media (max-width:500px) {
  .about-intro-bg.desk {
    display: none;
  }
  .about-intro-bg.mob {
    display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../assets/cars-bg-mob.svg?v=3') center top / 100% auto no-repeat;
  z-index: 0;
}
}

.about-intro .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-intro-scroll {
  display: flex;
  justify-content: center;
  padding-top: 13px;
  margin-bottom: 50px;
}

.about-scroll-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-lg);
  background: var(--main);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-scroll-btn svg {
  transform: rotate(0deg);
}

.about-stats-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-bottom: 60px;
}

.about-stats-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.about-stat-item {
  display: flex;
  flex-direction: column;
}

.about-stat-label {
  font-size: 14px;
  font-weight: 400;
  color: var(--grey-9);
}

.about-stat-value {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: var(--main);
  display: flex;
  align-items: center;
  gap: 2px;
}

.about-stat-value svg {
  width: 20px;
  height: 20px;
}

.about-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--grey-2);
}

.about-tagline {
  text-align: center;
  margin-bottom: 36px;
  width: 100%;
  max-width: 800px;
}

.about-tagline h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: var(--main);
}

.text-grey {
  color: var(--grey-5);
}

.about-main-photo {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.about-main-photo img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* Legacy Section */
.legacy-section {
  padding: 60px 0;
}

.legacy-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 36px;
}

.legacy-header h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: var(--main);
}

.legacy-header p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-9);
}

.legacy-timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legacy-periods {
  display: none;
}

.legacy-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.legacy-card {
  background: var(--white);
  border: 0.5px solid var(--grey-4);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.04);
}

.legacy-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--main);
  margin-bottom: 8px;
}

.legacy-card p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-9);
}

/* Mobile: Year labels inline */
.legacy-card-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legacy-year-mobile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.legacy-year-mobile span {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--grey-9);
  white-space: nowrap;
}

.legacy-year-mobile::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--grey-2);
}

/* Mission Section */
.mission-section {
  padding: 60px 0;
}

.mission-tagline {
  text-align: center;
  margin-bottom: 36px;
}

.mission-tagline h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: var(--main);
}

.mission-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mission-photo-large {
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.mission-photo-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.mission-right {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.mission-photos-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.mission-photo-small {
  max-width: 300px;
  width: 100%;
  height: 160px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.mission-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.mission-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mission-text h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--main);
}

.mission-text p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-9);
}

/* Why Choose Us Section */
.whychoose-section {
  padding: 60px 0;
}

.whychoose-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}

.whychoose-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.whychoose-header h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: var(--main);
}

.whychoose-header p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-9);
}

.whychoose-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.whychoose-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.whychoose-card {
  background: var(--white);
  border: 1px solid var(--grey-4);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  overflow: hidden;
}

.whychoose-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.whychoose-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--main);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whychoose-card h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--main);
}

.whychoose-card p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-9);
}

.whychoose-image {
  position: relative;
  width: 342px;
  height: 440px;
  align-self: flex-start;
}

.whychoose-image-shadow {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 338px;
  height: 420px;
  border-radius: var(--radius-md);
  background: rgba(17,23,33,0.2);
}

.whychoose-image img {
  position: relative;
  width: 342px;
  height: 424px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0px 4px 10px rgba(0,0,0,0.06);
}

.btn-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whychoose-btn {
  max-width: 358px;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

/* ===== ABOUT PAGE DESKTOP ===== */

@media (min-width: 1024px) {
  .about-hero {
    padding: 252px 200px 0;
  }

  .about-hero-content h1 {
    font-size: 64px;
    line-height: 76px;
  }

  .about-hero-content p {
    font-size: 18px;
    line-height: 28px;
    max-width: 600px;
  }

  .about-intro {
    margin-top: -130px;
  }

  .about-intro-scroll {
    margin-bottom: 60px;
  }

  .about-scroll-btn {
    width: 58px;
    height: 58px;
  }

  .about-stats-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    margin-bottom: 48px;
  }

  .about-stats-group {
    gap: 40px;
    justify-content: flex-start;
    width: auto;
  }

  .about-stat-label {
    font-size: 18px;
    line-height: 28px;
  }

  .about-stat-value {
    font-size: 32px;
    line-height: 42px;
    gap: 8px;
  }

  .about-stat-value svg {
    width: 24px;
    height: 24px;
  }

  .about-stat-divider {
    height: 48px;
  }

  .about-tagline h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .about-main-photo img {
    height: 420px;
  }

  /* Legacy Desktop */
  .legacy-section {
    padding: 168px 0;
  }

  .legacy-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .legacy-header h2 {
    font-size: 36px;
    line-height: 48px;
    width: 500px;
    flex-shrink: 0;
  }

  .legacy-header p {
    font-size: 18px;
    line-height: 28px;
    width: 600px;
  }

  .legacy-timeline {
    gap: 24px;
  }

  .legacy-periods {
    display: flex;
    gap: 24px;
    width: 100%;
  }

  .legacy-period {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
  }

  .legacy-year {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--grey-9);
    white-space: nowrap;
  }

  .legacy-line {
    flex: 1;
    height: 1px;
    background: var(--grey-2);
  }

  .legacy-cards {
    flex-direction: row;
    gap: 24px;
  }

  .legacy-card {
    flex: 1;
  }

  .legacy-card h3 {
    font-size: 24px;
    line-height: 34px;
    margin-bottom: 16px;
  }

  .legacy-card p {
    font-size: 18px;
    line-height: 28px;
  }

  .legacy-year-mobile {
    display: none;
  }

  /* Mission Desktop */
  .mission-section {
    padding: 84px 0;
  }

  .mission-tagline {
    margin-bottom: 52px;
  }

  .mission-tagline h2 {
    font-size: 36px;
    line-height: 48px;
    max-width: 800px;
    margin: 0 auto;
  }

  .mission-content {
    flex-direction: row;
    gap: 24px;
  }

  .mission-photo-large {
    width: 604px;
    height: 600px;
    flex-shrink: 0;
  }

  .mission-right {
    width: 612px;
    padding-top: 44px;
    gap: 36px;
  }

  .mission-photos-row {
    flex-direction: row;
    gap: 28px;
  }

  .mission-photo-small {
    max-width: 292px;
    width: 100%;
    height: 310px;
  }

  .mission-text h3 {
    font-size: 24px;
    line-height: 34px;
  }

  .mission-text p {
    font-size: 18px;
    line-height: 28px;
    max-width: 600px;
  }

  /* Why Choose Us Desktop */
  .whychoose-section {
    padding: 84px 0;
  }

  .whychoose-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }

  .whychoose-header h2 {
    font-size: 36px;
    line-height: 48px;
    width: 600px;
    flex-shrink: 0;
  }

  .whychoose-header p {
    font-size: 18px;
    line-height: 28px;
    width: 600px;
  }

  .whychoose-content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .whychoose-col {
    width: 340px;
    gap: 24px;
  }

  .whychoose-card h4 {
    font-size: 24px;
    line-height: 34px;
  }

  .whychoose-icon {
    width: 58px;
    height: 58px;
  }

  .whychoose-image {
    width: 476px;
    height: 516px;
    align-self: center;
  }

  .whychoose-image-shadow {
    width: 457px;
    height: 496px;
  }

  .whychoose-image img {
    width: 457px;
    height: 496px;
  }

  .whychoose-btn {
    width: 200px;
    height: 58px;
    justify-content: space-between;
  }
}

/* ===== BLOG PAGE ===== */

/* Blog Hero */
.blog-hero {
  padding: 60px 0 0;
}

.blog-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.blog-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.blog-hero-content h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 46px;
  color: var(--main);
  max-width: 960px;
        width: 100%;
}

.blog-hero-content p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-9);
  max-width: 354px;
}

.blog-search {
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 500px;
}

.blog-search-input {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 50px;
  padding: 0 16px;
  border: 1px solid var(--grey-2);
  border-radius: var(--radius-md);
  background: var(--white);
}

.blog-search-input svg {
  flex-shrink: 0;
}

.blog-search-input input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--main);
  background: transparent;
}

.blog-search-input input::placeholder {
  color: var(--grey-5);
}

.blog-search-btn {
  height: 50px;
  padding: 0 24px;
  background: var(--main);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

/* Featured Blog Post */
.blog-featured {
  padding: 32px 0 0;
}

.blog-featured-card {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.blog-featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.blog-featured-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 240px;
     background: linear-gradient(to top, rgba(0, 0, 0, 1) 9.375%, rgb(0 0 0 / 81%) 48.25%, rgb(0 0 0 / 0%) 100%);
    backdrop-filter: blur(1px);
}

.blog-featured-content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  /* display: flex; */
  flex-direction: column;
  gap: 16px;
 
}

.blog-featured-text h2 {
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  color: var(--white);
  margin-bottom: 4px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.20);
}
.blog-featured-meta{
  color: var(--grey-2);

/* Body Text/Mobile */

font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
}

.blog-featured-text p {
  font-size: 14px;
  line-height: 22px;
  color: var(--grey-2);
  overflow: hidden;
  text-overflow: ellipsis;
  /* white-space: nowrap; */
}

.blog-featured-meta span {
  font-size: 14px;
  line-height: 22px;
  color: var(--grey-3);
}

.blog-featured-arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border:1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blog Posts Section */
.blog-posts {
  padding: 48px 0 60px;
}

/* Tab Filters */
.blog-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 36px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.blog-tabs::-webkit-scrollbar {
  display: none;
}

.blog-tab {
  padding: 8px 16px;
  height: 40px;
  border: 1px solid var(--grey-2);
  border-radius: 12px;
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  color: var(--grey-9);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.04);
}

.blog-tab.active {
  background: var(--main);
  color: var(--white);
  border-color: var(--main);
}

/* Blog Cards Grid */
.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

.blog-card {
  background: var(--main);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card-top {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}

.blog-card-author {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  color: var(--grey-3);
}

.blog-card-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--grey-5);
}

.blog-card-category {
  font-size: 14px;
  font-weight: 400; 
  line-height: 22px;
  color: var(--grey-3);
      display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--white);
}

.blog-card-bottom p {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-2);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.blog-card-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 16px;
  width: 100%;
}

.blog-card-date {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--grey-1);
  margin-top: -20px;
}

.blog-card-arrow {
  width: 160px;
  height: 50px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-around;
  border-radius: var(--radius-lg);
  padding: 0 0 0 10px;
}

/* Pagination */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.blog-page-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--main);
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--main);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-page-btn.active {
  background: var(--main);
  color: var(--white);
  border-color: var(--main);
}
@media (max-width:768px) {
  .blog-featured-text p {
    max-width: 400px;
    width: 100%;
  }
  
}
/* ===== BLOG PAGE DESKTOP ===== */
@media (min-width: 1024px) {
  .blog-hero {
    padding: 84px 0 0;
  }

  .blog-hero-content h1 {
    font-size: 64px;
    line-height: 76px;
  }

  .blog-hero-content p {
    font-size: 18px;
    line-height: 28px;
    max-width: 600px;
  }

  .blog-search {
    max-width: 520px;
  }

  .blog-search-input {
    height: 58px;
    width: 400px;
  }

  .blog-search-btn {
    height: 58px;
    padding: 0 32px;
  }

  .blog-featured {
    padding: 60px 0 0;
  }

  .blog-featured-card {
    height: 480px;
  }

  .blog-featured-content {
    bottom: 32px;
    left: 32px;
    right: 32px;
    flex-direction: row;
    align-items: flex-end;
    
  }
.blog-featured-content1 {
justify-content: space-between;
display: flex;
 margin-bottom: 28px;
}
  .blog-featured-text {
    max-width: 700px;
  }

  .blog-featured-text h2 {
    font-size: 24px;
    line-height: 34px;
    text-shadow: 0px 4px 12px rgba(0,0,0,0.2);
  }

  .blog-featured-text p {
    font-size: 16px;
    line-height: 24px;
  }

  .blog-featured-meta span {
    font-size: 16px;
    line-height: 24px;
  }

  .blog-featured-arrow {
    position: relative;
    bottom: -40px;
    right: auto;
    width: 58px;
    height: 58px;
    flex-shrink: 0;
  }

  .blog-posts {
    padding: 48px 0 84px;
  }

  .blog-tab {
    font-size: 16px;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
  }

  .blog-card {
    min-height: 340px;
  }

  .blog-card h3 {
    font-size: 24px;
    line-height: 34px;
  } 

  .blog-page-btn {
    width: 58px;
    height: 58px;
  }
}

/* ===== ARTICLE PAGE ===== */

/* Article Hero */
.article-hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}

.article-hero-bg {
  position: absolute;
  inset: 0;
}

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

.article-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}

.article-hero .container {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-bottom: 48px;
}

.article-hero-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.article-hero-content h1 {
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
  color: var(--main);
}

.article-hero-meta {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-7);
}

/* Article Layout */
.article-section {
  padding: 48px 0 60px;
}

.article-layout {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* Article Body */
.article-body {
  max-width: 100%;
}

.article-body p {
  font-size: 16px;
  line-height: 26px;
  color: var(--grey-7);
  margin-bottom: 16px;
}

.article-body h2 {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: var(--main);
  margin-top: 24px;
  margin-bottom: 12px;
}

.article-body h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--main);
  margin-top: 24px;
  margin-bottom: 8px;
}

.article-body ul {
  padding-left: 24px;
  margin-bottom: 16px;
}

.article-body ul li {
  font-size: 16px;
  line-height: 26px;
  color: var(--grey-9);
  margin-bottom: 4px;
}

/* Share */
.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
  padding-top: 24px;
  
}

.article-share span {
  font-size: 18px;
  font-weight: 400;
  color: var(--main);
}

.article-share a {
  display: flex;
}

/* Sidebar */
 .article-sidebar .article-toc{
    display: none;
  }

.article-toc {
  margin-bottom: 60px;
}

.article-toc ol {
  list-style: none;
  padding: 0;
  counter-reset: toc;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-toc ol li {
  counter-increment: toc;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-toc ol li::before {
  content: counter(toc);
  
  color: var(--grey-7);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.article-toc ol li a {
  font-size: 16px;
  line-height: 24px;
  color: var(--grey-7);
  text-decoration: none;
}

/* Quote Form */
.article-quote-form {
  border: 1px solid var(--grey-2);
  border-radius: var(--radius-md);
  padding: 24px 20px;
}

.article-quote-form1 h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  color: var(--main);
  margin-bottom: 16px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.form-group label {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--main-3);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--grey-2);
  border-radius: 24px;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 24px;
  color: var(--main);
  background: var(--white);
  outline: none;
  resize: none;
}
.form-group input{
  padding-left: 40px;
      min-height: 58px;
}

.form-group svg{
     position: absolute;
    left: 16px;
    bottom: 22px;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-5);
}

.quote-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 50px;
  background: var(--main);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

/* Related Articles */
.related-section {
  padding: 60px 0;
}

.related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.related-header h2 {
  font-size: 28px;
  font-weight: 600;
  line-height: 36px;
  color: var(--main);
}

.related-btn {
  display: none;
}
.related-btn1{
display: block;
width: 100%;
margin-top: 36px;
text-align: center;
}

.related-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ===== ARTICLE PAGE DESKTOP ===== */
@media (min-width: 1024px) {
  .article-hero {
    height: 480px;
  }

  .article-hero .container {
    padding-bottom: 60px;
  }

  .article-hero-content h1 {
    font-size:64px;
    line-height:76px;
    max-width: 700px;
  }

  .article-hero-meta {
    font-size: 18px;
    line-height: 28px;
  }

  .article-section {
    padding: 36px 0 84px 0;
  }

  .article-layout {
    flex-direction: row;
    gap: 48px;
  }

  .article-body {
    flex: 1;
    min-width: 0;
  }

  .article-body p {
    font-size: 18px;
    line-height: 28px;
  }

  .article-body h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .article-body h3 {
    font-size: 20px;
    line-height: 30px;
  }

  .article-body ul li {
    font-size: 18px;
    line-height: 28px;
  }

  .article-sidebar {
    display: block;
    width: 340px;
    flex-shrink: 0;
    position: sticky;
    top: 110px;
    align-self: flex-start;
  }

  .related-section {
    padding: 84px 0;
  }

  .related-header h2 {
    font-size: 36px;
    line-height: 48px;
  }

  .related-btn {
    display: flex;
    width: 180px;
    height: 58px;
    justify-content: space-between;
  }
  .related-btn1{
    display: none;
    margin-top: 36px;
  }

  .related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

    .about-image {
       position: absolute;
    right: -10%;
    top: 30px;
    bottom: 0;
    width: 100%;
    margin: 0;
    max-height: 100%;
    height: 100%;
    transform: scale(0.8);
        
        
    }
@media (max-width:1250px){
 .about-image{
  
    transform: scale(0.7);
    right: -15%;
 }
  }
  @media (max-width: 1080px) {
    .about-image {
        transform: scale(0.6);
        right: -20%;
    }
}

    .car2{
      display: none;
    }
 @media (max-width: 998px) {
    .car1{
      display: none!important;
    }
    .car2{
      display: block;
    }
    .about-bg{
      max-height: 851px;
    }
    .about-info{
      max-width: 100%;
    }
.about-content{
  min-height: 100%!important;
}
    .about-image {
       transform: scale(0.7);
        left: 6%;
        top: 33%;
    }
}
@media (max-width:768px) {
  .checkpoint{
    min-height: 24px;
    height: 100%;
  }
  .about-section .container{
    min-height: 851px;
    height: 100%;
  }
  .about-checkpoints{
    grid-template-columns: 100%;
    grid-auto-flow: row;
  }
  .about-image img{
    max-width: 100%;
    margin: 0;
  }

  .about-image {
            transform: scale(1);
        left: 0;
        top: 68%;
  }
  .about-bg{
    /* width handled by base 100vw rule */
  }
}

@media (max-width:425px){
  .about-image {
        transform: scale(1.6);
        left: 0;
        top: 102%;
    }
    .about-bg{
      height: 100%!important;
    }
    .about-info .btn-light{
      height: 50px;
    }
}
@media (max-width:1024px) {
  .stats .stat-item:nth-child(3), .stats .stat-item:nth-child(7){
    padding-left: 0;
    border: 0;
  }
  .stats .stat-item:nth-child(1), .stats .stat-item:nth-child(3){
    max-width: max-content;
  }
  .stats {
    max-width: 500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto auto;
    gap: 0;
    padding: 24px 0px;
    justify-content: space-between;
}
.cars-scroll-btn{
  margin-bottom: 0;
}
.cars-grid-track {
    display: grid;
    gap: 16px;
}
.about-info{
  gap: 0;
}
.about-info h2{
  margin-bottom: 8px;
}
.about-subtitle{
  margin-bottom: 16px;
}
.about-text{
  margin-bottom: 24px;
}

}

@media (max-width: 900px) {
    .steps-grid,.reviews-grid {
        display: grid;
        grid-template-columns: auto;
        gap: 24px;
        max-width: 358px;
        justify-content: center;
        margin: 0 auto;
    }
    .steps-header,.steps-header{
      grid-template-columns: auto;
      gap: 8px;
    }
    .blog-section .container{
      gap: 0;
    }
    .reviews-section{
      padding-bottom: 120px;
    }
    .faq-section{
      padding: 82px 0;
    }
    .cta-section{
      padding: 120px 0;
    }
    .cta-card{
      padding: 72px 20px ;
      max-width: 100%;
    }
    .cta-content{
      max-width: 100%;
    }
    .cta-btn{
      justify-content: space-between;
    }
            .about-bg {
            height: 95%;
        }
        .about-intro{
          margin-bottom: 60px;
        }
}

@media (max-width:768px){
  .checkpoint{
    max-width: 100%;
  }
  .about-checkpoints {
    display: grid;
    grid-template-columns: 100%;
    
  }
  .about-info .btn-light{
    justify-content: space-between;
    width: 100%;

  }
}

@media (min-width: 769px)and (max-width:900px){
    .faq-content {
        flex-direction: column;}
}

@media (max-width:820px){
  .about-checkpoints{
justify-content: flex-start;
  }
  .article-section{
    padding-top: 36px;
    padding-bottom: 60px;
  }
.related-section{
  padding-bottom: 0;
}
}

@media (max-width:600px) {
  .blog-featured-content{
    bottom: 82px;
  }
  .blog-featured-arrow{
    bottom: -58px;
  }
  .blog-featured-meta{
    margin-top: 20px;
  }

}
/* ===== Footer WP Menu Items ===== */
.footer-col .menu-item {
  list-style: none;
}

.footer-col .menu-item a {
  font-size: 16px;
  color: var(--main);
  transition: opacity 0.2s;
  text-decoration: none;
}

.footer-col .menu-item a:hover {
  opacity: 0.7;
}

.home-cars-disclaimer p{
  margin-top: 36px;
  color: #555454;
  font-size: 12px;
  line-height: 1.5;
  max-width: 900px;
}

a.car-card-image { display: block; }
.car-card-title-link { text-decoration: none; color: inherit; }
.car-card-title-link:hover .car-card-title { opacity: 0.7; }