﻿/* ========================================
   GLOBAL RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7f7f7;
    color: #111111;
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========================================
   SELECTION
======================================== */

::selection {
    background: #e1121b;
    color: #ffffff;
}

/* ========================================
   SCROLLBAR
======================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f2f2f2;
}

::-webkit-scrollbar-thumb {
    background: #d71920;
    border-radius: 999px;
}

/* ========================================
   HEADER
======================================== */

.main-header {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    z-index: 9999;
}

/* ========================================
   NAVBAR
======================================== */

.navbar {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    height: 70px;
    padding: 0 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* ========================================
   LOGO
======================================== */

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-img {
    width: 185px;
    height: auto;
    object-fit: contain;
    display: block;
}

/* ========================================
   NAV LINKS
======================================== */

.nav-links {
    display: flex;
    align-items: center;
    gap: 52px;
    list-style: none;
}

    .nav-links li {
        position: relative;
    }

        .nav-links li a {
            position: relative;
            color: #d71920;
            text-decoration: none;
            font-size: 14px;
            font-weight: 800;
            letter-spacing: 1.8px;
            text-transform: uppercase;
            transition: 0.25s ease;
        }

            .nav-links li a:hover {
                opacity: 0.72;
            }

            .nav-links li a::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -7px;
                width: 0%;
                height: 2px;
                background: #d71920;
                transition: 0.3s ease;
            }

            .nav-links li a:hover::after {
                width: 100%;
            }

/* ========================================
   CONTACT BUTTON
======================================== */

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 22px;
    min-width: 138px;
    height: 42px;
    border-radius: 999px;
    background: #d71920;
    color: #ffffff;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 0.6px;
    transition: 0.25s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

    .contact-btn:hover {
        transform: translateY(-2px);
        background: #bb1018;
        box-shadow: 0 10px 20px rgba(215,25,32,0.18);
    }

/* ========================================
   HAMBURGER
======================================== */

.hamburger {
    width: 42px;
    height: 42px;
    border: none;
    background: transparent;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

    .hamburger span {
        width: 100%;
        height: 3px;
        background: #d71920;
        border-radius: 999px;
        transition: 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(11px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-11px);
    }

/* ========================================
   MOBILE CONTACT
======================================== */

.mobile-contact {
    display: none;
}

/* ========================================
   MAIN
======================================== */

main {
    width: 100%;
    min-height: 70vh;
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
    position: relative;
    margin-top: 120px;
    background: #ffffff;
    overflow: hidden;
}

/* ========================================
   FOOTER STATS
======================================== */

.footer-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    background: #ffffff;
}

.stat-box {
    padding: 52px 20px;
    text-align: center;
    border-right: 1px solid #dddddd;
}

    .stat-box:last-child {
        border-right: none;
    }

    .stat-box h2 {
        margin-bottom: 10px;
        color: #d71920;
        font-size: 56px;
        font-weight: 900;
        letter-spacing: -2px;
    }

    .stat-box p {
        color: #222222;
        font-size: 18px;
        font-weight: 600;
    }

/* ========================================
   FOOTER MAIN
======================================== */

.footer-main {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 90px 60px;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 1fr 1fr;
    gap: 70px;
}

/* ========================================
   FOOTER BRAND
======================================== */

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    width: 300px;
    max-width: 100%;
    margin-bottom: 28px;
}

.footer-brand h3 {
    margin-bottom: 24px;
    color: #d71920;
    font-size: 38px;
    line-height: 1.3;
    font-weight: 800;
    font-style: italic;
}

.footer-brand p {
    max-width: 520px;
    color: #333333;
    font-size: 18px;
    line-height: 1.9;
}

/* ========================================
   FOOTER LINKS
======================================== */

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
}

    .footer-links h3,
    .footer-contact h3 {
        margin-bottom: 16px;
        color: #d71920;
        font-size: 38px;
        font-weight: 800;
    }

    .footer-links span,
    .footer-contact span {
        width: 56px;
        height: 4px;
        margin-bottom: 28px;
        background: #d71920;
        display: block;
    }

    .footer-links a {
        margin-bottom: 18px;
        color: #111111;
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        transition: 0.25s ease;
    }

        .footer-links a:hover {
            color: #d71920;
            transform: translateX(4px);
        }

    /* ========================================
   FOOTER CONTACT
======================================== */

    .footer-contact h4 {
        margin-bottom: 8px;
        margin-top: 12px;
        color: #d71920;
        font-size: 24px;
        font-weight: 700;
    }

    .footer-contact p {
        margin-bottom: 18px;
        color: #222222;
        font-size: 18px;
        line-height: 1.7;
    }

/* ========================================
   MAP
======================================== */

.footer-map iframe {
    width: 100%;
    height: 320px;
    border: none;
    border-radius: 26px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

/* ========================================
   FOOTER BOTTOM
======================================== */

.footer-bottom {
    padding: 24px 20px;
    background: #d71920;
    text-align: center;
}

    .footer-bottom p {
        color: #ffffff;
        font-size: 15px;
        line-height: 1.6;
    }

/* ========================================
   WHATSAPP FLOAT
======================================== */

.whatsapp-float {
    position: fixed !important;
    right: 25px !important;
    bottom: 25px !important;
    left: auto !important;
    top: auto !important;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0,0,0,0.18);
    z-index: 99999 !important;
    transition: 0.25s ease;
    animation: whatsapp-pulse 2s infinite;
}

    .whatsapp-float:hover {
        transform: translateY(-4px);
    }

    .whatsapp-float i {
        font-size: 30px;
        color: #ffffff;
    }

/* ========================================
   WHATSAPP PULSE
======================================== */

@keyframes whatsapp-pulse {

    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ========================================
   TABLET / SMALL LAPTOP
======================================== */

@media (max-width: 1200px) {

    .navbar {
        padding: 0 30px;
        height: 68px;
    }

    .nav-logo-img {
        width: 170px;
    }

    .nav-links {
        gap: 32px;
    }

        .nav-links li a {
            font-size: 13px;
            letter-spacing: 1.5px;
        }

    .contact-btn {
        min-width: 128px;
        height: 40px;
        padding: 8px 18px;
        font-size: 12px;
    }

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 768px) {

    .navbar {
        height: 68px;
        padding: 0 22px;
    }

    .nav-logo-img {
        width: 155px;
    }

    .desktop-contact {
        display: none;
    }

    .mobile-contact {
        display: block;
        margin-top: 10px;
        width: 100%;
    }

        .mobile-contact .contact-btn {
            width: 100%;
            min-width: unset;
            height: 48px;
            font-size: 13px;
        }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 68px;
        left: 0;
        width: 100%;
        padding: 24px 24px 32px;
        background: #ffffff;
        border-bottom: 3px solid #d71920;
        flex-direction: column;
        align-items: flex-start;
        gap: 23px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition: 0.3s ease;
    }

        .nav-links.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-links li {
            width: 100%;
        }

            .nav-links li a {
                font-size: 16px;
                letter-spacing: 1.6px;
            }

    .footer-stats {
        grid-template-columns: 1fr;
    }

    .stat-box {
        border-right: none;
        border-bottom: 1px solid #dddddd;
    }

        .stat-box:last-child {
            border-bottom: none;
        }

    .footer-main {
        grid-template-columns: 1fr;
        padding: 60px 28px;
        gap: 50px;
    }

    .footer-logo {
        width: 220px;
    }

    .footer-brand h3 {
        font-size: 28px;
    }

    .footer-brand p {
        font-size: 16px;
    }

    .footer-links h3,
    .footer-contact h3 {
        font-size: 32px;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 16px;
    }

    .footer-map iframe {
        height: 240px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .whatsapp-float {
        right: 16px !important;
        bottom: 16px !important;
        width: 52px;
        height: 52px;
    }

        .whatsapp-float i {
            font-size: 26px;
        }
}

/* ========================================
   SMALL MOBILE
======================================== */

@media (max-width: 480px) {

    .navbar {
        height: 64px;
        padding: 0 18px;
    }

    .nav-logo-img {
        width: 138px;
    }

    .nav-links {
        top: 64px;
    }

    .footer-brand h3 {
        font-size: 24px;
    }

    .stat-box h2 {
        font-size: 42px;
    }

    .whatsapp-float {
        right: 12px !important;
        bottom: 12px !important;
        width: 48px;
        height: 48px;
    }

        .whatsapp-float i {
            font-size: 23px;
        }
}
