/* Global Responsive Enhancements */

/* Enhanced Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 30px 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 10px 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 10px 20px;
        display: block;
        border-radius: 25px;
        transition: all 0.3s;
        justify-content: center;
    }
    
    .dropdown-menu {
        position: static;
        background: #f8fafc;
        box-shadow: none;
        border-radius: 0;
        padding: 10px 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 400px;
    }
}

/* Enhanced About Page Responsiveness */
@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-highlights {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .highlight-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .impressive-stats {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.2rem;
    }
    
    .stat-content h3 {
        font-size: 2rem;
    }
    
    .stat-content h4 {
        font-size: 1rem;
    }
}

/* Enhanced Services Page Responsiveness */
@media (max-width: 768px) {
    .services-hero {
        padding: 80px 0 60px;
    }
    
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    
    .tech-logos {
        gap: 1.5rem;
        justify-content: center;
    }
    
    .tech-item {
        min-width: 80px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-header {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    
    .success-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .tech-content h2 {
        font-size: 1.8rem;
    }
    
    .service-card.enhanced {
        padding: 1.5rem;
    }
    
    .service-card.enhanced h3 {
        font-size: 1.2rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}

/* Enhanced Contact Page Responsiveness */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0 60px;
    }
    
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .feature-item {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .form-footer {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .certifications {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
        padding: 0.8rem 1rem;
    }
    
    .method-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-form.enhanced {
        padding: 1.5rem;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-number {
        font-size: 2rem;
    }
    
    .btn-primary.enhanced {
        width: 100%;
        padding: 1rem;
    }
}

/* Enhanced Home Page Responsiveness */
@media (max-width: 768px) {
    .hero-slider {
        min-height: 70vh;
    }
    
    .slide-content {
        padding: 0 30px;
    }
    
    .slide h1 {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .slide p {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .slide-icon {
        width: 70px;
        height: 70px;
    }
    
    .slide-icon i {
        font-size: 1.8rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 220px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        min-height: 60vh;
    }
    
    .slide h1 {
        font-size: 1.8rem;
    }
    
    .slide p {
        font-size: 0.9rem;
    }
    
    .slide-icon {
        width: 60px;
        height: 60px;
    }
    
    .slide-icon i {
        font-size: 1.5rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 180px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Global Typography Responsiveness */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
}

/* Enhanced Grid Responsiveness */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid,
    .stats-grid,
    .advantages-grid,
    .success-grid,
    .methods-grid {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Button Responsiveness */
@media (max-width: 480px) {
    .btn-primary,
    .btn-secondary,
    .method-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.95rem;
    }
}

/* Enhanced Form Responsiveness */
@media (max-width: 768px) {
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 12px 15px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
}