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

body {
    font-family: 'Inter', sans-serif;
    color: #1e1b18;
    line-height: 1.5;
    scroll-behavior: smooth;
    position: relative;
    overflow-x: hidden;
}

/* ========== HOLOGRAPHIC PREMIUM BACKGROUND ========== */
.holographic-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    background: radial-gradient(ellipse at 30% 40%, #fff9f0 0%, #fff0e5 40%, #ffe8dc 100%);
}

.chrome-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(110deg, transparent, transparent 30px, rgba(220, 38, 38, 0.03) 30px, rgba(249, 115, 22, 0.02) 60px, rgba(220, 38, 38, 0.01) 90px);
    animation: chromeShift 14s infinite linear;
    pointer-events: none;
}

@keyframes chromeShift {
    0% { background-position: 0 0; transform: skewX(0deg); }
    100% { background-position: 200px 100px; transform: skewX(2deg); }
}

.geo-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(220, 68, 48, 0.08), rgba(249, 115, 22, 0.04));
    backdrop-filter: blur(40px);
    animation: morphShape 18s infinite alternate;
    pointer-events: none;
}
.geo-1 { width: 450px; height: 450px; top: -100px; right: -50px; animation-duration: 20s; border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
.geo-2 { width: 550px; height: 550px; bottom: -150px; left: -80px; animation-duration: 25s; animation-delay: -5s; border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%; }
.geo-3 { width: 380px; height: 380px; top: 40%; left: 15%; animation-duration: 22s; background: radial-gradient(circle, rgba(220,68,48,0.06), rgba(249,115,22,0.02)); border-radius: 45% 55% 38% 62% / 58% 42% 58% 42%; }

@keyframes morphShape {
    0% { transform: rotate(0deg) scale(1); opacity: 0.5; }
    100% { transform: rotate(8deg) scale(1.1); opacity: 0.9; }
}

.holographic-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    animation: orbPulse 12s infinite alternate;
    pointer-events: none;
}
.orb-red { width: 550px; height: 550px; background: radial-gradient(circle, rgba(220,68,48,0.2), rgba(220,38,38,0.05)); top: 20%; right: 15%; animation-duration: 15s; }
.orb-orange { width: 480px; height: 480px; background: radial-gradient(circle, rgba(249,115,22,0.18), rgba(220,68,48,0.04)); bottom: 10%; left: 10%; animation-duration: 18s; }

@keyframes orbPulse {
    0% { transform: scale(0.9); opacity: 0.3; }
    100% { transform: scale(1.2); opacity: 0.7; }
}

.glow-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.glow-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #dc2626, #f97316);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(220, 38, 38, 0.6);
    animation: particleRise 20s infinite linear;
}
@keyframes particleRise {
    0% { transform: translateY(100vh) translateX(0) scale(0); opacity: 0; }
    20% { opacity: 0.8; transform: scale(1); }
    80% { opacity: 0.8; }
    100% { transform: translateY(-20vh) translateX(50px) scale(0); opacity: 0; }
}

.car-motion {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 40'%3E%3Cpath fill='rgba(220,38,38,0.08)' d='M15,28 L25,18 L40,18 L48,28 L85,28 L93,18 L108,18 L115,28 L112,34 L100,34 L97,30 L78,30 L75,34 L55,34 L52,30 L33,30 L30,34 L18,34 L15,28Z'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    background-size: 110px 38px;
    animation: carMotion 25s linear infinite;
    filter: blur(1px);
}
@keyframes carMotion {
    0% { background-position: 0 0; }
    100% { background-position: 300px 0; }
}

:root {
    --brand-red: #dc2626;
    --brand-red-dark: #b91c1c;
    --brand-coral: #f97316;
}

/* ========== NAVIGATION - MOBILE FRIENDLY ========== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.8rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 250, 245, 0.92);
    backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(220, 38, 38, 0.25);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo img {
    max-height: 42px;
    width: auto;
    transition: transform 0.2s;
}

/* Desktop navigation */
.nav-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #5a4a3a;
    transition: all 0.3s ease;
    white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
    background: linear-gradient(115deg, #dc2626, #f97316);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.35);
    transform: translateY(-2px);
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    background: transparent;
    border: none;
    color: #dc2626;
    cursor: pointer;
    padding: 0.3rem;
    line-height: 1;
}

.btn-primary {
    border: none;
    padding: 0.55rem 1.3rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    background: linear-gradient(135deg, #dc2626, #f97316);
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.4);
}

/* ========== HERO SECTION ========== */
.hero-section {
    padding: 2rem 1rem 1.5rem;
    text-align: center;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(220, 38, 38, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 100px;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-red);
    margin-bottom: 1rem;
    border: 1px solid rgba(220, 38, 38, 0.25);
}
.hero-section h1 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2d2a24, #b91c1c, #dc2626);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradientShift 5s infinite alternate;
    margin-bottom: 0.8rem;
    line-height: 1.2;
}
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}
.hero-section p {
    color: #6b5a4a;
    font-size: 0.95rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ========== CONTACT CONTENT ========== */
.contact-container {
    max-width: 1300px;
    margin: 1.5rem auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
@media (max-width: 850px) {
    .contact-container { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* Contact Info Cards */
.contact-info {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 1.5rem;
    border: 1px solid rgba(220, 38, 38, 0.25);
}
.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2d2a24, #b91c1c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}
.section-title:after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 55px;
    height: 3px;
    background: linear-gradient(90deg, #dc2626, #f97316);
    border-radius: 3px;
}
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    border-radius: 22px;
    transition: all 0.3s;
}
.info-card:hover {
    background: rgba(220, 38, 38, 0.05);
    transform: translateX(4px);
}
.info-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15), rgba(249, 115, 22, 0.1));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.info-icon i {
    font-size: 1.3rem;
    color: var(--brand-red);
}
.info-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2d2a24;
    margin-bottom: 0.3rem;
}
.info-content p, .info-content a {
    color: #6b5a4a;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.info-content a:hover {
    color: var(--brand-red);
}

/* Map */
.map-container {
    margin-top: 1rem;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(220, 38, 38, 0.2);
}
.map-container iframe {
    width: 100%;
    height: 220px;
    border: none;
}

/* Contact Form */
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 1.5rem;
    border: 1px solid rgba(220, 38, 38, 0.25);
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #5a4a3a;
    font-size: 0.8rem;
}
.form-group label i {
    color: var(--brand-red);
}
input, textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 20px;
    border: 1.5px solid #f0e4dc;
    font-family: inherit;
    font-size: 0.9rem;
    transition: all 0.2s;
    background: white;
}
input:focus, textarea:focus {
    outline: none;
    border-color: var(--brand-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    transform: scale(1.01);
}
textarea {
    resize: vertical;
    min-height: 110px;
}
.btn-submit {
    background: linear-gradient(95deg, #dc2626, #f97316);
    border: none;
    width: 100%;
    padding: 0.85rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 0.5rem;
}
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(220, 38, 38, 0.4);
}
.result-message {
    margin-top: 1rem;
    padding: 0.8rem;
    border-radius: 20px;
    background: rgba(255, 250, 245, 0.9);
    font-size: 0.85rem;
}
.success-message { border-left: 4px solid #10b981; }
.error-message { border-left: 4px solid var(--brand-red); }

/* Business Hours */
.business-hours {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 22px;
}
.business-hours h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #2d2a24;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.35rem 0;
    color: #6b5a4a;
    font-size: 0.8rem;
}

/* ========== FOOTER ========== */
footer {
    background: rgba(30, 25, 22, 0.96);
    backdrop-filter: blur(16px);
    color: #d4c5ba;
    padding: 2rem 1rem 1.5rem;
    border-top: 1px solid rgba(220, 38, 38, 0.4);
    margin-top: 2rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: left;
}
.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #f3e5db;
    position: relative;
    display: inline-block;
}
.footer-col h4:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--brand-red);
}
.footer-col p, .footer-col ul {
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.4rem;
}
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 0.5rem;
}
.footer-col ul li a {
    color: #b89f8f;
    text-decoration: none;
}
.footer-col ul li a:hover {
    color: var(--brand-red);
}
.footer-col i {
    width: 24px;
    color: var(--brand-red);
}
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.8rem;
}
.social-icons i {
    font-size: 1rem;
    color: #b89f8f;
    transition: 0.2s;
    cursor: pointer;
}
.social-icons i:hover {
    color: var(--brand-red);
    transform: translateY(-2px);
}
.copyright {
    text-align: center;
    margin-top: 1.8rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.7rem;
    color: #a68f7e;
}

/* ========== RESPONSIVE MEDIA QUERIES ========== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(30, 28, 26, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        gap: 0.2rem;
        padding: 1.2rem;
        transform: translateY(-150%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;
        z-index: 99;
        border-bottom: 1px solid rgba(220,38,38,0.5);
        box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        pointer-events: none;
    }
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-links a {
        color: #f0e4dc;
        padding: 0.7rem;
        width: 100%;
        text-align: center;
        font-size: 1rem;
        border-radius: 40px;
        white-space: normal;
    }
    .nav-links a:hover, .nav-links a.active {
        background: linear-gradient(115deg, #dc2626, #f97316);
        color: white;
    }
    .hero-section h1 {
        font-size: 1.6rem;
    }
    .hero-section p {
        font-size: 0.85rem;
    }
    .contact-info, .contact-form {
        padding: 1.2rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .info-card {
        padding: 0.6rem;
    }
    .info-icon {
        width: 42px;
        height: 42px;
    }
    .info-icon i {
        font-size: 1.1rem;
    }
    .map-container iframe {
        height: 180px;
    }
    .footer-container {
        text-align: center;
    }
    .footer-col h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
    .social-icons {
        justify-content: center;
    }
    .geo-shape, .holographic-orb {
        opacity: 0.4;
    }
    .car-motion {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0.8rem;
    }
    .logo img {
        max-height: 36px;
    }
    .btn-primary {
        padding: 0.45rem 1rem;
        font-size: 0.7rem;
    }
    .menu-toggle {
        font-size: 1.5rem;
    }
    .hero-section {
        padding: 1.5rem 0.8rem 1rem;
    }
    .hero-section h1 {
        font-size: 1.4rem;
    }
    .contact-container {
        padding: 0 0.8rem;
    }
    .contact-info, .contact-form {
        padding: 1rem;
    }
    .section-title {
        font-size: 1.2rem;
    }
    .info-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }
    .info-icon {
        margin-bottom: 0.2rem;
    }
    .business-hours .hours-row {
        flex-direction: column;
        align-items: center;
        gap: 0.2rem;
    }
}