/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
}

a { text-decoration: none; color: inherit; }

/* Variables */
:root {
    --primary-color: #0056b3; 
    --secondary-color: #00a8cc; 
    --accent-color: #f4f4f4;
    --text-light: #fff;
}

/* Header */
header {
    background: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

/* --- UPDATED LOGO STYLES --- */
.logo {
    font-size: 1.6rem;         /* Slightly larger */
    font-weight: 900;          /* Extra Bold */
    color: var(--primary-color);
    text-transform: uppercase; /* Forces ALL CAPS */
    letter-spacing: 1px;       /* Adds slight space between capital letters */
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--primary-color); }

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    padding: 8px 15px;
    border-radius: 5px;
}

/* Mobile Burger Menu */
.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 3px; background-color: #333; margin: 5px; }

/* Hero Section */
.hero {
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1587854692152-cbe660dbde88?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    position: relative;
    margin-top: 70px;
}

.hero-overlay {
    background: rgba(0, 86, 179, 0.7); 
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content h1 { font-size: 3rem; margin-bottom: 15px; }
.hero-content p { font-size: 1.2rem; margin-bottom: 25px; }

.btn-primary {
    background: #fff;
    color: var(--primary-color);
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 5px;
    display: inline-block;
}

/* Info Banner */
.info-banner {
    background: var(--primary-color);
    color: white;
    padding: 15px 0;
    text-align: center;
}

.info-banner p { display: inline-block; margin: 0 15px; }

/* Services */
.section { padding: 60px 0; }
.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 2rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.service-card h3 { margin-bottom: 15px; }

/* Location Split Section */
.bg-light { background-color: #f9f9f9; }

.split-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
}

.text-block, .map-block { flex: 1; min-width: 300px; }

.contact-details p { margin-bottom: 10px; font-size: 1.1rem; }

.btn-secondary {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
}

/* Footer */
footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: auto;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 70px;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        border-left: 1px solid #ddd;
    }
    
    .nav-links li { opacity: 0; margin: 30px 0; }
    .burger { display: block; }
    
    .nav-active { transform: translateX(0%); }
    
    @keyframes navLinkFade {
        from { opacity: 0; transform: translateX(50px); }
        to { opacity: 1; transform: translateX(0px); }
    }
    
    .hero-content h1 { font-size: 2rem; }
    .info-banner p { display: block; margin: 10px 0; }
}
/* --- MODAL / POPUP STYLES --- */
.modal-overlay {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6); /* Black background with opacity */
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}

.modal-content {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    text-align: center;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover { color: #000; }

.modal-content input, .modal-content textarea {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

.form-group {
    display: flex;
    gap: 10px;
}

@media screen and (max-width: 600px) {
    .form-group { flex-direction: column; gap: 0; }
}

@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}