/* ============================================================
   GOA SELF DRIVE CAR — location.css
   Dedicated stylesheet for location.php (location-detail pages)
   ============================================================ */

/* ── CSS VARIABLES ── */
:root {
  --primary:     #0d3b36;
  --primary-2:   #0d6b5e;
  --accent:      #ff6b3d;
  --sun:         #f7b733;
  --sand:        #fffaf0;
  --shell:       #f9f5eb;
  --ink:         #17302c;
  --muted:       #61736f;
  --border:      rgba(23,48,44,.13);
  --shadow:      0 24px 60px rgba(13,59,54,.14);
  --radius:      24px;
  --radius-sm:   14px;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.ld-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: var(--primary);
}

.ld-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.ld-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.ld-hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg, 
        rgba(13,59,54,.95) 0%, 
        rgba(13,59,54,.88) 30%,
        rgba(13,59,54,.75) 60%, 
        rgba(13,59,54,.60) 100%
    );
    z-index: 2;
}

.ld-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,.06) 0%, transparent 40%);
    z-index: 3;
}

.ld-hero-wrap {
    position: relative;
    z-index: 10;
    width: 100%;
}

.ld-hero-content {
    max-width: 900px;
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
    z-index: 10;
}

.ld-taluka-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 20px;
    letter-spacing: .02em;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    color: var(--sun);
    backdrop-filter: blur(8px);
}

.ld-hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 5vw, 66px);
    line-height: 1.05;
    letter-spacing: -.04em;
    margin-bottom: 18px;
    color: #fff;
}

.ld-hero-label {
    display: block;
    font-size: clamp(13px, 2vw, 17px);
    font-weight: 600;
    color: var(--sun);
    margin-bottom: 8px;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.ld-hero-city {
    display: block;
    color: #fff;
}

.ld-hero-sub {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,.85);
    max-width: 680px;
    line-height: 1.65;
    margin-bottom: 32px;
}

/* ── Stats bar ── */
.ld-hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 18px;
    padding: 18px 28px;
    margin-bottom: 32px;
    max-width: 720px;
    backdrop-filter: blur(10px);
}

.ld-stat {
    flex: 1 1 0;
    text-align: center;
    padding: 0 16px;
    min-width: 0;
}

.ld-stat strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--sun);
    line-height: 1.1;
    margin-bottom: 4px;
}

.ld-stat span {
    font-size: 12px;
    color: rgba(255,255,255,.75);
    font-weight: 600;
}

.ld-stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255,255,255,.25);
    flex-shrink: 0;
}

/* ── Hero actions ── */
.ld-hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Buttons ── */
.ld-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 999px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s, background .2s;
    text-align: center;
    white-space: nowrap;
}

.ld-btn-primary {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 12px 28px rgba(255,107,61,.28);
}

.ld-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(255,107,61,.35);
}

.ld-btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 12px 28px rgba(37,211,102,.28);
}

.ld-btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(37,211,102,.35);
}

.ld-btn-dark {
    background: var(--primary);
    color: #fff;
}

.ld-btn-sm {
    padding: 10px 16px;
    font-size: 13px;
}

.ld-btn-accent {
    background: var(--sun);
    color: var(--ink);
    font-weight: 800;
}

.ld-btn-whatsapp-lg {
    background: #25d366;
    color: #fff;
    padding: 14px 24px;
    font-size: 15px;
}

/* ============================================================
   INFO SECTION (Highlights & Nearby)
   ============================================================ */
.ld-info-section {
    padding: 48px 0;
    background: #fff;
}

.ld-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ld-info-card {
    background: var(--shell);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--border);
    transition: transform .2s, box-shadow .2s;
}

.ld-info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(13,59,54,.1);
}

.ld-info-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.ld-info-header i {
    font-size: 18px;
}

.ld-info-header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

.ld-info-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ld-info-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: transform .15s;
}

.ld-info-tag:hover {
    transform: scale(1.02);
}

/* ============================================================
   CONTENT SECTION
   ============================================================ */
.ld-content-section {
    padding: 48px 0;
    background: var(--shell);
}

.ld-content-body {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink);
    padding-left: 20px;
    padding-right: 20px;
}

.ld-content-body h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(22px, 3vw, 28px);
    color: var(--primary);
    margin: 32px 0 16px;
    letter-spacing: -.02em;
    position: relative;
    padding-bottom: 10px;
}

.ld-content-body h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 99px;
}

.ld-content-body p {
    margin-bottom: 18px;
    text-align: justify;
}

.ld-content-body ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.ld-content-body li {
    margin-bottom: 10px;
    position: relative;
}

.ld-content-body li::marker {
    color: var(--accent);
    font-size: 1.2em;
}

.ld-content-body strong {
    color: var(--primary);
    font-weight: 700;
}

/* ============================================================
   WHY RENT SECTION
   ============================================================ */
.ld-why-section {
    padding: 72px 0;
    background: #fff;
}

.ld-section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.ld-section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.ld-section-title {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 4vw, 48px);
    color: var(--primary);
    letter-spacing: -.03em;
    line-height: 1.1;
    margin-bottom: 12px;
}

.ld-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.ld-why-card {
    background: var(--shell);
    border-radius: 20px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform .2s, box-shadow .2s;
}

.ld-why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px rgba(13,59,54,.1);
}

.ld-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--sun);
    font-size: 22px;
    box-shadow: 0 10px 22px rgba(13,59,54,.16);
}

.ld-why-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.ld-why-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}

/* ============================================================
   CARS / FLEET SECTION
   ============================================================ */
.ld-cars-section {
    padding: 72px 0;
    background: var(--shell);
}

.ld-cat-filter {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 36px;
}

.ld-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 2px solid var(--border);
    background: #fff;
    color: var(--ink);
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all .2s;
}

.ld-filter-btn:hover,
.ld-filter-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.ld-filter-btn i {
    font-size: 13px;
}

.ld-filter-count {
    font-size: 12px;
    opacity: .7;
    margin-left: 2px;
}

.ld-cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.ld-car-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: 0 6px 22px rgba(13,59,54,.07);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}

.ld-car-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(13,59,54,.13);
}

.ld-car-img-wrap {
    position: relative;
    height: 200px;
    background: #f8fafc;
    overflow: hidden;
}

.ld-car-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 10px;
    transition: transform .35s;
}

.ld-car-card:hover .ld-car-img-wrap img {
    transform: scale(1.04);
}

.ld-car-badge-img {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    background: var(--accent);
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .02em;
    z-index: 2;
}

.ld-car-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ld-car-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 8px;
}

.ld-car-name {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -.02em;
    margin: 0;
}

.ld-car-cat-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
}

.ld-car-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
}

.ld-car-meta i {
    font-size: 12px;
    color: var(--primary-2);
}

.ld-car-variants {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}

.ld-variant {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--shell);
    border: 1px solid var(--border);
}

.ld-variant-trans {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ld-variant-trans i {
    font-size: 11px;
    color: var(--muted);
}

.ld-variant-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--accent);
}

.ld-variant-price small {
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
}

.ld-car-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.ld-car-actions .btn {
    flex: 1;
    justify-content: center;
    font-size: 13px;
    padding: 10px 14px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.ld-cta-section {
    padding: 56px 0;
}

.ld-cta-box {
    border-radius: 24px;
    padding: 48px 40px;
    text-align: center;
    color: #fff;
}

.ld-cta-box h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 14px;
    color: #fff;
}

.ld-cta-box p {
    font-size: 16px;
    color: rgba(255,255,255,.85);
    max-width: 560px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.ld-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.ld-cta-actions .ld-btn {
    min-width: 160px;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.ld-faq-section {
    padding: 72px 0;
    background: #fff;
}

.ld-faq-grid {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    gap: 14px;
}

.ld-faq-item {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: box-shadow .2s;
}

.ld-faq-item:hover {
    box-shadow: 0 4px 12px rgba(13,59,54,.08);
}

.ld-faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--shell);
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    cursor: pointer;
    text-align: left;
    transition: background .2s;
}

.ld-faq-q:hover {
    background: #f0ede4;
}

.ld-faq-q i:first-child {
    color: var(--accent);
    font-size: 18px;
    flex-shrink: 0;
}

.ld-faq-arrow {
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: transform .3s;
    flex-shrink: 0;
}

.ld-faq-item.open .ld-faq-arrow {
    transform: rotate(180deg);
}

.ld-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s ease;
    background: #fff;
    padding: 0 22px;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
}

.ld-faq-item.open .ld-faq-a {
    max-height: 400px;
    padding: 16px 22px;
}

/* ============================================================
   TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    .ld-hero {
        padding: 120px 0 60px;
        min-height: 70vh;
    }
    
    .ld-hero-stats {
        padding: 16px 20px;
        max-width: 100%;
    }
    
    .ld-stat strong {
        font-size: 22px;
    }
    
    .ld-stat {
        padding: 0 12px;
    }
    
    .ld-info-grid {
        gap: 18px;
    }
    
    .ld-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .ld-cars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .ld-car-img-wrap {
        height: 180px;
    }
    
    .ld-cta-box {
        padding: 40px 32px;
    }
}

/* ============================================================
   MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
    .ld-hero {
        padding: 100px 0 50px;
        min-height: auto;
    }
    
    .ld-hero h1 {
        font-size: clamp(28px, 9vw, 42px);
    }
    
    .ld-hero-sub {
        font-size: 15px;
        margin-bottom: 24px;
    }
    
    .ld-hero-stats {
        padding: 14px 16px;
        margin-bottom: 24px;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .ld-stat {
        flex: 1 1 40%;
        padding: 8px;
        min-width: 0;
    }
    
    .ld-stat strong {
        font-size: 20px;
    }
    
    .ld-stat span {
        font-size: 11px;
    }
    
    .ld-stat-divider {
        display: none;
    }
    
    .ld-hero-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .ld-hero-actions .ld-btn {
        width: 100%;
        justify-content: center;
    }
    
    .ld-info-section {
        padding: 36px 0;
    }
    
    .ld-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .ld-info-card {
        padding: 20px;
        border-radius: 16px;
    }
    
    .ld-content-section {
        padding: 36px 0;
    }
    
    .ld-content-body {
        padding-left: 16px;
        padding-right: 16px;
        font-size: 15px;
    }
    
    .ld-content-body h2 {
        margin: 24px 0 12px;
    }
    
    .ld-content-body p {
        text-align: left;
    }
    
    .ld-why-section {
        padding: 48px 0;
    }
    
    .ld-section-head {
        margin-bottom: 28px;
    }
    
    .ld-why-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .ld-why-card {
        padding: 22px 20px;
        text-align: left;
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 16px;
    }
    
    .ld-why-icon {
        margin: 0;
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .ld-why-card h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .ld-why-card p {
        font-size: 13px;
        line-height: 1.55;
    }
    
    .ld-cars-section {
        padding: 48px 0;
    }
    
    .ld-cat-filter {
        gap: 8px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
        margin-bottom: 24px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    
    .ld-cat-filter::-webkit-scrollbar {
        display: none;
    }
    
    .ld-filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 13px;
        padding: 8px 16px;
    }
    
    .ld-cars-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .ld-car-img-wrap {
        height: 170px;
    }
    
    .ld-car-body {
        padding: 14px 16px 16px;
    }
    
    .ld-car-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .ld-car-name {
        font-size: 17px;
    }
    
    .ld-car-cat-badge {
        font-size: 10px;
    }
    
    .ld-variant {
        padding: 8px 12px;
        border-radius: 10px;
    }
    
    .ld-variant-price {
        font-size: 15px;
    }
    
    .ld-car-actions {
        gap: 8px;
    }
    
    .ld-car-actions .btn {
        font-size: 12px;
        padding: 9px 10px;
    }
    
    .ld-cta-section {
        padding: 40px 0;
    }
    
    .ld-cta-box {
        padding: 32px 24px;
        border-radius: 20px;
    }
    
    .ld-cta-box h2 {
        font-size: clamp(24px, 7vw, 32px);
    }
    
    .ld-cta-box p {
        font-size: 15px;
        margin-bottom: 22px;
    }
    
    .ld-cta-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .ld-cta-actions .ld-btn {
        width: 100%;
        justify-content: center;
    }
    
    .ld-faq-section {
        padding: 48px 0;
    }
    
    .ld-faq-q {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .ld-faq-a {
        padding: 0 16px;
        font-size: 14px;
    }
    
    .ld-faq-item.open .ld-faq-a {
        padding: 12px 16px;
    }
}

/* ============================================================
   SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
    .ld-hero {
        padding: 90px 0 40px;
    }
    
    .ld-taluka-badge {
        font-size: 12px;
        padding: 6px 14px;
        margin-bottom: 14px;
    }
    
    .ld-hero h1 {
        font-size: clamp(26px, 10vw, 36px);
        margin-bottom: 14px;
    }
    
    .ld-hero-sub {
        font-size: 14px;
        margin-bottom: 18px;
    }
    
    .ld-hero-stats {
        padding: 12px 12px;
        gap: 8px;
    }
    
    .ld-stat {
        flex: 1 1 45%;
        padding: 6px;
    }
    
    .ld-stat strong {
        font-size: 18px;
    }
    
    .ld-stat span {
        font-size: 10px;
    }
    
    .ld-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .ld-info-card {
        padding: 16px;
        border-radius: 14px;
    }
    
    .ld-info-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .ld-why-card {
        padding: 18px 16px;
        gap: 12px;
    }
    
    .ld-why-icon {
        width: 42px;
        height: 42px;
        font-size: 18px;
        border-radius: 12px;
    }
    
    .ld-why-card h3 {
        font-size: 15px;
    }
    
    .ld-why-card p {
        font-size: 12px;
    }
    
    .ld-car-img-wrap {
        height: 150px;
    }
    
    .ld-car-name {
        font-size: 16px;
    }
    
    .ld-car-meta {
        font-size: 12px;
        gap: 8px;
    }
    
    .ld-variant {
        padding: 7px 10px;
    }
    
    .ld-variant-trans {
        font-size: 12px;
    }
    
    .ld-variant-price {
        font-size: 14px;
    }
    
    .ld-car-actions {
        flex-direction: row;
    }
    
    .ld-car-actions .btn {
        font-size: 11px;
        padding: 8px 6px;
        gap: 4px;
    }
    
    .ld-cta-box {
        padding: 24px 18px;
        border-radius: 16px;
    }
    
    .ld-cta-box h2 {
        font-size: clamp(22px, 8vw, 28px);
    }
    
    .ld-cta-box p {
        font-size: 14px;
    }
    
    .ld-faq-q {
        padding: 12px 14px;
        font-size: 14px;
        gap: 10px;
    }
    
    .ld-faq-q i:first-child {
        font-size: 16px;
    }
    
    .ld-faq-arrow {
        min-width: 20px;
        height: 20px;
        font-size: 10px;
    }
    
    .ld-faq-a {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes ldFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ld-car-card {
    animation: ldFadeInUp 0.5s ease forwards;
}

.ld-car-card:nth-child(1) { animation-delay: 0.05s; }
.ld-car-card:nth-child(2) { animation-delay: 0.1s; }
.ld-car-card:nth-child(3) { animation-delay: 0.15s; }
.ld-car-card:nth-child(4) { animation-delay: 0.2s; }
.ld-car-card:nth-child(5) { animation-delay: 0.25s; }
.ld-car-card:nth-child(6) { animation-delay: 0.3s; }