/* Design Tokens & CSS Custom Properties */
        :root {
            --sp-primary: #c50909;
            --sp-primary-dark: #a00707;
            --sp-primary-light: #e85a5a;
            --sp-secondary: #2a9d8f;
            --sp-secondary-dark: #1d7268;
            --sp-secondary-light: #4dbdaf;
            --sp-dark: #222222;
            --sp-text: #2b2b2b;
            --sp-text-light: #4a4a4a;
            --sp-background: #f8f9fa;
            --sp-white: #ffffff;
            --sp-border-radius: 16px;
            --sp-box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
            --sp-transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
            --sp-heading-font: 'Playfair Display', Georgia, serif;
            --sp-body-font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }

        /* Container & Base Styles */
        .sp-container * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        .sp-container {
            font-family: var(--sp-body-font);
            color: var(--sp-text);
            line-height: 1.65;
            font-size: 17px;
            max-width: 1240px;
            margin: 0 auto;
            overflow-x: hidden;
            width: 100%;
        }
        .sp-container h1, 
        .sp-container h2, 
        .sp-container h3, 
        .sp-container h4 {
            font-family: var(--sp-heading-font);
            font-weight: 700;
            line-height: 1.25;
            color: var(--sp-dark);
            margin-bottom: 0.75rem;
        }
        .sp-container p {
            margin-bottom: 1.15rem;
            font-size: 17px;
            line-height: 1.6;
            color: var(--sp-text);
        }
        .sp-container img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .sp-section {
            padding: 4.5rem 2rem;
            position: relative;
        }
        .sp-section-title {
            font-size: clamp(26px, 4vw, 2.5rem);
            text-align: center;
            margin-bottom: 2.75rem;
            position: relative;
            padding-bottom: 1rem;
            color: var(--sp-dark);
        }
        .sp-section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 3.5px;
            background: linear-gradient(90deg, var(--sp-primary), var(--sp-primary-light));
            border-radius: 4px;
        }

        /* Buttons & Call to Actions */
        .sp-primary-button, 
        .sp-secondary-button, 
        .sp-text-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            text-decoration: none !important;
            font-family: var(--sp-body-font);
            font-weight: 600;
            font-size: 17px;
            border-radius: 50px;
            min-height: 48px;
            padding: 14px 28px;
            transition: var(--sp-transition);
            cursor: pointer;
            outline: none;
            border: none;
            text-align: center;
            line-height: 1.3;
        }
        .sp-primary-button {
            background: linear-gradient(90deg, var(--sp-primary), var(--sp-primary-dark));
            color: var(--sp-white) !important;
            box-shadow: 0 6px 20px rgba(197, 9, 9, 0.28);
        }
        .sp-primary-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(197, 9, 9, 0.38);
            background: linear-gradient(90deg, var(--sp-primary-dark), #e41919);
            color: var(--sp-white) !important;
        }
        .sp-secondary-button {
            background: var(--sp-white);
            color: var(--sp-primary-dark) !important;
            border: 2px solid var(--sp-primary);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        }
        .sp-secondary-button:hover {
            background: #fff5f5;
            transform: translateY(-2px);
            color: var(--sp-primary) !important;
        }
        .sp-text-button {
            color: var(--sp-primary) !important;
            background: transparent;
            padding: 8px 12px;
            font-weight: 600;
            font-size: 16px;
        }
        .sp-text-button:hover {
            color: var(--sp-primary-dark) !important;
        }
        .sp-text-button i {
            margin-left: 0.5rem;
            transition: transform 0.2s ease;
        }
        .sp-text-button:hover i {
            transform: translateX(4px);
        }

        /* Hero Section */
        .sp-hero-section {
            position: relative;
            min-height: 82vh;
            display: flex;
            align-items: center;
            padding: 5.5rem 2rem;
            background: url('https://images.unsplash.com/photo-1526256262350-7da7584cf5eb?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=MnwxfDB8MXxhbGx8fHx8fHx8fHwxNjIwMTQ4MDMw&ixlib=rb-1.2.1&q=80&w=1080') center/cover no-repeat;
            text-align: center;
            overflow: hidden;
        }
        .sp-hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(197, 9, 9, 0.94), rgba(20, 20, 20, 0.88));
        }
        .sp-hero-content {
            position: relative;
            max-width: 860px;
            margin: 0 auto;
            z-index: 2;
            color: var(--sp-white);
            animation: fadeInUp 0.8s ease;
        }
        .sp-hero-title {
            font-size: clamp(32px, 5vw, 3.5rem);
            margin-bottom: 1.15rem;
            color: var(--sp-white) !important;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
            letter-spacing: -0.5px;
            line-height: 1.2;
        }
        .sp-hero-credentials {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
            margin-bottom: 1.35rem;
        }
        .sp-credential {
            background: rgba(255, 255, 255, 0.18);
            backdrop-filter: blur(8px);
            padding: 0.55rem 1.15rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: #ffffff;
            border: 1px solid rgba(255, 255, 255, 0.25);
        }
        .sp-hero-subtitle {
            font-size: clamp(17px, 2.5vw, 1.2rem);
            margin-bottom: 1.85rem;
            font-weight: 500;
            color: #ffffff !important;
            line-height: 1.55;
            opacity: 0.96;
        }
        .sp-hero-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }
        .sp-hero-btn-primary {
            background: linear-gradient(90deg, #ffffff, #f0f0f0);
            color: var(--sp-primary) !important;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
        }
        .sp-hero-btn-primary:hover {
            background: #ffffff;
            color: var(--sp-primary-dark) !important;
        }
        .sp-hero-btn-secondary {
            background: transparent;
            color: #ffffff !important;
            border: 2px solid #ffffff;
        }
        .sp-hero-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff !important;
        }

        /* Trust Statistics Badges */
        .sp-social-proof {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            animation: fadeIn 1.2s ease forwards;
        }
        .sp-trust-badge {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .sp-trust-number {
            font-size: clamp(22px, 3.5vw, 2rem);
            font-weight: 700;
            margin-bottom: 0.2rem;
            color: #ffffff;
            line-height: 1.2;
        }
        .sp-trust-number-text {
            font-size: clamp(18px, 2.5vw, 1.6rem);
            letter-spacing: -0.2px;
        }
        .sp-trust-text {
            font-size: 15px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.92);
            line-height: 1.3;
        }

        /* Features Section */
        .sp-features-section {
            background: linear-gradient(to bottom, #ffffff, #f8f9fa);
        }
        .sp-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .sp-feature-card {
            background: var(--sp-white);
            border-radius: var(--sp-border-radius);
            padding: 2.25rem 2rem;
            box-shadow: var(--sp-box-shadow);
            transition: var(--sp-transition);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            border: 1px solid #f0f0f0;
        }
        .sp-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 14px 32px rgba(0, 0, 0, 0.09);
        }
        .sp-feature-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--sp-primary), var(--sp-primary-light));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        .sp-feature-card:hover::after {
            transform: scaleX(1);
        }
        .sp-feature-icon {
            color: var(--sp-primary);
            font-size: 2.2rem;
            margin-bottom: 1.15rem;
            display: inline-block;
            position: relative;
        }
        .sp-feature-title {
            font-size: clamp(19px, 3vw, 1.4rem);
            margin-bottom: 0.65rem;
        }
        .sp-feature-text {
            color: var(--sp-text-light);
            margin-bottom: 1.15rem;
            font-size: 16px;
            line-height: 1.58;
            flex-grow: 1;
        }
        .sp-feature-stat {
            display: inline-block;
            align-self: flex-start;
            background: #fff0f0;
            padding: 0.45rem 0.95rem;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--sp-primary);
            border: 1px solid rgba(197, 9, 9, 0.15);
        }

        /* Consultation Process Section */
        .sp-process-section {
            background: var(--sp-white);
        }
        .sp-process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.75rem;
            text-align: center;
        }
        .sp-process-step {
            padding: 1.5rem 1.25rem;
            background: #fafafa;
            border-radius: var(--sp-border-radius);
            border: 1px solid #f0f0f0;
        }
        .sp-process-step__num {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--sp-primary), var(--sp-primary-light));
            color: var(--sp-white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0 auto 1.15rem;
            box-shadow: 0 4px 14px rgba(197, 9, 9, 0.22);
        }
        .sp-process-step h3 {
            font-size: clamp(18px, 2.5vw, 1.25rem);
            margin-bottom: 0.5rem;
        }
        .sp-process-step p {
            color: var(--sp-text-light);
            font-size: 16px;
            line-height: 1.55;
            margin-bottom: 0;
        }

        /* Testimonials Section */
        .sp-testimonials-section {
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
        }
        .sp-testimonial-carousel {
            position: relative;
            max-width: 860px;
            margin: 0 auto;
        }
        .sp-testimonial-wrapper {
            display: grid;
            grid-template-columns: 1fr;
            padding: 0.5rem;
        }
        .sp-testimonial-item {
            grid-area: 1 / 1 / 2 / 2;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            transform: translateX(30px);
            background: var(--sp-white);
            border-radius: var(--sp-border-radius);
            box-shadow: var(--sp-box-shadow);
            padding: 2.25rem 2rem;
            display: flex;
            flex-direction: column;
            z-index: 1;
            pointer-events: none;
            border: 1px solid #f0f0f0;
        }
        .sp-testimonial-item.active {
            opacity: 1;
            visibility: visible;
            transform: translateX(0);
            z-index: 2;
            pointer-events: auto;
        }
        .sp-testimonial-content {
            flex: 1;
        }
        .sp-testimonial-rating {
            color: #f59e0b;
            margin-bottom: 0.85rem;
            font-size: 1.15rem;
        }
        .sp-testimonial-content p {
            font-size: clamp(16px, 2.5vw, 1.15rem);
            color: var(--sp-text);
            font-style: italic;
            position: relative;
            padding-left: 1.25rem;
            line-height: 1.6;
        }
        .sp-testimonial-content p::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -0.35rem;
            font-size: 2.5rem;
            color: var(--sp-primary);
            opacity: 0.25;
            font-family: Georgia, serif;
        }
        .sp-results-highlight {
            margin-top: 1.15rem;
            padding: 0.55rem 1.15rem;
            background: #eef9f7;
            border-left: 3px solid var(--sp-secondary);
            border-radius: 4px;
            display: inline-block;
        }
        .sp-results-highlight span {
            font-weight: 600;
            font-size: 15px;
            color: var(--sp-secondary-dark);
        }
        .sp-testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        .sp-author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--sp-primary), var(--sp-primary-light));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--sp-white);
            font-weight: 700;
            font-size: 1.1rem;
            box-shadow: 0 4px 12px rgba(197, 9, 9, 0.2);
            flex-shrink: 0;
        }
        .sp-author-info h4 {
            font-size: 1.05rem;
            margin-bottom: 0.15rem;
        }
        .sp-author-info p {
            font-size: 0.95rem;
            color: var(--sp-text-light);
            margin-bottom: 0;
        }
        .sp-carousel-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 1.35rem;
            gap: 1.35rem;
        }
        .sp-carousel-arrow {
            background: var(--sp-white);
            width: 44px;
            height: 44px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #e5e5e5;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
            cursor: pointer;
            transition: all 0.2s ease;
            color: var(--sp-dark);
            font-size: 16px;
        }
        .sp-carousel-arrow:hover {
            background: var(--sp-primary);
            color: var(--sp-white);
            border-color: var(--sp-primary);
        }
        .sp-carousel-dots {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }
        .sp-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #dcdcdc;
            transition: all 0.25s ease;
            cursor: pointer;
        }
        .sp-dot.active {
            background: var(--sp-primary);
            width: 24px;
            border-radius: 10px;
        }

        /* Conditions Section */
        .sp-conditions-section {
            background: linear-gradient(to bottom, var(--sp-white), var(--sp-background));
        }
        .sp-conditions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
        }
        .sp-condition-card {
            background: var(--sp-white);
            border-radius: var(--sp-border-radius);
            padding: 1.85rem 1.5rem;
            box-shadow: var(--sp-box-shadow);
            transition: var(--sp-transition);
            position: relative;
            overflow: hidden;
            text-align: center;
            border: 1px solid #f0f0f0;
        }
        .sp-condition-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
        }
        .sp-condition-icon {
            font-size: 2.1rem;
            color: var(--sp-primary);
            margin-bottom: 0.85rem;
            display: inline-block;
        }
        .sp-condition-card h3 {
            font-size: clamp(18px, 2.5vw, 1.3rem);
            margin-bottom: 0.45rem;
            line-height: 1.3;
        }
        .sp-condition-summary p {
            color: var(--sp-text-light);
            font-size: 15px;
            line-height: 1.45;
            margin-bottom: 0;
        }

        /* Doctor Profile Section */
        .sp-doctor-section {
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
        }
        .sp-doctor-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 3.5rem;
            align-items: center;
        }
        .sp-doctor-image-container {
            position: relative;
            max-width: 400px;
            margin: 0 auto;
        }
        .sp-doctor-image {
            border-radius: 20px;
            box-shadow: var(--sp-box-shadow);
            width: 100%;
            position: relative;
            z-index: 2;
        }
        .sp-image-decoration {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 16px;
            left: 16px;
            background: linear-gradient(135deg, var(--sp-primary-light), var(--sp-primary));
            border-radius: 20px;
            z-index: 1;
        }
        .sp-doctor-name {
            font-size: clamp(26px, 4vw, 2.5rem);
            margin-bottom: 0.35rem;
        }
        .sp-doctor-subtitle {
            color: var(--sp-primary);
            font-weight: 600;
            margin-bottom: 1.15rem;
            font-size: 16px;
            line-height: 1.45;
        }
        .sp-doctor-description {
            margin-bottom: 1.65rem;
            font-size: 17px;
            line-height: 1.65;
            color: var(--sp-text);
        }
        .sp-doctor-credentials {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 0.85rem;
            margin-bottom: 1.85rem;
        }
        .sp-credential-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 15px;
            font-weight: 500;
        }
        .sp-credential-item i {
            color: var(--sp-primary);
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        .sp-doctor-cta {
            display: inline-flex;
        }

        /* Educational Resources Section */
        .sp-resources-section {
            background: linear-gradient(to bottom, #f8f9fa, #ffffff);
        }
        .sp-resources-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .sp-resource-card {
            background: var(--sp-white);
            border-radius: var(--sp-border-radius);
            overflow: hidden;
            box-shadow: var(--sp-box-shadow);
            transition: var(--sp-transition);
            display: flex;
            flex-direction: column;
            border: 1px solid #f0f0f0;
        }
        .sp-resource-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.09);
        }
        .sp-resource-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            display: block;
        }
        .sp-resource-content {
            padding: 1.65rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .sp-resource-title {
            font-size: clamp(18px, 2.5vw, 1.25rem);
            margin-bottom: 0.65rem;
            line-height: 1.35;
        }
        .sp-resource-title a {
            color: var(--sp-dark);
            text-decoration: none;
            transition: var(--sp-transition);
        }
        .sp-resource-title a:hover {
            color: var(--sp-primary);
        }
        .sp-resource-excerpt {
            color: var(--sp-text-light);
            margin-bottom: 1.15rem;
            flex-grow: 1;
            font-size: 15px;
            line-height: 1.55;
        }

        /* FAQ Section */
        .sp-faq-section {
            background: linear-gradient(135deg, #f8f9fa, #ffffff);
        }
        .sp-faq-container {
            max-width: 820px;
            margin: 0 auto;
        }
        .sp-faq-item {
            background: var(--sp-white);
            border-radius: var(--sp-border-radius);
            margin-bottom: 0.85rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
            overflow: hidden;
            transition: var(--sp-transition);
            border: 1px solid #eee;
        }
        .sp-faq-item:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
        }
        .sp-faq-question {
            width: 100%;
            text-align: left;
            padding: 1.2rem 1.4rem;
            background: none;
            border: none;
            font-size: clamp(16px, 2.5vw, 1.1rem);
            font-weight: 600;
            color: var(--sp-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 1rem;
            transition: var(--sp-transition);
            font-family: var(--sp-body-font);
            line-height: 1.35;
            min-height: 48px;
        }
        .sp-faq-question:hover {
            color: var(--sp-primary);
        }
        .sp-faq-icon {
            color: var(--sp-primary);
            transition: transform 0.3s ease;
            font-size: 16px;
            flex-shrink: 0;
        }
        .sp-faq-question[aria-expanded="true"] .sp-faq-icon {
            transform: rotate(180deg);
        }
        .sp-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
        }
        .sp-faq-answer p {
            padding: 0 1.4rem 1.4rem;
            margin-bottom: 0;
            color: var(--sp-text-light);
            font-size: 16px;
            line-height: 1.6;
        }
        .sp-faq-question[aria-expanded="true"] + .sp-faq-answer {
            max-height: 600px;
        }

        /* Consultation Form Container Box */
        .sp-form-container-box {
            max-width: 840px;
            margin: 0 auto;
            background: var(--sp-white);
            padding: 2rem 1.5rem;
            border-radius: var(--sp-border-radius);
            box-shadow: var(--sp-box-shadow);
            border: 1px solid #f0f0f0;
        }

        /* Final CTA Section */
        .sp-final-cta-section {
            background: linear-gradient(135deg, var(--sp-primary), var(--sp-primary-dark));
            padding: 4.25rem 2rem;
            text-align: center;
            color: var(--sp-white);
            margin: 2.75rem auto;
            border-radius: var(--sp-border-radius);
            box-shadow: 0 12px 35px rgba(197, 9, 9, 0.28);
            max-width: 1140px;
        }
        .sp-final-cta-content {
            max-width: 780px;
            margin: 0 auto;
        }
        .sp-final-cta-content h2 {
            color: var(--sp-white) !important;
            font-size: clamp(24px, 4vw, 2.5rem);
            margin-bottom: 0.75rem;
            line-height: 1.25;
        }
        .sp-final-cta-content p {
            font-size: clamp(16px, 2.5vw, 1.15rem);
            margin-bottom: 2rem;
            color: rgba(255, 255, 255, 0.95) !important;
            line-height: 1.55;
        }
        .sp-final-cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            flex-wrap: wrap;
        }
        .sp-cta-btn-primary {
            background: #ffffff !important;
            color: var(--sp-primary) !important;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
        }
        .sp-cta-btn-primary:hover {
            background: #f8f9fa !important;
            color: var(--sp-primary-dark) !important;
        }
        .sp-cta-btn-secondary {
            border: 2px solid #ffffff !important;
            color: #ffffff !important;
            background: transparent !important;
        }
        .sp-cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15) !important;
            color: #ffffff !important;
        }

        /* Locations Section */
        .sp-locations-section {
            background: linear-gradient(to bottom, var(--sp-white), var(--sp-background));
        }
        .sp-locations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }
        .sp-location-card {
            background: var(--sp-white);
            border-radius: var(--sp-border-radius);
            padding: 2.25rem 2rem;
            box-shadow: var(--sp-box-shadow);
            transition: var(--sp-transition);
            border: 1px solid #f0f0f0;
            display: flex;
            flex-direction: column;
        }
        .sp-location-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
        }
        .sp-location-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.15rem;
        }
        .sp-location-header i {
            font-size: 1.8rem;
            color: var(--sp-primary);
        }
        .sp-location-header h3 {
            font-size: 1.45rem;
            margin-bottom: 0;
        }
        .sp-location-address {
            margin-bottom: 1.35rem;
            line-height: 1.6;
            color: var(--sp-text);
            font-size: 16px;
            flex-grow: 1;
        }
        .sp-location-phone {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--sp-primary);
            font-weight: 600;
            text-decoration: none;
            margin-top: 0.5rem;
            font-size: 16px;
            min-height: 44px;
        }
        .sp-location-phone:hover {
            color: var(--sp-primary-dark);
        }

        /* Floating Scheduler (Desktop & Tablet) */
        .sp-floating-scheduler {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }
        .sp-scheduler-trigger {
            background: linear-gradient(90deg, var(--sp-primary), var(--sp-primary-dark));
            color: var(--sp-white);
            border-radius: 50px;
            padding: 0.9rem 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            box-shadow: 0 6px 20px rgba(197, 9, 9, 0.35);
            cursor: pointer;
            border: none;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.25s ease;
        }
        .sp-scheduler-trigger:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(197, 9, 9, 0.45);
        }
        .sp-scheduler-panel {
            position: absolute;
            bottom: calc(100% + 15px);
            right: 0;
            width: 320px;
            background: var(--sp-white);
            border-radius: var(--sp-border-radius);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.18);
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            transform: translateY(15px);
        }
        .sp-scheduler-panel.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .sp-scheduler-header {
            background: linear-gradient(90deg, var(--sp-primary), var(--sp-primary-dark));
            color: var(--sp-white);
            padding: 1.1rem 1.25rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .sp-scheduler-header h3 {
            margin-bottom: 0;
            color: var(--sp-white);
            font-size: 1.25rem;
        }
        .sp-close-button {
            background: none;
            border: none;
            color: var(--sp-white);
            font-size: 1.2rem;
            cursor: pointer;
            padding: 4px;
        }
        .sp-scheduler-options {
            padding: 1.25rem;
        }
        .sp-scheduler-option {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 0.85rem 1rem;
            border-radius: 10px;
            transition: all 0.2s ease;
            text-decoration: none;
            color: var(--sp-text);
            margin-bottom: 0.5rem;
            border: 1px solid #f5f5f5;
        }
        .sp-scheduler-option:hover {
            background: #fff5f5;
            border-color: #ffd0d0;
            transform: translateX(4px);
        }
        .sp-scheduler-option i {
            font-size: 1.4rem;
            color: var(--sp-primary);
        }
        .sp-scheduler-option span {
            display: flex;
            flex-direction: column;
        }
        .sp-scheduler-option small {
            color: var(--sp-text-light);
            font-size: 0.85rem;
        }

        /* Mobile-Only Sticky Bottom CTA Bar */
        .sp-mobile-sticky-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #ffffff;
            box-shadow: 0 -3px 18px rgba(0, 0, 0, 0.12);
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 7px 12px calc(7px + env(safe-area-inset-bottom, 0px));
            border-top: 1px solid #eaeaea;
            gap: 8px;
        }
        .sp-sticky-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none !important;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.2s ease;
            min-height: 46px;
            padding: 7px 10px;
            text-align: center;
            box-sizing: border-box;
        }
        .sp-sticky-call {
            background: #f8f9fa;
            color: #222222 !important;
            border: 1px solid #dfdfdf;
            flex: 1;
            flex-direction: column;
            gap: 2px;
            font-size: 12px;
        }
        .sp-sticky-call i {
            font-size: 15px;
            color: var(--sp-dark);
        }
        .sp-sticky-whatsapp {
            background: #e7f7ed;
            color: #128C7E !important;
            border: 1px solid #c2ebd0;
            flex: 1;
            flex-direction: column;
            gap: 2px;
            font-size: 12px;
        }
        .sp-sticky-whatsapp i {
            font-size: 16px;
            color: #128C7E;
        }
        .sp-sticky-book {
            background: linear-gradient(90deg, #c50909, #a00707);
            color: #ffffff !important;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 700;
            box-shadow: 0 3px 12px rgba(197, 9, 9, 0.32);
            flex: 2.2;
            gap: 6px;
        }
        .sp-sticky-book i {
            font-size: 14px;
        }

        /* Lead Magnet Popup (Mobile Bottom-Sheet & Desktop Split-Modal) */
        .sp-lead-magnet-popup {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 99999;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }
        .sp-lead-magnet-popup.active {
            opacity: 1;
            visibility: visible;
        }
        .sp-lm-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(15, 23, 42, 0.75);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }
        .sp-lm-content {
            position: relative;
            background: #ffffff;
            border-radius: 20px;
            width: 92%;
            max-width: 880px;
            max-height: 90vh;
            overflow: hidden;
            z-index: 100000;
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
            transform: translateY(20px) scale(0.98);
            transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .sp-lead-magnet-popup.active .sp-lm-content {
            transform: translateY(0) scale(1);
        }
        .sp-lm-close {
            position: absolute;
            top: 14px;
            right: 14px;
            background: #f1f5f9;
            border: none;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            font-size: 1.1rem;
            color: #334155;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
            z-index: 100;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }
        .sp-lm-close:hover {
            background: var(--sp-primary);
            color: #ffffff;
            transform: rotate(90deg);
        }
        
        /* 2-Column Grid for Desktop */
        .sp-lm-body-grid {
            display: grid;
            grid-template-columns: 340px 1fr;
            min-height: 520px;
        }
        .sp-lm-sidebar {
            background: linear-gradient(150deg, #1e293b 0%, #0f172a 100%);
            color: #ffffff;
            padding: 36px 26px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-right: 1px solid rgba(255, 255, 255, 0.08);
        }
        .sp-lm-badge {
            display: inline-block;
            align-self: flex-start;
            background: rgba(197, 9, 9, 0.22);
            color: #ff9b9b;
            border: 1px solid rgba(197, 9, 9, 0.4);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11.5px;
            font-weight: 700;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        .sp-lm-sidebar h3 {
            color: #ffffff !important;
            font-size: 22px;
            line-height: 1.28;
            margin-bottom: 10px;
            font-family: var(--sp-heading-font);
        }
        .sp-lm-intro {
            color: #94a3b8 !important;
            font-size: 13.5px;
            line-height: 1.5;
            margin-bottom: 20px;
        }
        .sp-lm-perks {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
        }
        .sp-lm-perks li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 13px;
            color: #e2e8f0;
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .sp-lm-perks li i {
            color: #22c55e;
            font-size: 14px;
            margin-top: 3px;
            flex-shrink: 0;
        }
        .sp-lm-sidebar p {
            color: #cbd5e1 !important;
        }
        .sp-lm-quote-box {
            background: rgba(255, 255, 255, 0.12) !important;
            border: 1px solid rgba(255, 255, 255, 0.22) !important;
            border-left: 4px solid #ff4d4d !important;
            padding: 16px 18px !important;
            border-radius: 12px !important;
            margin-top: 8px !important;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25) !important;
        }
        .sp-lm-stars {
            color: #fbbf24 !important;
            font-size: 13px !important;
            margin-bottom: 8px !important;
            display: flex !important;
            gap: 3px !important;
        }
        .sp-lm-quote-text {
            color: #ffffff !important;
            font-size: 13.5px !important;
            font-style: italic !important;
            line-height: 1.55 !important;
            margin: 0 0 10px 0 !important;
            font-weight: 500 !important;
        }
        .sp-lm-author-row {
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
            flex-wrap: wrap !important;
            gap: 8px !important;
        }
        .sp-lm-author-name {
            font-weight: 700 !important;
            color: #ffffff !important;
            font-size: 13px !important;
        }
        .sp-lm-author-badge {
            display: inline-flex !important;
            align-items: center !important;
            gap: 4px !important;
            background: rgba(34, 197, 94, 0.25) !important;
            color: #4ade80 !important;
            border: 1px solid rgba(34, 197, 94, 0.4) !important;
            padding: 2px 8px !important;
            border-radius: 10px !important;
            font-size: 11px !important;
            font-weight: 600 !important;
        }

        /* Right Column Form */
        .sp-lm-main {
            padding: 28px 32px;
            max-height: 88vh;
            overflow-y: auto;
            background: #ffffff;
            position: relative;
        }
        .sp-lm-mobile-banner {
            display: none;
        }
        .sp-lm-form-container .nutricare-header {
            display: none !important;
        }
        .sp-lm-form-container .clinic-footer {
            display: none !important;
        }
        .sp-lm-form-container .nutricare-wrapper {
            box-shadow: none !important;
            padding: 0 !important;
            margin: 0 !important;
            border-top: none !important;
            max-width: 100% !important;
        }

        /* Mobile Bottom-Sheet Responsive Mode */
        @media (max-width: 767px) {
            .sp-lead-magnet-popup {
                align-items: flex-end;
            }
            .sp-lm-content {
                width: 100% !important;
                max-width: 100% !important;
                max-height: 88vh !important;
                border-radius: 22px 22px 0 0 !important;
                transform: translateY(100%) !important;
                margin: 0 !important;
            }
            .sp-lead-magnet-popup.active .sp-lm-content {
                transform: translateY(0) !important;
            }
            .sp-lm-body-grid {
                display: block;
                min-height: auto;
            }
            .sp-lm-sidebar {
                display: none !important; /* Hide long sidebar on mobile for instant zero-scroll access */
            }
            .sp-lm-main {
                padding: 18px 18px 26px !important;
                max-height: 88vh !important;
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }
            .sp-lm-mobile-banner {
                display: block;
                text-align: center;
                margin-bottom: 12px;
                padding-right: 36px;
            }
            .sp-lm-mobile-banner h3 {
                font-size: 18px;
                color: #c50909;
                margin-bottom: 6px;
                font-weight: 700;
                line-height: 1.25;
            }
            .sp-lm-mobile-pills {
                display: flex;
                justify-content: center;
                gap: 6px;
                flex-wrap: wrap;
                margin-bottom: 6px;
            }
            .sp-lm-mobile-pills span {
                background: #fff3f3;
                color: #c50909;
                padding: 3px 10px;
                border-radius: 12px;
                font-size: 11.5px;
                font-weight: 700;
                border: 1px solid rgba(197, 9, 9, 0.15);
            }
            .sp-lm-close {
                top: 10px;
                right: 10px;
                width: 40px;
                height: 40px;
            }
        }



        /* Animations */
        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Header Book Consultation CTA Button (Desktop & Mobile) */
        .bloghash-header-cta {
            display: inline-flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 8px !important;
            background: linear-gradient(135deg, #c50909, #a00707) !important;
            color: #ffffff !important;
            font-family: 'Montserrat', sans-serif !important;
            font-size: 14px !important;
            font-weight: 700 !important;
            padding: 9px 18px !important;
            border-radius: 50px !important;
            text-decoration: none !important;
            white-space: nowrap !important;
            box-shadow: 0 4px 12px rgba(197, 9, 9, 0.28) !important;
            transition: all 0.25s ease !important;
            border: none !important;
            line-height: 1.2 !important;
            flex-shrink: 0 !important;
            margin-left: 15px !important;
            order: 3 !important;
        }
        .bloghash-header-cta:hover,
        .bloghash-header-cta:active {
            background: #a00707 !important;
            color: #ffffff !important;
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(197, 9, 9, 0.38) !important;
        }
        .bloghash-header-cta i {
            font-size: 13px !important;
            color: #ffffff !important;
        }

        /* ==========================================================================
           DESKTOP ONLY RULES (min-width: 769px)
           ========================================================================== */
        @media (min-width: 769px) {
            .sp-mobile-sticky-cta {
                display: none !important;
            }
            .bloghash-header-container {
                display: flex !important;
                align-items: center !important;
                justify-content: space-between !important;
            }
            .bloghash-logo {
                order: 1 !important;
            }
            .bloghash-primary-nav {
                order: 2 !important;
                margin-left: auto !important;
            }
            .bloghash-header-cta {
                order: 3 !important;
                display: inline-flex !important;
            }
        }

        /* ==========================================================================
           TABLET RESPONSIVE RULES (max-width: 992px)
           ========================================================================== */
        @media (max-width: 992px) {
            .sp-doctor-content {
                grid-template-columns: 1fr;
                gap: 2.5rem;
                text-align: center;
            }
            .sp-doctor-image-container {
                max-width: 340px;
                margin: 0 auto;
            }
            .sp-hero-title {
                font-size: 2.8rem;
            }
            .sp-doctor-credentials {
                max-width: 480px;
                margin: 0 auto 2rem;
                text-align: left;
            }
            .sp-doctor-cta {
                margin: 0 auto;
            }
        }

        /* ==========================================================================
           SMARTPHONE MOBILE OPTIMIZATION (max-width: 768px)
           ========================================================================== */
        @media (max-width: 768px) {
            /* Hide Ticker & Breadcrumbs on Homepage to prevent clutter */
            .home #ticker,
            .home #bloghash-breadcrumbs,
            .home .bloghash-breadcrumbs,
            .home .breadcrumbs,
            .home .bloghash-page-header {
                display: none !important;
            }

            /* Optimize Header Height & Layout on Mobile ([LOGO] [Book Consultation] [☰]) */
            #masthead,
            #bloghash-header,
            .bloghash-header-layout-1 #bloghash-header-inner {
                padding-top: 0 !important;
                padding-bottom: 0 !important;
                margin: 0 !important;
            }
            .bloghash-header-container {
                display: flex !important;
                align-items: center !important;
                justify-content: space-between !important;
                min-height: 80px !important;
                max-height: 110px !important;
                padding: 10px 16px !important;
                box-sizing: border-box !important;
                gap: 8px !important;
            }
            .bloghash-logo,
            .bloghash-logo.bloghash-header-element {
                display: flex !important;
                align-items: center !important;
                margin: 0 !important;
                padding: 0 !important;
                flex-shrink: 0 !important;
                order: 1 !important;
            }
            .bloghash-logo .logo-inner {
                margin: 0 !important;
                padding: 0 !important;
                display: flex !important;
                align-items: center !important;
            }
            .bloghash-logo a {
                display: flex !important;
                align-items: center !important;
            }
            .bloghash-logo img {
                height: 48px !important;
                max-height: 48px !important;
                width: auto !important;
                object-fit: contain !important;
                display: block !important;
            }
            .bloghash-header-cta,
            .bloghash-mobile-header-cta {
                display: inline-flex !important;
                align-items: center !important;
                justify-content: center !important;
                gap: 6px !important;
                background: linear-gradient(135deg, #c50909, #a00707) !important;
                color: #ffffff !important;
                font-family: 'Montserrat', sans-serif !important;
                font-size: 13px !important;
                font-weight: 700 !important;
                padding: 8px 14px !important;
                border-radius: 50px !important;
                text-decoration: none !important;
                white-space: nowrap !important;
                box-shadow: 0 3px 10px rgba(197, 9, 9, 0.28) !important;
                transition: all 0.2s ease !important;
                border: none !important;
                line-height: 1.2 !important;
                flex-shrink: 0 !important;
                margin-left: 0 !important;
                order: 2 !important;
            }
            .bloghash-header-cta:hover,
            .bloghash-header-cta:active,
            .bloghash-mobile-header-cta:hover,
            .bloghash-mobile-header-cta:active {
                background: #a00707 !important;
                color: #ffffff !important;
                box-shadow: 0 4px 14px rgba(197, 9, 9, 0.38) !important;
            }
            .bloghash-header-cta i,
            .bloghash-mobile-header-cta i {
                font-size: 12px !important;
                color: #ffffff !important;
            }
            .bloghash-mobile-nav,
            .bloghash-header-element.bloghash-mobile-nav {
                display: flex !important;
                align-items: center !important;
                margin: 0 !important;
                flex-shrink: 0 !important;
                order: 3 !important;
            }
            .bloghash-hamburger {
                min-width: 42px;
                min-height: 42px;
                display: flex !important;
                align-items: center !important;
                justify-content: center !important;
                padding: 8px;
                margin: 0 !important;
                order: 3 !important;
            }
            .bloghash-mobile-menu .menu-item a,
            #bloghash-mobile-menu .menu-item a,
            .bloghash-primary-nav.is-mobile li a {
                font-size: 16px !important;
                padding: 12px 18px !important;
                line-height: 1.5 !important;
                min-height: 44px;
                display: flex;
                align-items: center;
            }

            /* Hero Section Mobile (Optimized Hierarchy & Vertical Rhythm) */
            .sp-hero-section {
                padding: 28px 16px 24px;
                min-height: auto;
            }
            .sp-hero-title {
                font-size: clamp(26px, 6.8vw, 32px) !important;
                line-height: 1.25;
                margin-bottom: 10px;
                letter-spacing: -0.3px;
                font-weight: 700;
            }
            .sp-hero-credentials {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 6px;
                margin-bottom: 12px;
            }
            .sp-credential {
                font-size: 13px;
                padding: 4px 10px;
                border-radius: 30px;
                gap: 5px;
                line-height: 1.3;
            }
            .sp-credential i {
                font-size: 12px;
            }
            .sp-hero-subtitle {
                font-size: 15px !important;
                line-height: 1.5;
                margin-bottom: 18px;
                max-width: 440px;
                margin-left: auto;
                margin-right: auto;
                opacity: 0.96;
            }
            .sp-hero-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 320px;
                margin: 0 auto 20px;
                gap: 10px;
            }
            .sp-primary-button, 
            .sp-secondary-button {
                width: 100%;
                max-width: 100%;
                min-height: 48px;
                font-size: 16px;
                padding: 12px 18px;
                display: flex;
                align-items: center;
                justify-content: center;
                box-sizing: border-box;
                border-radius: 50px;
            }
            .sp-hero-btn-primary {
                font-weight: 700;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            }
            .sp-hero-btn-secondary {
                font-weight: 600;
                border-width: 1.5px;
                background: rgba(255, 255, 255, 0.08);
            }

            /* Trust Statistics 2-Column Mobile Grid */
            .sp-social-proof {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
                width: 100%;
                max-width: 340px;
                margin: 0 auto;
            }
            .sp-trust-badge {
                background: rgba(255, 255, 255, 0.15);
                backdrop-filter: blur(8px);
                border-radius: 10px;
                padding: 9px 6px;
                border: 1px solid rgba(255, 255, 255, 0.22);
                box-sizing: border-box;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
                min-height: 62px;
            }
            .sp-trust-number {
                font-size: 20px;
                margin-bottom: 2px;
                font-weight: 700;
                line-height: 1.2;
            }
            .sp-trust-number-text {
                font-size: 15px;
                font-weight: 700;
                letter-spacing: -0.2px;
            }
            .sp-trust-text {
                font-size: 12px;
                line-height: 1.2;
                font-weight: 500;
                opacity: 0.95;
            }

            /* Features Grid Mobile (Concise & Readable) */
            .sp-features-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .sp-feature-card {
                padding: 20px 16px;
                border-radius: 14px;
            }
            .sp-feature-icon {
                font-size: 2rem;
                margin-bottom: 0.75rem;
            }
            .sp-feature-title {
                font-size: 19px;
                margin-bottom: 8px;
            }
            .sp-feature-text {
                font-size: 16px;
                line-height: 1.55;
                margin-bottom: 12px;
                color: var(--sp-text);
            }
            .sp-feature-stat {
                font-size: 14px;
                padding: 4px 11px;
            }

            /* Process Steps Mobile */
            .sp-process-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            .sp-process-step {
                padding: 16px 14px;
                border-radius: 12px;
            }
            .sp-process-step__num {
                width: 44px;
                height: 44px;
                font-size: 1.15rem;
                margin-bottom: 8px;
            }
            .sp-process-step h3 {
                font-size: 18px;
                margin-bottom: 6px;
            }
            .sp-process-step p {
                font-size: 15px;
                line-height: 1.5;
                color: var(--sp-text);
            }

            /* Testimonials Carousel Mobile */
            .sp-testimonial-item {
                padding: 20px 16px;
                border-radius: 14px;
            }
            .sp-testimonial-content p {
                font-size: 16px;
                line-height: 1.55;
                padding-left: 1rem;
                color: var(--sp-text);
            }
            .sp-results-highlight {
                margin-top: 10px;
                padding: 5px 11px;
            }
            .sp-results-highlight span {
                font-size: 14px;
            }
            .sp-testimonial-author {
                margin-top: 14px;
                gap: 12px;
            }
            .sp-author-info h4 {
                font-size: 16px;
            }
            .sp-author-info p {
                font-size: 14px;
            }
            .sp-carousel-controls {
                margin-top: 14px;
                gap: 14px;
            }
            .sp-carousel-arrow {
                width: 44px;
                height: 44px;
            }

            /* Conditions Section Mobile */
            .sp-conditions-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            .sp-condition-card {
                padding: 16px 10px;
                border-radius: 12px;
            }
            .sp-condition-icon {
                font-size: 1.75rem;
                margin-bottom: 6px;
            }
            .sp-condition-card h3 {
                font-size: 16px;
                margin-bottom: 4px;
            }
            .sp-condition-summary p {
                font-size: 14px;
                line-height: 1.35;
                color: var(--sp-text);
            }

            /* Doctor Profile Mobile */
            .sp-doctor-image-container {
                max-width: 230px;
            }
            .sp-doctor-name {
                font-size: clamp(23px, 5.8vw, 27px);
            }
            .sp-doctor-subtitle {
                font-size: 15px;
                margin-bottom: 10px;
            }
            .sp-doctor-description {
                font-size: 16px;
                line-height: 1.6;
                margin-bottom: 14px;
                color: var(--sp-text);
            }
            .sp-doctor-credentials {
                grid-template-columns: 1fr;
                gap: 7px;
                max-width: 320px;
                margin: 0 auto 18px;
            }
            .sp-credential-item {
                font-size: 15px;
            }
            .sp-doctor-cta {
                width: 100%;
                max-width: 320px;
            }

            /* Educational Resources Mobile */
            .sp-resources-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .sp-resource-card {
                border-radius: 14px;
            }
            .sp-resource-content {
                padding: 16px 14px;
            }
            .sp-resource-title {
                font-size: 18px;
                margin-bottom: 6px;
            }
            .sp-resource-excerpt {
                font-size: 15px;
                margin-bottom: 10px;
                color: var(--sp-text);
            }

            /* FAQ Mobile */
            .sp-faq-item {
                border-radius: 12px;
                margin-bottom: 8px;
            }
            .sp-faq-question {
                font-size: 16px;
                padding: 13px 14px;
                min-height: 48px;
            }
            .sp-faq-answer p {
                font-size: 16px;
                line-height: 1.55;
                padding: 0 14px 13px;
                color: var(--sp-text);
            }

            /* Form Box Mobile */
            .sp-form-container-box {
                padding: 14px 10px;
                border-radius: 14px;
            }

            /* Final CTA Mobile */
            .sp-final-cta-section {
                padding: 32px 16px;
                margin: 20px auto 28px;
                border-radius: 16px;
            }
            .sp-final-cta-content h2 {
                font-size: clamp(22px, 5.5vw, 26px);
                margin-bottom: 8px;
            }
            .sp-final-cta-content p {
                font-size: 16px;
                margin-bottom: 18px;
            }
            .sp-final-cta-buttons {
                flex-direction: column;
                width: 100%;
                max-width: 320px;
                margin: 0 auto;
                gap: 10px;
            }

            /* Locations Mobile */
            .sp-locations-grid {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .sp-location-card {
                padding: 20px 16px;
                border-radius: 14px;
            }
            .sp-location-header h3 {
                font-size: 19px;
            }
            .sp-location-address {
                font-size: 15px;
                margin-bottom: 10px;
                color: var(--sp-text);
            }

            /* Hide circular floating scheduler on mobile (replaced by cleaner bottom sticky CTA bar) */
            .sp-floating-scheduler {
                display: none !important;
            }


        }

        /* ==========================================================================
           NARROW SCREENS (max-width: 360px - e.g., 320px, 360px)
           ========================================================================== */
        @media (max-width: 360px) {
            .bloghash-header-container {
                padding: 8px 10px !important;
                gap: 5px !important;
            }
            .bloghash-logo img {
                height: 40px !important;
                max-height: 40px !important;
            }
            .bloghash-mobile-header-cta {
                font-size: 11px !important;
                padding: 6px 9px !important;
                gap: 4px !important;
            }
            .bloghash-mobile-header-cta i {
                font-size: 10px !important;
            }
            .bloghash-hamburger {
                min-width: 36px;
                min-height: 36px;
                padding: 6px;
            }
            .sp-section {
                padding: 28px 10px;
            }
            .sp-hero-section {
                padding: 22px 10px 18px;
            }
            .sp-hero-title {
                font-size: 24px !important;
            }
            .sp-credential {
                font-size: 12px;
                padding: 3px 8px;
            }
            .sp-hero-subtitle {
                font-size: 14px !important;
            }
            .sp-conditions-grid {
                grid-template-columns: 1fr;
                gap: 10px;
            }
            .sp-social-proof {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
                max-width: 310px;
            }
            .sp-trust-number {
                font-size: 18px;
            }
            .sp-trust-number-text {
                font-size: 13px;
            }
            .sp-trust-text {
                font-size: 11px;
            }
            .sp-sticky-btn span {
                font-size: 11px;
            }
            .sp-sticky-book {
                font-size: 12px;
                padding: 7px 5px;
            }
        }