/* ── Shared landing-page styles (mobile-tyres, wheel-alignment, air-conditioning) ──
   Loaded after styles.css. Theme is driven by the accent variables below;
   a page can override them in a small inline <style> block if needed. */

:root {
    --accent: #f39c12;
    --accent-dark: #e08e0b;
    --accent-soft: #fff8ea;
    --on-accent: #000;
    --dark: #2c3e50;
    --light-bg: #f8f9fa;
}

/* Sticky header - landing page variant */
.lp-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 0.75rem 0;
}
.lp-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.lp-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--dark);
    text-decoration: none;
}
.lp-logo span { color: var(--accent); }
.lp-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.lp-phone {
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.lp-phone i { color: var(--accent); }
@media (max-width: 480px) {
    .lp-phone-text { display: none; }
    .lp-logo { font-size: 1.2rem; }
}

/* Hero */
.lp-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    margin-top: 64px;
    overflow: hidden;
}
.lp-hero-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    object-position: center 40%;
}
.lp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.35) 100%);
}
.lp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 20px;
    color: #fff;
}
.lp-hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--on-accent);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 3px;
    margin-bottom: 1.2rem;
}
.lp-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    max-width: 700px;
}
.lp-hero-content h1 span { color: var(--accent); }
.lp-hero-content p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 580px;
    margin-bottom: 2rem;
    opacity: 0.93;
}
.lp-hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.lp-hero-trust {
    margin-top: 1.4rem;
    font-size: 0.92rem;
    opacity: 0.9;
}
.lp-hero-trust i { color: var(--accent); }
.btn-call {
    background: var(--accent);
    color: var(--on-accent);
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.15s;
}
.btn-call:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-whatsapp {
    background: #25d366;
    color: #fff;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.2s, transform 0.15s;
}
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

/* Trust bar */
.trust-bar {
    background: var(--dark);
    color: #fff;
    padding: 1rem 0;
}
.trust-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
}
.trust-item i { color: var(--accent); font-size: 1.1rem; }

/* Section headings */
.lp-section {
    padding: 4rem 0;
}
.lp-section.alt { background: var(--light-bg); }
.section-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section-heading h2 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.6rem;
}
.section-heading p {
    color: #555;
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0 auto;
}

/* Benefit cards */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.benefit-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    text-align: center;
    transition: transform 0.2s;
}
.benefit-card:hover { transform: translateY(-4px); }
.benefit-card .icon {
    width: 56px;
    height: 56px;
    background: var(--accent-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.benefit-card .icon i { font-size: 1.5rem; color: var(--accent); }
.benefit-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.9rem; color: #555; line-height: 1.5; }

/* Van gallery / photo grid */
.van-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}
.van-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.van-gallery img:first-child {
    grid-column: 1 / -1;
    height: 360px;
    object-position: center 45%;
}
@media (min-width: 768px) {
    .van-gallery img:first-child { grid-column: auto; height: 260px; }
}

/* Areas grid */
.areas-grid-lp {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
}
.area-badge {
    background: #fff;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.9rem 1rem;
    text-align: center;
}
.area-badge strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark);
    font-weight: 700;
}
.area-badge span {
    font-size: 0.78rem;
    color: #777;
}

/* How it works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}
.step-card { padding: 1.5rem 1rem; }
.step-number-circle {
    width: 52px;
    height: 52px;
    background: var(--accent);
    color: var(--on-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}
.step-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.step-card p { font-size: 0.9rem; color: #555; }

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.review-card {
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.review-stars { color: var(--accent); margin-bottom: 0.6rem; font-size: 1rem; }
.review-card p { font-size: 0.9rem; color: #444; line-height: 1.55; margin-bottom: 0.8rem; }
.review-author { font-weight: 600; font-size: 0.88rem; color: var(--dark); }
.reviews-note {
    text-align: center;
    margin-top: 1.8rem;
    font-size: 1rem;
    color: #555;
}

/* FAQ (native details/summary — no JS needed) */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    overflow: hidden;
}
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 1.1rem 1.4rem;
    font-weight: 600;
    color: var(--dark);
    font-size: 1.02rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    font-size: 1.3rem;
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-answer {
    padding: 0 1.4rem 1.2rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    background: var(--dark);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}
.final-cta h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.final-cta p { font-size: 1.05rem; opacity: 0.85; margin-bottom: 2rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.final-cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* Sticky bottom bar (mobile only) — call + WhatsApp side by side */
.sticky-bottom {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: var(--accent);
    padding: 0.6rem 0.75rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.18);
}
.sticky-bottom-inner {
    display: flex;
    gap: 0.6rem;
}
.sticky-bottom a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--on-accent);
    text-decoration: none;
    letter-spacing: 0.02em;
    padding: 0.55rem 0.5rem;
    border-radius: 6px;
}
.sticky-bottom a.sticky-wa {
    background: #25d366;
    color: #fff;
}
@media (max-width: 768px) {
    .sticky-bottom { display: block; }
    body { padding-bottom: 68px; }
}

/* Minimal footer */
.lp-footer {
    background: #1a2533;
    color: #aaa;
    padding: 2rem 0;
    font-size: 0.88rem;
}
.lp-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: flex-start;
}
.lp-footer a { color: var(--accent); text-decoration: none; }
.lp-footer a:hover { text-decoration: underline; }
.lp-footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
