/* =====================================================
   SIEMVE - Modern Automotive Workshop Website
   Premium CSS with Glass Morphism, Gradients & Effects
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #E31E24;
    --primary-dark: #B01820;
    --secondary: #FF4444;
    --accent: #FF6B35;
    --bg-dark: #0a0a0f;
    --bg-card: #12121a;
    --bg-card-hover: #1a1a2e;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --text-muted: #6b6b80;
    --border: rgba(255, 255, 255, 0.06);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --gradient-primary: linear-gradient(135deg, #E31E24, #FF4444);
    --gradient-secondary: linear-gradient(135deg, #B01820, #E31E24);
    --gradient-warm: linear-gradient(135deg, #FF6B35, #ff2d78);
    --gradient-bg: linear-gradient(180deg, #0a0a0f 0%, #0f0f1a 50%, #0a0a0f 100%);
    --shadow-glow: 0 0 40px rgba(227, 30, 36, 0.15);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-full: 999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--primary);
    color: var(--bg-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- Cursor Glow ---------- */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    opacity: 0;
}

body:hover .cursor-glow { opacity: 1; }

/* ---------- Particle Canvas ---------- */
#particleCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner { text-align: center; }

/* ---------- Car Burnout Preloader ---------- */
.preloader-scene {
    position: relative;
    width: 320px;
    height: 160px;
    margin: 0 auto 1.5rem;
}

.preloader-car {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 290px;
    animation: carShake 0.08s ease-in-out infinite alternate;
}

.preloader-car svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 20px rgba(0,0,0,0.5));
}

/* Headlight flicker */
.headlight-flicker {
    animation: flickerLight 0.15s ease-in-out infinite alternate;
}

/* Taillight pulse */
.taillight-pulse {
    animation: taillightPulse 0.3s ease-in-out infinite alternate;
}

/* Exhaust glow flicker */
.exhaust-glow {
    animation: exhaustFlicker 0.12s ease-in-out infinite alternate;
}

@keyframes flickerLight {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

@keyframes taillightPulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

@keyframes exhaustFlicker {
    0% { opacity: 0.2; transform: scaleX(0.8); }
    100% { opacity: 0.7; transform: scaleX(1.2); }
}

/* Car vibration / burnout shake */
@keyframes carShake {
    0% { transform: translateX(-50%) translateY(0) rotate(0deg); }
    25% { transform: translateX(-50%) translateY(-1.5px) rotate(-0.3deg); }
    50% { transform: translateX(-50%) translateY(0.5px) rotate(0.2deg); }
    75% { transform: translateX(-50%) translateY(-1px) rotate(-0.2deg); }
    100% { transform: translateX(-50%) translateY(1px) rotate(0.3deg); }
}

/* Spinning wheels */
.wheel-spokes {
    transform-origin: center;
    animation: spinWheel 0.15s linear infinite;
}

.rear-wheel .wheel-spokes {
    animation-duration: 0.08s; /* Rear spins faster - burnout! */
}

@keyframes spinWheel {
    to { transform: rotate(360deg); }
}

/* Ground line */
.preloader-ground {
    position: absolute;
    bottom: 10px;
    left: -20px;
    right: -20px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(227,30,36,0.3) 20%, rgba(227,30,36,0.5) 50%, rgba(227,30,36,0.3) 80%, transparent);
}

/* Tire marks */
.preloader-tire-marks {
    position: absolute;
    bottom: 10px;
    left: 10%;
    width: 33%;
    height: 6px;
}

.tire-mark {
    position: absolute;
    height: 2px;
    background: rgba(40,40,40,0.8);
    border-radius: 1px;
    animation: tireMarkGrow 0.8s ease-out infinite;
}

.mark-1 { top: 0; right: 0; width: 0; animation-delay: 0s; }
.mark-2 { top: 3px; right: 0; width: 0; animation-delay: 0.4s; }

@keyframes tireMarkGrow {
    0% { width: 0; right: 55px; opacity: 0.8; }
    100% { width: 80px; right: 55px; opacity: 0; }
}

/* Smoke puffs */
.preloader-smoke {
    position: absolute;
    bottom: 15px;
    left: 12%;
    width: 60px;
    height: 80px;
    pointer-events: none;
}

.smoke-puff {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 18px;
    height: 18px;
    background: radial-gradient(circle, rgba(180,180,180,0.5) 0%, rgba(120,120,120,0.2) 40%, transparent 70%);
    border-radius: 50%;
    animation: smokePuff 1.2s ease-out infinite;
    opacity: 0;
}

.smoke-puff.s1 { animation-delay: 0s; left: 40%; }
.smoke-puff.s2 { animation-delay: 0.15s; left: 55%; width: 22px; height: 22px; }
.smoke-puff.s3 { animation-delay: 0.3s; left: 35%; width: 16px; height: 16px; }
.smoke-puff.s4 { animation-delay: 0.45s; left: 60%; width: 20px; height: 20px; }
.smoke-puff.s5 { animation-delay: 0.6s; left: 45%; width: 24px; height: 24px; }
.smoke-puff.s6 { animation-delay: 0.75s; left: 30%; width: 14px; height: 14px; }
.smoke-puff.s7 { animation-delay: 0.9s; left: 50%; width: 20px; height: 20px; }
.smoke-puff.s8 { animation-delay: 1.05s; left: 38%; width: 16px; height: 16px; }

@keyframes smokePuff {
    0% {
        transform: translate(-50%, 0) scale(0.4);
        opacity: 0;
    }
    15% {
        opacity: 0.7;
    }
    100% {
        transform: translate(calc(-50% - 40px), -70px) scale(2.5);
        opacity: 0;
    }
}

.preloader-text {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: var(--border);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    animation: preloaderFill 1.5s ease-out forwards;
}

@keyframes preloaderFill {
    to { width: 100%; }
}

/* ---------- Navigation ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 1rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 0.6rem 0;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 100;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    transform: rotate(-10deg);
}

.logo-img {
    height: 140px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: var(--transition);
}

.nav-logo:hover .logo-img {
    filter: brightness(1.3) drop-shadow(0 0 8px rgba(227, 30, 36, 0.4));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.logo-accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 0.3rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--bg-dark);
    transition: var(--transition);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    z-index: 100;
    padding: 5px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero Section ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 3rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
}

.hero-gradient-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -20%;
    left: -10%;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-gradient-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -20%;
    right: -10%;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-gradient-orb.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orbFloat 12s ease-in-out infinite;
    opacity: 0.2;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3.5rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stat-item { text-align: center; }

.hero-stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    animation: fadeInUp 1s ease-out 1s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 22px; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.3);
}

.btn-outline {
    border: 1.5px solid var(--glass-border);
    color: var(--text-primary);
    background: var(--glass);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.1);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.btn:hover .btn-shine { left: 100%; }

/* ---------- Section Common Styles ---------- */
.section-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
}

/* ---------- Services ---------- */
.services {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    overflow: hidden;
}

.service-card-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(227, 30, 36, 0.2);
    box-shadow: var(--shadow-glow);
}

.service-card:hover .service-card-glow {
    opacity: 1;
    height: 2px;
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.3);
}

.service-card.featured {
    border-color: rgba(227, 30, 36, 0.2);
    background: linear-gradient(180deg, rgba(227, 30, 36, 0.05) 0%, var(--bg-card) 100%);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.8rem;
    background: var(--gradient-primary);
    color: var(--bg-dark);
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 1.2rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    transform: scale(1.1) rotate(-5deg);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.service-features span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.78rem;
    color: var(--text-muted);
    background: rgba(255,255,255,0.03);
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-full);
}

.service-features span i {
    color: var(--primary);
    font-size: 0.65rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

.service-link:hover { gap: 0.8rem; }

/* ---------- Brands ---------- */
.brands {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.brands-marquee {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    margin-bottom: 1rem;
}

.brands-track {
    display: flex;
    gap: 1rem;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.brands-marquee.reverse .brands-track {
    animation-direction: reverse;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.brand-item {
    flex-shrink: 0;
    padding: 0.8rem 2rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.brand-item:hover {
    border-color: rgba(227, 30, 36, 0.3);
    background: rgba(227, 30, 36, 0.05);
    transform: scale(1.05);
}

.brand-item span {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.brand-item:hover span { color: var(--primary); }

/* ---------- About ---------- */
.about {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-visual { position: relative; }

.about-image-wrapper { position: relative; }

.about-image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--bg-card), rgba(227, 30, 36, 0.05));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 4rem;
    color: var(--primary);
    overflow: hidden;
}

.about-image-placeholder span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

.about-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.4rem;
    background: rgba(18, 18, 26, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    animation: floatCard 4s ease-in-out infinite;
}

.about-float-card i {
    font-size: 1.3rem;
    color: var(--primary);
}

.about-float-card strong {
    display: block;
    font-size: 0.85rem;
}

.about-float-card span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.about-float-card.card-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.about-float-card.card-2 {
    bottom: -20px;
    left: -20px;
    animation-delay: 2s;
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-text {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.about-feature:hover {
    border-color: rgba(227, 30, 36, 0.2);
    background: rgba(227, 30, 36, 0.03);
}

.about-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.about-feature strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.about-feature span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ---------- Stats ---------- */
.stats {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.stats-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.stats-gradient-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    left: -10%;
    top: -30%;
}

.stats-gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    right: -10%;
    bottom: -30%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(227, 30, 36, 0.2);
    box-shadow: var(--shadow-glow);
}

.stat-icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* ---------- Testimonials ---------- */
.testimonials {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

.testimonials-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 4rem;
    font-family: Georgia, serif;
    color: rgba(227, 30, 36, 0.08);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(227, 30, 36, 0.2);
    box-shadow: var(--shadow-glow);
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
    color: #ffb800;
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.2;
}

.cta-gradient-orb.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    left: 10%;
    top: -40%;
}

.cta-gradient-orb.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--secondary);
    right: 10%;
    bottom: -40%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: calc(var(--radius) * 1.5);
    backdrop-filter: blur(20px);
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto 2rem;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Contact ---------- */
.contact {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(227, 30, 36, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
}

.contact-info-item strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 0.1rem;
}

.contact-info-item span {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.contact-social {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    border-color: transparent;
    transform: translateY(-3px);
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2.5rem;
}

.form-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-field {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group .form-field { margin-bottom: 0; }

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
}

.form-field select {
    appearance: none;
    cursor: pointer;
}

.form-field label {
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition);
}

.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label,
.form-field select:focus ~ label,
.form-field select:valid ~ label {
    top: -0.6rem;
    font-size: 0.75rem;
    color: var(--primary);
}

.form-field-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.form-field input:focus ~ .form-field-line,
.form-field textarea:focus ~ .form-field-line,
.form-field select:focus ~ .form-field-line {
    width: 100%;
}

.form-field textarea { resize: vertical; min-height: 100px; }

/* ---------- Footer ---------- */
.footer {
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--border);
}

.footer-top { padding: 4rem 0; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 1rem;
    line-height: 1.7;
}

.footer-brand .logo-img {
    height: 150px;
}

.footer-tagline {
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links ul li,
.footer-links ul li a {
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links ul li a:hover { color: var(--primary); }

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    z-index: 9000;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    z-index: 9000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    border-color: transparent;
    transform: translateY(-3px);
}

/* ---------- Animations (AOS-like) ---------- */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] { transform: translateY(40px); }
[data-aos="fade-down"] { transform: translateY(-40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"] { transform: translateX(40px); }
[data-aos="zoom-in"] { transform: scale(0.9); }

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-slider { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { gap: 2rem; }
    .contact-grid { gap: 2rem; }
    
    /* Reduce section padding on tablets */
    .services,
    .about,
    .testimonials,
    .contact,
    .scheduling,
    .faq { padding: 5rem 0; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 15, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu .nav-link {
        font-size: 1.2rem;
        padding: 0.8rem 2rem;
    }

    .nav-toggle { display: flex; }
    .nav-cta { display: none; }

    .hero { padding: 5rem 1.5rem 2rem; min-height: auto; }
    .hero-title { font-size: clamp(2rem, 10vw, 3.5rem); }
    .hero-subtitle { font-size: 1rem; margin-bottom: 2rem; }
    .hero-scroll-indicator { display: none; }
    
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-slider { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-group { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    
    .cta-content { padding: 2rem 1.5rem; }
    .hero-actions { flex-direction: column; align-items: center; }
    .cta-actions { flex-direction: column; align-items: center; }
    
    .cursor-glow { display: none; }
    
    /* Reduce section padding on mobile */
    .services,
    .about,
    .testimonials,
    .contact,
    .scheduling,
    .faq { padding: 3.5rem 0; }
    .brands,
    .stats,
    .cta-section { padding: 3rem 0; }
    .section-header { margin-bottom: 2.5rem; }
    
    /* About floating cards – reposition */
    .about-float-card.card-1 { top: -10px; right: 10px; font-size: 0.85rem; padding: 0.7rem 1rem; }
    .about-float-card.card-2 { bottom: -10px; left: 10px; font-size: 0.85rem; padding: 0.7rem 1rem; }
    
    /* Contact form */
    .contact-form { padding: 1.5rem; }
    
    /* Footer */
    .footer-top { padding: 3rem 0; }
    
    /* Stats */
    .stat-card { padding: 1.5rem 1rem; }
    .stat-number { font-size: 2.2rem; }
    
    /* Toast on mobile */
    .toast-container { left: 1rem; right: 1rem; top: 5rem; }
    .toast { min-width: unset; max-width: 100%; }
    
    /* WhatsApp + back-to-top */
    .whatsapp-float { width: 50px; height: 50px; font-size: 1.4rem; bottom: 1.2rem; right: 1.2rem; }
    .back-to-top { right: 1.2rem; bottom: 4.5rem; width: 38px; height: 38px; font-size: 0.85rem; }
    .whatsapp-tooltip { display: none; }
    
    /* Logo */
    .logo-img { height: 100px; }
    .nav-container { padding: 0 1.2rem; }
    
    /* Preloader car */
    .preloader-scene { width: 280px; height: 140px; }
    .preloader-car { width: 220px; }
    .preloader-text { font-size: 1.6rem; }
}

@media (max-width: 480px) {
    .hero-stats-mini { flex-direction: column; gap: 1rem; }
    .hero-stat-divider { width: 40px; height: 1px; }
    .section-container { padding: 0 1rem; }
    
    .section-title { font-size: clamp(1.4rem, 6vw, 2rem); }
    .section-subtitle { font-size: 0.92rem; }
    
    /* Preloader car small */
    .preloader-scene { width: 240px; height: 120px; }
    .preloader-car { width: 190px; }
    .preloader-text { font-size: 1.4rem; letter-spacing: 0.15em; }
    .preloader-bar { width: 160px; }
    
    /* Services card */
    .service-card { padding: 1.5rem; }
    .service-card h3 { font-size: 1rem; }
    
    /* Stats */
    .stat-number { font-size: 1.8rem; }
    .stat-card { padding: 1.2rem 0.8rem; }
    
    /* CTA */
    .cta-content { padding: 1.5rem 1.2rem; }
    .cta-content h2 { font-size: 1.3rem; }
    .cta-content p { font-size: 0.92rem; }
    
    /* Contact info */
    .contact-info-item { gap: 0.8rem; }
    .contact-info-icon { width: 40px; height: 40px; min-width: 40px; font-size: 0.95rem; }
    
    /* Footer */
    .footer-brand .logo-img { height: 110px; }
    
    /* Cookie banner */
    .cookie-banner { padding: 1rem; width: calc(100% - 2rem); }
    .cookie-actions { flex-direction: column; gap: 0.4rem; }
    .cookie-actions .btn { width: 100%; justify-content: center; }
    
    /* Buttons */
    .btn { padding: 0.75rem 1.5rem; font-size: 0.88rem; }
    .btn-lg { padding: 0.85rem 2rem; font-size: 0.95rem; }
}

@media (max-width: 360px) {
    .hero-title { font-size: 1.8rem; }
    .hero-badge { font-size: 0.75rem; padding: 0.4rem 0.8rem; }
    .stat-number { font-size: 1.5rem; }
    .stats-grid { gap: 0.6rem; }
    .nav-container { padding: 0 0.8rem; }
}

/* ---------- Keyframes ---------- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ---------- Smooth Scrollbar ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(227, 30, 36, 0.3);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(227, 30, 36, 0.5);
}

/* ---------- Process / How it Works ---------- */
.process {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    top: 35px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.process-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 1.5s ease;
}

.process-timeline.aos-animate .process-line::after {
    width: 100%;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-step-number {
    font-family: var(--font-display);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 0.8rem;
}

.process-step-content {
    padding: 0 1rem;
}

.process-step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.2rem;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--text-muted);
    transition: all 0.6s ease;
}

.process-step:hover .process-step-icon {
    background: var(--gradient-primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(227, 30, 36, 0.3);
}

.process-step-content h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---------- Testimonials Carousel ---------- */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-carousel .testimonial-card {
    min-width: calc(33.333% - 1rem);
    margin: 0 0.5rem;
    flex-shrink: 0;
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonials-btn {
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    cursor: pointer;
}

.testimonials-btn:hover {
    background: var(--gradient-primary);
    color: var(--bg-dark);
    border-color: transparent;
    transform: scale(1.1);
}

.testimonials-dots {
    display: flex;
    gap: 0.5rem;
}

.testimonials-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.testimonials-dot.active {
    background: var(--primary);
    width: 24px;
    border-radius: var(--radius-full);
}

/* ---------- FAQ Section ---------- */
.faq {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(227, 30, 36, 0.2);
}

.faq-item.open {
    border-color: rgba(227, 30, 36, 0.3);
    box-shadow: 0 0 20px rgba(227, 30, 36, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    color: var(--primary);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.2rem;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ---------- Google Maps ---------- */
.contact-map {
    margin-top: 1.5rem;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
}

.contact-map:hover iframe {
    filter: grayscale(0.3) brightness(0.8) contrast(1.05) !important;
}

.contact-map iframe {
    transition: filter 0.4s ease;
}

/* ---------- Toast Notifications ---------- */
.toast-container {
    position: fixed;
    top: 5.5rem;
    right: 1.5rem;
    z-index: 100000;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    min-width: 300px;
    max-width: 420px;
    pointer-events: all;
    animation: toastIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transition: all 0.3s ease;
}

.toast.removing {
    animation: toastOut 0.3s ease forwards;
}

.toast-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.toast.success .toast-icon {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.toast.error .toast-icon {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.toast.info .toast-icon {
    background: rgba(227, 30, 36, 0.15);
    color: var(--primary);
}

.toast-body strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 0.1rem;
}

.toast-body span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.toast-close {
    margin-left: auto;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    font-size: 0.7rem;
}

.toast-close:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text-primary);
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 0 0 0 var(--radius-sm);
    animation: toastProgress 4s linear forwards;
}

.toast.success .toast-progress { background: linear-gradient(90deg, #22c55e, #4ade80); }
.toast.error .toast-progress { background: linear-gradient(90deg, #ef4444, #f87171); }

@keyframes toastIn {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes toastOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(100px); }
}

@keyframes toastProgress {
    from { width: 100%; }
    to { width: 0%; }
}

/* ---------- Cookie Consent ---------- */
.cookie-banner {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 700px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(20px);
    padding: 1.2rem 1.8rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 99999;
    box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
    transition: bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
    bottom: 1.5rem;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.cookie-content i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.cookie-content p {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.45rem 1rem;
    font-size: 0.8rem;
}

/* ---------- WhatsApp Tooltip ---------- */
.whatsapp-tooltip {
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-card);
    color: var(--text-primary);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: var(--bg-card);
    border-right: 1px solid var(--border);
    border-top: 1px solid var(--border);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* ---------- Additional Responsive ---------- */
@media (max-width: 1024px) {
    .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .process-line { display: none; }
    .testimonials-carousel .testimonial-card { min-width: calc(50% - 1rem); }
}

@media (max-width: 768px) {
    .process { padding: 3.5rem 0; }
    .process-timeline { grid-template-columns: 1fr; gap: 1.5rem; }
    .process-step { display: flex; align-items: flex-start; gap: 1rem; text-align: left; padding: 1rem; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-sm); }
    .process-step-content { padding: 0; flex: 1; }
    .process-step-icon { width: 50px; height: 50px; min-width: 50px; margin: 0; font-size: 1.1rem; }
    .process-step-content h4 { margin-bottom: 0.2rem; font-size: 0.9rem; }
    .process-step-content p { font-size: 0.82rem; }
    .process-step-number { margin-bottom: 0; min-width: 30px; font-size: 0.65rem; position: absolute; top: 0.5rem; right: 0.5rem; }
    .process-step { position: relative; }
    
    .testimonials-carousel .testimonial-card { min-width: calc(100% - 1rem); }
    .testimonial-card { padding: 1.5rem; }
    .testimonial-text { font-size: 0.9rem; }
    .testimonials-btn { width: 38px; height: 38px; }
    
    .cookie-banner { flex-direction: column; text-align: center; }
    .cookie-content { flex-direction: column; }
    .faq-question { font-size: 0.88rem; padding: 1rem 1.2rem; }
    .faq-answer p { font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .process-step-content h4 { font-size: 0.85rem; }
    .process-step-icon { width: 42px; height: 42px; min-width: 42px; font-size: 1rem; }
    .testimonial-card { padding: 1.2rem; }
    .testimonial-text { font-size: 0.85rem; margin-bottom: 1rem; }
    .testimonials-nav { gap: 1rem; }
    .faq-question { font-size: 0.82rem; padding: 0.9rem 1rem; }
    .faq-answer p { font-size: 0.8rem; }
}
