* {
  margin: 0;
  padding: 0;
  /* color: #171969; */
  font-family: "IranYekan", sans-serif;
  box-sizing: border-box;
}
:root {
  --primary-color: #163a70;
  --secondary-color: #667085;
  --white: #ffffff;
  --border: #e8edf5;
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  --radius: 20px;
  --transition: 0.35s ease;
}
/* sec 2 */
.inspection-section {
  width: 100%;
  padding: 52px 30px;
  background: #ffffff;
}


/* ==========================================
        MAIN CONTAINER
========================================== */

.inspection-container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  min-height: 680px;
  margin: 0 auto;

  

  display: flex;
  flex-direction: row-reverse;
  align-items: stretch;

  border-radius: 22px;
  overflow: hidden;

  background: url("/images/car-expert-placeholder.jpg");

  background-size: cover;
  background-position: center bottom;

  box-shadow:
    0 12px 40px rgba(22, 58, 112, 0.08),
    0 2px 8px rgba(0, 0, 0, 0.03);
}


/* لایه سفید محو روی پس‌زمینه */
.inspection-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.72) 25%,
    rgba(255, 255, 255, 0.05) 70%
  );

  pointer-events: none;
}


/* ==========================================
        LEFT CONTENT
========================================== */

.inspection-content {
  position: relative;
  z-index: 2;

  flex: 1;
  min-width: 0;

  padding: 60px 55px 0;
}


/* ==========================================
        HEADING
========================================== */

.inspection-heading {
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}

.inspection-heading h1 {
  margin-bottom: 14px;

  font-size: clamp(34px, 3.3vw, 52px);
  font-weight: 800;
  line-height: 1.35;

  color: #082f63;
}

.inspection-heading p {
  font-size: 17px;
  font-weight: 500;
  line-height: 2;

  color: #1b4679;
}


/* ==========================================
        FEATURES
========================================== */

.inspection-features {
  width: 100%;
  max-width: 560px;

  margin: 28px auto 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.feature-item {
  min-width: 120px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 10px;

  text-align: center;
  color: #153d70;
}

.feature-item i {
  height: 34px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 29px;
  color: #17497f;
}

.feature-item span {
  white-space: nowrap;

  font-size: 15px;
  font-weight: 600;
}

.feature-divider {
  width: 1px;
  height: 48px;
  flex-shrink: 0;

  background: #d3dce7;
}


/* ==========================================
        BACKGROUND IMAGE FALLBACK
========================================== */

/* .inspection-image {
  display:flex;
} */


/* ==========================================
        FORM CARD
========================================== */

.inspection-form-card {
  position: relative;
  z-index: 4;

  width: 440px;
  flex-shrink: 0;

  align-self: center;

  margin: 38px 38px 38px 0;
  padding: 46px 36px 38px;

  background: rgba(255, 255, 255, 0.96);

  border: 1px solid rgba(228, 233, 240, 0.85);
  border-radius: 22px;

  box-shadow:
    0 20px 45px rgba(17, 46, 83, 0.12),
    0 4px 14px rgba(17, 46, 83, 0.05);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}


/* ==========================================
        FORM HEADING
========================================== */

.form-heading {
  margin-bottom: 32px;
}

.form-heading p {
  margin-bottom: 10px;

  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;

  color: #143b6e;
}

.form-heading h2 {
  font-size: 21px;
  font-weight: 800;
  line-height: 1.7;

  color: #0b3266;
}


/* ==========================================
        FORM
========================================== */

.inspection-form {
  width: 100%;

  display: flex;
  flex-direction: column;
  gap: 18px;
}


/* ==========================================
        SELECT BOX
========================================== */

.form-select-wrapper {
  position: relative;
  width: 100%;
  height: 66px;
}

.form-select-wrapper select {
  width: 100%;
  height: 100%;

  padding: 0 55px 0 48px;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  outline: none;

  border: 1.5px solid #c8d1dd;
  border-radius: 12px;

  background: #ffffff;

  color: #68758a;

  font-family: inherit;
  font-size: 16px;
  font-weight: 500;

  cursor: pointer;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.form-select-wrapper select:hover {
  border-color: #8398b3;
}

.form-select-wrapper select:focus {
  border-color: #164b83;

  box-shadow:
    0 0 0 3px rgba(22, 75, 131, 0.08);
}


/* آیکون سمت راست */
.form-field-icon {
  position: absolute;
  z-index: 2;

  top: 50%;
  right: 20px;

  transform: translateY(-50%);

  font-size: 21px;
  color: #50647e;

  pointer-events: none;
}


/* فلش سمت چپ */
.select-arrow {
  position: absolute;
  z-index: 2;

  top: 50%;
  left: 20px;

  transform: translateY(-50%);

  font-size: 13px;
  color: #50647e;

  pointer-events: none;
}


/* ==========================================
        CALCULATE BUTTON
========================================== */

.calculate-button {
  width: 100%;
  height: 66px;

  margin-top: 4px;

  border: none;
  border-radius: 12px;

  background: linear-gradient(
    110deg,
    #062e61 0%,
    #0b3c75 100%
  );

  color: #ffffff;

  font-family: inherit;
  font-size: 18px;
  font-weight: 700;

  cursor: pointer;

  box-shadow:
    0 7px 18px rgba(6, 46, 97, 0.12);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.calculate-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 10px 25px rgba(6, 46, 97, 0.2);

  filter: brightness(1.08);
}

.calculate-button:active {
  transform: translateY(0);
}


/* ==========================================
        OR SEPARATOR
========================================== */

.form-separator {
  width: 100%;

  margin: 24px 0 17px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.form-separator span {
  height: 1px;
  flex: 1;

  background: #d4dce6;
}

.form-separator div {
  width: 42px;
  height: 42px;

  margin: 0 -1px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #d4dce6;
  border-radius: 50%;

  background: #ffffff;

  font-size: 15px;
  font-weight: 700;

  color: #34557e;
}


/* ==========================================
        PHONE REQUEST
========================================== */

.phone-request {
  text-align: center;
}

.phone-request p {
  margin-bottom: 18px;

  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;

  color: #103a70;
}

.phone-button {
  width: 100%;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 13px;

  border: 1.5px solid #16467c;
  border-radius: 10px;

  text-decoration: none;

  color: #0d3d74;
  background: #ffffff;

  font-size: 17px;
  font-weight: 700;

  transition:
    background 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.phone-button i {
  font-size: 18px;
}

.phone-button:hover {
  background: #0b3b72;
  color: #ffffff ;
  transform: translateY(-1px);
}
.phone-button:hover span, .phone-button:hover i{
    color: #ffffff;
    
}

/* ==========================================
        RESPONSIVE - TABLET
========================================== */

@media (max-width: 1050px) {

  .inspection-section {
    padding: 35px 20px;
  }

  .inspection-container {
    min-height: 650px;
  }

  .inspection-content {
    padding: 50px 25px 0;
  }

  .inspection-form-card {
    width: 390px;
    margin-right: 25px;
    padding: 38px 28px 32px;
  }

  .inspection-heading h1 {
    font-size: 38px;
  }

  .inspection-features {
    gap: 18px;
  }

  .feature-item {
    min-width: 95px;
  }

}


/* ==========================================
        RESPONSIVE - MOBILE
========================================== */

@media (max-width: 800px) {

  .inspection-section {
    padding: 20px 15px;
  }

  .inspection-container {
    min-height: auto;

    flex-direction: column;

    padding: 0 15px 25px;

    background-position: center;
  }

  .inspection-container::before {
    background: rgba(255, 255, 255, 0.85);
  }

  .inspection-content {
    width: 100%;
    padding: 40px 10px 30px;
  }

  .inspection-heading h1 {
    font-size: 32px;
  }

  .inspection-heading p {
    font-size: 15px;
  }

  .inspection-features {
    max-width: 60%;
    gap: 12px;
  }

  .feature-item {
    min-width: 0;
    flex: 1;
  }

  .feature-item i {
    font-size: 24px;
  }

  .feature-item span {
    font-size: 12px;
  }

  .feature-divider {
    height: 40px;
  }


  /* فرم در موبایل */
  .inspection-form-card {
    width: 100%;
    max-width: 500px;

    margin: 0 auto;

    padding: 32px 24px;

    align-self: center;
  }

}


/* ==========================================
        RESPONSIVE - SMALL MOBILE
========================================== */

@media (max-width: 480px) {

  .inspection-section {
    padding: 12px;
  }

  .inspection-container {
    padding: 0 10px 18px;
    border-radius: 16px;
  }

  .inspection-content {
    padding-top: 30px;
  }

  .inspection-heading h1 {
    font-size: 27px;
  }

  .inspection-heading p {
    font-size: 13px;
  }

  .inspection-features {
    margin-top: 22px;
    gap: 8px;
  }

  .feature-item span {
    white-space: normal;
  }

  .inspection-form-card {
    padding: 28px 18px;
    border-radius: 16px;
  }

  .form-heading p {
    font-size: 16px;
  }

  .form-heading h2 {
    font-size: 19px;
  }

  .form-select-wrapper {
    height: 60px;
  }

  .form-select-wrapper select {
    font-size: 14px;
  }

  .calculate-button {
    height: 60px;
    font-size: 16px;
  }

  .phone-request p {
    font-size: 15px;
  }

}
/* service */
/* :root
{
--primary-color: #163a70;
--secondary-color: #667085;
--white: #ffffff;
--border: #e8edf5;
--shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
--radius: 20px;
--transition: 0.35s ease;
} */
/* ==========================================
GLOBAL STYLE
========================================== */
html
{
scroll-behavior: smooth;
}
body
{
background: #fff;
color: var(--primary-color);
font-family: "IranYekan", sans-serif;
line-height: 1.8;
}
.container
{
margin: auto;
width: 90%;
max-width: 1320px;
}
.section-title
{
margin-top: 60px;
text-align: center;
}
.section-title h2
{
margin-bottom: 15px;
color: #173f73;
font-size: 50px;
font-weight: 800;
}
.section-title p
{
color: #667085;
font-size: 20px;
margin-bottom: 25px;
}
.services-grid
{
display: grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
gap: 30px;
}
.service-card
{
padding: 45px 30px;
border: 1px solid #e8edf5;
border-radius: 20px;
background: #fff;
box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
transition: 0.35s;
text-align: center;
}
.service-card:hover
{
box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
transform: translateY(-8px);
}
.service-card img
{
margin-bottom: 25px;
width: 100px;
height: 100px;
object-fit: contain;
}
.service-card h3
{
margin-bottom: 15px;
color: #173f73;
font-size: 30px;
font-weight: 700;
}
.service-card p
{
color: #667085;
font-size: 18px;
line-height: 2;
}

/* ===========================
      Large Laptop
=========================== */

@media (max-width:1200px){

.container{

    width:95%;

}

.services-grid{

    gap:25px;

}

.section-title h2{

    font-size:42px;

}

.service-card{

    padding:40px 25px;

}

.service-card img{

    width:90px;
    height:90px;

}

.service-card h3{

    font-size:28px;

}

}

/* ===========================
          Tablet
=========================== */

@media (max-width:992px){

.services-grid{

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.section-title h2{

    font-size:38px;

}



.service-card{

    padding:35px 22px;

}

.service-card img{

    width:85px;
    height:85px;

}

.service-card h3{

    font-size:26px;

}

.service-card p{

    font-size:17px;

}

}

/* ===========================
      Mobile
=========================== */

@media (max-width:768px){

.services{

    padding:70px 0;

}

.section-title{

    margin-top:20px;

    margin-bottom:45px;

}

.section-title h2{

    font-size:32px;

    line-height:1.5;

}



.services-grid{

    grid-template-columns:1fr;

    gap:22px;

}

.service-card{

    padding:32px 20px;

}

.service-card img{

    width:80px;
    height:80px;

}

.service-card h3{

    font-size:25px;

}

.service-card p{

    font-size:16px;

}

}

/* ===========================
     Small Mobile
=========================== */

@media (max-width:576px){

.container{

    width:92%;

}

.section-title h2{

    font-size:28px;

}



.service-card{

    padding:28px 18px;

}

.service-card img{

    width:70px;
    height:70px;

}

.service-card h3{

    font-size:22px;

}

.service-card p{

    font-size:15px;

    line-height:1.9;

}

}
/* ==========================================
   PRICING SECTION
========================================== */

.pricing {
  padding: 120px 0;
}

.pricing-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.price-card {
  display: flex;
  position: relative;
  flex-direction: column;
  padding: 35px 30px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  height: auto;
  box-shadow: var(--shadow);
  text-align: center;
}

.price-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  transform: translateY(-8px);
  transition: var(--transition);
}

.price-card > img {
  margin: 20px auto 0px auto;
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.price-card h3 {
  margin-bottom: 12px;
  color: var(--primary-color);
  font-size: 30px;
  font-weight: 800;
}

.price-card .card-desc {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0;
  min-height: 70px;
}

.price-card hr {
  margin: 20px 0;
  border: none;
  border-top: 1px solid var(--border);
  width: 100%;
}

/* Featured Card */
.featured {
  position: relative;
  border: 2px solid var(--primary-color);
  overflow: hidden;
}

.featured > img {
  margin-top: 12px;
}

.badge {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  justify-content: center;
  align-items: center;
  border-radius: 20px 20px 0 0;
  background: var(--primary-color);
  width: 100%;
  height: 58px;
  color: #fff;
}

.badge div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  border-radius: 50%;
  background-color: #fff;
  width: 28px;
  min-width: 28px;
  height: 28px;
}

.badge i {
  color: #0e2d57;
  font-size: 14px;
}

/* Features List */
.features {
  list-style: none;
}

.features li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.features li i {
  margin-left: 8px;
  font-size: 22px;
}

.features li span {
  flex: 1;
  margin-right: 12px;
  color: var(--primary-color);
  font-size: 17px;
  text-align: right;
}

.features li:last-child {
  margin-bottom: 0;
}

/* Card Time */
.card-time {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.card-time span {
  color: var(--primary-color);
  font-size: 17px;
}

/* Price Info Box */
.price-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  margin: 40px auto 0;
  padding: 22px 28px;
  border: 1px solid #e7edf5;
  border-radius: 18px;
  background: #fff;
  width: 100%;
  max-width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.info-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #123f7a;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  color: #123f7a;
  font-size: 20px;
}

.info-text {
  flex: 1;
}

.info-text p {
  color: var(--primary-color);
  font-size: 18px;
  line-height: 2;
}

.calc-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  border: none;
  border-radius: 16px;
  background: var(--primary-color);
  width: 210px;
  height: 54px;
  color: #fff;
  font-family: "IranYekan", sans-serif;
  font-size: 18px;
  font-weight: 300;
  transition: var(--transition);
  cursor: pointer;
  text-wrap: nowrap;
}

.calc-btn i {
  font-size: 24px;
}

.calc-btn:hover {
  background: #0e2d57;
}

/* ==========================================
   PRICING RESPONSIVE
========================================== */

@media (max-width: 1200px) {
  .container {
    width: 95%;
  }
  .pricing-grid {
    gap: 30px;
  }
  .section-title h2 {
    font-size: 42px;
  }
}

@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    margin: auto;
    max-width: 600px;
  }
  .price-info {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .price-info p {
    order: 2;
  }
  .calc-btn {
    justify-content: center;
    width: 100%;
    order: 3;
  }
  .info-icon {
    order: 1;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 70px 0;
  }
  .section-title {
    margin-bottom: 45px;
  }
  .section-title h2 {
    font-size: 34px;
  }
  .section-title p {
    font-size: 17px;
  }
  .price-card {
    padding: 28px 24px 20px;
  }
  .price-card h3 {
    font-size: 26px;
  }
  .card-desc {
    min-height: auto;
  }
}

@media (max-width: 576px) {
  .container {
    width: 92%;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .section-title p {
    font-size: 16px;
  }
  .price-card h3 {
    font-size: 23px;
  }
  .features li span {
    font-size: 15px;
  }
  .card-time span {
    font-size: 15px;
  }
  .calc-btn {
    font-size: 17px;
  }
}

/* ==========================================
   PROCESS SECTION
========================================== */

.process {
  padding: 100px 0;
}

.process-container {  /* ← تغییر نام */
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
}

.process-title {  /* ← تغییر نام */
  margin-bottom: 70px;
  text-align: center;
}

.process-title h2 {
  color: var(--primary-color);
  font-size: 46px;
  font-weight: 900;
}

.process-title p {
  margin-top: 15px;
  color: var(--secondary-color);
  font-size: 20px;
}

/* wrapper */
.process-wrapper {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 45px;
}

/* item */
.process-item {
  flex: 0 1 220px;
  margin: 0px;
  text-align: center;
  direction: rtl;
}

/* circle */
.process-icon {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 50%;
  background: #fff;
  min-width: 120px;
  min-height: 120px;
  box-shadow: var(--shadow); /* اضافه کردن سایه */
}

.process-icon::before {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-color);
  max-width: 88px;
  height: 88px;
  content: "";
  opacity: 0.1; /* برای شفافیت بیشتر */
}

.process-icon img {
  position: relative;
  z-index: 2;
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.process-icon span {
  display: flex;
  position: absolute;
  top: -5px;
  right: -5px;
  z-index: 3;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: var(--primary-color);
  width: 36px;
  height: 36px;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
}

/* text */
.process-item h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 22px;
  height: 70px;
  color: var(--primary-color);
  font-size: 22px;
  font-weight: 800;
}

.process-item p {
  margin-top: 17px;
  color: var(--secondary-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

/* dotted line */
.process-line {  /* ← تغییر نام */
  margin-top: 65px;
  border-top: 5px dotted var(--primary-color);
  width: 70px;
  flex-shrink: 0;
}

/* ==========================================
   RESPONSIVE - تبلت
========================================== */
@media (max-width: 992px) {
  .process-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px 20px;
    flex-wrap: wrap;
  }
  
  .process-line {
    display: none;
  }
  
  .process-item {
    flex: 0 0 45%;
  }
}

/* ==========================================
   RESPONSIVE - موبایل
========================================== */
@media (max-width: 600px) {
  .process {
    padding: 70px 0;
  }
  
  .process-title h2 {
    font-size: 32px;
  }
  
  .process-title p {
    font-size: 16px;
  }
  
  .process-wrapper {
    flex-direction: column;
    align-items: center;
  }
  
  .process-item {
    width: 100%;
    max-width: 300px;
    flex: 0 0 auto;
  }
  
  .process-icon {
    width: 110px;
    height: 110px;
    min-width: 110px;
    min-height: 110px;
  }
}
/* ==========================================
             WHY US SECTION
========================================== */

.why-us-section {
    width: 100%;
    padding: 80px 20px;
    background-color: #ffffff;
    direction: rtl;
}

/* ==========================================
             MAIN CONTAINER
========================================== */

.why-us-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

/* ==========================================
             IMAGE SIDE
========================================== */

.why-us-image-side {
    position: relative;
    width: 60%;
}

/* IMAGE */

.why-us-image {
    display: block;
    width: 100%;
    height: 500px;
    border-radius: 28px;
    object-fit: cover;
}

/* ==========================================
          FREE CONSULTATION BOX
========================================== */

.free-consultation {
    position: absolute;
    right: -20px;
    bottom: -15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
    width: 390px;
    padding: 25px 30px;
    border-radius: 20px;
    background-color: #07376f;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 40, 90, 0.18);
}

/* TEXT */

.consultation-text {
    flex: 1;
    text-align: right;
}

.consultation-text h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
}

.consultation-text p {
    margin: 0;
    color: #e1e8f0;
    font-size: 14px;
    font-weight: 400;
}

/* ICON */

.consultation-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    color: #ffffff;
    font-size: 48px;
}

/* ==========================================
             CONTENT SIDE
========================================== */

.why-us-content {
    width: 40%;
    color: #07376f;
    text-align: right;
}

/* ==========================================
             SMALL TITLE (اصلاح شده)
========================================== */

.why-us-small-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* راست‌چین */
    gap: 10px;
    margin-bottom: 15px;
    width: 100%;
}

.why-us-small-title span {
    color: #294d78;
    font-size: 16px;
    font-weight: 500;
}

.small-line {
    width: 35px;
    height: 2px;
    background-color: #d6dee8;
}

/* ==========================================
             MAIN TITLE
========================================== */

.why-us-content h2 {
    margin: 0 0 20px;
    color: #062f64;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.6;
}

/* ==========================================
             BENEFITS LIST (اصلاح شده)
========================================== */

.why-us-list {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* EACH ITEM */

.why-us-list li {
    display: flex;
    align-items: center;
    gap: 15px; /* فاصله بین آیکون و متن */
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid #e1e5ea;
}

/* REMOVE LAST LINE */

.why-us-list li:last-child {
    border-bottom: none;
}

/* BENEFIT TEXT */

.benefit-text {
    flex: 1;
    color: #53647a;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
}

/* CHECK ICON */

.why-us-list li i {
    flex-shrink: 0;
    color: #07376f;
    font-size: 27px;
}

/* ==========================================
                TABLET (1024px)
========================================== */

@media (max-width: 1024px) {
    .why-us-container {
        gap: 35px;
    }

    .why-us-image-side {
        width: 55%;
    }

    .why-us-content {
        width: 45%;
    }

    .why-us-image {
        height: 430px;
    }

    .free-consultation {
        width: 330px;
        padding: 20px 25px;
    }

    .consultation-text h3 {
        font-size: 19px;
    }

    .why-us-content h2 {
        font-size: 27px;
    }

    .benefit-text {
        font-size: 15px;
    }
}

/* ==========================================
                MOBILE (768px)
========================================== */

@media (max-width: 768px) {
    .why-us-section {
        padding: 50px 15px;
    }

    .why-us-container {
        flex-direction: column;
        gap: 70px;
    }

    .why-us-image-side,
    .why-us-content {
        width: 100%;
    }

    .why-us-image {
        height: 400px;
    }

    .free-consultation {
        right: 50%;
        bottom: -40px;
        transform: translateX(50%);
        width: 90%;
        max-width: 390px;
    }

    .why-us-content h2 {
        font-size: 26px;
    }

    .why-us-small-title {
        align-items: flex-end;
    }
}

/* ==========================================
             SMALL MOBILE (480px)
========================================== */

@media (max-width: 480px) {
    .why-us-section {
        padding: 35px 12px;
    }

    .why-us-container {
        gap: 65px;
    }

    .why-us-image {
        height: 300px;
        border-radius: 20px;
    }

    .free-consultation {
        bottom: -35px;
        width: 92%;
        padding: 16px 18px;
        border-radius: 15px;
        gap: 15px;
    }

    .consultation-icon {
        width: 50px;
        height: 50px;
        font-size: 36px;
    }

    .consultation-text h3 {
        margin-bottom: 5px;
        font-size: 17px;
    }

    .consultation-text p {
        font-size: 12px;
    }

    .why-us-content h2 {
        font-size: 22px;
    }

    .why-us-list li {
        padding: 15px 0;
        gap: 12px;
    }

    .benefit-text {
        font-size: 14px;
    }

    .why-us-list li i {
        font-size: 23px;
    }

    .why-us-small-title span {
        font-size: 14px;
    }

    .small-line {
        width: 30px;
    }
}

/* ==========================================
             VERY SMALL (360px)
========================================== */

@media (max-width: 360px) {
    .why-us-section {
        padding: 25px 8px;
    }

    .why-us-image {
        height: 250px;
        border-radius: 16px;
    }

    .free-consultation {
        padding: 12px 14px;
        gap: 10px;
        width: 95%;
    }

    .consultation-icon {
        width: 40px;
        height: 40px;
        font-size: 28px;
    }

    .consultation-text h3 {
        font-size: 15px;
    }

    .consultation-text p {
        font-size: 11px;
    }

    .why-us-content h2 {
        font-size: 20px;
    }

    .benefit-text {
        font-size: 13px;
    }

    .why-us-list li {
        padding: 12px 0;
        gap: 10px;
    }

    .why-us-list li i {
        font-size: 20px;
    }

    .why-us-small-title span {
        font-size: 13px;
    }

    .small-line {
        width: 25px;
        height: 2px;
    }
}

/* ==========================================
          SERVICE COVERAGE SECTION
========================================== */

.coverage-section {
    width: 100%;
    padding: 60px 20px;
    background-color: #ffffff;
    direction: rtl;
}

/* ==========================================
             MAIN CONTAINER
========================================== */

.coverage-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    padding: 35px;
    border: 1px solid #e4e8ed;
    border-radius: 22px;
    background-color: #ffffff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

/* ==========================================
             CONTENT SIDE
========================================== */

.coverage-content {
    display: flex;
    flex-direction: column;
    width: 52%;
}

/* ==========================================
                 HEADING
========================================== */

.coverage-heading {
    width: 100%;
    margin-bottom: 35px;
    text-align: right;
}

.coverage-heading h2 {
    margin: 0 0 15px;
    color: #07376f;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.5;
}

.coverage-heading p {
    margin: 0;
    color: #64748a;
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
}

/* ==========================================
                CITIES GRID
========================================== */

.cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 20px;
    row-gap: 30px;
    width: 100%;
    margin-bottom: 30px;
}

/* CITY */

.city-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-height: 58px;
    padding: 12px 18px;
    border: 2px solid #07376f;
    border-radius: 10px;
    background-color: #ffffff;
    color: #07376f;
    transition: all 0.25s ease;
    cursor: pointer;
    width: 100%;
    min-width: 0;
}

.city-item span {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
}

.city-item i {
    font-size: 17px;
    flex-shrink: 0;
}

.city-item:hover {
    background-color: #07376f;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================
              COVERAGE INFO
========================================== */

.coverage-info {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 35px;
    padding: 18px 22px;
    border-radius: 12px;
    background-color: #edf5fc;
}

.coverage-info-text {
    flex: 1;
    text-align: right;
}

.coverage-info-text h3 {
    margin: 0 0 8px;
    color: #07376f;
    font-size: 15px;
    font-weight: 700;
}

.coverage-info-text p {
    margin: 0;
    color: #64748a;
    font-size: 13px;
    font-weight: 400;
}

.coverage-info-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 65px;
    height: 55px;
    border-left: 1px solid #b8c8d9;
    color: #07376f;
    font-size: 28px;
}

/* ==========================================
             REQUEST BUTTON
========================================== */

.coverage-button-wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    margin-top: 10px;
}

.coverage-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    min-width: 280px;
    padding: 17px 25px;
    border-radius: 10px;
    background-color: #07376f;
    color: #ffffff !important;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(7, 55, 111, 0.15);
    transition: transform 0.25s ease, background-color 0.25s ease;
}

.coverage-button span {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff !important;
}

.coverage-button i {
    font-size: 20px;
    color: #ffffff !important;
}

.coverage-button:hover {
    background-color: #052d5c;
    transform: translateY(-2px);
}

/* ==========================================
                  MAP SIDE
========================================== */

.coverage-map {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45%;
    min-height: 580px;
    overflow: hidden;
    border: 1px solid #e2e8ef;
    border-radius: 20px;
    background-color: #fafcff;
}

.coverage-map img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================
                 TABLET
========================================== */

@media (max-width: 1024px) {

    .coverage-container {
        gap: 25px;
        padding: 25px;
    }

    .coverage-content {
        width: 55%;
    }

    .coverage-map {
        width: 45%;
        min-height: 520px;
    }

    .coverage-heading h2 {
        font-size: 29px;
    }

    .city-item {
        min-height: 52px;
        padding: 10px 14px;
    }

    .city-item span {
        font-size: 14px;
    }

    .city-item i {
        font-size: 15px;
    }

    .coverage-button {
        min-width: 240px;
        padding: 15px 22px;
    }
}

/* ==========================================
                 MOBILE
========================================== */

@media (max-width: 768px) {

    .coverage-section {
        padding: 40px 15px;
    }

    .coverage-container {
        flex-direction: column;
        padding: 20px;
    }

    .coverage-content,
    .coverage-map {
        width: 100%;
    }

    .coverage-heading h2 {
        font-size: 26px;
    }

    .coverage-heading p br {
        display: none;
    }

    .coverage-map {
        min-height: 420px;
    }

    .coverage-button-wrapper {
        justify-content: center;
    }

    .coverage-button {
        width: 100%;
        max-width: 350px;
        min-width: 0;
    }

    .cities-grid {
        column-gap: 15px;
        row-gap: 20px;
    }

    .city-item {
        min-height: 50px;
        padding: 10px 12px;
    }

    .city-item span {
        font-size: 14px;
    }
}

/* ==========================================
              SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .coverage-section {
        padding: 30px 10px;
    }

    .coverage-container {
        padding: 15px;
        border-radius: 16px;
    }

    .coverage-heading {
        margin-bottom: 25px;
    }

    .coverage-heading h2 {
        font-size: 22px;
    }

    .coverage-heading p {
        font-size: 13px;
    }

    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
        column-gap: 12px;
        row-gap: 16px;
        margin-bottom: 25px;
    }

    .city-item {
        min-height: 48px;
        padding: 8px 12px;
        gap: 8px;
    }

    .city-item span {
        font-size: 13px;
    }

    .city-item i {
        font-size: 14px;
    }

    .coverage-info {
        gap: 12px;
        padding: 15px;
        flex-direction: row;
    }

    .coverage-info-text h3 {
        font-size: 13px;
    }

    .coverage-info-text p {
        font-size: 11px;
        line-height: 1.8;
    }

    .coverage-info-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .coverage-button {
        padding: 14px 18px;
    }

    .coverage-button span {
        font-size: 14px;
    }

    .coverage-button i {
        font-size: 18px;
    }

    .coverage-map {
        min-height: 300px;
        border-radius: 15px;
    }
}

/* ==========================================
              VERY SMALL
========================================== */

@media (max-width: 360px) {

    .coverage-section {
        padding: 20px 8px;
    }

    .coverage-container {
        padding: 12px;
        border-radius: 12px;
    }

    .cities-grid {
        column-gap: 8px;
        row-gap: 12px;
    }

    .city-item {
        min-height: 42px;
        padding: 6px 8px;
        gap: 5px;
    }

    .city-item span {
        font-size: 12px;
    }

    .city-item i {
        font-size: 12px;
    }

    .coverage-info {
        padding: 12px;
        gap: 10px;
    }

    .coverage-info-text h3 {
        font-size: 12px;
    }

    .coverage-info-text p {
        font-size: 10px;
    }

    .coverage-info-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .coverage-button {
        padding: 12px 14px;
    }

    .coverage-button span {
        font-size: 13px;
    }

    .coverage-button i {
        font-size: 16px;
    }

    .coverage-map {
        min-height: 250px;
    }
}

/* ==========================================
   REPORT SECTION - FULLY ISOLATED
========================================== */

.report-section {
  padding: 100px 0;
  background: #fff;
}

.report-section .container {
  margin: auto;
  width: 90%;
  max-width: 1200px;
}

.report-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 60px;
  direction: ltr;
}

.report-content {
  flex: 0 0 42%;
  text-align: right;
  direction: rtl;
}

.report-content h2 {
  margin-bottom: 20px;
  color: #163a70;
  font-size: 42px;
  font-weight: 900;
}

.report-content > p {
  margin-bottom: 40px;
  color: #667085;
  font-size: 18px;
  line-height: 2;
}

.report-preview {
  display: flex;
  position: relative;
  flex: 0 0 50%;
  justify-content: center;
  align-items: flex-start;
  padding-top: 30px;
  direction: rtl;
}

/* ==========================================
   BUTTON WRAPPER
========================================== */
.report-section .button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 25px;
}

.report-section .button-wrapper button {
  width: 100%;
  border: none;
  border-radius: 12px;
  background: #163a70;
  height: 48px;
  color: white;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  transition: 0.3s;
  cursor: pointer;
}

.report-section .button-wrapper button:hover {
  box-shadow: 0 8px 20px rgba(22, 58, 112, 0.25);
  transform: translateY(-3px);
}

.report-section .button-note-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.report-section .button-note-wrapper i {
  color: #163a70;
  font-size: 18px;
  padding-top: 10px;
}

.report-section .button-note {
  margin-top: 10px;
  color: #667085;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
}

/* ==========================================
   FEATURE LIST - کاملاً ایزوله
========================================== */
.report-section .feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  width: 100%;
  min-height: 85px;
  margin-bottom: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e8edf5;
  border-radius: 14px;
  box-shadow: 0 5px 15px rgba(22, 58, 112, 0.04);
  text-align: right;
}

.report-section .feature-item i {
  order: 1;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f5f8ff;
  color: #163a70;
  font-size: 20px;
  line-height: 1;
}

.report-section .feature-item > div {
  order: 2;
  flex: 1;
}

.report-section .feature-item h4 {
  margin: 0 0 5px;
  color: #163a70;
  font-size: 17px;
  font-weight: 700;
}

.report-section .feature-item p {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.9;
}

/* ==========================================
   REPORT BOX
========================================== */
.report-section .report-box {
  padding: 15px;
  border: 1px solid #e8edf5;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(22, 58, 112, 0.1);
  width: 100%;
  position: relative;
}

/* ==========================================
   FLOATING CARD
========================================== */
.report-section .floating-card {
  display: flex;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 10px;
  border-radius: 18px;
  background: #fff;
  width: 100px;
  min-height: 90px;
  box-shadow: 0 10px 25px rgba(22, 58, 112, 0.12);
  text-align: center;
  border: 1px solid #e8edf5;
}

.report-section .floating-card i {
  margin-bottom: 6px;
  font-size: 24px;
  color: #163a70;
}

.report-section .floating-card span {
  font-size: 12px;
  line-height: 1.5;
  color: #163a70;
  font-weight: 500;
}

/* ==========================================
   CAR HEADER BOX
========================================== */
.report-section .car-header-box {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 15px;
  padding: 18px 30px 18px 18px;
  border: 1px solid #e8edf5;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(22, 58, 112, 0.05);
  flex-direction: row;
  position: relative;
  min-height: 110px;
  max-width: calc(100% - 120px);
  margin-right: auto;
}

.report-section .car-header-box img {
  width: 130px;
  object-fit: contain;
  order: 2;
  margin-right: 15px;
}

.report-section .car-header-info {
  text-align: right;
  order: 1;
  flex: 1;
}

.report-section .car-header-info h4 {
  margin-bottom: 8px;
  color: #163a70;
  font-size: 15px;
}

.report-section .car-header-info span,
.report-section .car-header-info small {
  display: block;
  color: #667085;
  font-size: 12px;
}

/* ==========================================
   OVERVIEW BOX
========================================== */
.report-section .overview-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding: 18px;
  border: 1px solid #e8edf5;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(22, 58, 112, 0.05);
}

.report-section .score-box {
  padding-left: 20px;
  padding-right: 0;
  border-left: 1px solid #e8edf5;
  border-right: none;
  min-width: 120px;
  text-align: end;
  order: 1;
}

.report-section .score-box strong {
  color: #163a70;
  font-size: 32px;
}

.report-section .score-box span {
  font-size: 14px;
}

.report-section .score-box p {
  font-size: 12px;
}

.report-section .score-box b {
  color: #1d7a35;
  font-size: 13px;
}

.report-section .car-data {
  flex: 1;
  text-align: left;
  order: 2;
}

.report-section .car-data h5 {
  margin-bottom: 8px;
  font-size: 15px;
}

.report-section .car-data p,
.report-section .car-data small {
  color: #667085;
  font-size: 12px;
}

/* ==========================================
   REPORT ROW
========================================== */
.report-section .report-row {
  position: relative;
  margin-bottom: 14px;
  padding: 20px 65px 20px 20px;
  border: 1px solid #e8edf5;
  border-radius: 14px;
  background: #fff;
  min-height: 85px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(22, 58, 112, 0.05);
}

.report-section .report-row > i {
  display: flex;
  position: absolute;
  top: 50%;
  right: 15px;
  left: auto;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #f5f8ff;
  width: 42px;
  height: 42px;
  color: #163a70;
  font-size: 18px;
  transform: translateY(-50%);
}

.report-section .rate {
  width: 100%;
  position: relative;
}

.report-section .rate span {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  padding: 3px 12px;
  border: 1px solid #d5e4f7;
  border-radius: 6px;
  background: #f8fbff;
  color: #076aff;
  font-size: 12px;
  font-weight: 700;
}

.report-section .rate h5 {
  font-size: 16px;
  margin-bottom: 4px;
  padding-right: 25px;
}

.report-section .rate p {
  margin-top: 2px;
  font-size: 13px;
  line-height: 2;
  white-space: normal;
  padding-right: 25px;
}

.report-section .rate.recommend span {
  border-color: #b9dfbd;
  background: #edf7ed;
  color: #247a35;
}

/* ==========================================
   RESPONSIVE
========================================== */
@media (max-width: 1024px) {
  .report-wrapper {
    gap: 30px;
  }
  
  .report-content {
    flex: 0 0 45%;
  }
  
  .report-preview {
    flex: 0 0 50%;
  }
  
  .report-content h2 {
    font-size: 32px;
  }
  
  .report-content > p {
    font-size: 16px;
  }
  
  .report-section .car-header-box {
    max-width: calc(100% - 100px);
    padding: 15px 20px 15px 15px;
    min-height: 90px;
  }
  
  .report-section .car-header-box img {
    width: 100px;
    margin-right: 10px;
  }
  
  .report-section .floating-card {
    width: 85px;
    min-height: 75px;
    padding: 10px 8px;
    top: -8px;
    right: -8px;
  }
  
  .report-section .floating-card i {
    font-size: 20px;
  }
  
  .report-section .floating-card span {
    font-size: 11px;
  }
}

@media (max-width: 992px) {
  .report-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .report-content,
  .report-preview {
    flex: 0 0 100%;
    width: 100%;
  }
  
  .report-content {
    text-align: center;
  }
  
  .report-content h2 {
    font-size: 32px;
  }
  
  .report-section .car-header-box {
    flex-direction: column;
    gap: 15px;
    padding: 18px;
    max-width: 100%;
    margin-right: 0;
    justify-content: center;
  }
  
  .report-section .car-header-box img {
    width: 120px;
    margin-right: 0;
    order: 1;
  }
  
  .report-section .car-header-info {
    text-align: center;
    order: 2;
  }
  
  .report-section .floating-card {
    position: relative;
    top: 0;
    right: 0;
    margin: 0 auto 15px auto;
    width: 100px;
    min-height: 90px;
  }
  
  .report-section .report-row {
    padding: 15px 55px 15px 20px;
  }
  
  .report-section .rate span {
    position: static;
    display: inline-block;
    margin-bottom: 8px;
    transform: none;
  }
  
  .report-section .rate h5 {
    padding-right: 0;
  }
  
  .report-section .rate p {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .report-section {
    padding: 70px 0;
  }
  
  .report-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  
  .report-content,
  .report-preview {
    flex: 0 0 100%;
    width: 100%;
  }
  
  .report-content {
    text-align: center;
  }
  
  .report-content h2 {
    font-size: 28px;
  }
  
  .report-content > p {
    font-size: 15px;
  }
  
  .report-section .car-header-box {
    flex-direction: column;
    gap: 15px;
    padding: 18px;
    max-width: 100%;
    margin-right: 0;
    justify-content: center;
  }
  
  .report-section .car-header-box img {
    width: 120px;
    margin-right: 0;
    order: 1;
  }
  
  .report-section .car-header-info {
    text-align: center;
    order: 2;
  }
  
  .report-section .overview-box {
    flex-direction: column;
    gap: 15px;
  }
  
  .report-section .car-data {
    text-align: center;
    order: 2;
  }
  
  .report-section .score-box {
    border-left: none;
    border-top: 1px solid #e8edf5;
    padding-left: 0;
    padding-right: 0;
    padding-top: 15px;
    width: 100%;
    order: 1;
  }
  
  .report-section .floating-card {
    position: relative;
    top: 0;
    right: 0;
    margin: 0 auto 15px auto;
    width: 100px;
    min-height: 90px;
  }
  
  .report-section .report-row {
    padding: 15px 50px 15px 20px;
    min-height: 70px;
  }
  
  .report-section .report-row > i {
    width: 34px;
    height: 34px;
    right: 10px;
    font-size: 15px;
  }
  
  .report-section .rate span {
    position: static;
    display: inline-block;
    margin-bottom: 8px;
    transform: none;
  }
  
  .report-section .rate h5 {
    padding-right: 0;
    font-size: 14px;
  }
  
  .report-section .rate p {
    padding-right: 0;
    font-size: 12px;
  }
  
  .report-section .feature-item {
    padding: 12px 15px;
    gap: 15px;
    min-height: 70px;
  }
  
  .report-section .feature-item i {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

/* ==========================================
   TESTIMONIAL SECTION - FULLY ISOLATED
========================================== */

.testimonial-section {
  width: 100%;
  padding: 60px 0;
  background: #ffffff;
}

.testimonial-section .slider {
  position: relative;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 30px 10px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.testimonial-section .title_slidr {
  margin-bottom: 3rem;
  text-align: center;
}

.testimonial-section .title_slidr h1 {
  margin-bottom: 1rem;
  color: #003366;
  font-size: 2.25rem;
  font-weight: 700;
}

.testimonial-section .title_slidr p {
  color: #6b7280;
  font-size: 1.125rem;
}

/* ==========================================
   Swiper Container
========================================== */
.testimonial-section .testimonialSwiper {
  padding: 0.5rem 0.5rem 3rem;
  overflow: hidden;
}

/* ==========================================
   Testimonial Card
========================================== */
.testimonial-section .testimonial-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #f1f5f9;
  border-radius: 1rem;
  background: #ffffff;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-section .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px -4px rgba(0, 0, 0, 0.1);
}

.testimonial-section .image-container {
  position: relative;
  height: 200px;
  flex-shrink: 0;
}

.testimonial-section .image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-section .badge {
  display: flex;
  position: absolute;
  top: 12px;
  right: auto;
  left: 12px;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.9);
  color: #374151;
  font-size: 0.75rem;
  font-weight: 500;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4px);
}

.testimonial-section .badge svg {
  width: 12px;
  height: 12px;
  color: #003366;
}

.testimonial-section .card-body {
  display: flex;
  position: relative;
  flex-direction: column;
  padding: 1.5rem;
  flex-grow: 1;
}

.testimonial-section .card-header {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  width: 100%;
}

.testimonial-section .user-info {
  text-align: center;
}

.testimonial-section .user-info h3 {
  margin-bottom: 0.25rem;
  color: #374151;
  font-size: 1.25rem;
}

.testimonial-section .location {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  color: #9ca3af;
  font-size: 0.875rem;
}

.testimonial-section .location svg {
  width: 16px;
  height: 16px;
}

.testimonial-section .quote-icon {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.15;
  color: #374151;
}

.testimonial-section .testimonial-text {
  margin-bottom: 1.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  text-align: justify;
  flex-grow: 1;
  line-height: 1.6;
}

.testimonial-section .stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: auto;
}

.testimonial-section .star {
  color: #fbbf24;
  font-size: 1.25rem;
}

/* ==========================================
   Swiper Navigation Buttons
========================================== */
.testimonial-section .swiper-button-next,
.testimonial-section .swiper-button-prev {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.testimonial-section .swiper-button-next::after,
.testimonial-section .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 700;
  color: #003366;
}

.testimonial-section .swiper-button-next:hover,
.testimonial-section .swiper-button-prev:hover {
  background: #003366;
  box-shadow: 0 6px 20px rgba(0, 51, 102, 0.3);
}

.testimonial-section .swiper-button-next:hover::after,
.testimonial-section .swiper-button-prev:hover::after {
  color: white;
}

.testimonial-section .swiper-button-disabled {
  opacity: 0.4 !important;
  cursor: not-allowed !important;
}

.testimonial-section .swiper-button-next svg,
.testimonial-section .swiper-button-prev svg {
  color: #000;
  width: 30% !important;
}

.testimonial-section .swiper-button-next:hover svg,
.testimonial-section .swiper-button-prev:hover svg {
  color: #fff;
}

/* ==========================================
   Swiper Pagination
========================================== */
.testimonial-section .swiper-pagination {
  position: relative;
  bottom: 0 !important;
  margin-top: 1rem;
}

.testimonial-section .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.testimonial-section .swiper-pagination-bullet-active {
  background: #374151;
  transform: scale(1.2);
}

/* ==========================================
   Responsive
========================================== */

/* Mobile */
@media (max-width: 640px) {
  .testimonial-section .title_slidr h1 {
    font-size: 1.25rem;
  }

  .testimonial-section .title_slidr p {
    font-size: 0.875rem;
  }

  .testimonial-section .testimonialSwiper {
    padding: 0 0.25rem 2.5rem;
  }

  .testimonial-section .testimonial-card {
    border-radius: 0.75rem;
  }

  .testimonial-section .image-container {
    height: 160px;
  }

  .testimonial-section .card-body {
    padding: 1rem;
  }

  .testimonial-section .user-info h3 {
    font-size: 1rem;
  }

  .testimonial-section .testimonial-text {
    font-size: 0.75rem;
  }

  .testimonial-section .swiper-button-next,
  .testimonial-section .swiper-button-prev {
    display: none !important;
  }

  .testimonial-section .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

/* Tablet */
@media (min-width: 641px) and (max-width: 1024px) {
  .testimonial-section .testimonialSwiper {
    padding: 0 1rem 2.5rem;
  }

  .testimonial-section .image-container {
    height: 180px;
  }

  .testimonial-section .swiper-button-next,
  .testimonial-section .swiper-button-prev {
    width: 36px;
    height: 36px;
  }

  .testimonial-section .swiper-button-next::after,
  .testimonial-section .swiper-button-prev::after {
    font-size: 14px;
  }
}

/* Desktop */
@media (min-width: 1025px) {
  .testimonial-section .testimonialSwiper {
    padding: 0 2.5rem 3rem;
  }

  .testimonial-section .image-container {
    height: 200px;
  }

  .testimonial-section .swiper-button-next,
  .testimonial-section .swiper-button-prev {
    width: 44px;
    height: 44px;
  }

  .testimonial-section .swiper-button-next::after,
  .testimonial-section .swiper-button-prev::after {
    font-size: 20px;
  }
}

/* Large Desktop */
@media (min-width: 1440px) {
  .testimonial-section .testimonialSwiper {
    padding: 0 4rem 3rem;
  }

  .testimonial-section .image-container {
    height: 220px;
  }

  .testimonial-section .card-body {
    padding: 1.75rem;
  }

  .testimonial-section .user-info h3 {
    font-size: 1.375rem;
  }

  .testimonial-section .testimonial-text {
    font-size: 0.9375rem;
  }
}

/* ==========================================
                 FAQ SECTION
========================================== */

.faq-section {
    width: 100%;
    padding: 70px 20px;
    background-color: #ffffff;
    direction: rtl;
}

/* ==========================================
                FAQ CONTAINER
========================================== */

.faq-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

/* ==========================================
                  HEADING
========================================== */

.faq-heading {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}

.faq-heading h2 {
    margin: 0 0 12px;
    color: #07376f;
    font-size: 32px;
    font-weight: 700;
}

.faq-heading p {
    margin: 0;
    color: #64748a;
    font-size: 15px;
    font-weight: 400;
}

/* ==========================================
                FAQ CONTENT
========================================== */

.faq-content {
    display: flex;
    justify-content: space-between;

    /* خیلی مهم */
    align-items: stretch;

    gap: 45px;

    width: 100%;
}


/* ==========================================
                 IMAGE SIDE
========================================== */

.faq-image {
    width: 40%;

    overflow: hidden;

    border-radius: 22px;

    /* باعث میشه همراه ستون FAQ کشیده بشه */
    align-self: stretch;
}


.faq-image img {
    display: block;

    width: 100%;
    height: 100%;

    /* اینو دیگه نمی‌خوایم
    min-height: 0; */

    object-fit: cover;

    border-radius: 22px;
}


/* ==========================================
                 FAQ LIST
========================================== */

.faq-list {
    display: flex;
    flex-direction: column;

    gap: 8px;

    width: 60%;
}

/* ==========================================
                  FAQ ITEM
========================================== */

.faq-item {
    width: 100%;
    overflow: hidden;
    border: 1px solid #e1e5ea;
    border-radius: 10px;
    background-color: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
    border-color: #e1e5ea;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.04);
}

/* ==========================================
               FAQ QUESTION
========================================== */

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    min-height: 68px;
    padding: 17px 22px;
    border: none;
    background-color: #ffffff;
    color: #263b54;
    font-family: 'IranYekan';
    cursor: pointer;
    text-align: right;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-question span {
    margin: 0;
    flex: 1;
    color: #263b54;
    font-size: 16px;
    font-weight: 500;
    text-align: right;
    line-height: 1.6;
}

/* ==========================================
               ARROW ICON
========================================== */

.faq-question i {
    margin: 0;
    flex-shrink: 0;
    color: #07376f;
    font-size: 14px;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ==========================================
                 FAQ ANSWER
========================================== */

.faq-answer {
    height: 0;
    overflow: hidden;
    background-color: transparent;
    opacity: 0;
    transition: height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease;
}

.faq-item.active .faq-answer {
    opacity: 1;
}

/* ==========================================
             ANSWER CONTENT
========================================== */

.faq-answer-content {
    margin: 0 22px 22px;
    padding: 20px 22px;
    border-radius: 8px;
    background-color: #f5f7f9;
    color: #5f6f82;
    font-size: 14px;
    font-weight: 400;
    line-height: 2;
    text-align: right;
}

/* ==========================================
            ==========================================
                      RESPONSIVE
            ==========================================
========================================== */

/* ==========================================
                LAPTOP (1024px - 1200px)
========================================== */

@media (max-width: 1200px) {

    .faq-container {
        max-width: 95%;
    }

    .faq-content {
        gap: 35px;
    }

    .faq-image {
        width: 38%;
    }
/* 
    .faq-image img {
        min-height: 480px;
    } */

    .faq-list {
        width: 62%;
    }

    .faq-question span {
        font-size: 15px;
    }

}

/* ==========================================
                TABLET (768px - 1024px)
========================================== */

@media (max-width: 1024px) {

    .faq-section {
        padding: 55px 18px;
    }

    .faq-content {
        gap: 30px;
    }

    .faq-image {
        width: 38%;
    }

    /* .faq-image img {
        min-height: 420px;
    } */

    .faq-list {
        width: 62%;
    }

    .faq-heading h2 {
        font-size: 28px;
    }

    .faq-question {
        min-height: 62px;
        padding: 15px 20px;
    }

    .faq-question span {
        font-size: 15px;
    }

    .faq-answer-content {
        padding: 18px 20px;
        font-size: 13.5px;
        margin: 0 20px 20px;
    }

}

/* ==========================================
            SMALL TABLET (600px - 768px)
========================================== */

@media (max-width: 768px) {

    .faq-section {
        padding: 45px 15px;
    }

    .faq-heading {
        margin-bottom: 30px;
    }

    .faq-heading h2 {
        font-size: 26px;
    }

    .faq-heading p {
        font-size: 14px;
        line-height: 1.8;
    }

    .faq-content {
        flex-direction: column;
        gap: 30px;
    }

    .faq-image {
        width: 100%;
        max-height: 380px;
    }
/* 
    .faq-image img {
        min-height: 380px;
        border-radius: 18px;
    } */

    .faq-list {
        width: 100%;
        gap: 8px;
    }

    .faq-question {
        min-height: 58px;
        padding: 14px 18px;
        gap: 15px;
    }

    .faq-question span {
        font-size: 14.5px;
    }

    .faq-question i {
        font-size: 13px;
    }

    .faq-answer-content {
        padding: 16px 18px;
        font-size: 13.5px;
        margin: 0 18px 18px;
        line-height: 1.9;
    }

}

/* ==========================================
                MOBILE (480px - 600px)
========================================== */

@media (max-width: 768px) {

    .faq-content {
        flex-direction: column;

        gap: 30px;
    }


    .faq-image,
    .faq-list {
        width: 100%;
    }


    .faq-image {
        height: 350px;

        align-self: auto;
    }


    .faq-image img {
        width: 100%;
        height: 100%;

        object-fit: cover;
    }

}

/* ==========================================
            SMALL MOBILE (360px - 480px)
========================================== */

@media (max-width: 480px) {

    .faq-section {
        padding: 30px 10px;
    }

    .faq-heading h2 {
        font-size: 22px;
    }

    .faq-heading p {
        font-size: 12.5px;
        line-height: 1.8;
    }

    .faq-image {
        height: 280px;
        border-radius: 14px;
    }

    /* .faq-image img {
        min-height: 280px;
        border-radius: 14px;
    } */

    .faq-question {
        min-height: 50px;
        padding: 11px 14px;
        gap: 10px;
    }

    .faq-question span {
        font-size: 13.5px;
        line-height: 1.7;
    }

    .faq-question i {
        font-size: 12px;
    }

    .faq-answer-content {
        padding: 12px 14px;
        font-size: 12.5px;
        margin: 0 14px 14px;
        line-height: 1.8;
        border-radius: 6px;
    }

}

/* ==========================================
            VERY SMALL (max-width: 360px)
========================================== */

@media (max-width: 360px) {

    .faq-section {
        padding: 25px 8px;
    }

    .faq-heading h2 {
        font-size: 19px;
    }

    .faq-heading p {
        font-size: 11.5px;
    }

    .faq-image {
        max-height: 230px;
        border-radius: 12px;
    }

    /* .faq-image img {
        min-height: 230px;
        border-radius: 12px;
    } */

    .faq-question {
        min-height: 46px;
        padding: 10px 12px;
        gap: 8px;
    }

    .faq-question span {
        font-size: 12.5px;
    }

    .faq-question i {
        font-size: 11px;
    }

    .faq-answer-content {
        padding: 10px 12px;
        font-size: 11.5px;
        margin: 0 12px 12px;
        line-height: 1.8;
    }

}

/* ==========================================
              ARTICLE SECTION
========================================== */

.article-section {
    width: 100%;

    padding-top: 60px;

    background-color: #ffffff;

    direction: rtl;
}


/* ==========================================
              ARTICLE CONTAINER
========================================== */

.article-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    padding: 0 20px;
}


/* ==========================================
               ARTICLE CONTENT
========================================== */

.article-content {
    width: 100%;

    padding: 40px 50px 55px;

    text-align: center;
}


/* ==========================================
                    TITLE
========================================== */

.article-content h2 {
    margin: 0 0 35px;

    color: #07376f;

    font-size: 28px;
    font-weight: 700;

    line-height: 1.7;
}


/* ==========================================
                 ARTICLE TEXT
========================================== */

.article-text {
    width: 100%;

    max-width: 1050px;

    margin: 0 auto;
}


.article-text p {
    margin: 0;

    color: #53647a;

    font-size: 17px;
    font-weight: 400;

    line-height: 2.2;

    text-align: center;
}


/* ==========================================
               MORE ARTICLE TEXT
========================================== */

.article-more-text {
    display: grid;

    grid-template-rows: 0fr;

    opacity: 0;

    transition:
        grid-template-rows 0.5s ease,
        opacity 0.35s ease,
        margin-top 0.5s ease;

    margin-top: 0;
}


.article-more-text > * {
    overflow: hidden;
}


.article-more-text p + p {
    margin-top: 15px;
}


/* ACTIVE */

.article-content.active .article-more-text {
    grid-template-rows: 1fr;

    opacity: 1;

    margin-top: 20px;
}


/* ==========================================
                DIVIDER AREA
========================================== */

.article-divider {
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;

    margin-top: 40px;
}


/* LINE */

.article-divider::before {
    content: "";

    position: absolute;

    top: 50%;
    right: 0;

    width: 100%;
    height: 1px;

    background-color: #b7c2cf;

    transform: translateY(-50%);
}


/* ==========================================
              CONTINUE BUTTON
========================================== */

.article-toggle-button {
    position: relative;
    z-index: 2;

    display: inline-flex;
    justify-content: center;
    align-items: center;

    gap: 10px;

    padding: 10px 30px;

    border: none;

    background-color: #ffffff;

    color: #07376f;

    font-family: 'IranYekan';

    font-size: 16px;
    font-weight: 500;

    cursor: pointer;
}


.article-toggle-button span {
    margin: 0;
}


.article-toggle-button i {
    margin: 0;

    font-size: 13px;

    transition: transform 0.4s ease;
}


/* ROTATE ARROW */

.article-content.active
.article-toggle-button i {

    transform: rotate(180deg);
}


/* ==========================================
             ALL ARTICLES AREA
========================================== */

.all-articles-area {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;

    margin-top: 20px;

    padding: 25px 20px;

    background-color: #eeeeee;
}


/* ==========================================
             ALL ARTICLES BUTTON
========================================== */

.all-articles-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;

    gap: 12px;

    min-width: 230px;

    padding: 14px 28px;

    border-radius: 8px;

    background-color: #07376f;

    color: #ffffff !important;

    text-decoration: none !important;

    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}


.all-articles-button span {
    margin: 0;

    font-size: 15px;
    font-weight: 500;
}


.all-articles-button i {
    margin: 0;

    font-size: 18px;
}


/* HOVER */

.all-articles-button:hover {
    background-color: #052d5c;

    transform: translateY(-2px);
}


/* ==========================================
                   TABLET
========================================== */

@media (max-width: 768px) {

    .article-section {
        padding-top: 40px;
    }


    .article-content {
        padding: 30px 20px 45px;
    }


    .article-content h2 {
        margin-bottom: 25px;

        font-size: 24px;
    }


    .article-text p {
        font-size: 15px;

        line-height: 2.1;
    }


    .article-divider {
        margin-top: 30px;
    }

}


/* ==========================================
                SMALL MOBILE
========================================== */

@media (max-width: 480px) {

    .article-container {
        padding: 0 12px;
    }


    .article-content {
        padding: 25px 5px 35px;
    }


    .article-content h2 {
        font-size: 20px;

        line-height: 1.8;
    }


    .article-text p {
        font-size: 14px;

        line-height: 2;
    }


    .article-toggle-button {
        padding: 8px 18px;

        font-size: 14px;
    }


    .all-articles-area {
        padding: 20px 15px;
    }


    .all-articles-button {
        width: 100%;
        max-width: 300px;

        min-width: 0;

        padding: 13px 20px;
    }

}

/* === Media Khodro VI form extras === */
.mk-vehicle-inspection .mk-vi-form-step2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 12px;
}

.mk-vehicle-inspection .mk-vi-form-step2[hidden] {
  display: none !important;
}

.mk-vehicle-inspection .inspection-form input[type="text"],
.mk-vehicle-inspection .inspection-form input[type="tel"],
.mk-vehicle-inspection .inspection-form input[type="email"] {
  width: 100%;
  border: none;
  background: transparent;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  color: inherit;
  padding: 0 36px 0 28px;
  height: 100%;
}

.mk-vehicle-inspection .mk-vi-form-message {
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.7;
}

.mk-vehicle-inspection .mk-vi-form-message--success {
  background: #e8f7ee;
  color: #0f7a3c;
}

.mk-vehicle-inspection .mk-vi-form-message--error {
  background: #fdeeee;
  color: #b42318;
}

.mk-vehicle-inspection .mk-vi-form-message--info {
  background: #eef4ff;
  color: #175cd3;
}

.mk-vehicle-inspection .calculate-button:disabled {
  opacity: 0.7;
  cursor: wait;
}

/* =========================================================
   Media Khodro — layout / spacing / centering fixes
========================================================= */

.mk-vehicle-inspection .inspection-container {
  background-image: url("../../Vehicle-Inspection/images/car-expert-placeholder.jpg");
  background-repeat: no-repeat;
  min-height: 620px;
}

.mk-vehicle-inspection .inspection-container::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    rgba(6, 24, 48, 0.72) 0%,
    rgba(8, 36, 72, 0.78) 45%,
    rgba(8, 47, 99, 0.82) 100%
  );
}

.mk-vehicle-inspection .inspection-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 55px;
}

.mk-vehicle-inspection .inspection-heading h1 {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.mk-vehicle-inspection .inspection-heading p {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.mk-vehicle-inspection .feature-item,
.mk-vehicle-inspection .feature-item i,
.mk-vehicle-inspection .feature-item span {
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.28);
}

.mk-vehicle-inspection .feature-divider {
  background: rgba(255, 255, 255, 0.35);
}

.mk-vehicle-inspection .inspection-heading {
  width: 100%;
}

.mk-vehicle-inspection .inspection-features {
  margin-top: 24px;
  margin-bottom: 0;
}

.mk-vehicle-inspection .inspection-section {
  padding: 40px 30px;
}

.mk-vehicle-inspection .section-title {
  margin-top: 0;
  margin-bottom: 36px;
}

.mk-vehicle-inspection .services {
  padding: 48px 0 40px;
}

.mk-vehicle-inspection .service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.mk-vehicle-inspection .service-card img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  object-fit: contain;
  object-position: center;
}

.mk-vehicle-inspection .pricing {
  padding: 56px 0;
}

.mk-vehicle-inspection .process {
  padding: 56px 0;
}

.mk-vehicle-inspection .process-title {
  margin-bottom: 44px;
}

.mk-vehicle-inspection .why-us-section {
  padding: 56px 20px;
}

.mk-vehicle-inspection .coverage-section {
  padding: 56px 20px;
}

.mk-vehicle-inspection .report-section {
  padding: 56px 0;
}

.mk-vehicle-inspection .testimonial-section {
  padding: 48px 0;
}

.mk-vehicle-inspection .faq-section {
  padding: 48px 20px;
}

.mk-vehicle-inspection .article-section {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mk-vehicle-inspection .price-card img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1050px) {
  .mk-vehicle-inspection .inspection-content {
    padding: 40px 28px;
  }

  .mk-vehicle-inspection .inspection-section {
    padding: 28px 20px;
  }
}

@media (max-width: 800px) {
  .mk-vehicle-inspection .inspection-section {
    padding: 16px 12px 24px;
  }

  .mk-vehicle-inspection .inspection-container {
    min-height: auto;
  }

  .mk-vehicle-inspection .inspection-container::before {
    background: linear-gradient(
      180deg,
      rgba(6, 24, 48, 0.78) 0%,
      rgba(8, 36, 72, 0.82) 55%,
      rgba(8, 47, 99, 0.86) 100%
    );
  }

  .mk-vehicle-inspection .inspection-content {
    padding: 28px 12px 20px;
  }

  .mk-vehicle-inspection .inspection-features {
    max-width: 100%;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .mk-vehicle-inspection .feature-item span {
    white-space: normal;
    line-height: 1.4;
  }

  .mk-vehicle-inspection .inspection-form-card {
    width: 100%;
    margin: 0 auto 8px;
  }

  .mk-vehicle-inspection .services,
  .mk-vehicle-inspection .pricing,
  .mk-vehicle-inspection .process,
  .mk-vehicle-inspection .report-section {
    padding: 40px 0;
  }

  .mk-vehicle-inspection .why-us-section,
  .mk-vehicle-inspection .coverage-section,
  .mk-vehicle-inspection .faq-section {
    padding: 40px 16px;
  }

  .mk-vehicle-inspection .section-title {
    margin-bottom: 28px;
  }

  .mk-vehicle-inspection .section-title h2,
  .mk-vehicle-inspection .process-title h2 {
    font-size: 28px !important;
    line-height: 1.45;
  }

  .mk-vehicle-inspection .section-title p,
  .mk-vehicle-inspection .process-title p {
    font-size: 15px;
  }

  .mk-vehicle-inspection .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mk-vehicle-inspection .service-card {
    padding: 28px 18px;
  }

  .mk-vehicle-inspection .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mk-vehicle-inspection .process-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .mk-vehicle-inspection .process-line {
    display: none;
  }

  .mk-vehicle-inspection .why-us-container,
  .mk-vehicle-inspection .coverage-container,
  .mk-vehicle-inspection .report-wrapper {
    flex-direction: column;
    gap: 28px;
  }

  .mk-vehicle-inspection .why-us-image-side,
  .mk-vehicle-inspection .why-us-content,
  .mk-vehicle-inspection .coverage-content,
  .mk-vehicle-inspection .coverage-map,
  .mk-vehicle-inspection .report-content,
  .mk-vehicle-inspection .report-preview {
    width: 100%;
    flex: none;
  }

  .mk-vehicle-inspection .why-us-image {
    height: 280px;
  }

  .mk-vehicle-inspection .free-consultation {
    right: 12px;
    left: auto;
    bottom: 12px;
  }

  .mk-vehicle-inspection .report-wrapper {
    direction: rtl;
  }

  .mk-vehicle-inspection .faq-content {
    flex-direction: column;
    gap: 24px;
  }

  .mk-vehicle-inspection .faq-image,
  .mk-vehicle-inspection .faq-list {
    width: 100%;
  }

  .mk-vehicle-inspection .article-content {
    padding: 28px 18px 36px;
  }

  .mk-vehicle-inspection .testimonial-section .swiper-button-next,
  .mk-vehicle-inspection .testimonial-section .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 480px) {
  .mk-vehicle-inspection .inspection-content {
    padding: 24px 8px 16px;
  }

  .mk-vehicle-inspection .inspection-heading h1 {
    font-size: 26px;
  }

  .mk-vehicle-inspection .inspection-features {
    gap: 6px;
  }

  .mk-vehicle-inspection .feature-divider {
    height: 36px;
  }

  .mk-vehicle-inspection .feature-item i {
    font-size: 22px;
    height: 28px;
  }

  .mk-vehicle-inspection .feature-item span {
    font-size: 11px;
  }

  .mk-vehicle-inspection .form-select-wrapper {
    height: 54px;
  }

  .mk-vehicle-inspection .calculate-button {
    height: 54px;
    font-size: 15px;
  }

  .mk-vehicle-inspection .services,
  .mk-vehicle-inspection .pricing,
  .mk-vehicle-inspection .process,
  .mk-vehicle-inspection .report-section {
    padding: 32px 0;
  }

  .mk-vehicle-inspection .why-us-section,
  .mk-vehicle-inspection .coverage-section,
  .mk-vehicle-inspection .faq-section {
    padding: 32px 12px;
  }

  .mk-vehicle-inspection .cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .mk-vehicle-inspection .price-info {
    flex-direction: column;
    text-align: center;
    gap: 14px;
  }
}
