/* --- VARIABLES & BASE STYLES --- */
:root { 
    --primary: #041d3d; 
    --accent: #007aff; 
    --text-dark: #1a202c; 
    --card-shadow: 0 10px 30px rgba(0,0,0,0.08); 
}

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

body { 
    font-family: 'Inter', sans-serif; 
    color: var(--text-dark); background: #ffffff; 
    scroll-behavior: smooth; overflow-x: hidden; 
}

/* --- NAVIGATION --- */
.top-bar { 
    background: var(--primary); color: white; padding: 10px 10%; 
    display: flex; justify-content: space-between; font-size: 13px; 
}

.top-bar a { color: white; text-decoration: none; margin-left: 15px; }

nav { 
    padding: 15px 10%; display: flex; justify-content: space-between; 
    align-items: center; background: #fff; position: sticky; 
    top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); 
}

.logo-img { height: 50px; width: auto; }

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

.nav-links a { 
    text-decoration: none; color: var(--primary); 
    font-weight: 600; font-size: 13px; text-transform: uppercase; 
}

.mobile-toggle { display: none; font-size: 24px; color: var(--primary); cursor: pointer; }

/* --- DROPDOWN --- */
.dropdown { position: relative; }
.dropdown-content { 
    display: none; position: absolute; background-color: white; 
    min-width: 220px; box-shadow: 0px 8px 16px rgba(0,0,0,0.1); 
    top: 100%; border-radius: 4px; padding: 10px 0; 
}
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a { 
    color: var(--primary); padding: 10px 20px; display: block; 
    text-decoration: none; font-size: 14px; border-bottom: 1px solid #f0f0f0; 
}

/* --- CONTACT PAGE SECTIONS --- */
.contact-hero { 
    background: linear-gradient(rgba(4, 29, 61, 0.9), rgba(4, 29, 61, 0.9)), 
                url('https://images.unsplash.com/photo-1516937941344-00b4e0337589?auto=format&fit=crop&q=80'); 
    background-size: cover; padding: 80px 10%; text-align: center; color: white; 
}

.contact-container { 
    padding: 60px 10%; display: grid; grid-template-columns: 1fr 1.8fr; 
    gap: 50px; background: #fcfdfe; 
}

.info-box { 
    padding: 25px; background: white; border-radius: 12px; 
    box-shadow: var(--card-shadow); border-left: 5px solid var(--accent); 
    margin-bottom: 20px; 
}

.form-card { 
    background: white; padding: 40px; border-radius: 20px; 
    box-shadow: var(--card-shadow); border: 1px solid #eef2f6; 
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 15px; }

.form-group label { 
    display: block; font-size: 11px; font-weight: 700; 
    color: var(--primary); margin-bottom: 8px; text-transform: uppercase; 
}

.form-group input, .form-group select, .form-group textarea { 
    width: 100%; padding: 12px; border: 1px solid #e2e8f0; border-radius: 6px; 
}

.submit-btn { 
    background: var(--primary); color: white; border: none; padding: 16px; 
    width: 100%; font-weight: 800; cursor: pointer; transition: 0.3s; 
}
.submit-btn:hover { background: var(--accent); }

/* --- FOOTER (FIXED) --- */
footer { 
    padding: 60px 10% 30px; background: #020c1a; color: #94a3b8; 
}

.footer-grid { 
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; 
}

/* Footer Logo Styling */
.footer-col .logo { 
    color: white; font-family: 'Outfit'; font-size: 24px; 
    font-weight: 800; text-decoration: none; display: block; margin-bottom: 15px;
}
.footer-col .logo span { color: var(--accent); }

.footer-col h4 { 
    color: white; margin-bottom: 20px; font-family: 'Outfit'; 
    text-transform: uppercase; font-size: 14px; letter-spacing: 1px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 13px; }
.footer-col ul li a { color: #94a3b8; text-decoration: none; transition: 0.3s; }
.footer-col ul li a:hover { color: var(--accent); }

.footer-col p { font-size: 13px; line-height: 1.6; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .top-bar { display: none; }
    .mobile-toggle { display: block; }
    .nav-links {
        display: none; flex-direction: column; position: absolute;
        top: 100%; left: 0; width: 100%; background: white; padding: 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex !important; }
    
    .contact-container { grid-template-columns: 1fr; padding: 40px 5%; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .info-sidebar { order: 2; }
    .form-card { order: 1; }
}

@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-hero h1 { font-size: 1.8rem; }
}

.whatsapp-btn { 
    position: fixed; bottom: 30px; right: 30px; background: #25d366; 
    color: white; width: 60px; height: 60px; border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; 
    font-size: 30px; text-decoration: none; z-index: 2000; 
}