
        
        /* Premium Chiropractors Page Styles - FULLY RESPONSIVE */
        :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;
        }
        
        /* ===== NEW: 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);
            }
        }
        
        /* Responsive Image Section */
        @media screen and (max-width: 1024px) {
            .premium-image-section {
                padding: 60px 0;
            }
            
            .image-caption {
                bottom: 20px;
                left: 20px;
                padding: 15px 25px;
                max-width: 350px;
            }
            
            .image-caption h3 {
                font-size: 1.5rem;
            }
        }
        
        @media screen and (max-width: 768px) {
            .premium-image-section {
                padding: 40px 0;
            }
            
            .image-container {
                border-radius: 30px;
            }
            
            .image-caption {
                position: relative;
                bottom: auto;
                left: auto;
                margin-top: -50px;
                margin-left: 20px;
                margin-right: 20px;
                max-width: calc(100% - 40px);
                padding: 20px;
                border-radius: 16px;
            }
            
            .image-caption h3 {
                font-size: 1.3rem;
            }
        }
        
        @media screen and (max-width: 480px) {
            .image-caption {
                margin-top: -40px;
                padding: 15px;
            }
            
            .image-caption h3 {
                font-size: 1.2rem;
            }
            
            .image-caption p {
                font-size: 0.9rem;
                margin-bottom: 10px;
            }
        }
        
        /* 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;
            cursor: pointer;
        }

        .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);
        }
        
        /* Tertiary Button for Get Pricing */
        .premium-cta-btn.tertiary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .premium-cta-btn.tertiary:hover {
            background: var(--gradient-primary);
            color: white;
            border-color: transparent;
            transform: translateY(-5px);
        }

        .premium-cta-btn i {
            font-size: 1.3rem;
        }

        /* 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)); }
        }

        /* 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);
        }
        
        /* Modal Styles */
        #pricingModal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.8);
            z-index: 9999;
            align-items: center;
            justify-content: center;
        }

        #pricingModal > div {
            animation: slideUp 0.4s ease-out;
        }

        @keyframes slideUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes slideDown {
            from { transform: translateY(-30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes slideInLeft {
            from { transform: translateX(-30px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes slideInRight {
            from { transform: translateX(30px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes modalPulse {
            0% { box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5), 0 0 0 0 rgba(220,38,38,0.2); }
            50% { box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5), 0 0 0 10px rgba(220,38,38,0); }
            100% { box-shadow: 0 50px 100px -20px rgba(0,0,0,0.5), 0 0 0 0 rgba(220,38,38,0); }
        }

        .particle {
            animation: float 6s infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) translateX(0); }
            25% { transform: translateY(-10px) translateX(5px); }
            50% { transform: translateY(-5px) translateX(-5px); }
            75% { transform: translateY(-15px) translateX(3px); }
        }

        .shimmer {
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { left: -100%; }
            20% { left: 100%; }
            100% { left: 100%; }
        }

        #successToast {
            transition: transform 0.3s ease-out;
        }

        /* Responsive adjustments for modal */
        @media screen and (max-width: 700px) {
            #pricingModal > div {
                max-width: 95% !important;
                width: 95% !important;
                padding: 45px 15px 20px 15px !important;
                max-height: 85vh !important;
                margin: 10px !important;
            }
            
            #pricingModal > div > form > div[style*="grid-template-columns: 1fr 1fr"] {
                grid-template-columns: 1fr !important;
                gap: 0 !important;
            }
            
            #closeModal {
                top: 10px !important;
                right: 10px !important;
                width: 44px !important;
                height: 44px !important;
                font-size: 28px !important;
                background: #dc2626 !important;
                color: white !important;
                box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
                z-index: 10001 !important;
                position: fixed !important;
            }
            
            #pricingModal h3 {
                font-size: 22px !important;
                margin-top: 5px !important;
            }
            
            #pricingModal p {
                font-size: 12px !important;
            }
            
            #pricingModal > div > form > div:last-child {
                gap: 8px !important;
                font-size: 10px !important;
            }
            
            #pricingModal > div {
                overflow-y: auto !important;
                -webkit-overflow-scrolling: touch !important;
            }
            
            #pricingModal input,
            #pricingModal button,
            #pricingModal label {
                min-height: 44px !important;
            }
            
            #pricingModal input {
                font-size: 16px !important;
            }
            
            #pricingModal button[type="submit"] {
                min-height: 48px !important;
            }
        }

        @media screen and (max-width: 480px) {
            #pricingModal > div {
                padding: 40px 12px 15px 12px !important;
            }
            
            #pricingModal > div > form > div[style*="background: #f8fafc; padding: 10px 12px"] {
                padding: 8px 10px !important;
            }
            
            #pricingModal button[type="submit"] {
                padding: 12px !important;
                font-size: 15px !important;
            }
            
            #pricingModal > div > div:first-of-type > div:first-child {
                width: 50px !important;
                height: 50px !important;
            }
            
            #pricingModal > div > div:first-of-type > div:first-child i {
                font-size: 22px !important;
            }
        }

        @media screen and (max-height: 600px) {
            #pricingModal > div {
                max-height: 95vh !important;
                padding-top: 35px !important;
            }
            
            #pricingModal > div > div:first-of-type {
                margin-bottom: 10px !important;
            }
            
            #pricingModal > div > div:first-of-type > div:first-child {
                width: 40px !important;
                height: 40px !important;
                margin-bottom: 8px !important;
            }
            
            #pricingModal h3 {
                font-size: 20px !important;
                margin-bottom: 2px !important;
            }
            
            #pricingModal .particle {
                display: none !important;
            }
        }

        #closeModal {
            -webkit-tap-highlight-color: transparent;
            user-select: none;
        }
        
        /* ===== 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;
            }
            
            .footer-cta {
                flex-direction: column;
                text-align: center;
                padding: 50px;
                gap: 30px;
                width: calc(100% - 80px);
            }
            
            .footer-cta::before {
                width: 100%;
                height: 6px;
                top: 0;
                left: 0;
            }
            
            .footer-cta-title {
                font-size: 32px;
            }
            
            .footer-cta-btn {
                white-space: normal;
                width: 100%;
                justify-content: center;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 50px;
            }
            
            .footer-column {
                text-align: center;
            }
            
            .footer-column h4::after {
                left: 0;
                right: 0;
                margin: 0 auto;
            }
            
            .flex.items-center {
                justify-content: center;
            }
            
            .footer-social {
                justify-content: center;
            }
            
            .contact-info li {
                justify-content: center;
            }
        }
        
        /* 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;
            }
            
            .premium-footer {
                padding: 60px 0 30px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 0 30px;
            }
            
            .footer-cta {
                padding: 40px 30px;
                margin: 0 30px 60px;
                border-radius: 30px;
                width: calc(100% - 60px);
            }
            
            .footer-cta-title {
                font-size: 28px;
            }
            
            .footer-cta-btn {
                padding: 16px 30px;
                font-size: 16px;
            }
            
            .footer-column {
                max-width: 500px;
                margin: 0 auto;
            }
            
            .footer-column h4 {
                font-size: 22px;
            }
            
            .copyright {
                margin: 40px 30px 0;
                padding: 25px 0 0;
            }
            
            .copyright p {
                font-size: 14px;
            }
        }
        
        /* 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;
            }
            
            .premium-footer {
                padding: 50px 0 20px;
            }
            
            .footer-content {
                padding: 0 20px;
                gap: 35px;
            }
            
            .footer-cta {
                padding: 30px 20px;
                margin: 0 20px 50px;
                border-radius: 24px;
                width: calc(100% - 40px);
            }
            
            .footer-cta-title {
                font-size: 24px;
            }
            
            .footer-cta-btn {
                padding: 14px 25px;
                font-size: 15px;
                border-radius: 12px;
            }
            
            .footer-column h4 {
                font-size: 20px;
                margin-bottom: 25px;
            }
            
            .flex.items-center img {
                width: 160px !important;
            }
            
            .footer-social-icon {
                width: 44px;
                height: 44px;
                font-size: 16px;
            }
            
            .contact-info li {
                font-size: 14px;
                flex-direction: column;
                align-items: center;
                text-align: center;
                gap: 8px;
            }
        }
        
        /* 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;
            }
            
            .footer-cta {
                padding: 25px 15px;
            }
            
            .footer-cta-title {
                font-size: 22px;
            }
            
            .footer-cta-btn {
                padding: 12px 20px;
                font-size: 14px;
            }
            
            .flex.items-center img {
                width: 140px !important;
            }
            
            .footer-social {
                gap: 10px;
            }
            
            .footer-social-icon {
                width: 40px;
                height: 40px;
                font-size: 15px;
            }
        }

        /* 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;
            }
        }
