
    :root {
        --primary-red: #dc2626;
        --primary-red-light: #ef4444;
        --primary-red-dark: #991b1b;
        --primary-black: #000000;
        --primary-white: #ffffff;
        --dark-gray: #111827;
        --medium-gray: #374151;
        --light-gray: #f3f4f6;
        --premium-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
        --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        --glass-bg: rgba(0, 0, 0, 0.9);
        --glass-border: rgba(255, 255, 255, 0.1);
        --smooth-transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        --gradient-primary: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
        --gradient-secondary: linear-gradient(135deg, #1f2937 0%, #111827 100%);
        --gradient-health: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(153, 27, 27, 0.05));
        --gradient-dark: linear-gradient(135deg, #0f172a 0%, #020617 100%);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }

    body {
        font-family: 'Inter', sans-serif;
        color: var(--primary-black);
        overflow-x: hidden;
        background: var(--primary-white);
        width: 100%;
        position: relative;
    }

    img {
        max-width: 100%;
        height: auto;
        display: block;
    }

    .container {
        width: 100%;
        max-width: 1500px;
        margin: 0 auto;
        padding-left: 30px;
        padding-right: 30px;
    }
    
    /* Premium Hero Section - FULLY RESPONSIVE */
    .chiropractor-hero {
        background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
        padding: 120px 0 80px;
        position: relative;
        overflow: hidden;
        border-bottom: 1px solid rgba(220, 38, 38, 0.1);
        width: 100%;
    }

    .chiropractor-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 80%, rgba(220, 38, 38, 0.08) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(0, 0, 0, 0.05) 0%, transparent 50%);
        z-index: 1;
    }

    /* Premium Service Cards - FULLY RESPONSIVE */
    .premium-service-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .premium-service-card {
        background: white;
        border-radius: 32px;
        padding: 50px 40px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
        transition: var(--smooth-transition);
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    .premium-service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        background: var(--gradient-primary);
        transform: scaleX(0);
        transition: transform 0.5s ease;
    }

    .premium-service-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 80px rgba(220, 38, 38, 0.15);
        border-color: rgba(220, 38, 38, 0.2);
    }

    .premium-service-card:hover::before {
        transform: scaleX(1);
    }

    .service-icon-wrapper {
        width: 90px;
        height: 90px;
        background: var(--gradient-health);
        border-radius: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 35px;
        transition: var(--smooth-transition);
    }

    .premium-service-card:hover .service-icon-wrapper {
        background: var(--gradient-primary);
    }

    .service-icon {
        font-size: 42px;
        color: var(--primary-red);
        transition: var(--smooth-transition);
    }

    .premium-service-card:hover .service-icon {
        color: white;
    }

    .service-title {
        font-size: 2rem;
        font-weight: 800;
        color: var(--dark-gray);
        margin-bottom: 20px;
        line-height: 1.3;
        transition: var(--smooth-transition);
    }

    .premium-service-card:hover .service-title {
        color: var(--primary-red);
    }

    .service-title a {
        color: inherit;
        text-decoration: none;
    }

    .service-description {
        color: var(--medium-gray);
        font-size: 1.15rem;
        line-height: 1.7;
        margin-bottom: 30px;
        font-weight: 400;
    }

    /* Premium Feature List - FULLY RESPONSIVE */
    .premium-feature-list {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
        margin: 30px 0;
        list-style: none;
    }

    .premium-feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 20px;
        background: var(--gradient-health);
        border-radius: 50px;
        transition: var(--smooth-transition);
        border: 2px solid transparent;
    }

    .premium-feature-item:hover {
        background: var(--gradient-primary);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
    }

    .premium-feature-item i {
        color: var(--primary-red);
        font-size: 14px;
        transition: var(--smooth-transition);
    }

    .premium-feature-item:hover i {
        color: white;
    }

    .premium-feature-item span {
        color: var(--dark-gray);
        font-size: 0.95rem;
        font-weight: 600;
        transition: var(--smooth-transition);
    }

    .premium-feature-item:hover span {
        color: white;
    }

    /* Premium Button */
    .premium-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        background: var(--gradient-primary);
        color: white;
        padding: 16px 32px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        text-decoration: none;
        transition: var(--smooth-transition);
        border: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
        margin-top: auto;
        align-self: flex-start;
    }

    .premium-btn i {
        transition: transform 0.3s ease;
    }

    .premium-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
    }

    .premium-btn:hover i {
        transform: translateX(8px);
    }

    .premium-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .premium-btn:hover::after {
        left: 100%;
    }

    /* Why Choose Us Section - FULLY RESPONSIVE */
    .premium-why-choose {
        background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .premium-why-choose::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 150px;
        background: linear-gradient(to bottom, rgba(220, 38, 38, 0.08), transparent);
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
        width: 100%;
    }

    .section-title {
        font-size: 3.2rem;
        font-weight: 900;
        color: var(--dark-gray);
        margin-bottom: 25px;
        position: relative;
        display: inline-block;
    }

    .section-title::after {
        content: '';
        position: absolute;
        width: 100px;
        height: 6px;
        background: var(--gradient-primary);
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 3px;
    }

    .section-description {
        font-size: 1.3rem;
        color: var(--medium-gray);
        max-width: 800px;
        margin: 40px auto 0;
        line-height: 1.7;
        font-weight: 500;
        padding: 0 20px;
    }

    /* Stats Container - FULLY RESPONSIVE */
    .stats-container {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-top: 60px;
        flex-wrap: wrap;
        width: 100%;
    }

    .stat-card {
        background: white;
        padding: 40px;
        border-radius: 24px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
        text-align: center;
        min-width: 200px;
        transition: var(--smooth-transition);
        border: 2px solid transparent;
    }

    .stat-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 60px rgba(220, 38, 38, 0.15);
        border-color: rgba(220, 38, 38, 0.2);
    }

    .stat-number {
        font-size: 3.5rem;
        font-weight: 900;
        color: var(--primary-red);
        margin-bottom: 10px;
    }

    .stat-label {
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--dark-gray);
    }

    .google-review {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-top: 15px;
        color: #fbbf24;
        font-size: 1.1rem;
    }

    /* Premium CTA Buttons - FULLY RESPONSIVE */
    .premium-cta-container {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin-top: 50px;
        flex-wrap: wrap;
        width: 100%;
    }

    .premium-cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        padding: 20px 40px;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: 700;
        text-decoration: none;
        transition: var(--smooth-transition);
        position: relative;
        overflow: hidden;
    }

    .premium-cta-btn.primary {
        background: var(--gradient-primary);
        color: white;
        box-shadow: 0 15px 35px rgba(220, 38, 38, 0.3);
    }

    .premium-cta-btn.primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 45px rgba(220, 38, 38, 0.4);
    }

    .premium-cta-btn.secondary {
        background: white;
        color: var(--primary-red);
        border: 2px solid var(--primary-red);
        box-shadow: 0 15px 35px rgba(220, 38, 38, 0.1);
    }

    .premium-cta-btn.secondary:hover {
        background: var(--gradient-primary);
        color: white;
        border-color: transparent;
        transform: translateY(-5px);
    }

    .premium-cta-btn i {
        font-size: 1.3rem;
    }

    /* Premium Image Section with Spacing */
    .premium-image-section {
        padding: 80px 0;
        background: white;
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    
    .premium-image-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 30% 50%, rgba(220, 38, 38, 0.03) 0%, transparent 50%);
        animation: rotate 30s linear infinite;
        z-index: 1;
    }
    
    @keyframes rotate {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }
    
    .image-container {
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        border-radius: 40px;
        overflow: hidden;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        transform: translateY(0);
        transition: var(--smooth-transition);
        z-index: 2;
    }
    
    .image-container:hover {
        transform: translateY(-15px);
        box-shadow: 0 40px 80px rgba(220, 38, 38, 0.25);
    }
    
    .image-container img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.8s ease;
    }
    
    .image-container:hover img {
        transform: scale(1.05);
    }
    
    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(0, 0, 0, 0.2));
        pointer-events: none;
        z-index: 3;
    }
    
    .image-caption {
        position: absolute;
        bottom: 30px;
        left: 30px;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        padding: 20px 30px;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        z-index: 4;
        max-width: 400px;
        border-left: 6px solid var(--primary-red);
        animation: slideInLeft 1s ease-out;
    }
    
    .image-caption h3 {
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--dark-gray);
        margin-bottom: 10px;
    }
    
    .image-caption p {
        font-size: 1rem;
        color: var(--medium-gray);
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .image-caption .caption-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        color: var(--primary-red);
        font-weight: 600;
        text-decoration: none;
        transition: gap 0.3s ease;
    }
    
    .image-caption .caption-btn:hover {
        gap: 15px;
    }
    
    @keyframes slideInLeft {
        from {
            opacity: 0;
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Premium CTA Section - FULLY RESPONSIVE */
    .premium-cta-section {
        background: var(--gradient-primary);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .premium-cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: 
            radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
        animation: pulse 15s ease-in-out infinite alternate;
    }

    .cta-content {
        position: relative;
        z-index: 1;
        text-align: center;
        max-width: 900px;
        margin: 0 auto;
        padding: 0 30px;
    }

    .cta-title {
        font-size: 3.2rem;
        font-weight: 900;
        color: white;
        margin-bottom: 25px;
        line-height: 1.2;
        text-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .cta-description {
        font-size: 1.4rem;
        color: rgba(255, 255, 255, 0.95);
        margin-bottom: 40px;
        line-height: 1.6;
        font-weight: 500;
    }

    .cta-button-white {
        display: inline-flex;
        align-items: center;
        gap: 15px;
        background: white;
        color: var(--primary-red);
        padding: 20px 50px;
        border-radius: 50px;
        font-size: 1.2rem;
        font-weight: 700;
        text-decoration: none;
        transition: var(--smooth-transition);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .cta-button-white:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
        gap: 20px;
    }

    .cta-button-white i {
        transition: transform 0.3s ease;
    }

    .cta-button-white:hover i {
        transform: translateX(8px);
    }

    .section-header-premium {
        text-align: center;
        margin-bottom: 70px;
    }

    .section-subtitle-badge {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: rgba(220,38,38,0.08);
        padding: 12px 28px;
        border-radius: 100px;
        margin-bottom: 25px;
        border: 1px solid rgba(220,38,38,0.15);
    }

    .section-subtitle-badge span {
        color: var(--primary-red);
        font-weight: 700;
        font-size: 14px;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .section-subtitle-badge i {
        color: var(--primary-red);
        animation: pulse 2s infinite;
    }

    .section-title-premium {
        font-size: 3.5rem;
        font-weight: 900;
        color: var(--dark-gray);
        margin-bottom: 25px;
        line-height: 1.2;
    }

    .section-title-premium span {
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
    }

    .section-description-premium {
        font-size: 1.3rem;
        color: var(--medium-gray);
        max-width: 900px;
        margin: 30px auto 0;
        line-height: 1.7;
    }

    /* Animation Classes */
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .animation-delay-100 { transition-delay: 0.1s; }
    .animation-delay-200 { transition-delay: 0.2s; }
    .animation-delay-300 { transition-delay: 0.3s; }
    .animation-delay-400 { transition-delay: 0.4s; }
    .animation-delay-500 { transition-delay: 0.5s; }
    .animation-delay-600 { transition-delay: 0.6s; }

    @keyframes fadeInUp {
        from { opacity: 0; transform: translateY(30px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .animate-fade-in-up {
        animation: fadeInUp 0.8s ease-out forwards;
    }

    @keyframes pulse {
        0%, 100% { opacity: 0.5; }
        50% { opacity: 0.8; }
    }

    .pulse {
        animation: pulse 2s infinite;
    }

    /* Glass Morphism Effect */
    .glass-card {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.2);
    }

    /* Hover Glow Effect */
    .hover-glow:hover {
        box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
    }

    /* Premium Image Carousel - FULLY RESPONSIVE */
    .premium-carousel {
        padding: 80px 0;
        background: white;
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .carousel-container {
        position: relative;
        overflow: hidden;
        padding: 20px 0;
        width: 100%;
    }

    .carousel-track {
        display: flex;
        animation: slide 30s linear infinite;
        gap: 40px;
        width: max-content;
    }

    .carousel-track:hover {
        animation-play-state: paused;
    }

    .carousel-item {
        flex: 0 0 200px;
        height: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: white;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border: 2px solid var(--light-gray);
        transition: var(--smooth-transition);
    }

    .carousel-item:hover {
        border-color: var(--primary-red);
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(220, 38, 38, 0.1);
    }

    .carousel-item img {
        max-width: 140px;
        max-height: 70px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(100%);
        opacity: 0.7;
        transition: var(--smooth-transition);
    }

    .carousel-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
        transform: scale(1.1);
    }

    @keyframes slide {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-240px * 5 - 40px * 5)); }
    }

    /* ===== FULLY OPTIMIZED RESPONSIVE BREAKPOINTS ===== */
    
    /* Large Desktop - 1400px and below */
    @media screen and (max-width: 1400px) {
        .container,
        .footer-content,
        .footer-cta {
            max-width: 1200px;
        }
        
        .section-title {
            font-size: 3rem;
        }
        
        .cta-title {
            font-size: 3rem;
        }
    }
    
    /* Desktop - 1200px and below */
    @media screen and (max-width: 1200px) {
        .premium-service-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        
        .service-title {
            font-size: 1.8rem;
        }
        
        .footer-content {
            gap: 40px;
            padding: 0 40px;
        }
        
        .footer-cta {
            margin-left: 40px;
            margin-right: 40px;
        }
        
        .section-title {
            font-size: 2.8rem;
        }
        
        .cta-title {
            font-size: 2.8rem;
        }
    }
    
    /* Tablet Landscape - 1024px and below */
    @media screen and (max-width: 1024px) {
        .chiropractor-hero {
            padding: 100px 0 60px;
        }
        
        .premium-service-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .stats-container {
            gap: 30px;
        }
        
        .stat-card {
            min-width: 180px;
            padding: 35px;
        }
        
        .premium-cta-container {
            gap: 20px;
        }
        
        .premium-cta-btn {
            padding: 18px 35px;
            font-size: 1.1rem;
        }
    }
    
    /* Tablet Portrait - 768px and below */
    @media screen and (max-width: 768px) {
        .container {
            padding-left: 20px;
            padding-right: 20px;
        }
        
        .chiropractor-hero {
            padding: 90px 0 50px;
        }
        
        .premium-service-grid {
            grid-template-columns: 1fr;
            gap: 30px;
            max-width: 500px;
        }
        
        .premium-service-card {
            padding: 40px 30px;
        }
        
        .service-title {
            font-size: 1.8rem;
        }
        
        .service-description {
            font-size: 1.1rem;
        }
        
        .service-icon-wrapper {
            width: 80px;
            height: 80px;
            margin-bottom: 30px;
        }
        
        .service-icon {
            font-size: 36px;
        }
        
        .premium-feature-item {
            padding: 8px 16px;
        }
        
        .premium-feature-item span {
            font-size: 0.9rem;
        }
        
        .premium-btn {
            width: 100%;
            justify-content: center;
        }
        
        .premium-why-choose {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.4rem;
        }
        
        .section-description {
            font-size: 1.1rem;
        }
        
        .stats-container {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        .stat-card {
            width: 100%;
            max-width: 350px;
        }
        
        .stat-number {
            font-size: 3rem;
        }
        
        .premium-cta-container {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }
        
        .premium-cta-btn {
            width: 100%;
            justify-content: center;
            padding: 16px 30px;
            font-size: 1rem;
        }
        
        .carousel-item {
            flex: 0 0 160px;
            height: 100px;
        }
        
        .carousel-item img {
            max-width: 100px;
            max-height: 50px;
        }
        
        @keyframes slide {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-200px * 5 - 40px * 5)); }
        }
        
        .cta-title {
            font-size: 2.4rem;
        }
        
        .cta-description {
            font-size: 1.2rem;
        }
        
        .cta-button-white {
            padding: 16px 40px;
            font-size: 1.1rem;
            width: 100%;
            justify-content: center;
        }
    }
    
    /* Mobile Landscape - 576px and below */
    @media screen and (max-width: 576px) {
        .container {
            padding-left: 16px;
            padding-right: 16px;
        }
        
        .chiropractor-hero {
            padding: 80px 0 40px;
        }
        
        .premium-service-card {
            padding: 35px 25px;
        }
        
        .service-title {
            font-size: 1.6rem;
        }
        
        .service-description {
            font-size: 1rem;
        }
        
        .service-icon-wrapper {
            width: 70px;
            height: 70px;
            margin-bottom: 25px;
        }
        
        .service-icon {
            font-size: 32px;
        }
        
        .premium-feature-list {
            gap: 10px;
        }
        
        .premium-feature-item {
            padding: 6px 14px;
        }
        
        .premium-feature-item span {
            font-size: 0.85rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
        
        .section-description {
            font-size: 1rem;
        }
        
        .stat-card {
            padding: 30px;
        }
        
        .stat-number {
            font-size: 2.8rem;
        }
        
        .stat-label {
            font-size: 1.1rem;
        }
        
        .premium-carousel {
            padding: 60px 0;
        }
        
        .section-title[style*="font-size: 2.5rem"] {
            font-size: 2rem !important;
        }
        
        .carousel-item {
            flex: 0 0 140px;
            height: 90px;
        }
        
        .cta-title {
            font-size: 2rem;
        }
        
        .cta-description {
            font-size: 1.1rem;
        }
    }
    
    /* Mobile Portrait - 400px and below */
    @media screen and (max-width: 400px) {
        .service-title {
            font-size: 1.4rem;
        }
        
        .service-icon-wrapper {
            width: 60px;
            height: 60px;
        }
        
        .service-icon {
            font-size: 28px;
        }
        
        .section-title {
            font-size: 1.8rem;
        }
        
        .stat-number {
            font-size: 2.4rem;
        }
        
        .carousel-item {
            flex: 0 0 120px;
            height: 80px;
        }
        
        .cta-title {
            font-size: 1.8rem;
        }
        
        .cta-description {
            font-size: 1rem;
        }
        
        .cta-button-white {
            padding: 14px 30px;
            font-size: 1rem;
        }
    }

    /* Fix for touch devices - no hover effects */
    @media (hover: none) and (pointer: coarse) {
        .premium-service-card:hover,
        .premium-feature-item:hover,
        .stat-card:hover,
        .premium-cta-btn:hover,
        .carousel-item:hover,
        .cta-button-white:hover,
        .footer-links a:hover,
        .footer-social-icon:hover,
        .footer-cta-btn:hover,
        .contact-info li:hover i {
            transform: none;
            background: inherit;
            box-shadow: none;
        }
        
        .premium-service-card:active {
            transform: scale(0.98);
            background: rgba(220, 38, 38, 0.05);
        }
        
        .premium-feature-item:active {
            background: var(--gradient-primary);
        }
        
        .footer-links a:active,
        .footer-social-icon:active {
            opacity: 0.8;
        }
    }
