 html {
                scroll-behavior: smooth;
            }
    
            :root {
                --navy-blue: #1e3a5f;
                --golden-yellow: #ffcc00;
            }
/* --- GLOBAL RESET --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-blue: #1e3a5f;
    --golden-yellow: #f1b434;
    --white: #ffffff;
    --text-dark: #333333;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    color: var(--text-dark);
}

/* --- NAVIGATION --- */
nav {
    background: var(--navy-blue);
    height: 80px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 10%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav .logo {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1011;
}

nav .logo img {
    height: 110px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

nav ul { list-style: none; display: flex; }
nav ul li { margin-left: 30px; }
nav ul li a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0; height: 2px;
    bottom: 0; left: 0;
    background-color: var(--golden-yellow);
    transition: var(--transition);
}

nav ul li a:hover::after { width: 100%; }

.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 1011;
}

/* --- HERO SECTION --- */
.hero {
    background: linear-gradient(rgba(30, 58, 95, 0.75), rgba(30, 58, 95, 0.75)), 
            url('assets/hero.jpg') no-repeat center center/cover;
    height: 40vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero h1 { font-size: 2.8rem; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 2px; }
.hero p { max-width: 700px; font-style: italic; }

/* --- CONTACT SECTION --- */
#contact-section { padding: 80px 10%; }

.contact-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.card h2, .card h3 { margin-bottom: 25px; color: var(--navy-blue); }

.form-card { border-top: 5px solid var(--golden-yellow); }
.info-card { border-bottom: 5px solid var(--golden-yellow); }

/* Form Styling */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: bold; color: var(--navy-blue); }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--golden-yellow);
    outline: none;
    box-shadow: 0 0 8px rgba(241, 180, 52, 0.2);
}

.form-buttons { display: flex; gap: 15px; margin-top: 10px; }
.form-buttons button {
    flex: 1;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.btn-wa { background: #25D366; color: white; }
.btn-wa:hover { background: #1ebd5b; transform: translateY(-3px); }

.btn-mail { background: var(--navy-blue); color: white; }
.btn-mail:hover { background: #152942; transform: translateY(-3px); }

/* Info Sidebar */
.info-column { display: flex; flex-direction: column; gap: 30px; }
.info-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: flex-start; }
.info-item i { color: var(--navy-blue); font-size: 1.3rem; padding-top: 4px; }
.info-item p { font-size: 1.05rem; }

.map-container { 
    height: 350px; 
    border-radius: 12px; 
    overflow: hidden; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    border: 1px solid #eee;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* --- FOOTER --- */
footer { background: #111; color: #aaa; padding: 60px 10% 40px; }
.footer-bottom { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    flex-wrap: wrap; 
    gap: 30px; 
    max-width: 1200px; 
    margin: 0 auto; 
}
footer a { color: #aaa; text-decoration: none; transition: 0.3s; }
footer a:hover { color: var(--golden-yellow); }
.permit-text { font-size: 0.75rem; color: #666; margin-top: 8px; }

/* --- RESPONSIVE FIX (FULL SCREEN OVERLAY) --- */
@media (max-width: 992px) {
    .contact-container { grid-template-columns: 1fr; }
    #contact-section { padding: 60px 5%; }
}

@media (max-width: 768px) {
    nav { height: 70px; padding: 0 5%; justify-content: space-between; }
    nav .logo { position: static; transform: none; }
    nav .logo img { height: 50px; }
    .menu-toggle { display: block; }

    /* MENU FULL SCREEN OVERLAY */
    nav .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--navy-blue);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease-in-out;
        z-index: 1005;
        padding-top: 0;
    }

    nav .nav-menu.active { right: 0; }
    nav .nav-menu li { margin: 25px 0; }
    nav .nav-menu li a { font-size: 1.8rem; }

    .hero h1 { font-size: 1.8rem; }
    .form-buttons { flex-direction: column; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
