/* ========================================
   CAR WASH — Mirador Auto Spa
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=Inter:wght@300;400;600&display=swap');

:root {
    --cw-bg: #0a0a0a;
    --cw-bg-card: #141414;
    --cw-bg-section: #111111;
    --cw-red: #D32F2F;
    --cw-red-dark: #B71C1C;
    --cw-red-glow: rgba(211, 47, 47, 0.15);
    --cw-white: #ffffff;
    --cw-text: #e0e0e0;
    --cw-text-muted: #888888;
    --cw-gold: #D4AF37;
    --cw-border: rgba(255, 255, 255, 0.08);
    --cw-font-heading: 'Montserrat', sans-serif;
    --cw-font-body: 'Inter', sans-serif;
    --cw-container: 1200px;
    --cw-transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; }

body.carwash-body {
    background: var(--cw-bg);
    color: var(--cw-text);
    font-family: var(--cw-font-body);
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--cw-font-heading);
    color: var(--cw-white);
    margin-top: 0;
    font-weight: 700;
}

a { color: inherit; text-decoration: none; transition: var(--cw-transition); }

.cw-container {
    max-width: var(--cw-container);
    margin: 0 auto;
    padding: 0 1rem;
}

/* ---- HEADER ---- */
.cw-header {
    position: fixed; top: 0; left: 0; width: 100%;
    z-index: 1000; padding: 1rem 0;
    transition: all 0.4s ease;
    background: transparent;
}
.cw-header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--cw-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}
.cw-header-inner {
    display: flex; align-items: center; justify-content: space-between;
}
.cw-logo-link { display: flex; align-items: center; gap: 0.75rem; }
.cw-logo-img {
    height: 40px; width: auto; border-radius: 50%;
    border: 1px solid var(--cw-red);
}
.cw-logo-text {
    font-family: var(--cw-font-heading); font-size: 1rem;
    font-weight: 800; color: var(--cw-white);
    text-transform: uppercase; letter-spacing: 0.05em;
}
.cw-logo-text span { color: var(--cw-red); }

.cw-nav { display: flex; align-items: center; gap: 2rem; }
.cw-nav a {
    font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--cw-text-muted);
    position: relative;
}
.cw-nav a:hover, .cw-nav a.active { color: var(--cw-white); }
.cw-nav a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--cw-red);
    transition: width 0.3s ease;
}
.cw-nav a:hover::after, .cw-nav a.active::after { width: 100%; }

.cw-nav-cta {
    background: var(--cw-red); color: var(--cw-white) !important;
    padding: 0.6rem 1.5rem; font-weight: 700;
    transition: all 0.3s ease;
}
.cw-nav-cta::after { display: none !important; }
.cw-nav-cta:hover {
    background: var(--cw-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
}

.cw-mobile-toggle {
    display: none; font-size: 1.5rem; cursor: pointer;
    color: var(--cw-white); background: none; border: none;
}

.cw-lang-switch { display: flex; gap: 0.4rem; }
.cw-lang-switch a { font-size: 1.2rem; opacity: 0.5; filter: grayscale(50%); }
.cw-lang-switch a.active { opacity: 1; filter: grayscale(0%); }
.cw-lang-switch a:hover { opacity: 1; filter: grayscale(0%); }

/* ---- HERO ---- */
.cw-hero {
    min-height: 100vh; display: flex; align-items: center;
    justify-content: center; position: relative;
    background: var(--cw-bg); overflow: hidden;
}
.cw-hero-bg {
    position: absolute; inset: 0;
    background: url('../images/carwash/hero.png') center/cover no-repeat;
    z-index: 1;
}
.cw-hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to bottom,
        rgba(10, 10, 10, 0.6) 0%,
        rgba(10, 10, 10, 0.4) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 2;
}
.cw-hero-content {
    position: relative; z-index: 10; text-align: center;
    max-width: 800px; padding: 2rem;
}
.cw-hero-badge {
    display: inline-block; padding: 0.4rem 1.2rem;
    border: 1px solid var(--cw-red);
    color: var(--cw-red); font-size: 0.75rem;
    font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.2em; margin-bottom: 1.5rem;
    opacity: 0; animation: cwFadeUp 0.6s ease 0.2s forwards;
}
.cw-hero-title {
    font-size: 3.5rem; font-weight: 900;
    line-height: 1.05; margin-bottom: 0.5rem;
    text-transform: uppercase; letter-spacing: -0.02em;
    opacity: 0; animation: cwFadeUp 0.6s ease 0.3s forwards;
}
.cw-hero-title span { color: var(--cw-red); }
.cw-hero-tagline {
    font-size: 1.15rem; color: var(--cw-text-muted);
    margin-bottom: 2.5rem; max-width: 600px;
    margin-left: auto; margin-right: auto;
    opacity: 0; animation: cwFadeUp 0.6s ease 0.4s forwards;
}
.cw-hero-actions {
    display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
    opacity: 0; animation: cwFadeUp 0.6s ease 0.5s forwards;
}

/* Buttons */
.cw-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 1rem 2.5rem; font-family: var(--cw-font-body);
    font-size: 0.9rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em;
    cursor: pointer; transition: all 0.3s ease;
    border: none; text-decoration: none;
}
.cw-btn-primary {
    background: var(--cw-red); color: var(--cw-white);
}
.cw-btn-primary:hover {
    background: var(--cw-red-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(211, 47, 47, 0.4);
}
.cw-btn-outline {
    background: transparent; color: var(--cw-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.cw-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--cw-white);
    transform: translateY(-3px);
}

/* ---- SERVICES ---- */
.cw-services { padding: 6rem 0; background: var(--cw-bg-section); }
.cw-section-header { text-align: center; margin-bottom: 4rem; }
.cw-section-label {
    color: var(--cw-red); font-size: 0.8rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.2em;
    margin-bottom: 0.5rem;
}
.cw-section-title { font-size: 2.5rem; margin-bottom: 0.5rem; }
.cw-section-subtitle { color: var(--cw-text-muted); font-size: 1rem; }

.cw-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}
.cw-service-card {
    background: var(--cw-bg-card); border: 1px solid var(--cw-border);
    padding: 2.5rem 2rem; position: relative;
    overflow: hidden; transition: all 0.4s ease;
}
.cw-service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--cw-red), transparent);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.4s ease;
}
.cw-service-card:hover { transform: translateY(-6px); border-color: var(--cw-red); }
.cw-service-card:hover::before { transform: scaleX(1); }

.cw-service-icon {
    font-size: 2.5rem; color: var(--cw-red);
    margin-bottom: 1.5rem;
}
.cw-service-card h3 {
    font-size: 1.3rem; margin-bottom: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.03em;
}
.cw-service-card p { color: var(--cw-text-muted); font-size: 0.9rem; line-height: 1.7; }
.cw-service-price {
    display: inline-block; margin-top: 1.2rem; padding: 0.4rem 1rem;
    background: var(--cw-red-glow); color: var(--cw-red);
    font-weight: 700; font-size: 0.85rem;
    border: 1px solid rgba(211, 47, 47, 0.2);
}

/* ---- WHY CHOOSE US ---- */
.cw-why { padding: 6rem 0; background: var(--cw-bg); }
.cw-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem; margin-top: 3rem;
}
.cw-why-item {
    text-align: center; padding: 2rem;
    border: 1px solid var(--cw-border);
    transition: all 0.3s ease;
}
.cw-why-item:hover {
    border-color: var(--cw-red);
    background: var(--cw-bg-card);
}
.cw-why-icon {
    width: 60px; height: 60px; margin: 0 auto 1.5rem;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; background: var(--cw-red-glow);
    color: var(--cw-red); font-size: 1.5rem;
}
.cw-why-item h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.cw-why-item p { color: var(--cw-text-muted); font-size: 0.85rem; }

/* ---- CONTACT / LOCATION ---- */
.cw-contact { padding: 6rem 0; background: var(--cw-bg-section); }
.cw-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem; align-items: start;
}
.cw-contact-info h3 { margin-bottom: 2rem; font-size: 1.5rem; }
.cw-contact-item {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.5rem;
}
.cw-contact-item i {
    color: var(--cw-red); font-size: 1.2rem;
    margin-top: 0.3rem; width: 24px; text-align: center;
}
.cw-contact-item p { margin: 0; }
.cw-contact-item a { color: var(--cw-white); }
.cw-contact-item a:hover { color: var(--cw-red); }

.cw-hours-table { width: 100%; margin-top: 1.5rem; }
.cw-hours-table tr { border-bottom: 1px solid var(--cw-border); }
.cw-hours-table td {
    padding: 0.6rem 0; font-size: 0.9rem; color: var(--cw-text-muted);
}
.cw-hours-table td:last-child { text-align: right; color: var(--cw-white); }

.cw-map {
    width: 100%; height: 350px; background: #222;
    overflow: hidden; border: 1px solid var(--cw-border);
}
.cw-map iframe { width: 100%; height: 100%; border: 0; }

/* ---- FOOTER ---- */
.cw-footer {
    background: #050505; padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--cw-border);
}
.cw-footer-inner {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.cw-footer-brand {
    font-family: var(--cw-font-heading); font-weight: 800;
    text-transform: uppercase; font-size: 0.9rem;
}
.cw-footer-brand span { color: var(--cw-red); }
.cw-footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.cw-footer-links a { font-size: 0.8rem; color: var(--cw-text-muted); }
.cw-footer-links a:hover { color: var(--cw-white); }
.cw-footer-social { display: flex; gap: 0.75rem; }
.cw-footer-social a {
    width: 36px; height: 36px; display: flex;
    align-items: center; justify-content: center;
    border-radius: 50%; background: rgba(255,255,255,0.05);
    color: var(--cw-text-muted); transition: all 0.3s ease;
}
.cw-footer-social a:hover {
    background: var(--cw-red); color: var(--cw-white);
    transform: translateY(-3px);
}
.cw-footer-bottom {
    text-align: center; margin-top: 2rem;
    padding-top: 1.5rem; border-top: 1px solid var(--cw-border);
    font-size: 0.8rem; color: var(--cw-text-muted);
}
.cw-footer-bottom a { color: var(--cw-red); }
.cw-footer-bottom a:hover { color: var(--cw-white); }

/* ---- WhatsApp Float ---- */
.cw-whatsapp {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease; text-decoration: none;
}
.cw-whatsapp:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5); }

/* Animations */
@keyframes cwFadeUp { to { opacity: 1; transform: translateY(0); } }

/* ---- MOBILE ---- */
@media (max-width: 768px) {
    .cw-mobile-toggle { display: block; }
    .cw-nav {
        display: none; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(10,10,10,0.98); padding: 1.5rem;
        border-bottom: 1px solid var(--cw-border);
    }
    .cw-nav.open { display: flex; }
    .cw-hero-title { font-size: 2.2rem; }
    .cw-hero-tagline { font-size: 1rem; }
    .cw-section-title { font-size: 1.8rem; }
    .cw-btn { padding: 0.8rem 1.8rem; font-size: 0.8rem; }
    .cw-footer-inner { flex-direction: column; text-align: center; }
    .cw-whatsapp { bottom: 1.5rem; right: 1.5rem; width: 50px; height: 50px; font-size: 1.3rem; }
}
