@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Black.ttf") format("truetype");
  font-weight: 100;
}

@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Bold.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-ExtraBold.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-ExtraLight.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Light.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Medium.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Regular.ttf") format("truetype");
  font-weight: 100;
}
@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-SemiBold.ttf") format("truetype");
  font-weight: 100;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --green: #15a362;
  --green-main: #15a362;
  --green-dark: #0b4a38;
  --green-deep: #053628;
  --green-light: #e9f8f1;
  --green-soft: #e9f8f1;

  --text: #10231c;
  --text-main: #10231c;
  --text-muted: #6b7a75;

  --muted: #6b7a75;
  --border: rgba(21, 163, 98, 0.16);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  --soft-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  background: #ffffff;
  color: var(--text-main);
  overflow-x: hidden;
}

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

button,
select {
  font-family: inherit;
}

.container {
  width: min(100% - 44px, 1800px);
  margin: 0 auto;
  max-width: min(100% - 44px, 1800px);
}

/* Header */

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  box-shadow: 0 10px 30px rgba(0, 63, 38, 0.18);
  display: flex;
  align-items: center;
}

.header-container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  flex-shrink: 0;
  width: 300px;
  margin: auto;
}
.header-container .logo {
  width: 300px;
  margin: unset;
}
.header-container .logo img {
  width: 100%;
  transform: scale(1.7);
}
.logo img {
  width: 100%;
}
/* .logo-icon { */
/* width: 44px; */
/* height: 44px; */
/* border-radius: 15px; */
/* display: grid; */
/* place-items: center; */
/* background: rgba(255, 255, 255, 0.12); */
/* border: 1px solid rgba(255, 255, 255, 0.18); */
/* } */

.logo strong {
  display: block;
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
}

.logo span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 56%;
}
.main-nav > a:first-of-type {
  margin-right: 500px;
}
.main-nav > a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 700;
  padding: 28px 0;
  position: relative;
  transition: 0.3s ease;
  margin: 0 12px;
}

.main-nav > a:hover,
.main-nav > a.active {
  color: #fff;
}

.main-nav > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 19px;
  width: 0;
  height: 3px;
  border-radius: 20px;
  background: #fff;
  transition: 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.header-phone i {
  color: #d8fff0;
}

.header-btn {
  height: 46px;
  padding: 0 22px;
  border-radius: 13px;
  background: #fff;
  color: var(--green-dark);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.08);
  transition: 0.3s ease;
  font-size: 15px;
}

.header-btn:hover {
  transform: translateY(-3px);
  background: var(--green-light);
}

.mobile-menu-btn {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

/* Mobile Sidebar */

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s ease;
  z-index: 90;
}

.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -330px;
  width: 320px;
  height: 100vh;
  background: #fff;
  z-index: 100;
  padding: 28px 24px;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
  transition: right 0.4s ease;
}

.mobile-sidebar.show {
  right: 0;
}

.close-menu {
  width: 42px;
  height: 42px;
  border: none;
  background: var(--green-soft);
  color: var(--green-main);
  font-size: 24px;
  line-height: 1;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-logo {
  display: block;
  margin-top: 28px;
  margin-bottom: 34px;
  color: var(--green-main);
}

.mobile-logo strong {
  display: block;
  font-size: 34px;
  font-weight: 900;
}

.mobile-logo span {
  color: var(--text-muted);
  font-size: 13px;
}

.mobile-sidebar nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 0 0;
}

.mobile-sidebar nav a {
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 800;
  color: #273244;
}

.mobile-sidebar nav a.active,
.mobile-sidebar nav a:hover {
  background: var(--green-soft);
  color: var(--green-main);
}

/* Hero */

.hero-section {
  padding: 34px 0 24px;
  background:
    radial-gradient(
      circle at top right,
      rgba(0, 108, 53, 0.08),
      transparent 32%
    ),
    linear-gradient(180deg, #f9fbfa, #fff);
}
.heroSwiper {
  position: relative;
  /* border-radius: 26px; */
}

.heroSwiper .swiper-slide {
  width: 100% !important;
  height: auto;
}
.hero-card {
  height: 620px;
  border-radius: 26px;
  overflow: hidden;
  position: relative; 
  display: flex; 
  align-items: center;
  background-size: cover;
  background-position: center;
  width: 100%;
}
.hero-card img {
  position: absolute;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background:
      linear-gradient(180deg, rgba(0, 46, 32, 0.45), rgb(7 26 20 / 42%)),
      linear-gradient(180deg, rgb(244 243 243 / 10%), rgb(255 246 246 / 25%)); */

  z-index: 1;
}
.hero-card img {
  /* height: 100%; */
}
.hero-slide-3,
.hero-slide-2,
.hero-slide-1 {
  /* background-image: url("/images/chev.png"); */
  width: 100%;
}
.hero-content {
  padding: 70px 66px;
  position: relative;
  z-index: 2;
}
.hero-side-cards {
  position: absolute;
  left: 42px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  display: grid;
  gap: 14px;
  z-index: 4;
}

.hero-prev,
.hero-next {
  position: absolute;
  z-index: 30;

  width: 48px;
  height: 48px;

  border: 1px solid rgba(0, 108, 53, 0.18);
  outline: none;
  appearance: none;
  -webkit-appearance: none;

  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--green);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  line-height: 1;

  cursor: pointer;
  transform: translateY(-50%);

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  top: auto;
  bottom: 24px;
  transform: none;
}

.hero-prev {
  right: auto;
  left: 82px;
}

.hero-next {
  left: 24px;
}

.hero-prev:hover,
.hero-next:hover {
  transform: scale(1.08);
}

.hero-pagination {
  position: absolute;
  right: 66px !important;
  bottom: 28px !important;
  left: auto !important;
  width: auto !important;
  z-index: 20;
}

.hero-pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(7, 92, 49, 0.918);
  opacity: 1;
  transition: 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 20px;
  background: #fff;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--green-light);
  color: var(--green);
  padding: 10px 16px;
  border-radius: 40px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 22px;
}

.hero-content h1 {
  font-size: 48px;
  line-height: 1.25;
  color: var(--green-dark);
  font-weight: 900;
  margin-bottom: 18px;
}
.hero-section-home .hero-content h1 {
  color: #fff;
}
.hero-content h1 span {
  display: block;
  color: #fff;
}

.hero-content p {
  font-size: 19px;
  color: #263c35;
  max-width: 440px;
  line-height: 1.9;
  margin-bottom: 30px;
}
.hero-section-home .hero-content p {
  color: #fff;
}
.hero-buttons {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  height: 52px;
  padding: 0 28px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  transition: 0.35s ease;
}

.primary-btn {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 16px 30px rgba(0, 108, 53, 0.23);
}

.primary-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(0, 108, 53, 0.28);
}

.secondary-btn {
  color: var(--green);
  background: #fff;
  border: 1px solid var(--border);
}

.secondary-btn:hover {
  transform: translateY(-4px);
  background: var(--green-light);
}

.hero-image {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 0 35px 45px 0;
}

.hero-image img {
  width: 660px;
  height: 360px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}

.hero-side-cards {
  position: absolute;
  left: 42px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  display: grid;
  gap: 14px;
  z-index: 4;
}

.hero-info-card {
  min-height: 72px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 108, 53, 0.15);
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
  box-shadow: var(--soft-shadow);
  font-weight: 900;
  color: var(--text);
}

.hero-info-card i {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--green);
  background: var(--green-light);
  font-size: 18px;
}

/* Filter */

.filter-section {
  margin-bottom: 46px;
}

.filter-box {
  min-height: 162px;
  background: linear-gradient(135deg, var(--green-deep), var(--green-dark));
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 9px 25px rgba(0, 0, 0, 0.07);
  padding: 31px 29px;
  display: grid;
  grid-template-columns: repeat(4, 1fr) 90px 111px;
  gap: 30px;
  align-items: end;
}

.filter-control label {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 13px;
  text-align: center;
}

.filter-control select {
  width: 100%;
  height: 50px;
  border: 1px solid #dfe4ec;
  border-radius: 10px;
  background: #fff;
  color: #8a919d;
  font-size: 16px;
  padding: 0 18px;
  outline: none;
}

.search-btn {
  height: 50px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: #fff;
  cursor: pointer;
  font-weight: 900;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  box-shadow: 0 10px 20px rgba(0, 108, 53, 0.2);
  width: 95px;
}
.filter-box button.search-btn:first-of-type {
  background: #fff;
  color: var(--green-deep);
}
.filter-box a.search-btn {
  background: rgba(255, 255, 255, 0.12);
}
/* Sections Common */

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-head h2,
.section-title h2 {
  font-size: 30px;
  font-weight: 900;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.section-head h2::after,
.section-title h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 82px;
  height: 3px;
  background: var(--green-main);
  border-radius: 99px;
}

.count-badge {
  background: #f6f8fb;
  padding: 15px 24px;
  border-radius: 10px;
  color: #596271;
  font-size: 15px;
  font-weight: 700;
  margin-right: auto;
}

.count-badge strong {
  color: var(--green-main);
  font-size: 19px;
}

/* Cars */

.cars-section {
  margin-bottom: 68px;
}

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

.car-card {
  background: #fff;
  border: 1px solid #edf0f4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.075);
  transition: 0.35s ease;
}

.car-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.11);
}

.car-img {
  height: 170px;
  overflow: hidden;
}

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

.car-body {
  padding: 21px 21px 23px;
}

.brand-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  margin-bottom: 15px;
}

.brand-logo {
  width: 45px;
  height: 45px;
  border: 2px solid #dfe4ec;
  color: var(--green-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 900;
  font-size: 16px;
}

.brand-row h3 {
  font-size: 20px;
  font-weight: 900;
}

.car-info {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  justify-content: space-between;
  flex-direction: column;
}

.car-info p {
  display: flex;
  align-items: center;
  /* justify-content: center; */
  gap: 9px;
  color: #596271;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
}

.car-detail-icon {
  color: var(--green-main);
  font-size: 14px;
}

.car-info strong {
  color: #596271;
  font-size: 14px;
  font-weight: 600;
}

.car-body h4 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 19px;
  font-size: 15px;
}

.order-btn {
  height: 54px;
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 17px;
}
.car-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.car-actions a {
  height: 52px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 900;
  font-size: 15px;
  transition: 0.3s ease;
}
.car-actions a.order-btn {
  background: var(--green);
}
.details-btn {
  border: 1px solid rgba(0, 108, 53, 0.18);
  color: var(--green);
  background: var(--green-light);
}

.details-btn:hover {
  background: #dff4eb;
  transform: translateY(-2px);
}

.order-btn {
  background: linear-gradient(135deg, var(--green-main), var(--green-dark));
  color: #fff;
  border: 1px solid transparent;
}

.order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 108, 53, 0.22);
  color: #e5dddd;
}

.car-actions i {
  font-size: 14px;
}
/* Brands */

/* Sections */

.results-section,
.brands-section,
.finance-section {
  padding: 34px 0;
}

.section-heading {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.section-title {
  font-size: 30px;
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}
.section-title::before {
  content: "";
  position: absolute;
  right: 68px;
  bottom: -15px;
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
}
.section-title::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -13px;
  width: 58px;
  height: 3px;
  background: var(--green);
  border-radius: 30px;
}
/* .section-heading h2 {
  font-size: 30px;
  font-weight: 900;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
} */

/* .section-heading h2 i {
  color: var(--green);
}

.section-heading h2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  width: 52px;
  height: 4px;
  border-radius: 20px;
  background: var(--green);
} */

.result-count {
  display: inline-flex;
  padding: 10px 16px;
  background: #f5f8f7;
  border: 1px solid #eef2f1;
  border-radius: 13px;
  color: #61716c;
  font-size: 14px;
  font-weight: 800;
}
/* Swiper Sections */

.swiper {
  width: 100%;
  overflow: hidden;
  padding: 20px;
}

.brand-card {
  min-height: 132px;
  background: #fff;
  border: 1px solid #ecf1ef;
  border-radius: 20px;
  /* box-shadow: var(--soft-shadow); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  transition: 0.35s ease;
}

.brand-card:hover {
  transform: translateY(-7px);
  border-color: rgba(0, 108, 53, 0.28);
  box-shadow: 0 18px 42px rgba(0, 108, 53, 0.11);
}

.brand-card img {
  max-width: 72px;
  max-height: 48px;
  object-fit: contain;
}

.brand-card h3 {
  font-size: 15px;
  font-weight: 900;
}

/* Finance */

.finance-card strong {
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
}

.finance-card span {
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}
.finance-card {
  min-height: 132px;
  background: #ffffff;
  border: 1px solid #ecf1ef;
  border-radius: 20px;
  /* box-shadow: var(--soft-shadow); */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  transition: 0.35s ease;
}
.finance-card img {
  width: 140px;
}
.tamweeloula img {
  width: 200px;
}
.emkanfinance img,
.enmaa img,
.aljazira img,
.emiratesnbd img {
  background: #373636;
  /* border-radius:10px; */
  width: 150px;
}
.enmaa img,
.aljazira img,
.emiratesnbd img {
  padding: 10px;
}
/* Footer */

.site-footer {
  margin-top: 50px;
  background:
    radial-gradient(
      circle at bottom left,
      rgba(0, 108, 53, 0.3),
      transparent 35%
    ),
    linear-gradient(135deg, var(--green-deep), var(--green-dark));
  color: #fff !important;
  padding-top: 58px;
  overflow: hidden;
}
.footer-network-bg {
  position: absolute;
  right: 0;
  bottom: -35px;
  width: 360px;
  height: 230px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='420' height='260' viewBox='0 0 420 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%2315a362' stroke-width='1' opacity='0.75'%3E%3Cpath d='M40 210 L95 170 L150 200 L205 160 L260 190 L315 145 L380 180'/%3E%3Cpath d='M95 170 L95 105 L150 70 L205 110 L205 160'/%3E%3Cpath d='M150 70 L215 45 L270 82 L315 145'/%3E%3Cpath d='M270 82 L325 40 L380 72 L380 180'/%3E%3Cpath d='M150 200 L150 135 L205 110 L260 130 L315 145'/%3E%3Cpath d='M40 210 L40 145 L95 105 L150 135 L205 160 L260 130 L270 82'/%3E%3Cpath d='M95 105 L150 135 L150 70'/%3E%3Cpath d='M205 110 L215 45'/%3E%3Cpath d='M260 130 L270 82'/%3E%3Cpath d='M315 145 L380 72'/%3E%3C/g%3E%3Cg fill='%2315a362' opacity='0.9'%3E%3Ccircle cx='40' cy='210' r='3'/%3E%3Ccircle cx='95' cy='170' r='3'/%3E%3Ccircle cx='150' cy='200' r='3'/%3E%3Ccircle cx='205' cy='160' r='3'/%3E%3Ccircle cx='260' cy='190' r='3'/%3E%3Ccircle cx='315' cy='145' r='3'/%3E%3Ccircle cx='380' cy='180' r='3'/%3E%3Ccircle cx='40' cy='145' r='3'/%3E%3Ccircle cx='95' cy='105' r='3'/%3E%3Ccircle cx='150' cy='70' r='3'/%3E%3Ccircle cx='205' cy='110' r='3'/%3E%3Ccircle cx='215' cy='45' r='3'/%3E%3Ccircle cx='270' cy='82' r='3'/%3E%3Ccircle cx='325' cy='40' r='3'/%3E%3Ccircle cx='380' cy='72' r='3'/%3E%3Ccircle cx='150' cy='135' r='3'/%3E%3Ccircle cx='260' cy='130' r='3'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
}

/* Ã˜Â¹Ã˜Â´Ã˜Â§Ã™â€  Ã™â€¦Ã˜Â­Ã˜ÂªÃ™Ë†Ã™â€° Ã˜Â§Ã™â€žÃ™ÂÃ™Ë†Ã˜ÂªÃ˜Â± Ã™Å Ã˜Â¸Ã™â€¡Ã˜Â± Ã™ÂÃ™Ë†Ã™â€š Ã˜Â§Ã™â€žÃ˜Â®Ã™â€žÃ™ÂÃ™Å Ã˜Â© */
.site-footer > *:not(.footer-network-bg) {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
  gap: 34px;
  padding-bottom: 44px;
}
.footer-brand,
.header-brand {
  /* width: 222px; */
  /* height: 80px; */
  /* background: url(/images/logo-light.png); */
  /* background-size: cover; */
  /* background-repeat: no-repeat; */
}
.footer-brand {
  width: 275px;
}
.header-brand a,
.footer-brand a {
  width: 90%;
  height: 50%;
  display: block;
  margin: 20px 0 20px 0;
}
.header-brand a {
  margin: 10px 0 10px 0;
}
.footer-brand a {
  margin: -20px 0 28px 0;
}
.mobile-sidebar .header-brand span {
  background: url(/images/logo-dark.png);
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-brand p,
.footer-newsletter p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  font-size: 14px;
  max-width: 290px;
  font-weight: 600;
}
.footer-brand p {
  margin: 0 16px 0 0;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.09);
  transition: 0.3s ease;
}

.social-links a:hover {
  background: #fff;
  color: var(--green);
  transform: translateY(-4px);
}

.footer-col h3,
.footer-newsletter h3 {
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 18px;
}

.footer-col a,
.footer-col p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
  font-size: 14px;
  transition: 0.3s ease;
}

.footer-col a:hover {
  color: #fff;
  transform: translateX(-4px);
}

.footer-newsletter form {
  margin-top: 16px;
  height: 48px;
  display: flex;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
}

.footer-newsletter input {
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 14px;
}

.footer-newsletter button {
  width: 52px;
  border: 0;
  background: var(--green);
  color: #fff;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  padding: 18px;
  color: rgba(255, 255, 255, 0.72);
  /* border-top: 1px solid rgba(255, 255, 255, 0.08); */
  font-size: 14px;
  background: #0b261d87;
}

/* Features */

.features-section {
  padding-bottom: 46px;
}

.features-box {
  background: linear-gradient(135deg, #f2fbf6, #ffffff);
  border-radius: 10px;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  border: 1px solid #e7f4ee;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.feature-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--green-light), var(--green-main));
  border-radius: 50%;
  color: #fff;
  font-size: 23px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item h3 {
  color: var(--green-main);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 6px;
}

.feature-item p {
  color: #596271;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

/* Responsive */

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 28px;
  width: 55px;
  height: 55px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.45);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.18);
  z-index: -1;
  animation: whatsappPulse 1.8s infinite;
}

.car-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.car-modal-overlay.active {
  display: flex;
}

.car-modal-box {
  width: 100%;
  max-width: 1100px;
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  animation: modalFadeUp 0.25s ease;
}

.car-modal-close {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 54px;
  height: 54px;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  color: #6b7280;
  transition: 0.2s;
}

.car-modal-close:hover {
  background: #f3f4f6;
  color: #111827;
}

.car-modal-content {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: start;
}

.car-modal-main-image-wrap {
  background: #f8fafc;
  border-radius: 18px;
  overflow: hidden;
  width: 540px;
  /* height: 330px; */
  margin: auto;
}

.car-modal-main-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.car-modal-thumbs-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.car-modal-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  flex: 1;
  scrollbar-width: none;
}

.car-modal-thumbs::-webkit-scrollbar {
  display: none;
}

.car-modal-thumb {
  width: 92px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  flex: 0 0 auto;
  background: #f3f4f6;
}

.car-modal-thumb.active {
  border-color: #0b7a43;
}

.car-modal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-nav {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: #f3f4f6;
  cursor: pointer;
  color: #111827;
}

.car-modal-actions {
  margin-top: 22px;
}

.modal-order-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0b7a43;
  color: #fff;
  padding: 14px 26px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}

.modal-order-btn:hover {
  background: #096738;
  color: #fff;
}

.car-modal-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 17px;
  line-height: 1.2;
  margin: 75px 0 22px;
  color: #111827;
}

.car-modal-title i {
  color: #0b7a43;
  font-size: 26px;
}

.car-modal-info-table {
  border-top: 1px solid #e5e7eb;
  margin-bottom: 24px;
}

.car-modal-info-table .info-row {
  display: flex;
  /* justify-content: space-between; */
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.car-modal-info-table .label {
  color: #374151;
  font-weight: 700;
  font-size: 14px;
}

.car-modal-info-table .value {
  color: #6b7280;
  font-weight: 600;
  font-size: 13px;
}

.car-modal-description h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  font-size: 24px;
  margin-bottom: 14px;
}

.car-modal-description h3 i {
  color: #0b7a43;
}

.car-modal-description p {
  color: #4b5563;
  line-height: 2;
  font-size: 17px;
  white-space: pre-line;
}

body.modal-open {
  overflow: hidden;
}

body {
  color: var(--text-main);
  overflow-x: hidden;
}

.site-footer {
  position: relative;
}

/* ================================
   Header Responsive Fix
================================ */

.reset-btn {
  background: rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
}
/* ================================
   Mobile Sidebar Menu
================================ */

.mobile-menu-btn {
  display: none;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.48);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 1990;
}

.mobile-overlay.show {
  opacity: 1;
  visibility: visible;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(82vw, 340px);
  height: 100vh;
  background: #ffffff;
  z-index: 2000;
  padding: 28px 24px;
  box-shadow: -18px 0 45px rgba(15, 23, 42, 0.18);
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-sidebar.show {
  right: 0;
}

.close-menu {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 13px;
  background: rgba(21, 163, 98, 0.1);
  color: #15a362;
  font-size: 23px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  transition: 0.2s ease;
}

.close-menu:hover {
  background: rgba(21, 163, 98, 0.16);
  transform: rotate(90deg);
}

.mobile-sidebar-brand {
  margin-top: 36px;
  margin-bottom: 34px;
  text-align: right;
}

.mobile-logo {
  display: inline-block;
  color: #15a362;
}

.mobile-logo strong {
  display: block;
  font-size: 38px;
  line-height: 1.1;
  font-weight: 900;
  color: #15a362;
}

.mobile-logo span {
  display: block;
  margin-top: 6px;
  color: #6b7280;
  font-size: 14px;
  font-weight: 700;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-nav a {
  min-height: 52px;
  padding: 0 18px;
  border-radius: 14px;
  color: #1f2937;
  font-size: 17px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  transition: 0.2s ease;
}

.mobile-nav a i {
  width: 22px;
  text-align: center;
  color: #15a362;
  font-size: 17px;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  background: rgba(21, 163, 98, 0.1);
  color: #087044;
}

.mobile-sidebar-footer {
  margin-top: auto;
  padding-top: 28px;
}

.mobile-track-btn {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  background: #15a362;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(21, 163, 98, 0.22);
}

.mobile-track-btn:hover {
  background: #128b55;
  color: #ffffff;
}

body.mobile-menu-open {
  overflow: hidden;
}
.global-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.global-loader.d-none {
  display: none !important;
}

.global-loader-box {
  min-width: 170px;
  padding: 22px 26px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.global-loader-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid #e5e7eb;
  border-top-color: #15a362;
  border-radius: 50%;
  animation: globalLoaderSpin 0.75s linear infinite;
}

.global-loader-text {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
}
.error-page {
  min-height: 70vh;
  padding: 90px 0;
  display: flex;
  align-items: center;
  background:
    radial-gradient(
      circle at top right,
      rgba(21, 163, 98, 0.12),
      transparent 34%
    ),
    linear-gradient(180deg, #f7fbf9 0%, #ffffff 100%);
}

.error-card {
  max-width: 620px;
  margin: 0 auto;
  padding: 48px 36px;
  border-radius: 32px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 24px 70px rgba(6, 16, 43, 0.1);
  border: 1px solid #e6eee9;
}

.error-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 22px;
  background: rgba(21, 163, 98, 0.1);
  color: #15a362;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.error-card h1 {
  font-size: 72px;
  line-height: 1;
  font-weight: 900;
  color: #06102b;
  margin-bottom: 10px;
}

.error-card h2 {
  font-size: 28px;
  font-weight: 900;
  color: #06102b;
  margin-bottom: 12px;
}

.error-card p {
  max-width: 420px;
  margin: 0 auto 28px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.9;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.error-btn {
  min-width: 150px;
  padding: 13px 22px;
  border-radius: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.error-btn.primary {
  background: #15a362;
  color: #ffffff;
}

.error-btn.secondary {
  background: #f1f5f9;
  color: #06102b;
}

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

.error-btn.primary:hover {
  color: #ffffff;
  background: #118a52;
}

.error-btn.secondary:hover {
  color: #06102b;
  background: #e2e8f0;
}
.finance-pulse-btn {
  position: relative;
  overflow: hidden;
  animation: financeBtnSoftGlow 2.4s ease-in-out infinite;
  will-change: box-shadow, transform;
}

.finance-pulse-btn::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 45%,
    transparent 70%
  );
  transform: translateX(120%);
  animation: financeBtnShine 3.2s ease-in-out infinite;
  pointer-events: none;
}
.home-car-card.is-hidden-by-load-more {
  display: none;
}

.home-car-card.is-load-more-visible {
  animation: carCardReveal 0.45s ease both;
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.load-more-btn {
  border: 0;
  outline: 0;
  padding: 14px 30px;
  border-radius: 16px;
  background: #15a362;
  color: #ffffff;
  font-weight: 800;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 14px 35px rgba(21, 163, 98, 0.22);
  transition: 0.25s ease;
}

.load-more-btn:hover {
  transform: translateY(-3px);
  background: #118a52;
  box-shadow: 0 18px 42px rgba(21, 163, 98, 0.3);
}

.load-more-btn i {
  font-size: 13px;
}
.featured-cars-section {
  padding-top: 20px;
  margin-top: 50px;
}

.featured-cars-section .section-title::after {
  display: block;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
  color: #6b7280;
}
@keyframes whatsappPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}
@keyframes modalFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes carCardReveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes financeBtnSoftGlow {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(21, 163, 98, 0);
  }

  50% {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px rgba(21, 163, 98, 0.24);
  }
}
@keyframes financeBtnShine {
  0% {
    transform: translateX(120%);
  }

  45%,
  100% {
    transform: translateX(-120%);
  }
}
@keyframes globalLoaderSpin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 1500px) {
  .cars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1100px) {
  .hero-slide {
    padding: 45px 45px;
  }

  .hero-content h1 {
    font-size: 46px;
  }

  .filter-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .search-btn {
    grid-column: span 2;
  }

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

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

  .finance-card {
    flex: 0 0 calc((100% - 40px) / 3);
  }

  .features-box {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  section {
    overflow: hidden;
  }
  .site-header {
    height: 86px;
  }
  .header-brand {
    padding: 0 10px;
  }
  .header-brand a img {
    width: 100%;
  }
  .main-nav,
  .contact-btn {
    display: none;
  }

  .menu-btn {
    display: flex;
  }

  .logo strong {
    font-size: 24px;
  }

  .logo span {
    font-size: 10px;
  }

  .logo-car {
    width: 115px;
  }

  .hero-slider {
    height: auto;
    min-height: 540px;
  }

  .hero-slide {
    flex-direction: column;
    align-items: flex-start;
    padding: 38px 24px 74px;
    gap: 28px;
  }

  .hero-content h1 {
    font-size: 39px;
  }

  .hero-content p {
    font-size: 17px;
  }

  .hero-btn {
    width: 180px;
    height: 55px;
    font-size: 16px;
  }

  .hero-image {
    width: 100%;
  }

  .hero-image img {
    max-height: 245px;
    clip-path: none;
  }

  .filter-box {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px;
  }

  .filter-control label {
    text-align: right;
  }

  .search-btn {
    grid-column: auto;
    width: 100%;
  }

  .section-head {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 18px;
  }

  .cars-grid {
    grid-template-columns: 1fr;
  }

  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .heroSwiper .swiper-slide {
    height: 270px;
  }
  .finance-slider-wrap {
    padding: 0 44px;
  }

  .finance-card {
    flex: 0 0 100%;
  }

  .features-box {
    grid-template-columns: 1fr;
  }
  .whatsapp-float {
    right: auto;
    left: 18px;
    bottom: 18px;
    width: 52px;
    height: 52px;
    font-size: 28px;
    background: #25d366;
    z-index: 1200;
  }
  .whatsapp-float {
    right: 18px;
    bottom: 22px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  .hero-section {
    padding: 0 0 20px 0;
  }
  .swiper {
    padding: 0;
  }
  .hero-card {
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 18px;
    height: 100%;
    background-position: center;
  }
  .hero-card img {
    height: 100%;
  }
  .hero-card::before {
    background:
      linear-gradient(180deg, rgba(0, 46, 32, 0.45), rgba(0, 46, 32, 0.5)),
      linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.25));
  }

  .hero-content {
    width: 100%;
    padding: 0;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 50px 18px 200px;
  }

  .hero-badge {
    margin: 0 auto 14px;
    max-width: 100%;
    padding: 8px 12px;
    font-size: 12px;
    display: none;
  }

  .hero-content h1 {
    font-size: 20px;
    line-height: 1.35;
    margin-bottom: 0px;
    text-align: start;
  }

  .hero-content p {
    font-size: 14px;
    line-height: 1.8;
    max-width: 285px;
    margin: 0 0 18px;
    text-align: start;
  }

  .hero-buttons {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .hero-buttons a:first-child {
    display: none;
  }
  .hero-buttons a,
  .primary-btn,
  .secondary-btn {
    width: 118px;
    height: 40px;
    justify-content: center;
    font-size: 11px;
    border-radius: 10px;
    margin: 0 0px 0 auto;
  }

  .hero-side-cards {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
    z-index: 2;
    padding: 26px 18px 76px;
  }

  .hero-info-card {
    width: 100%;
    max-width: 245px;
    min-height: 50px;
    margin: 0 auto;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13px;
  }

  .hero-info-card i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 15px;
  }

  .hero-pagination {
    right: 50% !important;
    transform: translateX(50%);
    bottom: 20px !important;
  }

  .hero-prev,
  .hero-next {
    width: 30px;
    height: 30px;
    bottom: 15px;
    top: auto;
    transform: none;
  }

  .hero-prev {
    right: 22px;
    left: auto;
  }

  .hero-next {
    right: 56px;
    left: auto;
  }

  .hero-prev:hover,
  .hero-next:hover {
    transform: scale(0.7);
  }
  .filter-section {
    margin-bottom: 30px;
  }

  .filter-box {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 0;
  }

  .filter-control label {
    text-align: right;
    font-size: 13px;
    margin-bottom: 8px;
  }

  .filter-control select {
    height: 44px;
    border-radius: 10px;
    font-size: 13px;
    padding: 0 12px;
  }

  .search-btn {
    width: 100%;
    height: 44px;
    border-radius: 10px;
    grid-column: auto;
    background: var(--green);
  }

  .filter-box button.search-btn:first-of-type {
    background: #ffffff;
    color: var(--green-deep);
    width: 40%;
    margin: auto;
  }

  .filter-box a.search-btn {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
    width: 40%;
    margin: auto;
  }
  .section-heading {
    align-items: center;
    /* justify-content: space-between; */
    gap: 10px;
    margin: 26px 0 35px 0;
  }

  .section-heading h2 {
    font-size: 24px;
    line-height: 1.3;
  }
  .section-title::before {
    right: 55px;
  }
  .section-heading h2::after {
    width: 46px;
    height: 3px;
    background: var(--green);
  }

  .count-badge {
    padding: 9px 10px;
    border-radius: 12px;
    font-size: 11px;
    white-space: nowrap;
    margin-right: 0;
  }

  .count-badge strong {
    font-size: 14px;
    color: var(--green);
  }
  .cars-section {
    margin-bottom: 62px;
    padding: 36px 10px;
  }
  .brands-section{
    padding: 36px 10px;
  }
  .cars-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .car-card {
    width: 85%;
    border-radius: 18px;
    margin: auto;
  }

  .car-img {
    /* height: 210px; */
  }

  .car-body {
    padding: 16px;
  }

  .car-body h4 {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 14px;
  }

  .car-info {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px 12px;
    margin-bottom: 16px;
  }

  .car-info p {
    width: 100%;
    margin: 0;
    font-size: 12px;
    gap: 6px;
    align-items: center;
  }

  .car-info p span,
  .car-info p strong {
    font-size: 12px;
  }

  .car-detail-icon {
    font-size: 12px;
    color: var(--green);
  }

  .car-actions {
    gap: 10px;
    margin-top: 14px;
    display: flex;
    justify-content: center;
  }

  .car-actions a {
    height: 40px;
    border-radius: 10px;
    font-size: 12px;
    width: 120px;
  }

  .car-actions a.order-btn,
  .order-btn {
    background: var(--green);
  }

  .details-btn {
    color: var(--green);
    background: var(--green-light);
    border-color: rgba(21, 163, 98, 0.18);
  }
  .results-section,
  .finance-section {
    padding: 26px 0;
  }

  .brandsSwiper,
  .financeSwiper {
    overflow: visible;
  }

  .brandsSwiper .swiper-slide,
  .financeSwiper .swiper-slide {
    width: 138px !important;
  }

  .brand-card,
  .finance-card {
    min-height: 108px;
    border-radius: 16px;
    padding: 14px;
    gap: 10px;
  }

  .brand-card img {
    max-width: 42px !important;
    max-height: 42px !important;
  }

  .brand-card h3,
  .finance-card span {
    font-size: 13px;
  }

  .finance-card strong {
    font-size: 13px;
    color: var(--green);
  }

  .brand-arrows {
    display: flex;
    gap: 8px;
  }

  .brand-prev,
  .brand-next {
    width: 34px;
    height: 34px;
    border-radius: 50%;
  }
  .features-section {
    padding-bottom: 34px;
  }

  .features-box {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
    border-radius: 18px;
  }

  .feature-item {
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #edf0f4;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    font-size: 17px;
    background: var(--green);
  }

  .feature-item h3 {
    font-size: 15px;
    color: var(--green);
  }

  .feature-item p {
    font-size: 13px;
  }
  .car-modal-overlay {
    padding: 12px;
    align-items: flex-start;
    overflow-y: auto;
  }

  .car-modal-box {
    width: 100%;
    max-height: none;
    border-radius: 20px;
    padding: 14px;
    margin: 14px 0;
  }

  .car-modal-close {
    top: 20px;
    left: 20px;
    width: 25px;
    height: 25px;
    font-size: 14px;
    z-index: 2;
  }

  .car-modal-content {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .car-modal-main-image-wrap {
    /* height: 230px; */
    border-radius: 16px;
  }

  .car-modal-main-image-wrap img {
    object-fit: cover;
  }

  .car-modal-thumbs-wrap {
    gap: 8px;
    margin-top: 12px;
  }

  .car-modal-thumb {
    width: 74px;
    height: 58px;
  }

  .thumb-nav {
    width: 34px;
    height: 34px;
  }

  .car-modal-title {
    font-size: 21px;
    margin: 8px 0 16px;
  }

  .car-modal-info-table .info-row {
    padding: 11px 0;
    font-size: 13px;
  }

  .car-modal-description h3 {
    font-size: 18px;
  }

  .car-modal-description p {
    font-size: 14px;
    line-height: 1.9;
  }
  .car-modal-actions {
    display: flex;
    justify-content: center;
  }
  .modal-order-btn {
    width: 40%;
    justify-content: center;
    background: var(--green);
  }
  .site-footer {
    margin-top: 0;
    padding-top: 34px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 10px;
  }

  .footer-brand p,
  .footer-newsletter p {
    max-width: 100%;
    font-size: 13px;
  }
  .footer-brand p {
    margin: 0 10px 0 0;
  }
  .footer-col h3,
  .footer-newsletter h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .footer-contacts h3 {
    /* margin-top: 20px; */
  }
  .footer-col a,
  .footer-col p {
    font-size: 13px;
    line-height: 1.8;
    align-items: flex-start;
  }

  .social-links {
    gap: 10px;
    flex-wrap: wrap;
  }

  .social-links a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .footer-network-bg {
    width: 260px;
    height: 180px;
    right: -20px;
    bottom: -30px;
    opacity: 0.18;
  }

  .footer-bottom {
    font-size: 12px;
    padding: 14px;
  }
}
@media (max-width: 991px) {
  .car-modal-content {
    grid-template-columns: 1fr;
  }

  .car-modal-main-image-wrap {
    /* height: 280px; */
    width: auto;
  }
  .car-modal-gallery {
    margin-bottom: 23px;
  }
  .car-modal-title {
    font-size: 17px;
  }
}
@media (max-width: 992px) {
  .header-container {
    min-height: 72px;
    gap: 12px;
  }

  .main-nav,
  .header-phone {
    display: none;
  }

  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions {
    gap: 8px;
  }

  .header-btn {
    height: 30px;
    padding: 0 14px;
    border-radius: 16px;
    font-size: 13px;
    white-space: nowrap;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 13px;
  }

  .logo strong {
    font-size: 22px;
  }

  .logo span {
    font-size: 10px;
  }

  .mobile-overlay {
    z-index: 1990;
  }

  .mobile-sidebar {
    z-index: 2000;
  }
}
@media (max-width: 420px) {
  .header-btn {
    padding: 0 10px;
    font-size: 12px;
  }

  .header-btn i {
    display: none;
  }

  .logo strong {
    font-size: 20px;
  }
}
@media (max-width: 390px) {
  .car-info {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .error-page {
    padding: 55px 0;
  }

  .error-card {
    padding: 36px 22px;
    border-radius: 24px;
  }

  .error-card h1 {
    font-size: 58px;
  }

  .error-card h2 {
    font-size: 23px;
  }

  .error-btn {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .mobile-menu-btn {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 20px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 0 0 10px;
  }
  .finance-card img {
    width: 88px;
  }

  .main-nav,
  .header-phone {
    display: none;
  }
}
@media (max-width: 420px) {
  .mobile-sidebar {
    width: 82vw;
    padding: 24px 20px;
  }

  .mobile-logo strong {
    font-size: 34px;
  }

  .mobile-nav a {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {
  .main-nav > a:first-of-type {
    margin-right: 0;
  }
  .header-btn {
    font-size: 14px;
  }
}
