/* Base Styles */
:root {
    --primary: #002366;
    --secondary: #FF7900;
    --light: #F5F5F5;
    --dark: #333333;
}

body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}



.get-quotation {
    color: white;
    background: rgba(0,0,0,0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 10px;
    font-weight: bold;
    transition: all 0.3s;
    text-decoration: none;
}

.get-quotation:hover {
    background: rgba(0,0,0,0.4);
    transform: translateY(-2px);
}

/* Mobile-specific nav toggle */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 999;
    }

    .main-nav.nav-open {
        display: flex;
    }

    .mobile-menu-toggle {
        cursor: pointer;
        display: block;
    }
}
.main-nav {
    transition: all 0.3s ease-in-out;
}




/* Emergency Banner */
/* .emergency-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.emergency-btn {
    background: white;
    color: var(--secondary);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
} */

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
}
















