/* Responsive Design */

/* Large Desktop */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
}

/* Desktop */
@media (max-width: 992px) {
    .container {
        max-width: 900px;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .section-content {
        gap: 40px;
    }
    
    .stats {
        gap: 30px;
    }
}

/* Tablet */
@media (max-width: 768px) {
    /* Navigation */
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info span,
    .business-hours span {
        margin-right: 15px;
        font-size: 13px;
    }
    
    .navbar-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .navbar-menu.active {
        transform: translateX(0);
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .navbar-nav li {
        width: 100%;
    }
    
    .navbar-nav a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #f3f4f6;
    }
    
    .navbar-cta {
        margin-top: 20px;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8fafc;
        border-radius: 0;
        margin-top: 10px;
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    /* Hero Section */
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .content-right {
        order: -1;
    }
    
    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    /* Stats */
    .stats {
        justify-content: center;
        gap: 20px;
    }
    
    /* Offers Grid */
    .offers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* CTA Section */
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    /* Top Bar */
    .top-bar {
        padding: 5px 0;
    }
    
    .contact-info,
    .business-hours {
        font-size: 12px;
    }
    
    .contact-info span,
    .business-hours span {
        margin-right: 10px;
        display: block;
        margin-bottom: 5px;
    }
    
    /* Navigation */
    .navbar-brand h2 {
        font-size: 20px;
    }
    
    /* Hero */
    .hero {
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .hero-features .feature {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    /* Sections */
    section {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    /* Service Cards */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 25px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i {
        font-size: 24px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    /* Content Sections */
    .content-left h2 {
        font-size: 24px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .feature-item i {
        font-size: 20px;
    }
    
    .feature-item h4 {
        font-size: 16px;
    }
    
    /* Stats */
    .stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .stat h3 {
        font-size: 28px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .testimonial-content p {
        font-size: 16px;
    }
    
    /* Offers */
    .offer-card {
        padding: 25px 20px;
    }
    
    .offer-card h3 {
        font-size: 18px;
        margin: 25px 0 15px;
    }
    
    /* CTA */
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 24px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 20px;
    }
    
    .footer-section h4 {
        font-size: 16px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 22px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .btn-large {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .service-card h3 {
        font-size: 18px;
    }
    
    .content-left h2 {
        font-size: 22px;
    }
}