/* --- Base Styles --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Arial', sans-serif; 
}

body { 
    background: #f8fafc; 
    color: #333; 
    line-height: 1.6; 
    top: 0px !important; 
    position: static !important;
}

html {
    margin-top: 0px !important;
}

.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 25px; 
}

/* --- Navbar --- */
nav { 
    background: #1e293b; 
    color: white; 
    padding: 15px 0; 
    position: sticky; 
    top: 0; 
    z-index: 1000; 
}

.nav-container { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

.logo { 
    font-weight: bold; 
    font-size: 1.1rem; 
}

.logo .red { 
    color: #e11d48; 
}

.nav-list { 
    display: flex; 
    list-style: none; 
    gap: 25px; 
    align-items: center; 
}

.nav-list a { 
    color: white; 
    text-decoration: none; 
    font-size: 0.9rem; 
    transition: 0.3s; 
}

.nav-list a:hover,
.nav-list a.active { 
    color: #e11d48; 
    font-weight: bold; 
}

/* --- Burger Menu --- */
.menu-toggle { 
    display: none; 
    flex-direction: column; 
    cursor: pointer; 
    gap: 5px; 
    z-index: 1001; 
}

.bar { 
    width: 25px; 
    height: 3px; 
    background-color: white; 
    transition: 0.4s; 
}

/* --- HERO CONTACT --- */
.contact-header {
    background: url('https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?q=80&w=1200') center/cover;
    height: 400px;
    color: white;
}

.contact-header .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    background: rgba(0,0,0,0.65);
    max-width: 100%;
}

.contact-header h2 { 
    font-size: 2.6rem; 
    margin-bottom: 15px; 
}

.contact-header p {
    font-size: 1rem;
    max-width: 700px;
}

/* --- Contact Section --- */
.section { 
    padding: 60px 0; 
}

.contact-wrapper { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px; 
}

.contact-info h3 { 
    border-left: 5px solid #e11d48; 
    padding-left: 15px; 
    margin-bottom: 25px; 
    font-size: 2rem;
}

.info-item { 
    margin-bottom: 25px; 
}

.info-item strong { 
    display: block; 
    margin-bottom: 5px; 
    color: #1e293b; 
    font-size: 1.1rem;
}

.info-item p { 
    color: #64748b; 
    font-size: 1rem; 
}

.contact-map iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 12px;
}

/* --- MOBILE --- */
@media screen and (max-width: 768px) {

    .contact-wrapper { 
        grid-template-columns: 1fr; 
    }

    .menu-toggle { 
        display: flex; 
    }

    .menu-toggle.active .bar:nth-child(1) { 
        transform: translateY(8px) rotate(45deg); 
    }

    .menu-toggle.active .bar:nth-child(2) { 
        opacity: 0; 
    }

    .menu-toggle.active .bar:nth-child(3) { 
        transform: translateY(-8px) rotate(-45deg); 
    }

    .nav-list {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1e293b;
        max-height: 0;
        overflow: hidden;
        transition: all 0.25s ease-in-out;
        opacity: 0;
        z-index: 9999;
        text-align: left;
    }

    .nav-list.active {
        max-height: 500px;
        opacity: 1;
        padding: 20px 0;
        border-top: 4px solid #e11d48;
    }

    .nav-list li { 
        padding: 12px 25px;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .contact-header {
        height: 320px;
    }

    .contact-header h2 {
        font-size: 2rem;
    }

    .contact-header p {
        font-size: 0.95rem;
        padding: 0 20px;
    }
}

/* --- GOOGLE TRANSLATE CLEANUP --- */

.goog-te-banner-frame.skiptranslate,
.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
iframe.goog-te-menu-frame,
.skiptranslate iframe,
[class*="VIpgJd-ZVi9od-ORHb-O36Of-ak9v"] {
    display: none !important;
    visibility: hidden !important;
}

font {
    background-color: transparent !important;
    box-shadow: none !important;
    position: relative !important;
    display: inline !important;
}

[class*="goog-text-highlight"], 
[class*="VIpgJd-y6oGMc-ti6h9c"],
.goog-text-highlight,
.skiptranslate font {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    outline: none !important;
}

.goog-tooltip,
.goog-tooltip:hover,
#google_translate_element {
    display: none !important;
}

/* --- Footer --- */
footer { 
    background: #1e293b; 
    color: #94a3b8; 
    padding: 40px 0; 
    text-align: center; 
    font-size: 0.85rem; 
}
