* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing:grayscale;
}


/* 1. GLOBAL VARIABLES & BASE STYLES */
:root {
    .service-section {
        padding: 72px 0 60px;
        background-color: var(--background-white);
        /* text-align: center; */
    }

    /* Use a centered grid so cards are equal width (matches Figma) */
    .service-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 28px;
        align-items: start;
        /* max-width: 1120px; */
        margin: 18px auto 0;
        padding: 0 6px 10px;
    }

    .service-card {
        background-color: var(--background-white);
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 14px 32px rgba(15, 15, 15, 0.06);
        transition: transform 0.22s ease, box-shadow 0.22s ease;
        display: flex;
        flex-direction: column;
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 26px 60px rgba(12, 12, 12, 0.10);
    }

    .service-image-container {
        width: 100%;
        height: 260px;
        /* position: relative; */
        /* overflow: hidden; */
    }

    .service-image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
    }

    /* Dark caption bar over the bottom of the image */
    .service-caption {
        /* position: absolute; */
        left: 0;
        right: 0;
        bottom: 0;
        padding: 16px 18px;
        /* background: rgba(18, 18, 18, 0.94); */
        color: #000000;
        font-weight: 700;
        font-size: 18px;
        line-height: 1.05;
    }

    /* White info panel that follows the image */
    .service-description {
        /* background: #fff; */
        /* padding: 22px 20px 28px; */
        padding: 0px 20px 28px;
        color: var(--text-medium);
        font-size: 15px;
        line-height: 1.7;
        flex: 1 0 auto;
    }

    /* Keep the left card description dark to match the Figma sample */
    
    .service-grid-box:hover {
        background: #000;
        color: #fff;
       
    }
    .service-grid-box:hover .service-caption,
    .service-grid-box:hover .service-description {
        color: #fff;
    }
}

  /* ------------------- DESKTOP HEADER ------------------- */
  .desktop-header {
    width: 100%;
    /* background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px); */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .desktop-header .logo img {
    width: 140px;
    height: auto;
  }

  .desktop-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 30px;
    border-radius: 40px;
  }

  .desktop-nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .desktop-nav ul li a:hover {
    color: #f4a61c;
  }

  .btn-contact {
    background-color: #f4a61c;
    color: #fff;
    padding: 10px 22px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .btn-contact:hover {
    background-color: #d99016;
  }

  /* ------------------- MOBILE HEADER ------------------- */
  .mobile-header {
    display: none;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 1001;
    padding: 15px 20px;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-header .logo img {
    width: 120px;
    height: auto;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: 0.3s;
  }

  /* Mobile Nav Drawer */
  .mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    text-align: center;
    padding: 25px 0;
    z-index: 999;
  }

  .mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .mobile-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
  }

  .mobile-nav ul li a:hover {
    color: #f4a61c;
  }

  .mobile-nav.active {
    display: block;
    animation: slideDown 0.3s ease;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
@media (max-width: 1024px) {
      /* Make the header compact and fixed so it doesn't overlap hero content */
      .desktop-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 18px;

        border-radius: 0; /* remove rounded pill */
        z-index: 1200;
      }

      /* Ensure nav items wrap instead of creating a huge rounded container */
      .desktop-nav {
        flex: 1 1 auto;
        margin: 0 12px;
      }

      .desktop-nav ul {
        display: flex;
        gap: 14px;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap; /* allow wrapping on narrow widths */
        margin: 0;
        padding: 0;
        list-style: none;
      }

      .desktop-nav li {
        margin: 0;
      }

      .desktop-nav li a {
        display: inline-block;
        padding: 8px 10px;
        white-space: nowrap;
        border-radius: 6px;
        background: transparent; /* remove any large nav bubble background */
      }

      /* Keep the CTA visible and aligned right */
      .btn-contact {
        flex: 0 0 auto;
        margin-left: 8px;
        padding: 8px 14px;
      }


      /* small tweak for the mobile header toggle so it doesn't conflict */
      .mobile-header {
        z-index: 1300;
      }
    }
  /* ------------------- RESPONSIVE CONTROL ------------------- */
  @media (max-width: 900px) {
    .desktop-header {
      display: none;
    }
    .mobile-header {
      display: flex;
    }
  }

  @media (min-width: 901px) {
    .mobile-header {
      display: none;
    }
    .mobile-nav {
      display: none !important;
    }
  }
  /* ------------------- RESPONSIVE CONTROL ------------------- */


.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 10px;
    gap: 20px;
    max-width: 1400px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--text-light);
}

.logo-img {
    height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-copy {
    display: none; /* Hide copy on smaller widths; shown on large screens via media query */
    color: var(--text-light);
}

.logo-subtext {
    font-size: 11px;
    line-height: 1.1;
    opacity: 0.9;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.logo-subtext-small {
    font-size: 10px;
    opacity: 0.8;
    letter-spacing: 0.4px;
}
.testimonials-section{
    padding: 70px 0 70px 0;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    flex-wrap: nowrap; /* keep items on one line */
    white-space: nowrap;
}

/* Nav container background to match Figma rounded pill */
.main-nav {
    background: #ffffff42;
    padding: 8px 18px;
    border-radius: 40px;
    /* backdrop-filter: blur(4px); */
    height: 60px;
}

/* Center the nav on large screens (keeps logo left and contact right) */
@media (min-width: 900px) {
    .main-nav {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 14px;
    transition: color 0.15s, background 0.15s;
    letter-spacing: 0.6px;
    border-radius: 20px;
}

.main-nav a:hover {
    color: var(--primary-orange);
    background: rgba(255, 255, 255, 0.04);
}

.btn-contact {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-orange);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 999px;
    transition: transform 0.14s ease, box-shadow 0.14s ease;
    font-size: 15px;
    letter-spacing: 0.6px;
    box-shadow: 0 6px 18px rgba(255, 140, 0, 0.18);
}

.btn-contact:hover {
    transform: translateY(-2px);
}

/* Make the header background slightly darker for readability */
.main-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.0));
    pointer-events: none;
    z-index: -1;
}

/* 3. HERO SECTION (Airport Rides from $79) */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('Images/slider1.png');
    /* Default image */
    background-size: cover;
    background-position: center bottom;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 150px;
    padding-bottom: 50px;
    position: relative;
    color: var(--text-light);
    transition: background-image 1s ease-in-out;
    overflow: hidden;
}

.hero-content-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 20px;
}

/* Hero text */
.hero-subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.9;
    text-transform: uppercase;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title .orange-text {
    color: var(--primary-orange);
}

.hero-title .stars {
    color: var(--primary-orange);
    font-size: 0.9em;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    /* max-width: 700px; */
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    margin-bottom: 30px;
}

.btn-hero-primary {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--primary-orange);
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    margin-right: 20px;
    transition: background-color 0.3s;
}

.btn-hero-secondary {
    display: inline-block;
    padding: 15px 40px;
    color: var(--text-light);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--text-light);
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero-section .hero-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 28px;
    justify-items: start;
    align-items: center;
    max-width: 980px;
    margin: 18px auto 0;
    padding: 0 12px;
}
.hero-section .hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;                      /* vertical breathing room */
    white-space: normal;                 /* allow wrapping */
    word-break: break-word;              /* safe break for long words/links */
    overflow-wrap: anywhere;             /* additional safety on long strings */
    font-weight: 600;
}

.hero-section .hero-badges span i {
    /* make icons a fixed-size circle so text aligns consistently */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 50%;
    background: rgba(255,165,0,0.12); /* subtle orange halo */
    color: var(--primary-orange);
    font-size: 14px;
}

.hero-section .hero-badges span:hover i {
    background: rgba(255,165,0,0.18);
}

/* Slider Dots */
.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.hero-slider-dots .dot {
    height: 12px;
    width: 12px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-slider-dots .dot.active {
    background: var(--primary-orange);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
        padding-top: 120px;
    }

    .header-container {
        padding: 14px 18px;
    }

    .logo-img {
        height: 44px;
    }

    .main-nav ul {
        gap: 14px;
    }

    .main-nav a {
        font-size: 14px;
        padding: 8px 10px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        margin: 0;
    }

    .hero-badges {
        flex-direction: column;
        gap: 10px;
        font-size: 14px;
    }

    .hero-content {
        padding: 0 15px;
    }
    .booking-form-area{
        width: 100%;
    }
}

@media (min-width: 1100px) {
    .logo-copy { display: block; }
    .header-container { padding: 30px 40px; }
    .main-nav a { font-size: 16px; }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        gap: 12px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 20px;
        font-size: 16px;
    }
}

/* === SLIDER DOTS BELOW HERO === */
.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.hero-slider-dots .dot {
    height: 12px;
    width: 12px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}

.hero-slider-dots .dot.active {
    background: var(--primary-orange);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-section .hero-badges {
        /* 2 columns on tablet and small desktop for better wrapping */
        grid-template-columns: repeat(2, minmax(0, 1fr));
        text-align: left;
        gap: 10px 18px;
    }
    .hero-section .hero-badges span {
        justify-content: center;
    }

    /* Extra-small screens: stack into a single column for readability */
    @media (max-width: 480px) {
        .hero-section .hero-badges {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 10px 0;
        }
        .hero-section .hero-badges span {
            justify-content: center;
        }
    }
}

/* 4. CONTENT SECTION 1 (Welcome To TESRIDES) */
.welcome-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

.welcome-container {
    display: flex;
    align-items: center;
    gap: 60px;
    background-color: #f9f9f9;
}

.welcome-section .image-column {
    flex: 1.1;
    max-width: 48%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Image card: fixed square with white inner frame + orange glow */
.welcome-section .image-card {
    width: 560px;
    background: #fff;
    padding: 14px; /* inner frame thickness */
    /* position: relative; */
    z-index: 1;
}

.welcome-section .image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Orange glow behind the card */
.welcome-section .image-column::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 8px;
    bottom: 8px;
    margin: auto;
    /* width: 640px;
    height: 640px; */
    z-index: 0;
    filter: blur(30px);
}

/* Quote block styling */
.safety-quote {
    padding-left: 34px;
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    position: relative;
    border-left: 2px solid #e8e8e8;
}

.safety-quote .quote-marker {
    position: absolute;
    left: -34px;
    top: 0;
    font-size: 28px;
    color: var(--primary-orange);
    background: transparent;
}

/* Ensure the welcome text column is white with dark text (some rules set .section-description color to white globally) */
.welcome-section .text-column {
    flex: 1;
    padding-left: 40px;
    text-align: left;
    color: var(--text-dark);
}

.welcome-section .section-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 6px;
}

.welcome-section .section-subtitle {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 22px;
}

.welcome-section .section-description {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.85;
    margin-bottom: 28px;
}


.welcome-section .text-column {
    flex: 1;
    padding-left: 20px;
    text-align: left;
}

.welcome-section .section-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 30px;
}

.welcome-section .section-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.safety-quote {
    padding-left: 30px;
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    position: relative;
    border-left: 2px solid var(--primary-orange);
}

.quote-marker {
    position: absolute;
    top: -5px;
    left: 0;
    font-size: 30px;
    color: var(--primary-orange);
    line-height: 1;
}

/* 5. CONTENT SECTION 2 (Luxury Rides. Professional Chauffeurs.) */
.luxury-rides-section {
    padding: 90px 0 100px;
    background-color: var(--background-white);
}

.luxury-rides-container {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.luxury-rides-section .text-column {
    flex: 1 1 520px;
    max-width: 56%;
    padding-right: 30px;
    text-align: left;
    /* Ensure text column has no dark background or overlay */
    background: transparent !important;
    color: var(--text-dark) !important;
}

/* Make sure section-description uses dark text here (some other rules set it to white) */
.luxury-rides-section .section-description {
    color: var(--text-medium) !important;
}

.luxury-rides-section .main-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.02;
    margin: 0 0 10px 0;
    color: var(--text-dark);
}

.luxury-rides-section .main-title.orange-title {
    color: var(--primary-orange);
    margin-top: 6px;
    display: block;

}

.luxury-rides-section .section-description {
    font-size: 18px;
    line-height: 1.9;
    color: var(--text-medium);
    margin: 22px 0 32px 0;
    max-width: 640px;
}

/* Pill style button for this section */
.luxury-rides-section .btn-primary {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(180deg, var(--primary-orange), #ff8a1a);
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(255,140,0,0.18);
    border: 0;
}

.luxury-rides-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(255,140,0,0.22);
}

.luxury-rides-section .image-column {
    flex: 1 1 420px;
    min-width: 360px;
    display: flex;
    justify-content: center;
}

/* White card that holds the two images */
.split-image-container {
    display: flex;
    gap: 18px;
    background: #ffffff;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
    align-items: stretch;
    width: 100%;
    max-width: 720px;
    height: 420px;
    overflow: hidden;
}

.split-image-container figure {
    flex: 1;
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

/* small decorative diamond at bottom-left of right image like screenshot */
.split-image-container figure.right::after {
    content: '';
    position: absolute;
    left: 12px;
    bottom: 12px;
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.85);
    transform: rotate(45deg);
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .luxury-rides-section .main-title { font-size: 44px; }
    .split-image-container { height: 360px; }
    .luxury-rides-section .text-column { max-width: 100%; }
    .luxury-rides-section .image-column { min-width: 320px; }
}

@media (max-width: 700px) {
    .luxury-rides-container { flex-direction: column-reverse; gap: 30px; }
    .luxury-rides-section .main-title { font-size: 36px; text-align: left; }
    .split-image-container { width: 100%; max-width: 100%; height: 300px; }
    .luxury-rides-section .text-column { padding-right: 0; }
    .luxury-rides-section .section-description { margin-right: 0; }
}

/* Services responsive: 2 columns on medium, 1 on small */
@media (max-width: 1100px) {
    .service-grid { grid-template-columns: repeat(2, 1fr); max-width: 900px; }
    .service-image-container { height: 240px; }
}

@media (max-width: 640px) {
    .service-grid { grid-template-columns: 1fr; gap: 18px; max-width: 720px; }
    .service-image-container { height: 220px; }
    .service-caption { font-size: 16px; padding: 12px 14px; }
    .service-description { padding: 18px; }
}

/* 6. SERVICES GRID (Luxury Transportation, Tailored to You) */
.service-section {
    padding: 60px 0;
    background-color: var(--background-white);
    /* text-align: center; */
}

.service-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: space-between;
}

.service-card {
    width: calc(25% - 15px);
    min-width: 260px;

/* === WHY CHOOSE US SECTION === */
.choose-us-section {
    background: #1f1f1f; /* deep charcoal */
    color: #ffffff;
    padding: 64px 0;
}

.choose-us-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 36px;
    align-items: center;
    padding: 0 20px;
}

.choose-us-left {
    padding: 40px 0;
}

.choose-us-main-title {
    font-size: 38px;
    font-weight: 800;
    color: #ff8c00;
    margin-bottom: 8px;
}

.choose-us-subtitle {
    color: #d0d0d0;
    margin-bottom: 28px;
    font-size: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 28px;
}

.feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-icon {
    width: 56px;
    height: 56px;
    flex: 0 0 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.04);
}

.feature-icon img { display: none; }

.feature-icon i {
    font-size: 22px;
    color: #ff8c00; /* orange icon color */
    display: block;
    line-height: 1;
}

.feature-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    /* line-height: 1.15; */
}

.feature-description {
    margin: 6px 0 0 0;
    color: #bfbfbf;
    font-size: 14px;
    /* line-height: 1.5; */
}

.choose-us-right {
    min-height: 560px;
    background-image: url('Images/img15.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 6px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.45);
    overflow: hidden;
}

.choose-us-right img.choose-us-right-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .choose-us-content-wrapper { grid-template-columns: 1fr; }
    .choose-us-right { min-height: 360px; order: -1; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 18px 18px; }
}

@media (max-width: 640px) {
    .features-grid { grid-template-columns: 1fr; }
    .choose-us-main-title { font-size: 28px; }
    .choose-us-subtitle { font-size: 14px; }
    .choose-us-right { min-height: 260px; }
}

    flex-shrink: 0;
    background-color: var(--background-white);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.service-image-container {
    /* position: relative; */
    width: 100%;
    height: 280px;
    /* overflow: hidden; */
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-caption {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    /* width: 100%; */
    /* background-color: rgba(31, 31, 31, 0.95); */
    color: var(--background-white);
    padding: 20px 22px;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.05;
}

.service-description {
    padding: 22px;
    font-size: 0.95em;
    color: var(--text-medium);
    /* min-height: 100px; */
    /* background: #fff; */
}

.service-card + .service-card {
    margin-left: 0;
}

/* 7. STEPS SECTION (Booking is Simple) */
.booking-simple-section {
    padding-top: 60px;
    padding-bottom: 80px;
    text-align: center;
    background-color: var(--background-white);
}

.booking-simple-section .section-title {
    font-size: 64px;
    font-weight: 800;
    color: #ff8c00;
    margin-bottom: 18px;
    text-align: left; /* align like Figma */
    margin-left: 60px;
}

.booking-simple-section .section-intro {
    max-width: 725px; /* narrower intro like Figma */
    margin: 0 0 36px 60px; /* left-aligned under title */
    color: #222;
    font-size: 18px;
    text-align: left;
}

.booking-timeline {
    width: calc(100% - 120px);
    /* max-width: 1020px; */
    margin: 0 0 60px 60px; /* left aligned under title */
    position: relative;
    padding: 0 20px;
    box-sizing: border-box;
}

.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 20px;
}

.progress-bar .line {
    position: absolute;
    width: 100%;
    height: 6px;
    background-color: #e0e0e0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    left: 0;
}

/* Filled segment on the left portion */
.progress-bar .line::before {
    content: '';
    position: absolute;
    width: 42%; /* filled progress portion */
    height: 100%;
    background-color: #2b2b2b; /* dark line */
    z-index: 2;
    left: 0;
}

.dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    position: relative;
    z-index: 3;
    display: block;
    background-color: #e0e0e0;
    border: 3px solid #e0e0e0;
}

.dot.active {
    background-color: #ff9a2a;
    border: 4px solid #fff;
    width: 12px;
    height: 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    max-width: calc(100% - 120px);
    margin: 0 0 40px 60px; /* align steps under title */
    align-items: start;
}

.step-item {
    text-align: center;
    padding: 10px 6px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Booking step icons: unified small circular white badge with thin dark green border */
.icon-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 0 auto 18px; */
    background: #ffffff;
    border: 2px solid #0e3a36; /* dark green thin border to match design */
    box-shadow: 0 6px 14px rgba(2, 26, 24, 0.06);
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
}

.icon-placeholder img {
    display: none;
}

.icon-placeholder i {
    font-size: 26px;
    color: #0e3a36; /* dark green icon color */
    line-height: 1;
}

.step-title {
    font-size: 18px;
    margin: 8px 0 12px;
    color: #222222;
    font-weight: 700;
}

.step-description {
    max-width: 260px;
    color: #666666;
    line-height: 1.6;
    margin: 0 auto;
    font-size: 15px;
}

.step-description {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-medium);
}

/* 8. EXPECT SECTION (What You Can Expect) */
.expect-section {
    background-color: #111;
    color: var(--text-light);
    padding: 80px 0;
}

.expect-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 560px;
    gap: 48px;
    align-items: center;
    padding: 0 20px;
}

.expect-section .text-column {
    flex: 1;
    padding-right: 10px;
}

.expect-section .section-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 18px;
    text-align: left;
    line-height: 1.02;
}

.expect-section .section-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #e8e8e8;
    margin-bottom: 34px;
    max-width: 680px;
}

/* Checklist - two columns with icon circles */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 28px;
    max-width: 760px;
}

.checklist-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    font-size: 16px;
    color: #f2f2f2;
    line-height: 1.5;
}

.check-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    font-weight: 700;
    font-size: 18px;
    flex: 0 0 44px;
    background: transparent;
    box-shadow: 0 6px 20px rgba(0,0,0,0.45);
}

/* Right image column: tall image with subtle left fade */
.expect-section .image-column {
    position: relative;
    height: 520px;
    overflow: hidden;
    border-radius: 6px;
}

.expect-section .image-column img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* subtle gradient overlay on top of image (left side) to blend with dark panel) */
.expect-section .image-column::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 32%;
    background: linear-gradient(90deg, rgba(17,17,17,0.95), rgba(17,17,17,0.0));
    pointer-events: none;
}
/* FAQ */
.faq-right {
    max-width: 700px;
    width: 100%;
  }

  .faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .faq-item:last-child {
    border-bottom: none;
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
    color: #000;
  }

  .faq-icon {
    font-size: 22px;
    font-weight: 500;
    color: #f4a61c;
    transition: transform 0.3s ease;
  }

  .faq-answer {
    display: none;
    padding-top: 10px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
  }

  .faq-item.active .faq-answer {
    display: block;
    animation: fadeIn 0.3s ease;
  }

  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
  }
/* FAQ */

 /* --- FAQ SECTION STYLING (DARK THEME) --- */

 .faq-section {
    background-color: var(--text-dark);
    /* Dark background */
    color: var(--background-white);
    /* White text */
    padding: 80px 0;
}

.faq-content-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.faq-left {
    flex: 1;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--background-white);
}

.faq-image-container {
    width: 100%;
    /* Placeholder styling */
    background-color: #333;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3 / 2;
    /* Aspect ratio matching the chauffeur image */
}

.faq-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-right {
    flex: 1;
}

.faq-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--faq-border-dark);
    /* Dark grey line separator */
}

.faq-item:first-of-type {
    padding-top: 0;
    /* Remove top padding for the first item */
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1em;
    font-weight: 500;
    cursor: pointer;
    color: var(--background-white);
    padding: 10px 0;
    /* Added padding for better click area */
}

.faq-answer {
    padding: 10px 0 10px 0;
    font-size: 0.95em;
    color: var(--faq-text-light);
    /* Lighter grey text for body content */
}

.faq-icon {
    font-size: 1.5em;
    font-weight: 300;
    margin-left: 10px;
}

.contact-booking-section {
    padding: 60px 0;
    background-color: var(--background-white);
}

.booking-content-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: auto;
    align-items: flex-start;
}

/* Left Column - Contact Details */
.contact-details {
    flex: 1;
    padding-right: 40px;
}

.section-title {
    font-size: 2.2em;
    color: var(--primary-orange);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.1em;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.info-group {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.icon-placeholder {
    font-size: 22px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-right: 15px; */
    color: var(--text-dark);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--text-dark);
}
.icon-placeholders {
    font-size: 22px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #252525;
    /* margin-right: 15px; */
    color: var(--text-dark);
    border-radius: 50%;
    box-shadow: 0 0 0 1px var(--text-dark);
}

.icon-placeholders i{
    color: #fff;
}

.info-text {
    font-size: 1em;
    color: var(--text-dark);
}

.follow-us-title {
    font-size: 1.1em;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: var(--text-dark);
    color: var(--background-white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.2s;
}

.social-icons a:hover {
    background-color: var(--primary-orange);
}

/* Right Column - Booking Form */
.booking-form-area {
    flex: 1;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.booking-form .submit-button {
    display: block;         /* allow margin auto to center */
    margin: 18px auto 0;    /* vertical spacing + horizontal center */
    width: fit-content;     /* keep pill-size to content */
    padding-left: 30px;     /* keep visual padding */
    padding-right: 30px;
    text-align: center;
}
/* ensure any other wide rules don't push it left on small screens */
.booking-form .submit-button,
.contact-booking-section .submit-button,
.luxury-rides-section .submit-button {
    box-sizing: border-box;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.single-col {
    flex: 0 0 100%;
}

label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.9em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1em;
    color: var(--text-dark);
    background-color: var(--background-white);
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}

input::placeholder,
textarea::placeholder {
    color: #999;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary-orange);
    outline: none;
    box-shadow: 0 0 0 3px var(--focus-ring);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.select-wrapper,
.input-icon-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper select {
    padding-right: 40px;
}

.select-arrow {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-dark);
}

.input-icon-wrapper input {
    padding-right: 40px;
}

.input-icon {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 1.2em;
    color: var(--text-dark);
}

/* Submit Button */
.submit-button {
    background-color: var(--primary-orange);
    color: var(--background-white);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    text-transform: capitalize;
    transition: background-color 0.2s;
    width: fit-content;
}

.submit-button:hover {
    background-color: #e07b00;
}

 /* Footer */
 footer {
    background-color: #222;
    color: #fff;
    padding: 50px 20px 20px 20px;
    font-family: 'Roboto', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    max-width: 1255px;
    margin: auto;
    gap: 30px;
}

.footer-company h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer-company p {
    font-size: 14px;
    margin: 4px 0;
    line-height: 1.4;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    /* display: inline-block; */
    margin-right: 10px;
}

.social-icons img {
    width: 25px;
    height: 25px;
}

.footer-company .social-icons a {
    /* display: inline-block; */
    margin-right: 10px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #FFFFFF;
}

.footer-company .social-icons i {
    color: #252525;
}

.footer-links,
.footer-services,
.footer-contact {
    flex: 1;
    min-width: 180px;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    color: #f90;
    margin-bottom: 15px;
    font-size: 16px;
}

.footer-links ul,
.footer-services ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-services ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

.footer-links ul li a:hover,
.footer-services ul li a:hover {
    color: #f90;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid #444;
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    font-size: 13px;
    color: #aaa;
}


/* Responsive - stack on smaller screens */
@media (max-width: 1024px) {
    .expect-container {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 18px;
    }

    .expect-section .section-title {
        font-size: 42px;
        text-align: center;
    }

    .expect-section .section-intro {
        text-align: center;
        margin: 0 auto 24px auto;
    }

    .expect-section .image-column {
        height: 420px;
        border-radius: 8px;
    }

    .checklist-grid {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .checklist-item { max-width: 720px; }
}

/* 9. TESTIMONIALS 1 (Trusted by San Diego's Finest Travelers) */
.testimonial-intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.testimonial-intro-container {
    display: flex;
    align-items: flex-start; /* top align columns */
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px; /* add vertical spacing similar to Figma */
}

/* Left: framed image card */
.testimonial-intro-section .image-column {
    flex: 0 0 52%;
    max-width: 52%;
    display: flex;
    justify-content: center;
}

.testimonial-intro-section .image-column .image-card {
    width: 100%;
    background: #fff;
    padding: 12px; /* slightly smaller frame */
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-radius: 6px;
    overflow: hidden;
}

.testimonial-intro-section .image-column img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0; /* match Figma image edges inside white frame */
}

/* Right: heading and text */
.testimonial-intro-section .text-column {
    flex: 0 0 44%;
    max-width: 44%;
    padding-left: 60px; /* more breathing room */
    text-align: left;
    display: flex;
    flex-direction: column;
}

.testimonial-intro-section .section-title {
    font-size: 36px;
    line-height: 1.02;
    font-weight: 800;
    color: #ff8c00;
    margin: 0 0 22px 0;
    
}

.testimonial-intro-section .section-description {
    font-size: 16px;
    line-height: 1.8;
    color: #111;
    max-width: 520px;
    margin: 0 auto 28px auto; /* center paragraph block under the title */
}

.testimonial-intro-section .btn-primary {
    display: inline-block;
    padding: 14px 34px;
    background: linear-gradient(180deg,#ff9a2a,#ff8c00);
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(255,140,0,0.16);
    align-self: flex-start; /* keep CTA left aligned beneath the paragraph */
    margin-top: 12px;
}

@media (max-width: 900px) {
    .testimonial-intro-container { flex-direction: column; gap: 28px; }
    .testimonial-intro-section .image-column,
    .testimonial-intro-section .text-column { max-width: 100%; flex: 1 1 auto; padding-left: 0; }
    .testimonial-intro-section .section-title { font-size: 32px; }
    .testimonial-intro-section .section-description { max-width: 100%; }
}

/* Force text-column to be transparent and on top in case another rule adds a dark panel */
.testimonial-intro-section .text-column {
    background: transparent !important;
    position: relative;
    z-index: 3;
    color: #111 !important;
}

.testimonial-intro-section .text-column::before,
.testimonial-intro-section .text-column::after {
    display: none !important;
    content: none !important;
}

/* Make CTA pill slightly smaller and aligned to left like the Figma sample */
.testimonial-intro-section .btn-primary {
    padding: 12px 26px;
    box-shadow: 0 8px 20px rgba(255,140,0,0.12);
    margin-left: 0;
}

/* 10. TESTIMONIALS 2 (Loved by Clients Across San Diego) */
.testimonials-slider-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--background-white);
}

.testimonials-slider-track {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    overflow-x: hidden;
}

.testimonial-card {
    flex: 1;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    text-align: left;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.light-card {
    background-color: var(--background-white);
    border: 1px solid #e0e0e0;
    color: var(--text-dark);
}

.dark-card {
    background-color: var(--card-dark-bg);
    color: var(--text-light);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-orange);
    color: var(--background-white);
    font-size: 36px;
    line-height: 0.9;
    border-radius: 5px;
    text-align: center;
    font-family: serif;
    padding-top: 5px;
    z-index: 10;
}

.quote-text {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 15px;
    flex-grow: 1;
}

.client-name {
    font-weight: 700;
    font-size: 16px;
    margin-top: 15px;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
}

.rating {
    margin: 20px 0 5px;
    font-size: 20px;
    text-align: center;
}

.rating .star {
    color: gold;
    letter-spacing: 2px;
}

.rating .star.empty {
    color: #e0e0e0;
}

.dark-card .rating .star {
    color: gold;
}

.slider-dots {
    text-align: center;
    margin-top: 20px;
}

.slider-dots .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #cccccc;
    border-radius: 50%;
    margin: 0 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.slider-dots .dot.active {
    width: 10px;
    height: 10px;
    background-color: var(--text-dark);
}

/* 11. SAFETY SECTION (Your Safety, Our Priority) */
.safety-priority-section {
    padding: 80px 0;

    /* Fix: ensure decorative quote icon isn't clipped by card container */
    /* Make cards allow overflow so the top-centered quote circle can protrude */
    .testimonial-card,
    .testimonial-slider,
    .testimonial-slider-track,
    .testimonial-slider .testimonial-card {
        position: relative; /* ensure absolute children are positioned to this */
        overflow: visible !important; /* allow the orange quote circle show above */
    }

    /* Perfect circular orange badge centered above each testimonial card */
    .testimonial-card .quote-icon {
        position: absolute;
        top: -32px; /* lifts the circle above the card; tweak if needed */
        left: 50%;
        transform: translateX(-50%);
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: #ff8c00; /* primary orange */
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 12px 30px rgba(15, 15, 15, 0.12);
        z-index: 12;
        pointer-events: none;
        border: 6px solid #fff; /* white rim to separate from card */
    }

    /* Inner quote icon styling (ensure contrast on both light and dark cards) */
    .testimonial-card .quote-icon i,
    .testimonial-card .quote-icon svg,
    .testimonial-card .quote-icon .quote-text {
        color: #fff;
        font-size: 18px;
        line-height: 1;
    }

    /* If the card background is dark and the rim blends, increase rim thickness slightly */
    .testimonial-card.dark-card .quote-icon {
        border-width: 7px;
    }

    /* Smaller circle on narrow viewports */
    @media (max-width: 640px) {
        .testimonial-card .quote-icon {
            top: -24px;
            width: 52px;
            height: 52px;
            border-width: 5px;
        }
        .testimonial-card .quote-icon i,
        .testimonial-card .quote-icon .quote-text {
            font-size: 14px;
        }
    }
    background-color: var(--background-white);
    /* text-align: center; */
}

.safety-priority-section .section-intro {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px;
}

.features-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.feature-box {
    flex: 1;
    text-align: center;
    padding: 0 10px;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-orange);
}

.icon-circle i {
    font-size: 40px;
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    /* margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.3; */
}

.feature-description {
    font-size: 15px;
    /* line-height: 1.6; */
    color: var(--text-medium);
}

/* Serving San Diego & Beyond */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    /* max-width: 1100px; */
    margin: auto;
  }

  .san-card {
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }

  .san-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .san-card .card-content {
    padding: 15px;
    font-size: 16px;
    color: #000;
  }

  /* Active (Black) Card Style */
  .san-card.active {
    background: #000;
    color: #fff;
  }

  .san-card.active .card-content {
    color: #fff;
  }

  /* Hover effect */
  .san-card:hover {
    background-color: #000;
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    color: #fff;
  }
  .san-card:hover .card-content {
    color: #fff;
  }

  @media (max-width: 768px) {
    .san-card img {
      height: 180px;
    }
  }

  @media (max-width: 480px) {
    .san-card img {
      height: 150px;
    }
  }

  .safety {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }

  .safety-box {
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
  }

  .safety-box:hover {
    background-color: #f9f9f9;
    transform: translateY(-5px);
  }

  .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    border: 2px solid #f4a61c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f4a61c;
    font-size: 28px;
  }

  .safety-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
  }

  .safety-text {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    text-align: center;
  }
  /* Serving San Diego & Beyond */
/* ============================================== */
/* RESPONSIVE STYLES */
/* ============================================== */
@media (max-width: 1024px) {
    .main-nav ul {
        gap: 15px;
    }

    .hero-title {
        font-size: 60px;
    }

    .welcome-container,
    .luxury-rides-container,
    .expect-container,
    .testimonial-intro-container {
        flex-direction: column;
        gap: 40px;
    }

    /* Content Columns Stack */
    .welcome-section .image-column,
    .welcome-section .text-column,
    .luxury-rides-section .text-column,
    .testimonial-intro-section .image-column,
    .testimonial-intro-section .text-column {
        max-width: 100%;
        min-width: unset;
        padding: 0;
    }

    /* Stacked Image Column Adjustments */
    .welcome-section .image-column,
    .expect-section .image-column {
        max-width: 600px;
        margin: 0 auto;
    }

    /* Stacked Text Adjustments */
    .welcome-section .text-column,
    .luxury-rides-section .text-column,
    .testimonial-intro-section .text-column {
        text-align: center;
    }

    .safety-quote {
        margin: 30px auto;
        max-width: 500px;
    }

    /* Split Images Stack */
    .split-image-container {
        flex-direction: column;
        height: auto;
        max-height: 800px;
    }

    .split-image-container img {
        width: 100%;
        height: 350px;
    }

    /* Services Grid */
    .service-grid {
        justify-content: flex-start;
        /* Keep scrolling layout on tablet */
    }

    /* Check List */
    .checklist-item {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    /* Features Grid */
    .features-grid {
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px 20px;
    }

    .feature-box {
        flex: 0 0 calc(50% - 20px);
        max-width: 300px;
    }
    .testimonial-item {
        flex: 0 0 280px;
      }
}

@media (max-width: 768px) {
    .main-header {
        position: relative;
        /* Make header static on small screens */
        background-color: var(--nav-bg-dark);
    }

    .header-container {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 15px;
    }

    .main-nav a {
        color: var(--text-light);
    }

    .logo {
        z-index: 1001; /* ensure nav sits above header overlay */
        color: var(--text-light);
        text-align: center;
    }

    .hero-section {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        margin-right: 0;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-badges {
        flex-direction: column;
        gap: 10px;
    }

    /* Services Grid and Features Grid collapse to single column */
    .feature-box {
        flex: 0 0 100%;
        max-width: 400px;
    }

    /* Booking Steps hide timeline */
    .booking-timeline {
        display: none;
    }

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-item {
        max-width: 350px;
        margin-bottom: 30px;
    }

    /* Testimonials stack */
    .testimonials-slider-track {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .testimonial-card {
        width: 100%;
        max-width: 450px;
    }
    .icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
      }
      .faq-content-wrapper{
        flex-direction: column;
        align-items: center;
      }
      .testimonials-section {
        padding: 30px 0 30px 0;
    }
      .safety-priority-section{
        padding: 30px 0;
      }
      .testimonial-grid {
        gap: 20px;
        overflow-x: scroll;
        scroll-behavior: smooth;
      }
      .testimonial-item {
        flex: 0 0 260px;
      }
      .booking-content-wrapper {
        flex-direction: column;
    }
}



/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    transition: background 0.3s, box-shadow 0.3s;
}

header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.logo span {
    color: #f4c430;
}

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    padding: 8px 12px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #f4c430;
}

.contact-btn {
    background: #f4c430;
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.contact-btn:hover {
    background: #e0b700;
}

/* Hero */
#hero {
    background: url('images/hero.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.btn-primary {
    background: #f4c430;
    color: #1a1a1a;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn-primary:hover {
    background: #e0b700;
}

/* Sections */
.section {
    padding: 80px 0;
    text-align: center;
}

.section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.section p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

/* Cards */
.cards {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    background: #f9f9f9;
    /* padding: 20px; */
    /* width: 300px; */
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.card img {
    /* width: 80px; */
    margin-bottom: 15px;
}


/* Contact Form */
form {
    max-width: 600px;
    margin: auto;
}

.form-group {
    margin-bottom: -10px;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

button.btn-primary {
    cursor: pointer;
    border: none;
}


/* ============================================== */
/* Global Container and Typography Setup (if not already defined) */
/* ============================================== */
/* Assuming .container, .section-title, .orange-title, .section-intro are already defined for general use */
/* If not, include them from your root CSS: */
/*
.container {
max-width: 1200px;
margin: 0 auto;
padding: 60px 20px;
}
.section-title {
font-weight: 700;
margin-bottom: 10px;
font-size: 40px;
}
.orange-title {
color: #ff8c00;
}
.section-intro {
font-size: 18px;
line-height: 1.6;
max-width: 700px;
margin-bottom: 50px;
color: #555555;
}
*/

/* --- Custom CSS Variables (assuming these are defined at the root) --- */
:root {
    --primary-orange: #ff8c00;
    --text-dark: #1f1f1f;
    --text-medium: #4a4a4a;
    --background-white: #ffffff;
}

/* --- Global Utilities (Ensure these are defined) --- */
.container {
    max-width: 1332px;
    margin: 0 auto;
    padding: 0 20px;
}

.orange-title {
    color: var(--primary-orange);
}

/* Note: Assumes variables like --background-white and --primary-orange are defined globally.
Example:
:root {
   --primary-orange: #ff8c00; 
   --background-white: #ffffff;
   --text-dark: #1f1f1f;
   --text-medium: #4a4a4a;
}
*/

/* ============================================== */
/* SECTION: Luxury Rides. Professional Chauffeurs. STYLES */
/* (Text on LEFT, Image on RIGHT) */
/* ============================================== */
.luxury-rides-section {
    padding: 80px 0;
    /* BACKGROUND IS WHITE */
    background-color: var(--background-white);
}

.luxury-rides-section .container {
    display: flex;
    /* Key for side-by-side layout */
    align-items: center;
    gap: 60px;
    /* Space between the text and image columns */
}

/* --- Left Column: Text --- */
.luxury-rides-section .text-column {
    flex: 1;
    max-width: 50%;
    padding-right: 20px;
    text-align: left;
}

.luxury-rides-section .main-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.luxury-rides-section .main-title:first-child {
    color: var(--primary-orange);
    /* First line is dark text */
    margin-bottom: 5px;
}

/* This class ensures the second line of the heading is ORANGE */
.luxury-rides-section .orange-title {
    color: var(--primary-orange);
}

.luxury-rides-section .section-description {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-medium);
    margin: 30px 0 40px 0;
}

/* --- Call to Action Button --- */
.luxury-rides-section .btn-primary {
    /* width: 250px; */
    width: max-content;
    text-align: center;
    display: inline-block;
    padding: 15px 20px;
    background-color: var(--primary-orange);
    color: #fff;
    /* Dark text on orange button */
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease;
    border: 1px solid var(--primary-orange);
}

.luxury-rides-section .btn-primary:hover {
    background-color: #e07b00;
}

/* --- Right Column: Image --- */
.luxury-rides-section .image-column {
    flex: 1;
    min-width: 50%;
}

.split-image-container {
    display: flex;
    /* Use flexbox to align the two images horizontally */
    height: 500px;
    /* Set a fixed height for the image grouping */
    overflow: hidden;
    border-radius: 8px;
    /* Optional: Rounded corners for the entire group */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.split-image-container img {
    flex: 1;
    /* Makes each image take up half the width */
    width: 50%;
    height: 100%;
    object-fit: cover;
    /* Ensures images cover their area without distortion */
    display: block;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .luxury-rides-section .container {
        flex-direction: column;
        /* Stack columns vertically */
        gap: 40px;
    }

    .luxury-rides-section .text-column {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
        /* Center text on mobile */
    }

    .luxury-rides-section .main-title {
        font-size: 40px;
        text-align: center;
    }

    .luxury-rides-section .section-description {
        margin: 20px auto 30px;
        max-width: 600px;
        /* Constrain paragraph width */
        text-align: center;
    }

    .luxury-rides-section .image-column {
        min-width: unset;
        width: 100%;
    }

    .split-image-container {
        flex-direction: column;
        /* Stack the two images vertically on mobile */
        height: auto;
        /* Auto height when stacked */
        max-height: 800px;
    }

    .split-image-container img {
        width: 100%;
        /* Full width when stacked */
        height: 400px;
        /* Set a specific height for each stacked image */
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .luxury-rides-section .container {
        flex-direction: column;
        /* Stack columns vertically */
        gap: 40px;
    }

    .luxury-rides-section .text-column {
        max-width: 100%;
        padding-right: 0;
        text-align: center;
        /* Center text on mobile */
    }

    .luxury-rides-section .main-title {
        font-size: 40px;
        text-align: center;
    }

    .luxury-rides-section .section-description {
        margin: 20px auto 30px;
        max-width: 600px;
        /* Constrain paragraph width */
        text-align: center;
    }

    .luxury-rides-section .image-column {
        min-width: unset;
        width: 100%;
    }

    .split-image-container {
        flex-direction: column;
        /* Stack the two images vertically on mobile */
        height: auto;
        /* Auto height when stacked */
        max-height: 800px;
    }

    .split-image-container img {
        width: 100%;
        /* Full width when stacked */
        height: 400px;
        /* Set a specific height for each stacked image */
    }
}

/* --- Custom CSS Variables (assuming these are defined at the root) --- */
:root {
    --primary-orange: #ff8c00;
    --text-dark: #1f1f1f;
    --text-medium: #555555;
    --background-white: #ffffff;
    --border-light: #f0f0f0;
}

/* --- Global Utilities (Ensure these are defined) --- */
.container {
    max-width: 1332px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-weight: 700;
    font-size: 45px;
    /* Adjust size to match the large heading */
    margin-bottom: 5px;
}

.orange-title {
    color: var(--primary-orange);
}

/* ============================================== */
/* SECTION: Welcome To TESRIDES STYLES */
/* (Image on LEFT, Text on RIGHT) */
/* ============================================== */
.welcome-section {
    padding: 80px 0;
    background-color: var(--background-white);
}

.welcome-section .container {
    display: flex;
    /* Enable side-by-side layout */
    align-items: center;
    /* Vertically align items */
    gap: 60px;
    /* Space between the image and text columns */
}

/* --- Image Column (Left) --- */
.welcome-section .image-column {
    flex: 1.1;
    /* Give the image slightly more weight to match the visual width */
    max-width: 50%;
    /* Constrain its max width */
    overflow: hidden;
    border-radius: 8px;
}

.welcome-section .image-column img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    /* border-radius: 12px; */
    box-shadow: 0 0 25px 8px rgba(255, 165, 0, 0.4); /* soft orange glow */
    transition: box-shadow 0.3s ease;
}
.welcome-section .image-column img:hover {
    box-shadow: 0 0 35px 12px rgba(255, 165, 0, 0.6);
}

/* --- Text Column (Right) --- */
.welcome-section .text-column {
    flex: 1;
    padding-left: 20px;
    /* Minor spacing from the image */
}

.welcome-section .section-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 30px;
}

.welcome-section .section-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* Strong override to prevent other global rules from making this panel dark */
.welcome-section,
.welcome-section .container,
.welcome-section .text-column,
.welcome-section .text-column * {
    background: transparent !important;
    color: var(--text-dark) !important;
}

/* Restore intentional orange headings inside the welcome/text column.
   The global `*` rule above was forcing dark text with !important and
   therefore overriding the simple `.orange-title` declaration.
   This selector is specific and also uses !important to ensure the
   intended accent color is visible for titled elements only. */
.welcome-section .orange-title,
.welcome-section .text-column .orange-title {
    color: var(--primary-orange) !important;
}

/* Ensure the quote marker keeps orange */
.welcome-section .quote-marker,
.welcome-section .safety-quote .quote-marker {
    color: var(--primary-orange) !important;
}

/* --- Safety Quote Box --- */
.safety-quote {
    padding-left: 30px;
    /* Space for the quote marker */
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-medium);
    position: relative;
    border-left: 2px solid var(--primary-orange);
    /* Vertical orange line */
}

.quote-marker {
    position: absolute;
    top: -5px;
    left: 0;
    font-size: 30px;
    color: var(--primary-orange);
    line-height: 1;
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .welcome-section .container {
        flex-direction: column;
        /* Stack columns vertically */
        gap: 40px;
        text-align: center;
    }

    .welcome-section .image-column {
        max-width: 100%;
        width: 100%;
        /* Full width when stacked */
        max-width: 600px;
        /* Constrain image size */
        margin: 0 auto;
    }

    .welcome-section .text-column {
        padding-left: 0;
        text-align: left;
        /* Keep text aligned left for readability */
    }

    .welcome-section .section-title,
    .welcome-section .section-subtitle {
        /* text-align: center; */
    }

    .safety-quote {
        margin: 30px auto 0;
        max-width: 500px;
        /* Constrain quote width */
    }
}

@media (max-width: 768px) {
    .welcome-section {
        padding: 50px 0;
    }

    .welcome-section .section-title {
        font-size: 36px;
    }
}

/* Custom CSS Variables (assuming these are defined elsewhere) */
:root {
    --primary-orange: #ff8c00;
    --text-dark: #1f1f1f;
    --text-medium: #4a4a4a;
    --background-white: #ffffff;
}

/* General Section and Typography Setup */
.service-section {
    padding: 60px 0;
    background-color: var(--background-white);
    /* text-align: center; */
    /* Center the title and subtitle */
}

.service-title {
    font-size: 2.5em;
    /* Adjusted for boldness/prominence */
    color: var(--primary-orange);
    margin-bottom: 10px;
    font-weight: 700;
}

.service-subtitle {
    font-size: 1.1em;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 800px;
}

/* --- Service Grid Layout (Key for the 4-column inline display) --- */
.service-grid {
    display: flex;
    /* Use Flexbox */
    flex-wrap: nowrap;
    /* Forces cards to stay on one line */
    gap: 20px;
    /* Space between cards */
    overflow-x: auto;
    /* Allows horizontal scrolling on smaller screens */
    padding-bottom: 10px;
    /* Space for the scrollbar on some OS */
    justify-content: space-between;
    /* Distribute space evenly on large screens */
}

.service-card {
    /* Calculation for 4 cards in a row with 20px gaps: 
   (100% - 3*20px) / 4 = 23.5%
   Using calc ensures they fit exactly across the width on large screens. */
    width: calc(25% - 15px);
    min-width: 260px;
    /* Ensures card is readable and triggers scroll on small screens */
    flex-shrink: 0;
    /* Prevents cards from shrinking smaller than min-width */

    background-color: var(--background-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: left;
    /* Text inside the card should be left-aligned */
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.service-image-container {
    /* position: relative; */
    width: 100%;
    height: 250px;
    /* Fixed height for consistent card appearance */
    /* overflow: hidden; */
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the container */
}

.service-caption {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    /* width: 100%; */
    /* background-color: rgba(31, 31, 31, 0.9); */
    /* Semi-transparent dark overlay for text */
    color: var(--background-white);
    padding: 15px 20px;
    font-weight: 600;
    font-size: 1.2em;
}

.service-description {
    padding: 20px;
    font-size: 0.95em;
    color: var(--text-medium);
    /* min-height: 100px; */
    /* Ensures all cards have similar height for alignment */
}

/* --- Responsive Adjustments --- */
/* For screens smaller than 1200px, the horizontal scroll will naturally take over
due to min-width: 260px and flex-wrap: nowrap. */

@media (max-width: 768px) {
    .service-title {
        font-size: 2em;
    }

    .service-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }

    .service-image-container {
        height: 200px;
        /* Slightly smaller image on mobile */
    }
}

@media (max-width: 480px) {

    /* On very small screens, make cards slightly smaller but still scrollable */
    .service-card {
        min-width: 240px;
    }
}

/* --- Variables for this section (if not already defined) --- */
:root {
    --primary-orange: #ff9130;
    /* The orange color for the title */
    --bg-dark-gray: #1a1a1a;
    /* Dark background color for the left column */
    --text-white: #ffffff;
    /* White text for the left column */
    --text-light-gray: #b0b0b0;
    /* Lighter gray for descriptions */
    --font-family: 'Inter', sans-serif;
    /* Consistent font */
}

/* --- Section Layout --- */
.choose-us-section {
    background-color: var(--bg-dark-gray);
    /* Full section background, though only left part shows it */
    padding: 0;
    /* Remove padding here as it's handled by inner containers */
}

.choose-us-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* min-height: 650px; */
}

/* --- Left Column Styling (Text and Features) --- */
.choose-us-left {
    background-color: var(--bg-dark-gray);
    /* Explicitly set background */
    padding: 80px 60px;
    /* Padding inside the left column */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically center content */
    color: var(--text-white);
}

.choose-us-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    /* Extra bold */
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.choose-us-subtitle {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-white);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two columns for features */
    gap: 40px 30px;
    /* Vertical and horizontal gap between feature items */
}

.feature-item {
    display: flex;
    /* flex-direction: column; */
    /* Icon and text stack */
    align-items: flex-start;
    /* Align text to the left */
}

.feature-icon {
    width: 45px;
    /* Size of the icon area */
    height: 45px;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon img {
    /* max-width: 100%; */
    /* Ensure icon images fit */
    /* height: auto; */
    /* filter: invert(100%); */
    /* Make white if icons are originally dark */
}


.feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    /* margin-bottom: 8px; */
}

.feature-description {
    font-size: 0.95rem;
    color: var(--text-light-gray);
    /* Lighter text for descriptions */
    /* line-height: 1.5; */
}

/* --- Right Column Styling (Image) --- */
.choose-us-right {
    background-image: url('https://assets-global.website-files.com/64ed897914e6d4202c462615/64ed92a7fb4d70b777a94432_new%20york%20red%20carpet%20street%20car%20service-p-1600.jpg');
    /* The background image from your screenshot */
    background-size: cover;
    /* Cover the entire area */
    background-position: center;
    /* Center the image */
    background-repeat: no-repeat;
    /* Optional: Add a subtle overlay if the image needs to be darker */
    position: relative;
    overflow: hidden;
    /* Ensure image doesn't overflow */
}

/* Example for an overlay on the image if needed (uncomment to use)
.choose-us-right::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.2); 
}
*/

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    /* .choose-us-content-wrapper {
        grid-template-columns: 1fr;
    } */

    .choose-us-left {
        padding: 60px 40px;
        /* Adjust padding for smaller screens */
        text-align: center;
        /* Center align text on small screens */
    }

    .choose-us-main-title,
    .choose-us-subtitle {
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
        /* Stack features in a single column */
        text-align: center;
    }

    .feature-item {
        /* align-items: center; */
        /* Center icons and text within feature item */
    }

    .choose-us-right {
        min-height: 400px;
        /* Ensure image has some height on mobile */
    }
}

@media (max-width: 576px) {
    .choose-us-left {
        padding: 40px 20px;
    }

    .choose-us-main-title {
        font-size: 2rem;
    }

    .choose-us-subtitle {
        font-size: 1rem;
    }
}

.trusted-travelers-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.trusted-travelers-section .content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.image-column {
    flex: 1;
}

.image-column .section-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.text-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    /* text-align: center; */
}

.orange-title {
    color: #ff8c00;
}

.section-description {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #fff;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ff8c00;
    color: #fff;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-primary:hover {
    background-color: #e07b00;
}

/* RESPONSIVE */
@media(max-width: 992px) {
    .trusted-travelers-section .content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .image-column,
    .text-column {
        flex: unset;
        width: 100%;
    }

    .section-title {
        font-size: 28px;
    }
}


/* --- Responsive Adjustments (Stacking and Centering) --- */
@media (max-width: 992px) {

    /* 1. Stacks the image and text columns vertically */
    .trusted-travelers-section .content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    /* 2. Centers all content within the text column */
    .trusted-travelers-section .text-column {
        padding-right: 0;
        /* This is the crucial line to center all inline and block content */
        text-align: center;
    }

    /* 3. Ensures the title and paragraph are centered (redundant due to step 2, but good for clarity) */
    .trusted-travelers-section .section-title,
    .trusted-travelers-section .section-description {
        text-align: center;
        /* Optional: Constrain description width for better reading on large stacked views */
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* 4. Ensures the button (a) is displayed correctly (inline-block is usually sufficient, 
   but we ensure the margin auto trick isn't needed by using text-align: center on the parent) */
    .btn-primary {
        /* Since the parent (.text-column) has text-align: center, 
       the inline-block button is automatically centered. */
        margin-top: 15px;
        /* Add a little space above the button if needed */
    }

    /* 5. Image remains centered when stacked */
    .trusted-travelers-section .image-column {
        min-width: unset;
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ... (Keep the rest of your general CSS) ... */


/* General Reset and Typography */
:root {
    /* Primary brand colors */
    --primary-orange: #ff8c00;
    /* Vibrant Orange for heading/button */
    --text-dark: #1f1f1f;
    /* Very dark grey for most text and dark background */
    --text-medium: #4a4a4a;
    /* Slightly lighter grey for subtitles */
    /* UI colors */
    --border-color: #d1d1d1;
    /* Light grey border for inputs */
    --background-white: #ffffff;
    /* Pure white background */
    --focus-ring: rgba(255, 140, 0, 0.5);
    /* Semi-transparent orange for focus state */
    --faq-border-dark: #444444;
    /* Dark grey line for FAQ separators */
    --faq-text-light: #cccccc;
    /* Light grey text for FAQ answers */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--background-white);
    min-height: 100vh;
}

/* Reusable Container */
.container {
    max-width: 1332px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-section {
    padding: 60px 0;
    background-color: var(--background-white);
}

.service-title {
    font-size: 2.2em;
    color: var(--primary-orange);
    margin-bottom: 10px;
    font-weight: 700;
}

.service-subtitle {
    font-size: 1.1em;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.service-grid {
    display: flex;
    /* Flexbox का उपयोग करें */
    flex-wrap: nowrap;
    /* सुनिश्चित करता है कि कार्ड्स एक लाइन में रहें (inline-block जैसा व्यवहार) */
    gap: 20px;
    /* कार्ड्स के बीच की जगह */
    overflow-x: auto;
    /* छोटे स्क्रीन पर स्क्रॉल करने की अनुमति देता है */
    padding-bottom: 10px;
}

.service-card {
    /* तीन कार्ड्स को एक लाइन में फिट करने का कैलकुलेशन: (100% / 3) - (गैप का हिस्सा) */
    width: calc(33.333% - 13.333px);
    min-width: 280px;
    /* यह सुनिश्चित करता है कि स्क्रॉल करते समय कार्ड बहुत छोटे न हों */
    flex-shrink: 0;
    /* कार्ड्स को छोटा होने से रोकता है */
    background-color: var(--background-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
}

.service-image-container {
    /* position: relative; */
    width: 100%;
    height: 200px;
    /* (Fixed height for images) */
    /* overflow: hidden; */
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-caption {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    /* width: 100%; */
    /* background-color: var(--text-dark); */
    /* Dark grey background */
    color: var(--background-white);
    /* White text */
    padding: 10px 15px;
    font-weight: 600;
    font-size: 1.1em;
}

.service-description {
    padding: 15px;
    font-size: 0.95em;
    color: var(--text-medium);
    /* min-height: 80px; */
}

.main-title {
    font-size: 40px;
    font-weight: 700;
    color: #ff8c00;
    /* Bright orange */
    margin-bottom: 10px;
}

.intro-text {
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 50px;
}

/* --- Feature Grid Layout (Flexbox) --- */
.feature-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.feature-item {
    flex: 1;
    /* text-align: center; */
    padding: 10px;
    gap: 20px;
}

/* --- Icon Styling (Orange Circle) --- */
.icon-circle {
    width: 100px;
    height: 100px;
    border: 2px solid #ff8c00;
    border-radius: 50%;
    margin: 0 auto 30px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 0 4px rgba(255, 140, 0, 0.2);
}

.icon {
    font-size: 40px;
    line-height: 1;
}

/* --- Feature Content Styling --- */
.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    /* margin-top: 0;
    margin-bottom: 20px; */
}

.feature-description {
    font-size: 15px;
    /* line-height: 1.6; */
    color: #fff;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .feature-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .feature-item {
        flex: 0 0 calc(50% - 30px);
        /* Two columns */
        margin-bottom: 40px;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 32px;
    }

    .feature-grid {
        gap: 0;
    }

    .feature-item {
        flex: 0 0 100%;
        /* Single column */
    }
}

/* --- Hero Section Styles --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    /* Adjust height as needed, e.g., 80vh for 80% viewport height */
    min-height: 500px;
    /* Minimum height for smaller screens */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    /* White text for contrast */
    overflow: hidden;
    /* Ensures image doesn't spill out */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the entire background */
    object-position: center;
    /* Centers the image */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Dark overlay */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Ensures content is above the overlay */
    max-width: 1044px;
    /* Constrain text width for readability */
    padding: 20px;
    margin: 0 auto;
}

.hero-title {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e0e0e0;
    /* Slightly lighter white for body text */
}

.hero-subtext {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 40px;
    color: #cccccc;
    /* Even lighter white for subtext */
}

.btn-quote {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    /* Transparent background */
    border: 2px solid #ffffff;
    /* White border */
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn-quote:hover {
    background-color: #ff8c00;
    /* Orange background on hover */
    border-color: #ff8c00;
    /* Orange border on hover */
    color: #ffffff;
}

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .hero-title {
        font-size: 45px;
    }

    .hero-description {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        height: 60vh;
        min-height: 450px;
    }

    .hero-title {
        font-size: 38px;
        margin-bottom: 15px;
    }

    .hero-description {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .hero-subtext {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .btn-quote {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 50vh;
        min-height: 350px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-content {
        padding: 15px;
    }
}

/* ============================================== */
/* Global Container and Typography Setup (if not already defined) */
/* ============================================== */
/* .container {
max-width: 1200px;
margin: 0 auto;
padding: 60px 20px;
} 
.section-title {
font-weight: 700;
margin-bottom: 10px;
font-size: 40px; 
}
.orange-title {
color: #ff8c00; 
}
.section-intro {
font-size: 18px;
line-height: 1.6;
max-width: 700px;
margin-bottom: 50px;
color: #555555;
}
*/

/* ============================================== */
/* SECTION 1: Booking is Simple STYLES */
/* ============================================== */
.booking-simple-section {
    padding-top: 80px;
    padding-bottom: 80px;
    text-align: center;
    background-color: #ffffff;
}

.booking-simple-section .section-title,
.booking-simple-section .section-intro {
    text-align: left;
    margin-left: 0;
    margin-right: auto;
}

.booking-simple-section .section-intro {
    margin-bottom: 50px;
    /* Space between intro text and timeline */
}

/* --- Timeline Container --- */
.booking-timeline {
    width: 100%;
    /* max-width: 1000px; */
    margin: 0 auto 20px;
    /* Center the timeline and space it from the steps */
    position: relative;
    padding: 0 50px;
    /* Space for the dots to sit outside the line */
    box-sizing: border-box;
}

/* --- Progress Bar Line and Dots --- */
.progress-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 28px; /* allow space for larger dots */
}

/* The horizontal line that spans the process */
.progress-bar .line {
    position: absolute;
    width: 100%;
    height: 12px; /* thicker, pill-shaped track */
    background-color: #e9e9e9;
    /* Light gray for the full line */
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    left: 0;
    border-radius: 999px;
    overflow: hidden;
}

/* The darker part of the line (progress) */
.progress-bar .line::before {
    content: '';
    position: absolute;
    /* Adjust width to cover the first two steps (tweak as needed) */
    /* width: calc(33.33% + 4px); */
    width: calc(48% + 4px);
    height: 100%;
    background-color: #2b2b2b; /* dark filled portion */
    z-index: 2;
    left: 0;
    border-top-left-radius: 999px;
    border-bottom-left-radius: 999px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    position: relative;
    z-index: 3;
    display: block;
    top: 0; /* align vertically */
    background-color: #e0e0e0;
    border: 3px solid #e0e0e0;
}

.dot.active {
    background-color: #ff9a2a; /* orange */
    border: 3px solid #ffffff; /* white inner ring */
    width: 12px;
    height: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

.dot.inactive {
    background-color: #e0e0e0;
    border: 3px solid #e0e0e0;
    width: 18px;
    height: 18px;
}

/* Optional: ensure specific dots are styled larger if markup uses them */
.progress-bar .dot:nth-child(2),
.progress-bar .dot:nth-child(3) {
    width: 26px;
    height: 26px;
    background-color: #ff9a2a;
    border: 3px solid #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}


/* --- Steps Grid Layout --- */
.steps-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 10px;
}

.icon-placeholder {
    /* This section creates the large, thin, light gray/transparent circle */
    width: 100px;
    height: 100px;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    /* margin: 0 auto 25px; */
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ff8c00;
    /* Orange icon color */
}

/* Hide the placeholder images and use the Font Awesome icons instead */
.icon-placeholder img {
    display: none;
}

.icon-placeholder i {
    font-size: 45px;
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: #333333;
    margin-top: 0;
    margin-bottom: 15px;
}

.step-description {
    font-size: 15px;
    line-height: 1.5;
    color: #555555;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {

    /* Hide timeline on small screens */
    .booking-timeline {
        display: none;
    }

    .steps-grid {
        flex-direction: column;
        /* Stack steps vertically */
        align-items: center;
    }

    .step-item {
        flex: 0 0 100%;
        max-width: 350px;
        /* Constrain width for better readability when stacked */
        margin-bottom: 20px;
    }

    .booking-simple-section .section-title,
    .booking-simple-section .section-intro {
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .steps-grid {
        gap: 20px;
    }
}

/* duplicate expect-section styles removed to avoid conflicts - see earlier .expect-section rules */


/* --- Section Title and Intro --- */
.testimonials-title {
    font-size: 40px;
    font-weight: 700;
    /* Bold */
    color: #ff8c00;
    /* Bright orange for the title */
    margin-bottom: 10px;
    text-align: center;
}

.testimonials-intro {
    font-size: 18px;
    color: #333333;
    line-height: 1.6;
    max-width: 700px;
    /* Limits width of intro text */
    margin: 0 auto 60px auto;
    /* Centers and adds bottom margin */
    text-align: center;
}

/* --- Testimonial Grid Layout --- */
.testimonial-slider {
    position: relative;
    width: 95%;
    max-width: 1200px;
    overflow: hidden;
  }
.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 34px;
    flex-wrap: nowrap;
    transition: transform 0.5s ease;
    padding-top: 70px;
    padding-bottom: 20px;
  }

.testimonial-item {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e9e9e9;
    border-radius: 12px;
    padding: 46px 34px 36px;
    text-align: center;
    box-shadow: 0 18px 40px rgba(12,12,12,0.06);
    flex: 0 0 300px;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: scale(0.9);
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

.swiper-slide-active .testimonial-box {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Optional styling for smooth scale effect */
.swiper-slide-active {
transform: scale(1.05);
transition: transform 0.4s ease;
}
.swiper-slide {
transition: transform 0.4s ease;
}
    /* swiper lider */

/* Quote icon: default position top-left for regular cards */
.quote-icon-container {
    position: absolute;
    top: -22px;
    left: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    pointer-events: none;
  }

  .quote-icon {
    font-size: 36px;
    color: #999;
    background-color: var(--primary-orange);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

/* For the highlighted (center) card, keep the badge centered at top */

/* .testimonial-item.highlighted .quote-icon-container {
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 72px;
  }

  .testimonial-item.highlighted .quote-icon {
    background-color: #333;
    color: #fff;
  } */


/* Testimonial Text */
.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 30px;
}

/* Vertical stacked carousel styles */
.testimonial-slider {
    position: relative;
    overflow: hidden; /* hide overflow while translateY moves grid */
}

.testimonial-grid {
    display: block;
    position: relative;
    transition: transform 700ms cubic-bezier(.22,.9,.32,1);
    will-change: transform;
    padding: 40px 0;
}

.testimonial-grid .testimonial-item {
    position: relative;
    margin: 0 auto 28px;
    left: auto;
    top: auto;
    transform: none !important;
    backface-visibility: visible;
    width: 360px;
    max-width: 92%;
}

.testimonial-item.highlighted {
    transform: scale(1.03);
    box-shadow: 0 30px 60px rgba(10,10,10,0.12);
}

.testimonial-item.highlight-black {
    background: #222 !important;
    color: #fff !important;
    box-shadow: 0 30px 80px rgba(10,10,10,0.35) !important;
}

@media (max-width: 900px) {
    /* Keep stacked vertical but allow scroll if many items */
    .testimonial-grid {
        padding: 24px 0;
    }

    .testimonial-grid .testimonial-item {
        width: 86%;
        margin-bottom: 18px;
    }
}

/* .testimonial-item.highlighted .testimonial-text {
    color: #cccccc;
     Lighter text for dark background 
} */

/* Star Rating */
.stars {
    color: #f4c430;
    font-size: 20px;
    margin-bottom: 18px;
    justify-content: center;
}

.stars i {
    margin: 0 2px;
}

.dark-bg-stars {
    color: #ffc107;
    /* Ensure stars are gold even on dark background */
}

/* Client Name */
.client-name {
    font-weight: bold;
    font-size: 0.95rem;
  }

.client-name.highlighted-name {
    color: #ffffff;
    /* White name for dark background */
}
.dots-container {
    text-align: center;
    margin-top: 20px;
  }


/* Pagination Dots */
.pagination-dots {
    text-align: center;
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .dot.active {
    background-color: #333;
  }

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 10px;
    }

    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .cards {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .testimonial-grid {
        gap: 20px;
        overflow-x: scroll;
        scroll-behavior: smooth;
      }
      .testimonial-item {
        flex: 0 0 260px;
      }

    .testimonials-title {
        font-size: 32px;
    }

    .testimonials-intro {
        font-size: 14px;
    }
    .luxury-rides-section {
        padding: 30px 0;
    }
    :root{
    .service-section{
        padding: 30px 0;
    }
}
.booking-simple-section{
    padding-top: 30px;
    padding-bottom: 0;
}
.steps-grid {
    max-width: max-content;
    margin: auto;
    gap: 0;
}
.expect-section {
    padding: 30px 0;
}
.booking-simple-section .section-title{
    /* font-size: 46px; */
    font-size: 42px;
}
.booking-simple-section .section-intro{
    font-size: 14px;
    margin-bottom: 30px;
}
.step-title{
    font-size: 18px;
}
.step-description{
    font-size: 12px;
}
.expect-section .section-title {
    font-size: 34px;
}
.expect-section .section-intro{
    font-size: 14px;
}
.checklist-item{
    font-size: 14px;
}
.check-icon {
    width: 40px;
    height: 43px;
}
.quote-icon-container{
    position: unset;
}
.testimonial-item {
    padding: 15px 15px 15px;
}
.quote-icon{
    position: unset;
}
.welcome-section .section-subtitle {
    font-size: 22px;
}
.luxury-rides-section .main-title{
    font-size: 36px;
}
.luxury-rides-section .main-title.orange-title{
    margin-top: 0;
}
.luxury-rides-section .btn-primary {
    width: fit-content;
}
.btn-primary{
    margin-top: 0;
    align-self: center;
}
.feature-item {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}
.feature-icon{
    margin-bottom: 0;
}
.feature-title{
    font-size: 20px;
}
.feature-description{
    font-size: 14px;
}
.testimonial-intro-section{
    padding: 30px 0;
}
.testimonial-intro-section .section-description{
    font-size: 14px;
}
#price {
    height: max-content;
    min-height: max-content;
    padding-top: 30px;
}
.service-subtitle{
    font-size: 14px;
}
.intro-text{
    font-size: 14px;
}
.safety{
    gap: 15px;
}
.faq-section{
    padding: 30px 0;
}
.faq-title{
    font-size: 32px;
}

.footer-container {
    flex-direction: column;
    gap: 20px;
}

.footer-links,
.footer-services,
.footer-contact {
    min-width: 100%;
}

.social-icons img {
    width: 20px;
    height: 20px;
}
.testimonial-intro-section .btn-primary{
    align-self: center;
}
.choose-us-content-wrapper {
    grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {
    .container {
        /* padding: 50px 15px; */
        padding: 0 15px;
    }

    .testimonial-item {
        flex: 0 0 220px;
        /* padding: 36px 20px 28px; */
      }
      .testimonial-text {
        font-size: 0.85rem;
      }
      .quote-icon-container {
        width: 52px;
        height: 52px;
      }
      .quote-icon {
        font-size: 28px;
      }

    .quote-icon {
        font-size: 20px;
        width: 50px;
        height: 50px;
        background-color: var(--primary-orange);
        color: #ffffff;
        border-radius: 50%;
    }
}

@media (max-width: 992px) {
    .service-grid {
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .luxury-rides-section .btn-primary{
        align-self: center;
    }
    .testimonial-intro-section .btn-primary{
        align-self: center;
        
    }
}

/* 600px */
@media (max-width: 600px) {
    .service-title {
        font-size: 2em;
    }

    .service-card {
        min-width: 280px;
    }
    
}

/* Responsive Design */
@media (max-width: 992px) {
    .booking-content-wrapper {
        /* flex-direction: column; */
        gap: 40px;
    }

    .contact-details {
        padding-right: 0;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
    .faq-question {
        font-size: 15px;
      }
      .faq-answer {
        font-size: 13px;
      }
}

/* Testimonial carousel: horizontal sliding with center-highlight */
.testimonial-slider {
    overflow: hidden;
    position: relative;
    padding: 28px 0;
}

.testimonial-grid {
    display: flex;
    gap: 20px;
    align-items: center;
    transition: transform 600ms cubic-bezier(.22,.9,.32,1);
    will-change: transform;
    padding-left: 20px; /* small padding so first card can be centered */
}

.testimonial-item {
    flex: 0 0 320px;
    max-width: 360px;
    background: #ffffff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(20,20,20,0.06);
    color: var(--text-dark, #111);
    transition: transform 300ms ease, box-shadow 300ms ease, background-color 300ms ease, color 300ms ease;
    cursor: pointer;
}

.testimonial-item .quote-icon-container { font-size: 22px; color: var(--primary-orange, #ff8c00); margin-bottom: 8px; }
.testimonial-item .testimonial-text { font-size: 14px; line-height: 1.6; margin-bottom: 12px; }
.testimonial-item .client-name { font-weight: 700; margin-top: 10px; text-align: center; }
.testimonial-item .stars { color: #f5c542; text-align: center; margin-top: 8px; }

/* Highlighted and centered state */
.testimonial-item.highlighted,
.testimonial-item.highlight-black {
    transform: scale(1.04);
    box-shadow: 0 22px 60px rgba(10,10,10,0.18);
}

.testimonial-item.highlight-black {
    background: #0f1720; /* dark bg */
    color: #fff;
}

.testimonial-item.highlight-black .stars { color: #ffd66a; }
.testimonial-item.highlight-black .quote-icon-container { color: #ffd66a; }

/* Responsive: narrower cards on small screens */
@media (max-width: 900px) {
    .testimonial-item { flex: 0 0 72%; max-width: 78%; }
    .testimonial-grid { gap: 16px; padding-left: 12px; }
}

@media (max-width: 480px) {
    .testimonial-item { flex: 0 0 86%; max-width: 86%; padding: 18px; }
}

/* Ensure testimonial text remains legible when dark */
.testimonial-item.highlight-black p, .testimonial-item.highlight-black .client-name { color: #fff; }
