/* =========================================
   MODERN AUTO DETAILING THEME
   Glassmorphism + Dark Mode + Neon Accents
   ========================================= */

:root {
    --bg-dark: #0a0e17;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-light: rgba(255, 255, 255, 0.08);
    --accent-primary: #3b82f6; /* Electric Blue */
    --accent-glow: #60a5fa;
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; margin-bottom: 1.5rem; }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
.text-link { color: var(--accent-primary); border-bottom: 1px solid transparent; }
.text-link:hover { border-color: var(--accent-primary); }

/* Layout Utilities */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section-padding { padding: 6rem 0; position: relative; z-index: 1; }
.bg-darker { background: #05080f; }
.full-width { width: 100%; display: block; text-align: center; }

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition);
}
.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.5);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-glow {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}
.btn-primary:hover { background: var(--accent-glow); transform: scale(1.05); }
.btn-secondary {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--text-main);
    margin-left: 1rem;
}
.btn-secondary:hover { background: rgba(255,255,255,0.05); border-color: white; }
.btn-glow {
    background: linear-gradient(135deg, var(--accent-primary), #8b5cf6);
    color: white;
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(10, 14, 23, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 1rem 0;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; }
.accent { color: var(--accent-primary); }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.95rem; font-weight: 500; opacity: 0.8; }
.nav-links a:hover { opacity: 1; color: var(--accent-primary); }
.mobile-toggle { display: none; cursor: pointer; }
.mobile-toggle span { display: block; width: 25px; height: 2px; background: white; margin: 5px 0; }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--accent-glow);
    border-color: rgba(96, 165, 250, 0.3);
}
.hero-text { font-size: 1.25rem; max-width: 600px; margin-bottom: 2.5rem; }
.trust-indicators { display: flex; gap: 3rem; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid var(--border-light); }
.stat-item span { display: block; font-size: 2.5rem; font-weight: 800; font-family: var(--font-heading); color: white; }
.stat-item p { font-size: 0.9rem; margin: 0; }

/* Floating Shapes */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out;
    z-index: 0;
}
.shape-1 { width: 400px; height: 400px; background: var(--accent-primary); top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; background: #8b5cf6; bottom: 10%; left: -50px; animation-delay: -5s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

/* Services Grid */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.service-card .icon-box { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { color: white; }

/* Timeline */
.timeline { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 3rem; }
.timeline-item { position: relative; padding-top: 2rem; border-top: 2px solid var(--border-light); }
.step-number {
    position: absolute;
    top: -1rem; left: 0;
    background: var(--bg-dark);
    padding-right: 1rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--accent-primary);
}

/* Article Styles */
.article-container { max-width: 800px; margin: 0 auto; }
.article-container h2 { margin-top: 3rem; color: white; }
.article-container h3 { margin-top: 2rem; color: var(--accent-glow); }
.lead { font-size: 1.2rem; color: var(--text-main); border-left: 3px solid var(--accent-primary); padding-left: 1.5rem; margin-bottom: 2rem; }
.callout-box {
    margin: 2rem 0;
    padding: 1.5rem;
    border-left: 4px solid #ef4444;
    background: rgba(239, 68, 68, 0.05);
}
.cta-box { text-align: center; margin-top: 4rem; padding: 3rem; border: 1px solid var(--accent-primary); }

/* FAQ */
.faq-grid { display: grid; gap: 1rem; margin-top: 2rem; }
.faq-item { padding: 0; overflow: hidden; }
.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: white;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--accent-primary); }
.faq-item[open] summary::after { content: '-'; }
.faq-item p { padding: 0 1.5rem 1.5rem; margin: 0; font-size: 0.95rem; }

/* Testimonials */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.stars { color: #fbbf24; margin-bottom: 1rem; letter-spacing: 2px; }
.author { display: flex; align-items: center; gap: 1rem; margin-top: 1.5rem; }
.avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--accent-primary), #8b5cf6);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.8rem;
}
.author strong { display: block; color: white; font-size: 0.9rem; }
.author span { font-size: 0.8rem; color: var(--text-muted); }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h2 { margin-bottom: 1rem; }
.info-item { margin: 1.5rem 0; }
.info-item .label { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--accent-primary); margin-bottom: 0.25rem; }
.info-item a, .info-item address { font-style: normal; font-size: 1.1rem; color: white; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form input, .contact-form select, .contact-form textarea {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-light);
    padding: 1rem;
    border-radius: 8px;
    color: white;
    font-family: inherit;
    outline: none;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent-primary); }

/* Footer */
footer { background: #020408; padding: 4rem 0 2rem; border-top: 1px solid var(--border-light); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col h4 { color: white; margin-bottom: 1.5rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.75rem; }
.footer-col a { color: var(--text-muted); font-size: 0.9rem; }
.footer-col a:hover { color: var(--accent-primary); }
.social-icons { display: flex; gap: 1rem; margin-top: 1rem; }
.social-icons span {
    width: 35px; height: 35px;
    border: 1px solid var(--border-light);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; font-weight: 700;
    cursor: pointer;
}
.copyright { text-align: center; padding-top: 2rem; border-top: 1px solid var(--border-light); font-size: 0.85rem; color: var(--text-muted); }

/* Responsive */
@media (max-width: 900px) {
    .contact-layout, .footer-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; } /* Simplified for demo */
    .mobile-toggle { display: block; }
    .hero-content { text-align: center; margin: 0 auto; }
    .trust-indicators { justify-content: center; }
    .btn-secondary { margin: 1rem 0 0 0; }
}