/* cars.css — Supercar Explainer page styles */

[dir="rtl"] .cars-grid { direction: rtl; }
[dir="rtl"] .cars-service-grid { direction: rtl; }

/* Hero */
.cars-hero {
    background: var(--grey-900);
    color: var(--white);
    padding: 120px 40px 100px;
    text-align: center;
}

.cars-hero-inner { max-width: 700px; margin: 0 auto; }

.cars-section-label {
    font-size: .75rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: 500;
}

.cars-section-title {
    font-family: 'EB Garamond', serif;
    font-size: 2.8rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: -.01em;
    margin-bottom: 20px;
}

.cars-hero-icon {
    display: block;
    margin: 0 auto 32px;
    opacity: 1;
}

.cars-hero-intro {
    font-size: 1.05rem;
    color: rgba(255,255,255,.55);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

/* Content Sections */
.cars-section {
    padding: 120px 40px;
}

.cars-section-white { background: var(--white); }
.cars-section-grey { background: var(--grey-100); }

.cars-inner { max-width: 960px; margin: 0 auto; }

.cars-section-header {
    text-align: center;
    margin-bottom: 72px;
}

.cars-section-icon {
    display: block;
    margin: 0 auto 16px;
    color: var(--grey-300);
}

.cars-section-header .cars-section-label {
    color: var(--jade-medium);
}

.cars-heading {
    font-family: 'EB Garamond', serif;
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--grey-900);
    letter-spacing: -.01em;
    margin-bottom: 12px;
}

.cars-section-intro {
    font-size: 1.05rem;
    color: var(--grey-500);
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.9;
}

/* Car Card Grid */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.car-card {
    padding: 32px 28px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-top: 2px solid var(--gold);
    border-radius: 2px;
    transition: all .3s;
}

.car-card:hover {
    border-color: var(--jade-light);
    border-top-color: var(--gold);
    box-shadow: 0 20px 60px rgba(26,58,47,.08);
}

.car-card-brand {
    font-size: .65rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: block;
    margin-bottom: 6px;
}

.car-card h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--grey-900);
    margin-bottom: 12px;
}

.car-card-price {
    font-family: 'EB Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}

.car-card-specs {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.car-card-specs li {
    font-size: .78rem;
    color: var(--grey-500);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
}

.car-card-specs li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
}

.car-card-location {
    display: block;
    margin-top: 12px;
    font-size: .72rem;
    color: var(--grey-400);
    font-style: italic;
}

/* Tier badges */
.car-tier-badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: .6rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 10px;
}

.car-tier-badge.hypercar { background: rgba(196,162,101,.12); color: var(--gold); }
.car-tier-badge.supercar { background: rgba(26,58,47,.08); color: var(--jade-deep); }
.car-tier-badge.classic { background: var(--grey-100); color: var(--grey-600); }

/* Service Grid — 3 cards */
.cars-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.cars-service-card {
    padding: 40px 32px;
    background: var(--white);
    border: 1px solid var(--grey-200);
    border-radius: 2px;
    transition: all .3s;
}

.cars-service-card:hover {
    border-color: var(--jade-light);
    box-shadow: 0 20px 60px rgba(26,58,47,.08);
}

.cars-service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.cars-service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.cars-service-card h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--grey-900);
    margin-bottom: 12px;
}

.cars-service-card p {
    font-size: .85rem;
    color: var(--grey-500);
    line-height: 1.7;
}

/* Summary Box */
.cars-summary-box {
    padding: 32px;
    background: linear-gradient(135deg, rgba(196,162,101,.06), rgba(196,162,101,.02));
    border: 1px solid rgba(196,162,101,.2);
    border-radius: 2px;
    text-align: center;
    margin-top: 48px;
}

.cars-summary-box h4 {
    font-family: 'EB Garamond', serif;
    font-size: 1.1rem;
    color: var(--grey-900);
    margin-bottom: 10px;
}

.cars-summary-box p {
    font-size: .85rem;
    color: var(--grey-500);
    line-height: 1.7;
}

/* FAQ */
.cars-faq-list { max-width: 740px; margin: 0 auto; }

.cars-faq-item {
    border-bottom: 1px solid var(--grey-200);
}

.cars-faq-item:first-child { border-top: 1px solid var(--grey-200); }

.cars-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: 'EB Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--grey-900);
}

.cars-faq-q:hover { color: var(--jade-deep); }

.cars-faq-q svg {
    width: 18px;
    height: 18px;
    stroke: var(--grey-400);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform .3s;
}

.cars-faq-item.open .cars-faq-q svg { transform: rotate(180deg); }

.cars-faq-a {
    display: none;
    padding: 0 0 20px;
    font-size: .88rem;
    color: var(--grey-500);
    line-height: 1.8;
}

.cars-faq-item.open .cars-faq-a { display: block; }

/* Disclaimer Box */
.cars-disclaimer {
    padding: 24px 32px;
    border: 1px solid rgba(196,162,101,.25);
    border-radius: 2px;
    background: linear-gradient(135deg, rgba(196,162,101,.06), rgba(196,162,101,.02));
}

.cars-disclaimer p {
    font-size: .78rem;
    color: var(--grey-500);
    line-height: 1.7;
    text-align: center;
}

.cars-disclaimer strong {
    color: var(--gold);
    font-weight: 500;
}

.cars-disclaimer-top { margin-bottom: 48px; }

/* CTA */
.cars-cta {
    padding: 100px 40px;
    text-align: center;
    background: var(--white);
}

.cars-cta-inner { max-width: 500px; margin: 0 auto; }

.cars-cta p {
    font-size: .95rem;
    color: var(--grey-500);
    margin-bottom: 24px;
    line-height: 1.8;
}

.cars-cta a {
    display: inline-block;
    padding: 16px 48px;
    background: var(--jade-deep);
    color: var(--white);
    text-decoration: none;
    font-size: .75rem;
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 400;
    transition: background .3s;
    border-radius: 2px;
}

.cars-cta a:hover { background: var(--jade-medium); }

/* Responsive */
@media (max-width: 768px) {
    .cars-hero { padding: 80px 20px 60px; }
    .cars-hero-icon { width: 70px; height: 40px; margin-bottom: 24px; }
    .cars-section-title, .cars-heading { font-size: 1.8rem; }
    .cars-section { padding: 80px 20px; }
    .cars-grid { grid-template-columns: 1fr 1fr; }
    .cars-service-grid { grid-template-columns: 1fr; }
    .cars-cta { padding: 60px 20px; }
}

@media (max-width: 480px) {
    .cars-section-title, .cars-heading { font-size: 1.5rem; }
    .cars-grid { grid-template-columns: 1fr; }
}
