/* Tablet Styles */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .welcome-content,
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
    /* Navigation Mobile */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link {
        width: 100%;
        padding: 1rem;
        font-size: 1.1rem;
    }
    
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown-parent.active .dropdown {
        max-height: 300px;
    }
    
    .dropdown-item {
        padding-left: 2rem;
    }
    
    .dropdown-item:hover {
        padding-left: 2.5rem;
    }
    
    /* Hero Mobile */
    .hero {
        min-height: 90vh;
        padding: 100px 0 60px;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Sections Mobile */
    section {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.875rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Welcome Mobile */
    .welcome-content {
        gap: 2rem;
    }
    
    .welcome-text p {
        font-size: 1rem;
    }
    
    .welcome-highlights {
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    /* Services Mobile */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-card.featured {
        transform: scale(1);
    }
    
    /* Why Choose Us Mobile */
    .why-choose-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .reasons-list {
        gap: 1.5rem;
    }
    
    .reason-item {
        gap: 1rem;
    }
    
    /* Service Areas Mobile */
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* CTA Mobile */
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Landscape Mobile */
@media screen and (max-width: 896px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .nav-menu {
        height: calc(100vh - 80px);
    }
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu-btn,
    .hero-scroll,
    .cta-section,
    .footer-social {
        display: none;
    }
    
    .hero {
        background: none;
        color: black;
    }
    
    .hero h1,
    .hero-subtitle,
    .hero-badge {
        color: black;
    }
    
    a {
        text-decoration: underline;
    }
}