/* ================================================
   321SPEED – WASHCARS PAGE
   styles/washcars.css
   ================================================ */

/* ── HERO ── */
.wash-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.wash-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.wash-hero-bg video {
    width: 100%;
    height: 120%;
    object-fit: cover;
    opacity: 0.3;
}

.wash-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(17,17,17,1) 0%, rgba(17,17,17,0.55) 45%, rgba(0,0,0,0.2) 100%),
        linear-gradient(to right, rgba(0,0,0,0.7) 0%, transparent 65%);
    z-index: 1;
}

.wash-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 70px;
    width: 100%;
}

.wash-hero-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.35);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    margin-bottom: 28px;
    transition: color 0.25s;
}
.wash-hero-back:hover { color: #fff; }
.wash-hero-back:hover svg { transform: translateX(-3px); }
.wash-hero-back svg { transition: transform 0.25s; }

.wash-hero-eyebrow {
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
}

.wash-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.wash-hero-title span {
    color: var(--primary-color);
    font-style: italic;
}

.wash-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.42);
    max-width: 520px;
    line-height: 1.65;
    margin-bottom: 28px;
}

.wash-hero-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.wash-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 7px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wash-chip svg { color: #10B981; }

/* ── PRICING SECTION ── */
.wash-pricing {
    padding: 90px 0 100px;
    background: var(--dark-bg);
}

.wash-pricing-head {
    text-align: center;
    margin-bottom: 64px;
}

.wash-label {
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.72rem;
    display: block;
    margin-bottom: 12px;
}

.wash-pricing-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.wash-pricing-title span { color: var(--primary-color); }

.wash-pricing-sub {
    color: var(--text-gray);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ── MAIN LAYOUT ── */
.wash-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ── SERVICE CARDS ── */
.wash-services {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.wash-service-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
}

.wash-service-card:hover {
    border-color: rgba(255,45,45,0.3);
    transform: translateY(-3px);
}

.wash-service-header {
    padding: 22px 24px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    gap: 14px;
}

.wash-service-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,45,45,0.1);
    border: 1px solid rgba(255,45,45,0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
}

.wash-service-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.wash-service-list {
    list-style: none;
    padding: 18px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wash-service-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.45;
}

.wash-service-list li::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--primary-color);
    flex-shrink: 0;
    margin-top: 6px;
}

/* ── HOURS NOTE ── */
.wash-hours-note {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    line-height: 1.5;
    margin-top: 4px;
}

.wash-hours-note svg { color: var(--primary-color); flex-shrink: 0; }

.wash-hours-note strong { color: rgba(255,255,255,0.75); }

/* ── BONUS BANNER ── */
.wash-bonus {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    background: rgba(16,185,129,0.06);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 8px;
}

.wash-bonus-icon {
    width: 44px;
    height: 44px;
    background: rgba(16,185,129,0.12);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #10B981;
}

.wash-bonus-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #10B981;
    margin-bottom: 4px;
}

.wash-bonus-text {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

.wash-bonus-text strong { color: #10B981; }

/* ── STICKY PRICE PANEL ── */
.wash-price-panel {
    position: sticky;
    top: 100px;
}

.wash-panel-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.wash-panel-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--primary-color);
}

.wash-panel-top {
    padding: 28px 28px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-align: center;
}

.wash-panel-label-sm {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 10px;
}

.wash-price-main {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 4px;
}

.wash-price-sub {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.25);
}

.wash-extras-label {
    padding: 16px 24px 10px;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.2);
}

.wash-extra-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    gap: 10px;
    transition: background 0.2s;
}

.wash-extra-item:last-of-type { border-bottom: none; }
.wash-extra-item:hover { background: rgba(255,255,255,0.02); }

.wash-extra-name {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.35;
}

.wash-extra-price {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
    flex-shrink: 0;
}

.wash-panel-cta {
    padding: 20px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wash-btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 15px 20px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    text-align: center;
}
.wash-btn-call:hover { background: var(--primary-hover); transform: translateY(-1px); color: #fff; }

.wash-panel-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 2px;
    padding-top: 4px;
}

.wash-contact-name {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.22);
}

.wash-contact-phone {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

.wash-panel-hours {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.18);
    padding-bottom: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .wash-layout { grid-template-columns: 1fr; }
    .wash-price-panel { position: static; }
    .wash-panel-card { max-width: 600px; margin: 0 auto; }
}

@media (max-width: 700px) {
    .wash-services { grid-template-columns: 1fr; }
    .wash-hero-title { font-size: 2.8rem; }
    .wash-bonus { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
    .wash-hero { height: 60vh; min-height: 420px; }
    .wash-hero-title { font-size: 2.2rem; }
    .wash-pricing { padding: 60px 0 80px; }
    .wash-layout { padding: 0 14px; }
}