/* Enhanced Responsive Design for Mobile-First Approach */

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .section-title { font-size: 2.25rem; }
    .hero-title { font-size: 3rem; }
    .floating-stat, .floating-icon { font-size: 0.9rem; }
}

/* Tablets */
@media (max-width: 992px) {
    .hero-section { min-height: 80vh; padding: 3rem 0; }
    .section-title { font-size: 2rem; }
    .cta-title { font-size: 2.25rem; }
    .service-card, .industry-card, .case-study-card { padding: 1.5rem; }
    .floating-badge, .floating-stat { position: relative; animation: none; margin-bottom: 1rem; }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Hero Centering for Mobile */
    .hero-section {
        text-align: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-description {
        text-align: center;
    }
    
    .hero-actions {
        text-align: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats,
    .trust-grid {
        justify-content: center;
        text-align: center;
    }
    
    .hero-actions .btn, .cta-actions .btn { width: 100%; margin-bottom: 0.75rem; }
    
    .cta-button {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 1rem 0;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
        display: flex;
        align-items: center;
        margin: 0 auto;
    }
    
    .service-card, .industry-card { padding: 1.5rem 1rem; touch-action: manipulation; }
    .service-card:active, .industry-card:active { transform: scale(0.98); }
    input, textarea, select, button { font-size: 16px; }
}

/* Small Mobile */
@media (max-width: 576px) {
    /* Enhanced Mobile Hero Centering */
    .hero-title {
        font-size: 2rem !important;
        text-align: center;
        line-height: 1.2;
    }
    
    .hero-subtitle,
    .hero-description {
        font-size: 1rem !important;
        text-align: center;
        margin: 0 auto 1.5rem auto;
    }
    
    .hero-actions {
        padding: 0 1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        margin: 0 auto 0.75rem auto;
        display: block;
    }
    
    .trust-grid,
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .trust-item,
    .stat-item {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .service-card, .industry-card { padding: 1.25rem 0.75rem; }
    .btn { padding: 12px 20px; font-size: 0.9rem; }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    /* Ultra Compact Mobile Hero */
    .hero-title {
        font-size: 1.75rem !important;
        text-align: center;
    }
    
    .hero-subtitle,
    .hero-description {
        font-size: 0.9rem !important;
        text-align: center;
        padding: 0 0.5rem;
    }
    
    .hero-actions {
        padding: 0 0.5rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 240px;
        font-size: 0.85rem;
        padding: 10px 16px;
    }
    
    .trust-grid,
    .hero-stats {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .trust-item .trust-number,
    .stat-item .stat-number {
        font-size: 1.5rem;
    }
    
    .trust-item .trust-label,
    .stat-item .stat-label {
        font-size: 0.8rem;
    }
    
    .service-card, .industry-card { padding: 1rem 0.5rem; }
}
