/* Responsive Styles */

/* Extra Large Devices (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Large Devices (992px to 1199px) */
@media (max-width: 1199.98px) {
    .hero-section {
        padding: 100px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

/* Medium Devices (768px to 991px) */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 0.25rem;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .hero-section {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
}

/* Small Devices (576px to 767px) */
@media (max-width: 767.98px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}

/* Extra Small Devices (575px and below) */
@media (max-width: 575.98px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer .col-md-4 {
        margin-bottom: 30px;
    }
}

/* Mobile Menu */
@media (max-width: 991.98px) {
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-toggler-icon {
        width: 1.5em;
        height: 1.5em;
    }
    
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
    
    .nav-link {
        padding: 0.5rem 1rem !important;
    }
}

/* Tablet Landscape */
@media (min-width: 768px) and (max-width: 991.98px) and (orientation: landscape) {
    .hero-section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
}

/* Mobile Landscape */
@media (max-width: 767.98px) and (orientation: landscape) {
    .hero-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
} 