body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    color: #0f172a;
    background-color: #0f172a;
    /* Fallback dark color */
    background-image: url('mechanic-bg.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
    overflow-x: hidden;
    overflow-y: auto;
    /* Enable scroll */
}

/* Fixed Logo */
.brand-logo-fixed {
    position: fixed;
    top: 2rem;
    left: 2rem;
    width: 220px;
    z-index: 100;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

/* Scroll Container */
.scroll-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Sections */
.hero-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Card on Right */
    padding-right: 10%;
    padding-bottom: 50px;
    /* Space for scroll hint */
}

.content-section {
    padding: 4rem 2rem;
    display: flex;
    justify-content: center;
}

/* Glass Panels */
.glass-panel {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 3rem;
    width: 100%;
    max-width: 1000px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Hero Business Card */
.business-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    animation: slideInRight 1s ease-out;
}

.company-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.owner-name {
    font-size: 1.4rem;
    color: #334155;
    margin-bottom: 1.5rem;
}

.badge-container {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.badge {
    background: #e2e8f0;
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn {
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    color: white;
    display: inline-block;
    transition: 0.2s;
}

.btn:hover {
    transform: translateY(-3px);
}

.call-btn {
    background: #0f172a;
}

.whatsapp-btn {
    background: #25D366;
}

.scroll-hint {
    margin-top: 2rem;
    color: #f1f5f9;
    font-weight: 600;
    animation: bounce 2s infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Emergency Section */
.warning-panel {
    border: 4px solid #dc2626;
    text-align: center;
}

.tow-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.text-red {
    color: #dc2626;
    font-size: 2.5rem;
    font-weight: 900;
}

.section-desc {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2rem;
}

.emergency-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.5rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 16px;
    text-decoration: none;
    color: white;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-red {
    background: #dc2626;
}

.btn-green {
    background: #25D366;
}

.pulse-anim {
    animation: pulse 1.5s infinite;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.s-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

/* Footer */
.footer-panel {
    text-align: center;
    background: #0f172a;
    color: white;
}

.footer-title {
    color: #3b82f6;
    margin-bottom: 1rem;
}

.copyright {
    opacity: 0.6;
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Animations */
@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(220, 38, 38, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .brand-logo-fixed {
        width: 150px;
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-screen {
        justify-content: center;
        padding-right: 0;
        align-items: center;
        padding-top: 100px;
    }

    .business-card {
        width: 90%;
    }

    .emergency-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
        text-align: center;
    }
}