/* Responsive Design */

@media (max-width: 992px) {
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2.25rem;
    }
    .hero {
        padding: 8rem 0 6rem;
    }
    .hero p {
        font-size: 1.2rem;
    }
    .section {
        padding: var(--spacing-lg) 0;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        margin-left: 24px;
    }
    nav ul {
        position: fixed;
        top: 80px;
        right: -100%;
        flex-direction: column;
        background: white;
        width: 280px;
        height: calc(100vh - 80px);
        padding: var(--spacing-md);
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }
    nav ul.active {
        right: 0;
    }
    nav ul li {
        margin: 16px 0;
    }
    .header-actions {
        display: none;
    }
    .contact-info {
        display: none;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .hero-buttons .btn {
        width: 100%;
        max-width: 350px;
    }
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    .section-title p {
        font-size: 1.05rem;
    }
    .cta {
        margin: var(--spacing-lg) auto;
        padding: var(--spacing-md);
    }
    .cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.25rem;
    }
    h2 {
        font-size: 1.75rem;
    }
    h2:after {
        width: 50px;
        bottom: -8px;
    }
    .section {
        padding: var(--spacing-md) 0;
    }
    .section-title {
        margin-bottom: var(--spacing-md);
    }
    .btn {
        padding: 12px 28px;
        font-size: 1rem;
    }
    .btn-large {
        padding: 16px 40px;
        font-size: 1.15rem;
    }
    .logo-img {
        height: 42px;
    }
    .logo {
        font-size: 1.6rem;
    }
    .hero {
        padding: 6rem 0 4rem;
    }
    .branches-container {
        padding: var(--spacing-md);
    }
}

/* Add this to the bottom of responsive.css */
/* For the branch status indicators */
.status-operational {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.status-new {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.status-soon {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}
