/* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; background: #0a0a0a; }
    body {
        font-family: 'Barlow', sans-serif;
        background: transparent;
        color: #ffffff;
        line-height: 1.6;
        overflow-x: hidden;
        position: relative;
        z-index: 1;
    }

    /* ============================================================
       DESIGN TOKENS
    ============================================================ */
    :root {
        --red:        #e63535;
        --red-dark:   #b91c1c;
        --red-glow:   rgba(230, 53, 53, 0.18);
        --bg:         #0a0a0a;
        --bg-2:       #080808;
        --bg-card:    #141414;
        --bg-hover:   #1c1c1c;
        --border:     #242424;
        --border-2:   #2e2e2e;
        --text:       #ffffff;
        --muted:      #888888;
        --dim:        #444444;
    }

    /* ============================================================
       TYPOGRAPHY
    ============================================================ */
    h1, h2, h3, h4, h5 {
        font-family: 'Barlow Condensed', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.02em;
    }
    a { text-decoration: none; color: inherit; }

    /* ============================================================
       UTILITIES
    ============================================================ */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
    .accent    { color: var(--red); }

    /* ============================================================
       BUTTONS
    ============================================================ */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px 28px;
        border-radius: 4px;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        cursor: pointer;
        border: none;
        transition: all 0.2s ease;
        white-space: nowrap;
    }
    .btn-red {
        background: var(--red);
        color: #fff;
    }
    .btn-red:hover {
        background: var(--red-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(230, 53, 53, 0.45);
    }
    .btn-outline {
        background: transparent;
        color: #fff;
        border: 2px solid rgba(255, 255, 255, 0.25);
    }
    .btn-outline:hover {
        border-color: var(--red);
        color: var(--red);
        transform: translateY(-2px);
    }

    /* Big click-to-call buttons */
    .call-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        padding: 18px 32px;
        border-radius: 6px;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.25rem;
        font-weight: 800;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        transition: all 0.2s ease;
        cursor: pointer;
    }
    .call-btn-primary {
        background: var(--red);
        color: #fff;
        border: 2px solid var(--red);
    }
    .call-btn-primary:hover {
        background: var(--red-dark);
        border-color: var(--red-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 36px rgba(230, 53, 53, 0.5);
    }
    .call-btn-secondary {
        background: transparent;
        color: var(--red);
        border: 2px solid var(--red);
    }
    .call-btn-secondary:hover {
        background: var(--red);
        color: #fff;
        transform: translateY(-2px);
        box-shadow: 0 10px 36px rgba(230, 53, 53, 0.35);
    }

    /* ============================================================
       HEADER
    ============================================================ */
    #site-header, .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(10, 10, 10, 0.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid var(--border);
        transition: box-shadow 0.3s ease;
    }
    .header-inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 72px;
    }

    /* Logo */
    .logo-link {
        display: flex;
        align-items: center;
        gap: 14px;
        flex-shrink: 0;
    }
    .logo-link img {
        height: 46px;
        width: auto;
        object-fit: contain;
        display: block;
    }
    .logo-wordmark {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.55rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        line-height: 1;
    }
    .logo-wordmark .red { color: var(--red); }

    /* Desktop nav */
    .desktop-nav { display: flex; align-items: center; gap: 36px; }
    .desktop-nav a {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.09em;
        color: var(--muted);
        transition: color 0.2s;
    }
    .desktop-nav a:hover { color: #fff; }

    .header-cta {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .header-call-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        background: var(--red);
        color: #fff;
        border-radius: 4px;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        letter-spacing: 0.07em;
        text-transform: uppercase;
        transition: background 0.2s;
        white-space: nowrap;
    }
    .header-call-btn:hover { background: var(--red-dark); }

    /* Hamburger */
    .hamburger {
        display: none;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        width: 36px;
        height: 36px;
    }
    .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s;
    }
    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile nav drawer */
    .mobile-nav {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: #0f0f0f;
        border-bottom: 1px solid var(--border);
        z-index: 999;
        padding: 16px 24px 24px;
    }
    .mobile-nav.open { display: block; }
    .mobile-nav ul { list-style: none; }
    .mobile-nav ul li { border-bottom: 1px solid var(--border); }
    .mobile-nav ul li a {
        display: block;
        padding: 16px 0;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.15rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        color: var(--muted);
        transition: color 0.2s;
    }
    .mobile-nav ul li a:hover { color: #fff; }
    .mobile-nav .mobile-call-wrap { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }

    /* ============================================================
       HERO
    ============================================================ */
    #hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding: 112px 0 72px;
        background: transparent;
    }

    /* Subtle grid overlay */
    #hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(230, 53, 53, 0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(230, 53, 53, 0.04) 1px, transparent 1px);
        background-size: 64px 64px;
        pointer-events: none;
    }
    /* Red radial glow */
    #hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 60% 70% at 75% 50%, rgba(230, 53, 53, 0.09) 0%, transparent 70%);
        pointer-events: none;
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: center;
        position: relative;
        z-index: 1;
    }

    /* Pulsing badge */
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: rgba(230, 53, 53, 0.12);
        border: 1px solid rgba(230, 53, 53, 0.3);
        border-radius: 100px;
        padding: 7px 18px 7px 12px;
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--red);
        margin-bottom: 24px;
    }
    .badge-dot {
        width: 9px;
        height: 9px;
        background: var(--red);
        border-radius: 50%;
        animation: blink 2s ease-in-out infinite;
        flex-shrink: 0;
    }
    @keyframes blink {
        0%, 100% { opacity: 1; transform: scale(1); }
        50%       { opacity: 0.4; transform: scale(0.65); }
    }

    .hero-title {
        font-size: clamp(3rem, 6vw, 5.8rem);
        font-weight: 900;
        line-height: 0.94;
        margin-bottom: 22px;
        letter-spacing: -0.01em;
    }
    .hero-title .red   { color: var(--red); display: block; }
    .hero-title .white { color: #fff; display: block; }

    .hero-sub {
        font-size: 1.05rem;
        color: var(--muted);
        max-width: 490px;
        margin-bottom: 36px;
        line-height: 1.75;
    }

    .hero-ctas {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 44px;
    }

    .hero-stats {
        display: flex;
        gap: 36px;
        padding-top: 36px;
        border-top: 1px solid var(--border);
    }
    .stat-num {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 2.1rem;
        font-weight: 900;
        color: var(--red);
        line-height: 1;
        display: block;
    }
    .stat-lbl {
        font-size: 0.75rem;
        color: var(--muted);
        text-transform: uppercase;
        letter-spacing: 0.07em;
        display: block;
        margin-top: 3px;
    }

    /* Hero right column */
    .hero-visual { display: flex; flex-direction: column; gap: 16px; }
    .hero-visual-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    /* ============================================================
       IMAGE PLACEHOLDERS
       (Replace the .img-ph divs with real <img> tags when ready)
    ============================================================ */
    .img-ph {
        background: var(--bg-card);
        border: 2px dashed var(--border-2);
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: var(--dim);
        text-align: center;
        padding: 20px;
        position: relative;
        overflow: hidden;
    }
    .img-ph svg { opacity: 0.35; color: var(--dim); }
    .img-ph-name {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--dim);
    }
    .img-ph-hint {
        font-family: 'Barlow', sans-serif;
        font-size: 0.72rem;
        color: #333;
        line-height: 1.5;
        text-transform: none;
        letter-spacing: 0;
        max-width: 200px;
    }

    /* ============================================================
       TRUST STRIP
    ============================================================ */
    .trust-strip {
        background: var(--red);
        padding: 14px 0;
    }
    .trust-inner {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0;
        flex-wrap: wrap;
        row-gap: 8px;
    }
    .trust-item {
        display: flex;
        align-items: center;
        gap: 9px;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.07em;
        white-space: nowrap;
        padding: 0 24px;
    }
    .trust-div {
        width: 1px;
        height: 20px;
        background: rgba(255,255,255,0.35);
        flex-shrink: 0;
    }

    /* ============================================================
       SECTIONS — shared styles
    ============================================================ */
    section { padding: 96px 0; }

    .section-label {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.15em;
        color: var(--red);
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .section-label::after {
        content: '';
        width: 36px;
        height: 2px;
        background: var(--red);
        flex-shrink: 0;
    }
    .section-title {
        font-size: clamp(2rem, 4vw, 3.2rem);
        font-weight: 900;
        line-height: 1;
        margin-bottom: 14px;
    }
    .section-desc {
        font-size: 1rem;
        color: var(--muted);
        max-width: 540px;
        line-height: 1.75;
    }
    .section-head { margin-bottom: 56px; }

    /* ============================================================
       SERVICES
    ============================================================ */
    #services { background: transparent; }

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2px;
        background: var(--border);
        border: 1px solid var(--border);
        border-radius: 8px;
        overflow: hidden;
    }

    .svc-card {
        background: var(--bg-card);
        padding: 32px 28px;
        display: flex;
        flex-direction: column;
        gap: 12px;
        transition: background 0.22s ease;
        position: relative;
        overflow: hidden;
    }
    .svc-card::before {
        content: '';
        position: absolute;
        top: 0; left: 0; right: 0;
        height: 3px;
        background: var(--red);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.28s ease;
    }
    .svc-card:hover { background: var(--bg-hover); }
    .svc-card:hover::before { transform: scaleX(1); }

    /* Highlighted cards (Engine & Recovery) */
    .svc-card.highlight {
        background: linear-gradient(150deg, #180808 0%, #140606 100%);
    }
    .svc-card.highlight .svc-icon {
        background: var(--red);
        border-color: var(--red);
        color: #fff;
    }
    .svc-card.highlight:hover { background: linear-gradient(150deg, #1e0a0a 0%, #1a0808 100%); }

    /* Featured card (spans all columns for layout balance) */
    .svc-card.featured {
        grid-column: span 3;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 24px;
    }
    .svc-card.featured .svc-icon {
        margin-bottom: 0;
    }
    .svc-card.featured .svc-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .svc-icon {
        width: 50px;
        height: 50px;
        background: rgba(230, 53, 53, 0.1);
        border: 1px solid rgba(230, 53, 53, 0.22);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--red);
        flex-shrink: 0;
        margin-bottom: 2px;
    }
    .svc-name {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.15rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.03em;
        line-height: 1.2;
    }
    .svc-desc {
        font-size: 0.875rem;
        color: var(--muted);
        line-height: 1.65;
    }

    /* ============================================================
       GALLERY / WORKSHOP
    ============================================================ */
    #gallery { background: transparent; }

    .gallery-grid {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 20px;
        margin-top: 0;
    }
    .gallery-right { display: flex; flex-direction: column; gap: 20px; }

    .gallery-item { position: relative; }
    .gallery-badge {
        position: absolute;
        bottom: 16px;
        left: 16px;
        background: rgba(0, 0, 0, 0.82);
        border: 1px solid var(--border-2);
        border-radius: 4px;
        padding: 5px 14px;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.78rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--muted);
        backdrop-filter: blur(4px);
        pointer-events: none;
    }

    /* ============================================================
       CONTACT
    ============================================================ */
    #contact { background: transparent; }

    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1.1fr 0.9fr;
        gap: 32px;
        align-items: stretch;
    }

    .contact-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 40px;
    }
    .contact-card-title {
        font-size: 1.55rem;
        font-weight: 900;
        margin-bottom: 28px;
        line-height: 1.1;
    }

    .call-stack { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }

    .divider { height: 1px; background: var(--border); margin: 32px 0; }

    .info-rows { display: flex; flex-direction: column; gap: 22px; }
    .info-row { display: flex; gap: 16px; align-items: flex-start; }
    .info-icon {
        width: 42px;
        height: 42px;
        background: rgba(230, 53, 53, 0.1);
        border-radius: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--red);
        flex-shrink: 0;
    }
    .info-label {
        font-size: 0.72rem;
        font-family: 'Barlow Condensed', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        color: var(--muted);
        display: block;
        margin-bottom: 2px;
    }
    .info-value {
        font-size: 0.95rem;
        color: #fff;
        font-weight: 500;
        display: block;
    }

    /* Map placeholder */
    .map-wrap {
        height: 100%;
        min-height: 400px;
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 8px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        padding: 40px;
        text-align: center;
    }
    .map-wrap p { color: var(--muted); font-size: 1rem; line-height: 1.7; }
    .map-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        border: 2px solid var(--red);
        border-radius: 4px;
        color: var(--red);
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1rem;
        justify-content: center;
        gap: 10px;
        padding: 12px 20px;
        border-radius: 6px;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        border: none;
        transition: all 0.2s ease;
    }

    .svc-modal-btn-book {
        background: var(--red);
        color: #fff;
    }
    .svc-modal-btn-book:hover {
        background: #ff4d4d;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(230, 53, 53, 0.4);
    }

    .svc-modal-btn-call {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
    }
    .svc-modal-btn-call:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.3);
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
        background: #050505;
        border-top: 1px solid var(--border);
        padding: 32px 0;
    }
    .footer-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.2rem;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }
    .footer-logo img { height: 32px; width: auto; object-fit: contain; }
    .footer-logo .red { color: var(--red); }
    .footer-copy { font-size: 0.8rem; color: var(--dim); }
    .footer-phones { display: flex; flex-direction: column; gap: 4px; text-align: right; }
    .footer-phones a {
        font-size: 0.8rem;
        color: var(--muted);
        font-family: 'Barlow Condensed', sans-serif;
        letter-spacing: 0.05em;
        transition: color 0.2s;
    }
    .footer-phones a:hover { color: var(--red); }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 920px) {
        .desktop-nav { display: none; }
        .hamburger   { display: flex; }

        .hero-grid { grid-template-columns: 1fr; gap: 40px; }
        .hero-visual { order: -1; }

        .services-grid { grid-template-columns: repeat(2, 1fr); }

        .svc-card.featured {
            grid-column: span 2;
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }
        .svc-card.featured .svc-icon {
            margin-bottom: 2px;
        }

        .gallery-grid { grid-template-columns: 1fr; }

        .contact-grid { grid-template-columns: 1fr; }

        .footer-inner { flex-direction: column; align-items: flex-start; gap: 12px; }
        .footer-phones { text-align: left; }
    }

    @media (max-width: 600px) {
        .hero-ctas { flex-direction: column; }
        .hero-ctas .btn { width: 100%; }
        .hero-stats { gap: 24px; }

        .services-grid { grid-template-columns: 1fr; }

        .svc-card.featured {
            grid-column: span 1;
        }

        section { padding: 64px 0; }

        .trust-inner { justify-content: flex-start; }
        .trust-div   { display: none; }
        .trust-item  { padding: 0 0; width: 50%; }

        .contact-card { padding: 28px 20px; }
        .map-wrap { min-height: 280px; }
    }



    /* Services Detail Modal */
    .svc-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .svc-modal-overlay.open {
        opacity: 1;
        pointer-events: all;
    }

    .svc-modal-content {
        background: #111;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        max-width: 550px;
        width: 100%;
        position: relative;
        padding: 32px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 15px rgba(230, 53, 53, 0.15);
        transform: scale(0.9);
        transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1.2);
    }

    .svc-modal-overlay.open .svc-modal-content {
        transform: scale(1);
    }

    .svc-modal-close {
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        color: #999;
        font-size: 1.8rem;
        line-height: 1;
        transition: color 0.2s ease;
    }
    .svc-modal-close:hover {
        color: #fff;
    }

    .svc-modal-title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.8rem;
        font-weight: 800;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .svc-modal-title svg {
        color: var(--red);
        width: 28px;
        height: 28px;
    }

    .svc-modal-desc {
        color: #ccc;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .svc-modal-bullets {
        margin-bottom: 28px;
        list-style: none;
    }

    .svc-modal-bullets li {
        font-size: 0.9rem;
        color: #eee;
        position: relative;
        padding-left: 20px;
        margin-bottom: 8px;
    }

    .svc-modal-bullets li::before {
        content: '▶';
        position: absolute;
        left: 0;
        color: var(--red);
        font-size: 0.7rem;
        top: 3px;
    }

    .svc-modal-actions {
        display: flex;
        gap: 16px;
    }

    .svc-modal-btn {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 12px 20px;
        border-radius: 6px;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        border: none;
        transition: all 0.2s ease;
    }

    .svc-modal-btn-book {
        background: var(--red);
        color: #fff;
    }
    .svc-modal-btn-book:hover {
        background: #ff4d4d;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(230, 53, 53, 0.4);
    }

    .svc-modal-btn-call:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.3);
    }

    /* Booking Form Styles */
    .booking-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 32px 28px;
        display: flex;
        flex-direction: column;
        gap: 20px;
        height: 100%;
        justify-content: center;
    }
    .booking-form {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    .form-group {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
    .form-group-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    @media (max-width: 600px) {
        .form-group-row {
            grid-template-columns: 1fr;
            gap: 12px;
        }
    }
    .form-group label {
        font-size: 0.72rem;
        font-family: 'Barlow Condensed', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        color: var(--muted);
    }
    .form-group input, 
    .form-group select, 
    .form-group textarea {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border);
        border-radius: 4px;
        padding: 10px 14px;
        color: #fff;
        font-family: 'Barlow', sans-serif;
        font-size: 0.9rem;
        transition: border-color 0.2s, background-color 0.2s;
    }
    .form-group input:focus, 
    .form-group select:focus, 
    .form-group textarea:focus {
        outline: none;
        border-color: var(--red);
        background: rgba(255, 255, 255, 0.05);
    }
    .form-group select option {
        background: #141414;
        color: #fff;
    }
    .form-submit-btn {
        width: 100%;
        margin-top: 6px;
    }
    .booking-success-message {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 10px 0;
    }
    .booking-success-message h4 {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.35rem;
        font-weight: 800;
        text-transform: uppercase;
        color: #fff;
    }
    .booking-success-message p {
        font-size: 0.88rem;
        color: var(--muted);
        max-width: 260px;
        line-height: 1.5;
    }

    /* Blog Section Styles */
    #blog { background: transparent; }
    .blog-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    @media (max-width: 920px) {
        .blog-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
        .blog-grid { grid-template-columns: 1fr; }
    }
    .blog-card {
        background: var(--bg-card);
        border: 1px solid var(--border);
        border-radius: 8px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 14px;
        transition: transform 0.2s, border-color 0.2s;
    }
    .blog-card:hover {
        transform: translateY(-4px);
        border-color: var(--red);
    }
    .blog-category {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        color: var(--red);
        letter-spacing: 0.1em;
    }
    .blog-title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.25rem;
        font-weight: 800;
        text-transform: uppercase;
        line-height: 1.2;
        color: #fff;
    }
    .blog-excerpt {
        font-size: 0.85rem;
        color: var(--muted);
        line-height: 1.6;
        flex: 1;
    }
    .blog-read-more {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--red);
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: color 0.2s;
    }
    .blog-read-more:hover {
        color: #fff;
    }

    /* Blog Modal Overlay */
    .blog-modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 99999;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }
    .blog-modal-overlay.open {
        opacity: 1;
        pointer-events: all;
    }
    .blog-modal-content {
        background: #111;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        max-width: 650px;
        width: 100%;
        max-height: 80vh;
        overflow-y: auto;
        position: relative;
        padding: 36px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
        transform: scale(0.9);
        transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1.2);
    }
    .blog-modal-overlay.open .blog-modal-content {
        transform: scale(1);
    }
    .blog-modal-close {
        position: absolute;
        top: 16px;
        right: 20px;
        background: transparent;
        border: none;
        color: #999;
        font-size: 1.8rem;
        transition: color 0.2s ease;
    }
    .blog-modal-close:hover {
        color: #fff;
    }
    .blog-post-category {
        color: var(--red);
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        margin-bottom: 6px;
    }
    .blog-post-title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 1.9rem;
        font-weight: 900;
        text-transform: uppercase;
        line-height: 1.1;
        color: #fff;
        margin-bottom: 12px;
    }
    .blog-post-meta {
        font-size: 0.78rem;
        color: var(--muted);
        margin-bottom: 24px;
        border-bottom: 1px solid var(--border);
        padding-bottom: 10px;
    }
    .blog-post-content {
        color: #ccc;
        font-size: 0.95rem;
        line-height: 1.7;
    }
    .blog-post-content p {
        margin-bottom: 16px;
    }
    .blog-post-content h3 {
        color: #fff;
        font-size: 1.25rem;
        margin: 24px 0 12px;
        font-family: 'Barlow Condensed', sans-serif;
        text-transform: uppercase;
    }

/* ==========================================================================
   EXTRA MULTI-PAGE & STICKY CTA STYLES
   ========================================================================== */

/* Subpage Layouts */
.subpage-container {
    padding-top: 140px;
    padding-bottom: 120px;
    max-width: 900px;
    margin: 0 auto;
}
.subpage-header {
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 24px;
}
.subpage-category {
    color: var(--red);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    display: inline-block;
    margin-bottom: 8px;
}
.subpage-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.1;
}
.subpage-meta {
    font-size: 0.85rem;
    color: var(--muted);
    margin-top: 12px;
}
.subpage-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #ccc;
}
.subpage-content p {
    margin-bottom: 24px;
}
.subpage-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    color: #fff;
    font-size: 1.6rem;
    margin: 40px 0 16px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.subpage-content ul, .subpage-content ol {
    margin-bottom: 24px;
    padding-left: 20px;
}
.subpage-content li {
    margin-bottom: 12px;
    position: relative;
}
.subpage-content img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid var(--border);
    margin-bottom: 32px;
}

/* Service Detail Page Layout */
.service-layout {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 768px) {
    .service-layout {
        grid-template-columns: 1fr;
    }
}
.service-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 32px;
}

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    z-index: 9999;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}
.sticky-cta-btn {
    flex: 1;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: center;
    border-radius: 6px;
    text-transform: uppercase;
    font-family: 'Barlow Condensed', sans-serif;
    letter-spacing: 0.05em;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}
.sticky-cta-btn-book {
    background: var(--red);
    color: #fff;
    border: 1px solid var(--red);
}
.sticky-cta-btn-book:hover {
    background: #b52222;
    border-color: #b52222;
}
.sticky-cta-btn-call {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}
.sticky-cta-btn-call:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.4);
}

@media (min-width: 769px) {
    .sticky-cta {
        max-width: 520px;
        bottom: 24px;
        left: 50%;
        transform: translateX(-50%);
        border: 1px solid var(--border);
        border-radius: 50px;
        padding: 12px 24px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    }
    .sticky-cta-btn {
        border-radius: 50px;
        padding: 12px 24px;
    }
}


/* ==========================================================================
   LINK CARD OVERRIDES (MULTI-PAGE COMPATIBILITY)
   ========================================================================== */
.svc-card, .blog-card {
    text-decoration: none !important;
    color: inherit !important;
}
.svc-card:hover, .blog-card:hover {
    color: inherit !important;
}

/* Canvas Background Styling */
#live-bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}


/* ==========================================================================
   FAQ ACCORDION LAYOUT STYLES
   ========================================================================== */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq-item:hover {
    border-color: rgba(230, 53, 53, 0.4);
}
.faq-item summary {
    padding: 22px 28px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none; /* Hide default arrow */
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: background-color 0.22s;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--red);
    transition: transform 0.2s;
}
.faq-item[open] summary::after {
    content: '\u2212'; /* Unicode minus sign */
}
.faq-answer {
    padding: 0 28px 24px;
    color: #ccc;
    line-height: 1.7;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding-top: 16px;
}

/* Footer Logo Link Overrides */
a.footer-logo {
    text-decoration: none !important;
    color: inherit !important;
}
a.footer-logo:hover {
    color: inherit !important;
    opacity: 0.85;
}

/* ==========================================================================
   5. LEZA CHATBOT WIDGET STYLING
   ========================================================================== */
.motorbot-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 10000;
    font-family: 'Barlow', sans-serif;
}

/* Floating Trigger Button */
.motorbot-toggle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #0d0d0d;
    border: 2.5px solid var(--red);
    box-shadow: 0 0 20px rgba(230, 53, 53, 0.4), 0 6px 16px rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}
.motorbot-toggle:hover {
    transform: scale(1.08);
    box-shadow: 0 0 28px rgba(230, 53, 53, 0.7), 0 8px 20px rgba(0, 0, 0, 0.7);
}
.motorbot-toggle:active {
    transform: scale(0.95);
}
.motorbot-toggle.active {
    border-color: #ff4d4d;
    box-shadow: 0 0 25px rgba(255, 77, 77, 0.8), 0 6px 18px rgba(0, 0, 0, 0.7);
    transform: scale(1.03);
}

.motorbot-toggle-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    transform-origin: bottom center;
}

/* Waving avatar animation (applied on the bottom toggle button) */
.motorbot-toggle-img.wave {
    animation: avatarWave 1.2s ease-in-out;
}
@keyframes avatarWave {
    0%, 100% { transform: rotate(0deg); }
    15%, 45% { transform: rotate(-12deg); }
    30%, 60% { transform: rotate(12deg); }
    75% { transform: rotate(0deg); }
}

.motorbot-notification-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #ff9900;
    border: 2px solid #0d0d0d;
    display: block;
    animation: notificationPulse 1.8s infinite;
}
@keyframes notificationPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 153, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(255, 153, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(255, 153, 0, 0); }
}

/* Chat Window */
.motorbot-window {
    position: absolute;
    bottom: 82px;
    right: 0;
    width: 380px;
    height: 560px;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.94) 0%, rgba(8, 8, 8, 0.97) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(230, 53, 53, 0.25);
    border-top: 4px solid var(--red);
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.85), 0 0 30px rgba(230, 53, 53, 0.15);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(24px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.motorbot-window.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* Header */
.motorbot-header {
    background: rgba(10, 10, 10, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(230, 53, 53, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.motorbot-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.motorbot-logo-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid var(--red);
    background: #1c1c1c;
    object-fit: cover;
}
.motorbot-title-wrap {
    display: flex;
    flex-direction: column;
}
.motorbot-title {
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
}
.motorbot-status {
    font-size: 0.72rem;
    color: #aaa;
    display: flex;
    align-items: center;
    gap: 6px;
}
.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00cc66;
    display: inline-block;
    animation: statusPulse 2s infinite ease-in-out;
}
@keyframes statusPulse {
    0% { transform: scale(1); box-shadow: 0 0 6px rgba(0, 204, 102, 0.8); }
    50% { transform: scale(1.2); box-shadow: 0 0 12px rgba(0, 204, 102, 1); }
    100% { transform: scale(1); box-shadow: 0 0 6px rgba(0, 204, 102, 0.8); }
}

.motorbot-close {
    background: transparent;
    border: none;
    color: #888;
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 32px;
    height: 32px;
}
.motorbot-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* Messages Box */
.motorbot-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    background: radial-gradient(circle at bottom right, rgba(230, 53, 53, 0.03) 0%, transparent 70%);
}
.motorbot-messages::-webkit-scrollbar {
    width: 4px;
}
.motorbot-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
}
.motorbot-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

/* Message Bubbles */
.motorbot-msg {
    max-width: 85%;
    padding: 12px 16px;
    font-size: 0.9rem;
    line-height: 1.6;
    word-wrap: break-word;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    animation: messageFadeIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
@keyframes messageFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.motorbot-msg p {
    margin: 0;
}
.motorbot-msg p + p {
    margin-top: 8px;
}
.motorbot-msg h3, .motorbot-msg h4 {
    margin: 4px 0 8px;
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}
.motorbot-msg ul {
    margin: 8px 0 0;
    padding-left: 18px;
}
.motorbot-msg li {
    margin-bottom: 6px;
}

.motorbot-msg-bot {
    align-self: flex-start;
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 3px solid var(--red);
    color: #f0f0f0;
    border-radius: 14px 14px 14px 2px;
}
.motorbot-msg-user {
    align-self: flex-end;
    background: linear-gradient(135deg, #e63535 0%, #991b1b 100%);
    border: none;
    color: #fff;
    border-radius: 14px 14px 2px 14px;
    box-shadow: 0 4px 16px rgba(230, 53, 53, 0.25);
}

/* Typing indicator bubble */
.motorbot-typing-container {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
}
.motorbot-typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #aaa;
    display: inline-block;
    animation: bounce 0.8s infinite alternate;
}
.motorbot-typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}
.motorbot-typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

/* Lead Summary Card in Chat */
.motorbot-lead-card {
    background: rgba(0, 0, 0, 0.45);
    border: 1.5px dashed var(--red);
    border-radius: 8px;
    padding: 14px;
    margin: 10px 0;
    font-family: monospace;
    font-size: 0.85rem;
    color: #00ff66;
    box-shadow: inset 0 0 10px rgba(0, 255, 102, 0.05), 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Suggestions Chips */
.motorbot-suggestions {
    padding: 0 20px 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.motorbot-chip {
    background: rgba(20, 20, 20, 0.75);
    border: 1px solid rgba(230, 53, 53, 0.25);
    border-radius: 30px;
    color: #e0e0e0;
    padding: 7px 16px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.motorbot-chip:hover {
    background: rgba(230, 53, 53, 0.2);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 53, 53, 0.3);
}

/* Input Form */
.motorbot-input-form {
    display: flex;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 16px;
    align-items: center;
}
.motorbot-input-form input {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 8px 16px;
    color: #fff;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.25s ease;
}
.motorbot-input-form input:focus {
    border-color: rgba(230, 53, 53, 0.5);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 10px rgba(230, 53, 53, 0.15);
}
.motorbot-input-form input::placeholder {
    color: #666;
}
.motorbot-send-btn {
    background: transparent;
    border: none;
    color: var(--red);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 50%;
    margin-left: 8px;
}
.motorbot-send-btn:hover {
    background: rgba(230, 53, 53, 0.15);
    color: #ff4d4d;
    transform: scale(1.08);
}

/* RESPONSIVE WIDGET ADJUSTMENTS */
@media (max-width: 480px) {
    .motorbot-widget {
        bottom: 16px;
        right: 16px;
    }
    .motorbot-toggle {
        width: 60px;
        height: 60px;
    }
    .motorbot-window {
        position: absolute;
        bottom: 76px;
        right: 0;
        width: calc(100vw - 32px);
        max-width: 380px;
        height: 70vh;
        max-height: 480px;
        border-radius: 16px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.85), 0 0 25px rgba(230, 53, 53, 0.15);
        transform: translateY(20px);
    }
    .motorbot-window.open {
        transform: translateY(0);
    }
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-4px); }
}
