﻿/*
  Table of Contents
  -----------------
  1.  Variables & Global Styles
  2.  Header & Navigation
  3.  Hero Section
  4.  Buttons & Badges
  5.  Benefits Section
  6.  Social Proof Section
  7.  Form Section
  8.  Trust Signals Section
  9.  FAQ Section
  10. Footer CTA
  11. Animations & Keyframes
  12. Responsive Design
*/

/* 1. Variables & Global Styles */
:root {
    --primary-gold: #f2b519;
    --secondary-coral: #f48383;
    --dark-gray: #343a40;
    --dark-gray1: #54626f;
    --light-gray: #f8f9fa;
    --white: #ffffff;
    --text-color: #495057;
    --heading-color: var(--dark-gray);
    --border-radius: 12px;
    --shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
}

body {
    font-family: 'Poppins', sans-serif; /* A modern, clean font */
    background-color: var(--white);
    color: var(--text-color);
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 700;
}

section {
    padding: 80px 0;
}

/* 2. Header & Navigation */
.site-header {
    background-color: var(--white) !important;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1020;
    transition: box-shadow 0.3s ease;
    padding: 5px 0;
}
@media (min-width: 576px) and (max-width: 768px) {
    .site-header .container {
        max-width: 100% !important;
    }
}

.navbar-brand {
    padding: 0;
}

    .navbar-brand .logo-image {
        transition: transform 0.3s ease;
        width: auto;
        max-width: 200px;
    }

/*    .navbar-brand:hover .logo-image {
        transform: scale(1.1);
    }
*/
.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
    margin: 0 10px;
}

    .navbar-nav .nav-link:not(.cta-link)::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 10px;
        width: 0;
        height: 2px;
        background-color: var(--primary-gold);
        transition: width 0.3s ease, left 0.3s ease;
        right: 10px;
    }

    .navbar-nav .nav-link:hover:not(.cta-link) {
        color: var(--heading-color);
    }

        .navbar-nav .nav-link:hover:not(.cta-link)::after {
            width: calc(100% - 20px);
            left: 10px;
        }

/*.navbar-toggler {
    border: 2px solid var(--dark-gray);
}
*/
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(242, 181, 25, 0.25);
}

/* 3. Hero Section */
.hero {
    /*    background-image: linear-gradient(75deg, rgb(248 249 250 / 85%) 50%, rgb(255 255 255 / 61%)), url(/img/free-consult/chair.webp);*/
    background-image: linear-gradient(135deg, rgba(255, 249, 238, 0.9) 0%, rgba(255, 255, 255, 0.8) 60%, rgba(255, 245, 245, 0.9) 100%), url('/img/free-consult/chair.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    padding: 0px;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.hero-content {
    position: relative;
    z-index: 2;
}


.hero h1 {
    font-size: clamp(2.2rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

    .hero h1 span {
        font-size: clamp(2.7rem, 5vw, 3.35rem);
        color: #f06669;
    }

.hero h2 {
    font-weight: 800;
/*    font-size: calc(0.9rem + .9vw) !important;*/
}
.lead {
    font-size: clamp(1rem, 2.5vw, 1.25rem) ;
}
/*.hero p {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
}*/

/* Floating shapes for background */
.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

    .floating-shapes .shape:nth-child(1) {
        width: 200px;
        height: 200px;
        top: 10%;
        left: 5%;
        background-color: var(--primary-gold);
    }

    .floating-shapes .shape:nth-child(2) {
        width: 100px;
        height: 100px;
        top: 60%;
        right: 10%;
        background-color: var(--secondary-coral);
    }

    .floating-shapes .shape:nth-child(3) {
        width: 50px;
        height: 50px;
        top: 20%;
        right: 20%;
        background-color: var(--primary-gold);
    }

.hero-image {
    /*    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);*/
    animation: float-up 1.2s 0.5s ease-out forwards, float-effect 4s 1.7s ease-in-out infinite;
    /*opacity: 0;*/
}

@keyframes float-up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float-effect {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/*@media(min-width:992px) {
    .hero-image-wrap {
        transform: scale(1.2) !important;
    }
} */

/* 4. Buttons & Badges */
/*.cta-btn, .submit-btn {
    background: linear-gradient(45deg, var(--primary-gold), #ffc107);
    color: var(--dark-gray);
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 181, 25, 0.4);
}*/

/* Light passing effect for all buttons */
.cta-btn, .submit-btn, .cta-link {
    position: relative;
    overflow: hidden;
}

    .cta-btn::after, .submit-btn::after, .cta-link::after {
        content: '';
        position: absolute;
        top: 0;
        left: -150%;
        width: 75%;
        height: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
        transform: skewX(-25deg);
        transition: left 0.75s ease-in-out;
    }

        .cta-btn:hover::after, .submit-btn:hover::after, .cta-link:hover::after{
            left: 150%;
        }

    .cta-btn:hover, .submit-btn:hover {
        transform: translateY(-3px);
/*        box-shadow: 0 7px 20px rgba(242, 181, 25, 0.6);*/
        color: var(--dark-gray);
    }

.cta-link {
    background-color: var(--primary-gold);
    color: var(--dark-gray);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    line-height: 1.5;
}

.trust-badges {
    margin-top: 0.5rem;
    /*    display: flex;
    gap: 2rem;*/
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    margin-bottom: 10px;
}

    .badge-item i {
        color: var(--primary-gold);
        font-size: 1.2rem;
    }

/* 5. Benefits Section */
.benefits {
    background-color: var(--light-gray);
}

.benefit-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    position: relative;
    border-top: 4px solid transparent;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-top-color 0.4s ease;
}

    .benefit-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border-top-color: var(--primary-gold);
    }

.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

/* 6. Social Proof Section */
.social-proof .stars {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.social-proof {
    background-color: var(--light-gray);
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-gold);
    height: 100%;
}

.stat-number {
/*    font-size: 3.5rem;*/
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--secondary-coral);
}

/* Before & After Section */
.before-after-section {
    background-color: var(--white)
}

.comparison-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    cursor: col-resize;
    /*    margin: 30px;*/
}

.comparison-figure {
    margin: 0;
    position: relative;
    width: 100%;
    /* Maintain a 4:3 aspect ratio */
    padding-bottom: 75%;
}

.comparison-image-before,
.comparison-image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.comparison-image-before {
    /* Clip path controlled by JS */
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.comparison-handle {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 4px;
    background-color: var(--primary-gold);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-handle-icon {
    width: 40px !important;
    height: 40px !important;
    border: 4px solid var(--primary-gold);
    background-color: var(--white);
    color: var(--dark-gray);
    border-radius: 50%;
    position: absolute;
    display: grid;
    place-items: center;
}

    .comparison-handle-icon::before {
        content: "\f337"; /* Font Awesome arrows-left-right icon */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 1.2rem;
        color: var(--dark-gray);
    }

.comparison-range {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: col-resize;
}

/* 7. Form Section */
.form-section {
    background: linear-gradient(to right, var(--secondary-coral), var(--primary-gold));
}

.form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

    /*    .form-container h2 {
        color: var(--heading-color);
    }*/

    .form-container .subtitle {
        margin-bottom: 2rem;
    }

.form-control {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ced4da;
}

.form-select {
    padding: 12px;
}

.form-control:focus {
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 0.25rem rgba(242, 181, 25, 0.25);
}

.submit-btn {
    width: 100%;
}

/* 8. Trust Signals Section */
.trust-signals {
    background-color: var(--light-gray);
    text-align: center;
}

.cert-badge {
    text-align: center;
}

    .cert-badge i {
        font-size: 3rem;
        color: var(--secondary-coral);
        margin-bottom: 1rem;
    }

/* 9. FAQ Section */
.accordion-item {
    border: 1px solid #dee2e6;
    border-radius: var(--border-radius) !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--heading-color);
}

    .accordion-button:not(.collapsed) {
        background-color: var(--primary-gold);
        color: var(--dark-gray);
    }

    .accordion-button:focus {
        box-shadow: 0 0 0 0.25rem rgba(242, 181, 25, 0.25);
    }

/* 10. Footer CTA */
.footer-cta {
    background: var(--dark-gray);
    color: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

    .footer-cta h2, .footer-cta p {
        color: var(--white);
    }

    .footer-cta .floating-shapes .shape {
        opacity: 0.05;
    }

.site-footer-main {
    background-color: var(--light-gray);
    padding: 25px 0;
    text-align: center;
    border-top: 1px solid #e9ecef;
}

.copyright-text {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-color);
}

    .copyright-text a {
        font-size: 0.9rem;
        color: var(--text-color);
        text-decoration: none;
        font-weight: 500;
    }

/* 11. Animations & Keyframes */
/* (No new keyframes needed, using transitions) */

/* 12. Responsive Design */

@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 20px;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }

    /*    .hero h1 {
        font-size: 2.5rem;
    }*/

    .hero hero-text-col, .hero sub-tag {
        text-align: center;
        padding: 50px 0px;
    }

    .hero-text-col {
        text-align: center;
    }

    /*    .trust-badges {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }*/
  
}

@media (max-width: 767.98px) {
    section {
        padding: 60px 0;
    }

    .hero {
        background-image: linear-gradient(75deg, rgb(255 255 255 / 99%) 50%, rgb(255 255 255 / 100%));
    }

    .floating-shapes .shape:nth-child(3) {
        display: none;
    }
    /*    .cert-badge {
        margin-bottom: 2rem;
    }*/
    /*    .hero h1 {
        font-size: 1.8rem;
    }
*/
    .comparison-figure {
        padding-bottom: 100%;
    }

    .hero-image {
        max-width: 85%;
    }

    .navbar-brand .logo-image {
        max-width: 140px;
    }
}


/* Read more/less button */

.testimonial-card .toggle-btn {
    border: 0;
    background: none;
    padding: 0;
    color: #f48383;
    cursor: pointer;
    font: inherit;
    text-decoration: underline;
}

/*.trust-signals .cert-badge {
    background: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .trust-signals .cert-badge:hover {
        transform: translateY(-4px);
        box-shadow: 0 .75rem 1.5rem rgba(0,0,0,.08);
    }

.trust-signals .cert-logo {*/
/*    max-height: 75px;*/
/*object-fit: contain;
}*/
/* Subtle entrance */
.fade-in-view {
    opacity: 0;
    transform: translateY(16px);
}

    .fade-in-view.is-visible {
        opacity: 1;
        transform: none;
        transition: opacity .6s ease, transform .6s ease;
    }

.navbar-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

    .navbar-nav a:not(.cta-link)::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--primary-gold);
        transition: width 0.3s ease;
    }

    .navbar-nav a:hover:not(.cta-link) {
        color: var(--heading-color);
    }

        .navbar-nav a:hover:not(.cta-link)::after {
            width: 100%;
        }

.cta-link {
    background-color: var(--primary-gold);
    color: var(--dark-gray) !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    font-weight: 700 !important;
}

.contact-info {
    font-size: 1.05rem;
    line-height: 1.6;
}

.contact-line {
    color: #f1f1f1;
    font-weight: 400;
}

.contact-icon {
    color: #FFD000;
    /*    font-size: 1.1rem;*/
    margin-right: 8px;
}

.contact-link {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

    .contact-link:hover {
        color: #FFD000;
    }

@media (max-width:992px) {
    #consultation-form .subtitle {
        font-size: 1rem
    }
}

#toggleReviewsBtn {
    background: #F58E8E;
    color: #fff;
    border-radius: 50px;
}


#cost {
    background-color: var(--white);
}

.cost-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    /*    box-shadow: var(--shadow);*/
    height: 100%;
    position: relative;
    border-left: 4px solid var(--primary-gold);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-top-color 0.4s ease;
}

    .cost-card:hover {
        transform: translateY(-10px);
        /*        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);*/
        border-left-color: var(--primary-gold);
    }

.cost-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.cost-card:hover .cost-icon {
    transform: scale(1.1) rotate(5deg);
}

h1, h2, h3 {
    color: var(--dark-gray1)
}


@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-image {
        max-width: 75%;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .site-header .container {
        max-width: 1054px;
    }

    .navbar-nav .nav-link {
        margin: 0 5px;
    }
}

.pink {
    color: var( --secondary-coral);
    color: #F06669;
}

.pink-bar span {
    color: #f06669;
}

.pink-bar {
    font-size: 18px;
    font-weight: 500;
}

@media (min-width: 0px) and (max-width: 400px) {
    .g-recaptcha-widget > div {
        -webkit-transform: scale(0.85) translateX(-23px) !important;
        -moz-transform: scale(0.85) translateX(-23px) !important;
        -ms-transform: scale(0.85) translateX(-23px) !important;
        -o-transform: scale(0.85) translateX(-23px) !important;
        transform: scale(0.85) translateX(-23px) !important;
        -webkit-transform-origin: 0 0;
        -moz-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
        -o-transform-origin: 0 0;
        transform-origin: 0 0;
    }

    .doctor-name {
        font-size: 1.75rem;
    }
}

.privacyConsent a {
    /*    text-decoration: none;*/
    color: var(--text-color);
    font-weight: 500;
}

/* Doctor profile card */
.doctor-profile {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    margin-bottom: 24px;
    box-shadow: var(--shadow), 0 0 0 1.5px rgba(242,181,25,.2);
    position: relative;
    overflow: hidden;
    border-left: 5px solid var(--primary-gold);
}

/*            .doctor-profile::before {
                        content: '';
                        position: absolute;
                        left: 0;
                        top: 0;
                        bottom: 0;
                        width: 5px;
                        background: linear-gradient(180deg, var(--primary-gold), var(--secondary-coral));
                        border-radius: 4px 0 0 4px;
                    }
        */
.doctor-photo-wrap {
    position: relative;
    flex-shrink: 0;
}

.doctor-credentials {
    font-size: 16px;
    color: rgb(84, 98, 111);
    font-weight: 500;
}

.doctor-photo-wrap img {
    width: 240px;
    height: auto;
    object-fit: cover;
    object-position: top center;
    border-radius: 16px;
    display: block;
    box-shadow: 0 8px 28px rgba(0,0,0,.18);
    border: 3px solid #fff;
    outline: 2.5px solid var(--primary-gold);
    outline-offset: 2px;
}

.doctor-photo-wrap .verified-badge {
    position: absolute;
    bottom: -6px;
    right: -6px;
    background: var(--primary-gold);
    color: #fff;
    font-size: .6rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 3px 8px;
    letter-spacing: .3px;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(242,181,25,.5);
    border: 2px solid #fff;
}

.doctor-info {
    flex: 1;
    min-width: 0;
}



.doctor-title {
    font-size: 1.35rem;
    color: var(--primary-gold);
    font-weight: 800;
    margin-bottom: 8px;
}

/*.doctor-creds {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
*/
.cred-pill {
    background: var(--light-gray);
    border: 1px solid #e9ecef;
    border-radius: 50px;
    padding: 2px 10px;
    font-size: .72rem;
    font-weight: 600;
    color: var(--dark-gray1);
}

.doctor-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(242,181,25,.1);
    border: 1.5px solid rgba(242,181,25,.35);
    border-radius: 50px;
    padding: 8px 18px 8px 10px;
    margin-bottom: 22px;
}

.doctor-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-coral));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    overflow: hidden;
    flex-shrink: 0;
}

    .doctor-avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.doctor-name {
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--dark-gray1);
    line-height: 1.2;
    margin-bottom: 3px;
}

/*.hero-content .form-section{
    background:none;
}

.hero-content .form-container1 {
    padding: 32px 28px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}
.hero-content .checkbox label {
    font-size:12px;
}
.hero-content .form-control {
    padding: .375rem .75rem;
}

.hero-content .form-container1 {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .12), 0 0 0 1.5px rgba(242, 181, 25, .2);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    border-top: 5px solid var(--primary-gold);
}
.hero-content .form-container1 h2{
    font-size: clamp(1.55rem, 3.5vw, 1.9rem);
    font-weight: 800;
    
}*/


.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

    .hero-image-wrap .hero-image {
        display: block;
        width: 80%;
        height: auto;
        border-radius: 24px;
        background: #2f3138;
        border: 3px solid #F2B519;
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
        object-fit: cover;
    }

.doctor-container {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
}

.hero-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

    .hero-image-wrap .hero-image {
        display: block;
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 22px;
        border: 2px solid rgba(242, 181, 25, 0.22);
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
        object-fit: cover;
        background: #2f3138;
    }

.doctor-info {
    margin-top: 18px;
    padding: 0 14px;
}

.doctor-name {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark-gray1);
    margin-bottom: 6px;
}

@media (min-width: 0px) and (max-width: 382px) {

    .doctor-name {
        font-size: 1.55rem;
    }
}

@media (min-width: 382px) and (max-width: 476px) {

    .doctor-name {
        font-size: 1.75rem;
    }
}

.doctor-title {
    font-size: 1rem;
    font-weight: 700;
    color: #f2b519;
    letter-spacing: 0.4px;
    margin-bottom: 12px;
}

.doctor-credentials {
    max-width: 460px;
    margin: 0 auto;
}

    .doctor-credentials p {
        font-size: 13px;
        line-height: 1.6;
        color: #54626f;
        margin-bottom: 4px;
    }


.doctor-container {
    padding: 20px 0px;
    /*    background: #fff;*/
    border-radius: 22px;
}

.progress-bar-wrap {
    height: 4px;
    background: #e9ecef;
    border-radius: 4px;
    margin: 18px 0 6px;
    overflow: hidden;
}

.progress-bar-inner {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-coral));
    border-radius: 4px;
    transition: width 3s linear;
}

#moveToTopBtn {
    position: fixed;
    bottom: 15px;
    left: 20px;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: #004d76;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    display: none;
    z-index: 9999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

    #moveToTopBtn:hover {
        transform: translateY(-3px);
    }

    #moveToTopBtn i {
        pointer-events: none;
    }

.top-form-section {
    background-color: var(--white);
    padding: 25px 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .12), 0 0 0 1.5px rgba(242, 181, 25, .2);
    border-top: 5px solid var(--primary-gold);
}

    .top-form-section label.form-label {
        font-size: .8rem;
        line-height: 1.45;
        font-weight: 600;
        color: var(--dark-gray1);
        cursor: pointer;
    }

    .top-form-section label.form-check-label {
        font-size: .8rem;
        line-height: 1.45;
        /*    font-weight: 600;*/
        color: var(--dark-gray1);
        cursor: pointer;
    }

    .top-form-section .consent a {
        font-weight: 500;
        color: var(--text-color);
    }

    .top-form-section input::placeholder, .top-form-section textarea::placeholder {
        font-size: .9rem;
    }

.top-form-container input[type="text"], .top-form-container input[type="tel"], .top-form-container input[type="email"], .top-form-container textarea {
    width: 100%;
    border: 1.5px solid #e0e4e8;
    border-radius: 10px;
    padding: 8px;
    color: var(--dark-gray);
    background: #fafbfc;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
}
.top-form-container row>*{
    margin-top:8px;
}
/* ADD / REPLACE header right-side content styles */
/* REPLACE / ADD these header styles */
.site-header {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(242, 181, 25, 0.14);
    position: sticky;
    top: 0;
    z-index: 1020;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.navbar {
    padding: 0;
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.navbar-brand {
    flex-shrink: 0;
    padding: 0;
}

    .navbar-brand .logo-image {
        width: auto;
        max-width: 220px;
        height: 100px;
    }   

/* right content */
.header-doctor-block {
    display: flex;
/*    flex-direction: column;*/
    align-items: center;
    justify-content: center;
    text-align: right;
    gap: 6px;
    padding: 14px 18px;
/*    border-right: 5px solid #F0B232;*/
    /*    border-radius: 18px;
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,249,236,0.96));
    border: 1px solid rgba(242, 181, 25, 0.22);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);*/
}
.header-book {
    margin-left: 3px;
}
.header-doctor-name {
    font-size: 1.8rem;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: var(--dark-gray1);
    text-transform: uppercase;
}

    .header-doctor-name span {
        /* font-size: 0.95rem; */
        font-weight: 400;
        /* color: var(--secondary-coral); */
        margin-left: 4px;
    }

.header-doctor-credentials {
    font-size: 0.9rem;
    line-height: 1.45;
    font-weight: 500;
    color: #797c7f;
}

.header-doctor-call {
    display: flex;
    align-items: center;
    justify-content:center;
    align-items:center;
/*    flex-direction:column;*/
    margin-top: 2px;
    padding-right: 10px;
    font-size: 1rem;
    letter-spacing: 0.8px;
    font-weight: 700;
    color: var(--primary-gold);
/*    border-right: 5px solid var(--primary-gold);*/
}

/*.header-doctor-call {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
    flex-direction: column;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 700;
    color: rgb(240, 102, 105);
    margin-left: 20px;
}
.md-width.header-doctor-call {
    display: block;
}
*/


.header-doctor-call p {
    color: #f06669;
}

.header-doctor-call .call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    padding: 15px 35px;
    border-radius: 999px;
    background: linear-gradient(45deg, var(--primary-gold), #ffc83d);
    background: #f06669;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
/*    box-shadow: 0 8px 20px rgb(240 102 105 / 32%);*/
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .header-doctor-call .call-btn i {
        color: #fff;
        font-size: 1.2rem;
    }


/* remove old collapse/toggler behavior */
.navbar-toggler,
.navbar-collapse {
    display: none !important;
}

/* tablet */
@media (max-width: 991.98px) {
    .header-bar {
        gap: 14px;
    }

    .navbar-brand .logo-image {
        max-width: 150px;
    }

    .header-doctor-block {
        padding: 12px 14px;
    }

    .header-doctor-name {
        font-size: 1.05rem;
    }

        .header-doctor-name span {
            font-size: 0.8rem;
        }

    .header-doctor-credentials {
        font-size: 0.72rem;
    }

    .header-doctor-call {
        font-size: 0.72rem;
        gap: 8px;
    }

        .header-doctor-call a {
            font-size: 0.9rem;
            padding: 7px 12px;
        }

    .pain-point-media img {
        height: 280px;
    }
}

/* mobile - still visible, no collapse */
@media(max-width: 991.98px){
    .hero {
        padding: 50px 0;
    }

} 
@media (max-width: 767.98px) {
    .site-header {
        padding: 8px 0;
    }

 
    .header-bar {
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .navbar-brand .logo-image {
        max-width: 140px;
    }

    .header-doctor-block {
        width: 100%;
        align-items: center;
        text-align: center;
        padding: 14px 12px;
        border-radius: 16px;
    }

    .header-doctor-name {
        font-size: 1rem;
    }

        .header-doctor-name span {
            display: block;
            margin: 4px 0 0;
            font-size: 0.78rem;
        }

    .header-doctor-credentials {
        font-size: 0.7rem;
        line-height: 1.4;
    }

    .header-doctor-call {
        flex-direction: column;
        gap: 6px;
        font-size: 0.68rem;
    }

    .header-doctor-call {
        padding-right: 0px;
    }

        .header-doctor-call .call-btn {
            font-size: 0.92rem;
            padding: 8px 16px;
            font-weight: 600;
        }

    .top-form-section {
        padding: 30px;
    }
}

@media (max-width: 375px) {
    .navbar-brand .logo-image {
        width: 120px;
    }

    .header-doctor-call .call-btn {
        font-size: 14px;
        padding: 8px 12px;
        font-weight: 600;
    }
}

/* ===== PAIN POINT SECTION ===== */
.pain-point-section {
    padding: 72px 0;
    background: #dfe3e7;
}
.pain-point-carousel .carousel-item {
    padding: 2px;
}

.pain-point-carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.pain-point-nav-btn {
    width: 46px;
    height: 46px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-gold), #ffc107);
    color: var(--dark-gray);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(242, 181, 25, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .pain-point-nav-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(242, 181, 25, 0.3);
    }

.pain-point-indicators {
    gap: 8px;
}

    .pain-point-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        border: 0;
        border-radius: 50%;
        background: rgba(242, 181, 25, 0.28);
        opacity: 1;
        margin: 0;
        transition: all 0.25s ease;
    }

    .pain-point-indicators .active {
        width: 30px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--primary-gold), var(--secondary-coral));
    }

@media (max-width: 767.98px) {
    .pain-point-carousel-nav {
        gap: 12px;
    }

    .pain-point-nav-btn {
        width: 42px;
        height: 42px;
    }
}


.pain-point-section-header h2 span {
    color: var(--primary-gold);
}

.pain-point-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.25s, transform 0.25s;
}

    .pain-point-card:hover {
        box-shadow: 0 16px 40px rgba(0,0,0,0.12);
        transform: translateY(-2px);
    }

/*.pain-point-media {
    position: relative;
    overflow: hidden;
    min-height: 280px;
}*/

.pain-point-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.pain-point-card:hover .pain-point-media img {
    transform: scale(1.04);
}

/*.pain-point-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(242,181,25,0.18) 0%, transparent 60%);
    pointer-events: none;
}
*/
.pain-point-content {
    padding: 30px 40px;
}


.pain-point-number {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-gold) !important;
    display: flex;
    align-items: center;
    gap: 8px;
}

    .pain-point-number::after {
        content: '';
        display: block;
        height: 1.5px;
        width: 28px;
        background: var(--secondary-coral);
        border-radius: 2px;
    }

.pain-point-content h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.38;
}

.pain-point-accent {
    color: var(--primary-gold);
}

.pain-point-accent-word {
    color: var(--secondary-coral);
    font-style: italic;
}

.pain-point-content p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.78;
}

.pain-point-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--dark-gray);
    background: var(--primary-gold);
    border: none;
    border-radius: 6px;
    padding: 10px 22px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
}

    .pain-point-cta:hover {
        background: #e0a710;
        color: var(--dark-gray);
        transform: translateY(-1px);
    }

@media (max-width: 767px) {
    /*    .pain-point-media {
        min-height: 220px;
    }*/

    .pain-point-content {
        padding: 28px 24px;
    }

    .pain-point-cta {
        width: 100%;
        justify-content: center;
    }
}


/*/////////////////////////////////////////////////////////////////////////////////////*/
.doctor-section {
    padding: 72px 0;
    background: var(--white);
}

.doctor-section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    letter-spacing: -0.4px;
}

    .doctor-section-header h2 span {
        color: var(--primary-gold);
    }

.doctor-section-header p {
    color: var(--text-color);
    max-width: 520px;
    font-size: 0.97rem;
    line-height: 1.75;
}

.doctor-card {
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow);
    padding: 40px 32px 36px;
    /*    text-align: center;*/
    transition: box-shadow 0.25s, transform 0.25s;
    height: 100%;
}

    .doctor-card:hover {
        box-shadow: 0 16px 40px rgba(0,0,0,0.12);
        transform: translateY(-3px);
    }

.doctor-avatar-wrap {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    padding: 5px;
    background: var(--primary-gold);
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doctor-card.featured .doctor-avatar-wrap {
    width: 180px;
    height: 180px;
}

.doctor-avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: top;
    display: block;
    border: 4px solid #fff;
}


.doctor-name {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--heading-color);
    margin-bottom: 0;
}

.doctor-card.featured .doctor-name {
    font-size: 1.15rem;
}

.doctor-credential-suffix {
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--dark-gray1);
    letter-spacing: 0.3px;
}

.doctor-title {
    font-size: 0.88rem;
    color: var(--text-color);
    line-height: 1.65;
    margin-top: 10px;
}

.doctor-badge {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--dark-gray);
    background: var(--primary-gold);
    border-radius: 4px;
    padding: 5px 14px;
}

.doctor-featured-col {
    max-width: 520px;
}

@media (max-width: 767px) {
    .doctor-card {
        padding: 32px 20px 28px;
    }

    .doctor-avatar-wrap {
        width: 120px;
        height: 120px;
    }

    .doctor-card.featured .doctor-avatar-wrap {
        width: 140px;
        height: 140px;
    }
}


/*/////////////////////////////////////////////////////////////////////////////////////*/

.team-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.team-section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
    letter-spacing: -0.4px;
}

    .team-section-header h2 span {
        color: var(--primary-gold);
    }

.team-section-header p {
    color: var(--text-color);
    font-size: 0.97rem;
    line-height: 1.75;
    max-width: 540px;
}

.team-divider {
    width: 48px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 2px;
}

/* Lead card */
.lead-doctor-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}



.lead-doctor-img-col {
    position: relative;
    min-height: 420px;
}

    .lead-doctor-img-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        display: block;
    }

.lead-doctor-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(52,58,64,0.82) 0%, transparent 60%);
    padding: 24px 20px 20px;
}

    .lead-doctor-img-overlay .overlay-name {
        font-size: 1.1rem;
        font-weight: 700;
        color: #fff;
        margin: 0;
    }

    .lead-doctor-img-overlay .overlay-cred {
        font-size: 0.78rem;
        color: var(--primary-gold);
        font-weight: 600;
        letter-spacing: 0.5px;
    }

.lead-doctor-content {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lead-eyebrow {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.lead-doctor-content h3 {
    font-size: clamp(2.2rem, 3vw, 3rem);
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.3;
    margin-bottom: 0px;
    text-transform: uppercase;
}


.doctor-content h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--heading-color);
    line-height: 1.3;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.lead-doctor-content .bio {
    font-size: 1rem;
    color: var(--text-color);
/*    line-height: 1.8;*/
    margin-bottom: 30px;
    margin-top: 16px;
}

.cred-pill {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--dark-gray);
    background: rgba(242,181,25,0.18);
    border: 1px solid rgba(242,181,25,0.5);
    border-radius: 50px;
    padding: 5px 14px;
    margin: 4px 4px 4px 0;
}

.lead-stats {
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 24px;
    padding-top: 24px;
}

.stat-item .stat-num {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-gold);
    line-height: 1;
}

.stat-item .stat-label {
    font-size: 0.75rem;
    color: var(--dark-gray1);
    line-height: 1.4;
    margin-top: 4px;
}

.lead-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--dark-gray);
    background: var(--primary-gold);
    border-radius: 6px;
    padding: 12px 24px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-start;
}

    .lead-cta:hover {
        background: #e0a710;
        color: var(--dark-gray);
        transform: translateY(-1px);
    }

/* Support cards */


.doctor-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
}

.support-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0,0,0,0.06);
    overflow: hidden;
    height: 100%;
    transition: box-shadow 0.25s, transform 0.25s;
}

    .support-card:hover {
        box-shadow: 0 14px 36px rgba(0,0,0,0.11);
        transform: translateY(-3px);
    }

.support-card-img {
    height: 350px;
    overflow: hidden;
    position: relative;
    text-align: center;
}

    .support-card-img img {
        max-width: 100%;
        height: auto;
        /*        object-fit: cover;*/
        object-position: top;
        transition: transform 0.4s ease;
        width: 400px;
    }

.support-card:hover .support-card-img img {
    transform: scale(1.05);
}

.support-card-img-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gold);
}

.support-card-body {
    padding: 24px 24px 28px;
}

    .support-card-body h4 {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 2px;
    }

    .support-card-body .support-role {
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--secondary-coral);
        text-transform: uppercase;
        letter-spacing: 0.8px;
        margin-bottom: 12px;
    }

    .support-card-body p {
        font-size: 0.88rem;
        color: var(--text-color);
        line-height: 1.72;
        margin-bottom: 0;
    }

@media (max-width: 767px) {
    .lead-doctor-img-col {
        min-height: 280px;
    }

    .lead-doctor-content {
        padding: 28px 24px;
    }

    .lead-cta {
        align-self: stretch;
        justify-content: center;
    }
}

.lead-doctor-content .text-small-muted {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

.text-small-muted {
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--dark-gray1);
}

.designation {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-coral);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
}

/* hero review carousel */
/* REPLACE previous hero review styles with this */

.hero-proof-stack {
    max-width: 560px;
}

.hero-proof-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(242, 181, 25, 0.18);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    color: var(--dark-gray1);
    font-size: 0.9rem;
    font-weight: 600;
}

.hero-proof-stars {
    color: var(--primary-gold);
    letter-spacing: 2px;
    font-size: 0.92rem;
    line-height: 1;
}

.hero-review-carousel {
    position: relative;
}

.hero-review-card {
    position: relative;
    padding: 22px 22px 18px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    border-top: 5px solid var(--primary-gold);
}

#heroReviewCarousel .carousel-item {
    border: 1px solid rgba(242, 181, 25, 0.16);
    /*    box-shadow: 0 16px 48px rgba(0, 0, 0, .12), 0 0 0 1.5px rgba(242, 181, 25, .2);*/
}

/*    .hero-review-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-gold), var(--secondary-coral));
    }*/

/*    .hero-review-card::after {
        content: "";
        position: absolute;
        right: -45px;
        top: -45px;
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: rgba(242, 181, 25, 0.08);
        filter: blur(8px);
        pointer-events: none;
    }
*/
.hero-review-top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 14px;
}

.hero-review-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(242, 181, 25, 0.1);
    color: var(--dark-gray1);
    font-size: 0.82rem;
    font-weight: 700;
}

    .hero-review-badge i {
        color: var(--primary-gold);
        font-size: 0.8rem;
    }

.hero-review-text {
    font-family: 'Dancing Script';
    margin: 0;
    font-size: 1.45rem !important;
    line-height: 1.55;
    color: #4d5a67;
    font-weight: 700 !important;
    min-height: 116px;
}

.hero-review-bottom {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid rgba(84, 98, 111, 0.12);
}

.hero-review-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-review-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-coral));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 18px rgba(242, 181, 25, 0.24);
    flex-shrink: 0;
}

.hero-review-author {
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--dark-gray1);
    line-height: 1.2;
}

.hero-review-meta {
    font-size: 0.78rem;
    color: #7b8793;
    margin-top: 2px;
}

.hero-review-indicators {
    position: static;
    margin: 14px 0 0;
    justify-content: center;
    gap: 8px;
}

    .hero-review-indicators [data-bs-target] {
        width: 9px;
        height: 9px;
        border: 0;
        border-radius: 50%;
        background: rgba(242, 181, 25, 0.28);
        opacity: 1;
        margin: 0;
        transition: all 0.25s ease;
    }

    .hero-review-indicators .active {
        width: 28px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--primary-gold), var(--secondary-coral));
    }

.hero-text-col .hero-proof-stack {
    margin-left: 0;
    margin-right: auto;
}



@media (max-width: 991.98px) {
    .hero-proof-stack {
        max-width: 100%;
    }

    .hero-proof-label {
        justify-content: center;
    }

    .hero-review-card {
        text-align: left;
    }

    .hero-review-text {
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .hero-proof-stack {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-proof-label {
        width: 100%;
        justify-content: center;
        text-align: center;
        border-radius: 18px;
    }

    .hero-review-card {
        padding: 18px 16px 16px;
        border-radius: 20px;
    }

    .hero-review-top,
    .hero-review-user,
    .hero-review-bottom {
        justify-content: center;
        text-align: center;
    }

    .hero-review-text {
        font-size: 0.94rem;
        line-height: 1.65;
        text-align: center;
    }

    .hero-review-indicators {
        justify-content: center;
    }
}


.left-panel {
        padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
    overflow: hidden;
}
.left-panel h2 {
    font-size: calc(0.9rem + .9vw) !important;
}

.left-panel::before {
    content: '';
    position: absolute;
    top: -90px;
    right: -90px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(242, 181, 25, 0.05);
    pointer-events: none;
}

/* ── HEADING ── */
.panel-title {
    color: var(--white);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.3;
}

.panel-subtitle {
    color: var(--text-color);
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* ── MAIN IMAGE ── */
.doctor-main-wrap {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 3px solid var(--primary-gold);
    background: radial-gradient(circle, #4A4B4E 0%, #2F3032 100%);
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.doctor-main-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.doctor-main-wrap.is-loading .doctor-main-img {
    opacity: 0;
}

.doctor-main-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(34,41,47,.96));
    padding: 28px 16px 14px;
}

.doctor-name1 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.doctor-name1 span{
    font-size: 1.6rem;
    font-weight: 400;
}

.doctor-creds {
    color: rgba(255,255,255) !important;
    font-size: .72rem !important;
    margin: 2px 0 0 !important;
}

/* ── THUMBNAILS ── */
.thumb-card {
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid transparent;
    cursor: pointer;
    position: relative;
    background: var(--dark-gray1);
    transition: border-color .2s, transform .15s;
  
}

    .thumb-card:hover {
        transform: translateY(-2px);
    }

    .thumb-card.active {
        border-color: var(--primary-gold);
    }

    .thumb-card img {
        width: 100%;
        height: 100px;
        object-fit: cover;
        display: block;
        opacity: 0.5;
        filter: blur(1px);
    }
    .thumb-card.active img {
        opacity: 1;
        filter: blur(0px);
    }
.thumb-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(34,41,47,.84);
    color: rgba(255,255,255);
    font-size: .7rem;
    text-align: center;
    padding: 3px 4px;
}

@media(max-width:390px){
    .thumb-label {
        font-size: clamp(0.55rem, 2vw, 0.6rem);
    }
 }
/* ── TRUST STRIP ── */
.trust-strip {
    border-radius: var(--border-radius);
    border: 1px solid rgba(242,181,25,.25);
    background: rgba(242,181,25,.07);
/*    overflow: hidden;*/
}

.trust-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 11px 12px;
    position: relative;
}

    .trust-item + .trust-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 18%;
        bottom: 18%;
        width: 1px;
        background: rgba(242,181,25,.2);
    }

.trust-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .88rem;
}

    .trust-icon.gold {
        background: rgba(242,181,25,.2);
        color: var(--primary-gold);
    }

    .trust-icon.coral {
        background: rgba(244,131,131,.2);
        color: var(--secondary-coral);
    }

    .trust-icon.pale {
        background: rgb(73 80 87 / 18%);
        /*        color: rgba(255,255,255,.75);*/
    }

.trust-value {
    display: block;
/*    color: var(--white);*/
    font-weight: 700;
    font-size: .86rem;
    line-height: 1.2;
}

.trust-label {
    display: block;
/*    color: rgba(255,255,255,.48);*/
    font-size: .65rem;
    margin-top: 1px;
}

/* ── REVIEWS ── */
.reviews-hdr {
    color: var(--text-color);
    font-size: 0.9rem;
    letter-spacing: .09em;
    text-transform: uppercase;
    font-weight: 700;
}

.review-carousel {
    position: relative;
    background: rgba(255,255,255);
    border: 1px solid rgb(242 181 25 / 75%);
    border-radius: var(--border-radius);
    padding: 14px 16px 10px;
    min-height: 118px;
        box-shadow: 0 0px 30px rgba(0, 0, 0, .12), 0 0 0 1.5px rgba(242, 181, 25, .2);
}

.review-slide {
    display: none;
    animation: fadeUp .45s ease;
}

    .review-slide.active {
        display: block;
    }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-stars {
    color: var(--primary-gold);
    font-size: 1rem;
    margin-bottom: 5px;
}

.review-text {
    color: var(--text-color);
    font-size: .9rem !important;
    font-style: italic;
    line-height: 1.55;
    margin-bottom: 0px !important;
}

.review-author {
    color: var(--secondary-coral);
    font-size: .85rem;
    font-style: normal;
    font-weight:600;
}

/* dots */
.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,.25);
    cursor: pointer;
    transition: background .2s, transform .2s;
    border: 0.5px solid #fdbf0b;
    padding: 0;
}

    .dot.active {
        background: var(--primary-gold);
        transform: scale(1.35);
    }

.cta-btn, .submit-btn, .call-btn {
    background: linear-gradient(45deg, var(--primary-gold), #ffc107);
    color: var(--dark-gray);
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
/*    box-shadow: 0 4px 15px rgba(242, 181, 25, 0.4);*/
}

.cta-btn, .submit-btn, .cta-link, .call-btn {
    position: relative;
    overflow: hidden;
}

    .cta-btn::after, .submit-btn::after, .cta-link::after, .call-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -150%;
        width: 75%;
        height: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
        transform: skewX(-25deg);
        transition: left 0.75s ease-in-out;
    }

    .cta-btn:hover::after, .submit-btn:hover::after, .cta-link:hover::after, .call-btn:hover::after {
        left: 150%;
    }

    .cta-btn:hover, .submit-btn:hover {
        transform: translateY(-3px);
/*        box-shadow: 0 7px 20px rgba(242, 181, 25, 0.6);*/
        color: var(--dark-gray);
    }


.call-btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .call-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: -150%;
        width: 75%;
        height: 100%;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
        transform: skewX(-25deg);
        transition: left 0.75s ease-in-out;
    }

    .call-btn:hover::after {
        left: 150%;
    }

    .call-btn:hover {
        transform: translateY(-3px);
/*        box-shadow: 0 7px 20px rgb(240 102 105 / 37%);*/
      
    }

@media (min-width: 0px) and (max-width: 576px) {
    .col-xs-6 {
        flex: 0 0 auto !important;
        width: 50% !important;
    }
}

@media(max-width: 350px){
    .trust-item{
        justify-content:center;
    }
}

@media (max-width: 991.98px) {
    .left-panel {
        padding: 0px;
    }
}
@media(max-width:410px) {
    .doctor-name1 {
        font-size: clamp(1.2rem, 4vw, 1.6rem);
    }
        .doctor-name1 span {
            font-size: clamp(1rem, 3vw, 1.3rem);
        }
}
/* smooth fade when switching doctor */
#mainDrImg,
#mainDrName,
#mainDrCreds {
    transition: opacity 0.25s ease, transform 0.25s ease;
}

    #mainDrImg.fade-out,
    #mainDrName.fade-out,
    #mainDrCreds.fade-out {
        opacity: 0;
        transform: translateY(6px);
    }


.site-header {
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(242, 181, 25, 0.14);
    position: sticky;
    top: 0;
    z-index: 1020;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.navbar-brand {
    flex-shrink: 0;
    padding: 0;
}

    .navbar-brand .logo-image {
        width: auto;
        max-width: 220px;
        transition: max-width 0.3s ease;
    }

.header-doctor-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-doctor-call {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    padding-right: 0;
}

.header-call-text {
    white-space: nowrap;
    display: block;
    color: #f06669;
    font-weight: 700;
    line-height: 1;
}

.header-book {
    display: none;
    opacity: 0;
    transform: translateY(-8px);
}

.site-header.scrolled {
    padding: 8px 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

    .site-header.scrolled .navbar-brand .logo-image {
        max-width: 200px;
    }

    .site-header.scrolled .header-call-text {
        display: none;
    }

    .site-header.scrolled .header-book {
        display: block;
        opacity: 1;
        transform: translateY(0);
        animation: fadeSlideIn 0.25s ease;
    }

/*.site-header .header-book .cta-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
    white-space: nowrap;
    margin-top: 0 !important;
}*/

.header-doctor-call .call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border-radius: 999px;
    background: #f06669;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0;
/*    box-shadow: 0 8px 20px rgb(240 102 105 / 32%);*/
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .header-doctor-call .call-btn i {
        color: #fff;
        font-size: 1.2rem;
    }

    .header-doctor-call .call-btn:hover {
        transform: translateY(-2px);
    }

/*@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}*/

/* tablet */
@media (max-width: 991.98px) {
    .header-bar {
        gap: 14px;
    }

    .navbar-brand .logo-image {
        max-width: 150px;
    }

    .site-header.scrolled .navbar-brand .logo-image {
        max-width: 145px;
    }

    .header-doctor-block {
        gap: 10px;
    }

    .header-call-text {
        font-size: 1rem !important;
    }

    .header-doctor-call .call-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
    
    .lg-screen .cta-btn {
        font-size: 0.9rem;
        padding: 10px 18px;
    }
 
    
    .site-header .header-book .cta-btn {
        font-size: 0.82rem;
        padding: 10px 16px;
    }
}
@media (min-width: 591px) {
    .lg-screen .d-sm-inline-block-c {
        display: inline-block !important;
    }
}
@media(max-width: 545px) {
    .block-md{
        flex-direction:column;
    }
    .header-doctor-call{
        margin-bottom:10px;
    }
}
/* mobile */
@media (max-width: 767.98px) {
    .site-header {
        padding: 8px 0;
    }

    .header-bar {
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .navbar-brand .logo-image {
        max-width: 140px;
    }

    .header-doctor-call {
        justify-content: flex-end;
    }

        .header-doctor-call .call-btn {
            font-size: 0.92rem;
            padding: 8px 16px;
            font-weight: 700;
        }

  
}

@media (max-width: 375px) {
    .navbar-brand .logo-image {
        width: 120px;
    }

    .header-doctor-call .call-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
        font-weight:600;
    }
    .lg-screen .cta-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    .header-doctor-call .call-btn i {
        font-size: 0.9rem;
    }
}


.scroll-indicator {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    cursor: pointer;
}



/* Arrow wrapper */
.arrow-scroll {
    position: fixed;
    height: 4em;
    /* width: 3em; */
    left: 50%;
    z-index: 988;
    top: 90%;
}

/* Arrow */
.arrow {
    border: solid var(--secondary-coral);
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 12px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    animation: arrowDown 2s infinite;
    opacity: 0;
}

    .arrow:nth-child(1) {
        animation-delay: 0s;
    }

    .arrow:nth-child(2) {
        top: 12px;
        animation-delay: 0.2s;
    }

    .arrow:nth-child(3) {
        top: 24px;
        animation-delay: 0.4s;
    }


@keyframes arrowDown {
    0% {
        opacity: 0;
        transform: translateX(-50%) rotate(45deg) ;
    }

    30% {
        opacity: 1;
    }

    60% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) rotate(45deg) ;
    }
}

.text-accent {
   color: var(--secondary-coral);
}