:root {
    --primary: #004a99;
    --primary-light: #e6f0ff;
    --secondary: #28a745;
    --emergency: #dc3545;
    --dark: #1a202c;
    --text: #4a5568;
    --text-light: #718096;
    --bg: #f7fafc;
    --white: #ffffff;
    --shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/header.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar .container {
    max-width: 100%;
    padding: 0 50px;
}

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

.logo-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-logo {
    height: 85px;
    width: auto;
    object-fit: contain;
}

.secondary-logo {
    height: 85px;
    width: auto;
    object-fit: contain;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
    padding-left: 20px;
    margin-left: 0px;
}

.status-badge {
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    color: var(--white);
}

.hero-content {
    max-width: 650px;
    width: 50%;
    z-index: 1;
    padding: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.construction-tag {
    display: inline-block;
    background: var(--secondary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    font-weight: 300;
}

.alert-box {
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid rgba(40, 167, 69, 0.4);
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
    font-size: 1.1rem;
    margin-top: 20px;
}

.alert-box strong {
    color: #28a745;
    text-shadow: 0 0 10px rgba(40, 167, 69, 0.3);
}

.alert-box i {
    color: #ffd700;
    font-size: 1.5rem;
}

/* Info Cards Section */
.contact-section {
    padding: 80px 0;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.info-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
}

.info-card.emergency {
    background: linear-gradient(135deg, #fff 0%, #fff5f5 100%);
    border-color: #feb2b2;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
}

.emergency .card-icon {
    background: #fff5f5;
    color: var(--emergency);
}

.info-card h3 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: #003366;
    box-shadow: 0 4px 12px rgba(0, 74, 153, 0.3);
}

.btn-emergency {
    background: var(--emergency);
    color: var(--white);
}

.btn-emergency:hover {
    background: #b91c1c;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* Footer */
footer {
    background: rgba(26, 32, 44, 0.9);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links {
    opacity: 0.6;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-content {
        flex-direction: column;
        gap: 15px;
    }

    .secondary-logo {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero {
        height: auto;
        padding: 100px 0;
    }

    .hero-content {
        padding: 30px 20px;
        margin: 0 15px;
        width: calc(100% - 30px);
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        margin-top: 0;
        padding: 40px 0;
    }
}