/* ============================================
   EVOLVIFY WELLNESS - RESPONSIVE STYLESHEET
   ============================================ */

/* Large Desktop (1920px+) */
@media (min-width: 1920px) {
    .container {
        max-width: 1400px;
    }
}

/* Desktop (1600px) */
@media (max-width: 1600px) {
    :root {
        --space-2xl: 100px;
    }
}

/* Desktop (1440px) */
@media (max-width: 1440px) {
    section {
        padding: 80px 0;
    }
}

/* Desktop (1366px) */
@media (max-width: 1366px) {
    .hero-heading {
        font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    }
}

/* Laptop (1280px) */
@media (max-width: 1280px) {
    .container {
        padding: 0 24px;
    }
    
    .hero-floating-card {
        display: none;
    }
}

/* Laptop (1024px) */
@media (max-width: 1024px) {
    section {
        padding: 60px 0;
    }
    
    .hero-section {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-visual {
        margin-top: 40px;
    }
    
    .hero-image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .partner-features {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet (991px) */
@media (max-width: 991px) {
    :root {
        --space-xl: 60px;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }
    
    .category-card {
        padding: var(--space-sm);
    }
    
    .category-icon {
        font-size: 2rem;
    }
}

/* Tablet (768px) */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
    }
    
.hero-subtext {
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
.cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-logo {
        height: 44px;
        max-height: 44px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .confusion-element {
        font-size: 1.5rem;
    }
    
    .center-icon {
        font-size: 3rem;
    }
}

/* Mobile (576px) */
@media (max-width: 576px) {
    :root {
        --space-xs: 6px;
        --space-sm: 12px;
        --space-md: 20px;
        --space-lg: 32px;
    }
    
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-badge {
        padding: 6px 14px;
        font-size: 0.7rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .section-label {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    
    .category-card h4 {
        font-size: 0.9rem;
    }
    
    .category-card span {
        font-size: 0.7rem;
    }
    
    .cta-card {
        padding: var(--space-lg);
    }
}

/* Mobile (425px) */
@media (max-width: 425px) {
    .hero-image-wrapper {
        max-width: 300px;
    }
    
    .wellness-icon {
        font-size: 3.5rem;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .step-icon {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Mobile (375px) */
@media (max-width: 375px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-heading {
        font-size: 1.75rem;
    }
    
    .navbar-brand {
        font-size: 1.5rem;
    }
}

/* Mobile (320px) */
@media (max-width: 320px) {
    .hero-image-wrapper {
        max-width: 250px;
    }
}

/* Landscape Mode Fix */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 40px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* High DPI Screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-pattern {
        background-size: 30px 30px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}