/* ===== CSS Variables ===== */
:root {
    --color-primary: #4e3b4d;
    --color-primary-dark: #3d2f3c;
    --color-plum: #5f3c6f;
    --color-rose-pink: #d48b9b;
    --color-pink: #f5eff8;
    --color-pink-light: #fff8f9;
    --color-pink-btn: #f8dde0;
    --color-pink-border: #e8c4c8;
    --color-accent-red: #c54b4b;
    --color-gray-dark: #2d2d2d;
    --color-gray: #6b6b6b;
    --color-gray-light: #9a9a9a;
    --color-white: #ffffff;
    --color-orange: #e8a54b;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-cursive: 'Dancing Script', cursive;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* ===== Base Styles ===== */
/*provider's img*/
.provider-intro{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:50px;
    align-items:center;
    margin-bottom:60px;
}

.provider-image{
    background-image:url('../assets/physician-1.jpeg');
    background-size:cover;
    background-position:center;
    height:500px;
    border-radius:24px;
    position:relative;
}

.provider-image-1{
    background-image:url('../assets/physician-2.jpeg');
    background-size:cover;
    background-position:center;
    height:500px;
    border-radius:24px;
    position:relative;
}

.provider-image .provider-image-1 img{
    width:100%;
    display:block;
    border-radius:24px;
    border:6px solid #e1d3b8;
    box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.provider-badge{
    position:absolute;
    bottom:20px;
    left:20px;
    background:#000000;
    color:#fff;
    padding:12px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
}

.provider-info span{
    color:#000000;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.provider-info h2{
    margin:15px 0;
    font-size:48px;
    line-height:1.2;
}

.provider-subtitle{
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.provider-intro-text{
    font-size:18px;
    line-height:1.8;
    color:#444;
}

@media(max-width:992px){
    .provider-intro{
        grid-template-columns:1fr;
        text-align:center;
    }

    .provider-image{
        max-width:350px; 
    }

    .provider-image-1{
        max-width:350px; 
    }

    .provider-info h2{
        font-size:36px;
    }
}
/* provider's Bio*/

.provider-section{
    padding:90px 0;
    background:#faf8f4;
}

.provider-header{
    text-align:center;
    max-width:900px;
    margin:auto;
}

.provider-header span{
    color:#000000;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.provider-header h2{
    font-size:48px;
    margin:15px 0;
    color:#222;
}

.provider-subtitle{
    font-size:18px;
    color:#666;
    line-height:1.7;
}

/* Highlights */

.provider-highlights{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin:50px 0;
}

.highlight-card{
    background:#e1d3b8;
    border-radius:18px;
    padding:25px;
    text-align:center;
}

.highlight-card h3{
    color:#000000;
    font-size:42px;
    margin-bottom:8px;
}

.highlight-card p{
    margin:0;
}

/* Content */

.provider-content{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:25px;
}

.content-card{
    background:#fff;
    padding:35px;
    border-radius:20px;
}

.content-card h3{
    color:#000000;
    margin-bottom:20px;
}

.content-card p{
    line-height:1.9;
    color:#555;
}

.content-card ul{
    padding-left:20px;
}

.content-card li{
    margin-bottom:12px;
}

blockquote{
    margin-top:25px;
    background:#e1d3b8;
    padding:20px;
    border-radius:12px;
    font-style:italic;
}

/* Expertise */

.expertise-section{
    margin-top:50px;
}

.expertise-section h3{
    text-align:center;
    margin-bottom:30px;
    color:#222;
}

.expertise-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.expertise-card{
    background:#e1d3b8;
    padding:25px;
    border-radius:18px;
}

.expertise-card h4{
    color:#000000;
    margin-bottom:12px;
}

/* Journey */

.journey-card{
    margin-top:50px;
    background:#fff;
    padding:45px;
    border-radius:24px;
    border-left:6px solid #000000;
}

.journey-label{
    color:#000000;
    font-weight:600;
    text-transform:uppercase;
}

.journey-card h3{
    margin:15px 0 20px;
}

.journey-card p{
    line-height:1.9;
}

/* Banner */

.mission-banner{
    margin-top:40px;
    background:#000000;
    color:#fff;
    padding:50px;
    border-radius:24px;
    text-align:center;
}

.mission-banner h3{
    margin-bottom:20px;
    font-size:34px;
}

.mission-banner p{
    line-height:1.9;
    max-width:900px;
    margin:0 auto 15px;
}

.mission-text{
    font-size:22px;
    font-weight:600;
}

/* Mobile */

@media(max-width:992px){

    .provider-highlights,
    .expertise-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .provider-content{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .provider-highlights,
    .expertise-grid{
        grid-template-columns:1fr;
    }

    .provider-header h2{
        font-size:34px;
    }

    .mission-banner{
        padding:35px 25px;
    }
}


/*new update 2*/
.approach-section{
    padding:15px 0;
    background:#fff;
}

.approach-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 50px;
}

.approach-header span{
    color:#000000;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.approach-header h2{
    font-size:42px;
    margin:15px 0 20px;
    color:#222;
}

.approach-header p{
    line-height:1.8;
    margin-bottom:15px;
}

.highlight-text{
    color:#000000;
    font-weight:600;
    font-size:18px;
}

.pillars-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.pillar-card{
    background:#f5eee6;
    padding:30px;
    border-radius:18px;
    border-left:5px solid #000000;
}

.pillar-card h3{
    color:#000000;
    margin-bottom:18px;
    font-size:24px;
}

.pillar-card ul{
    margin:0;
    padding:0;
    list-style:none;
}

.pillar-card li{
    position:relative;
    padding-left:18px;
    margin-bottom:10px;
    line-height:1.6;
}

.pillar-card li:before{
    content:"•";
    color:#000000;
    position:absolute;
    left:0;
    font-weight:bold;
}

.approach-footer{
    text-align:center;
    max-width:900px;
    margin:40px auto 0;
}

.approach-footer p{
    font-size:18px;
    line-height:1.8;
    color:#444;
}

@media(max-width:768px){

    .pillars-grid{
        grid-template-columns:1fr;
    }

    .approach-header h2{
        font-size:32px;
    }
}
/* provider credentials*/
.credentials-section{
    padding:30px 0;
    background:#faf8f4;
}

.credentials-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    align-items:stretch;
}

.credentials-card{
    background:#f5eee6;
    padding:45px;
    border-radius:24px;
    position:relative;
}

.section-tag{
    display:inline-block;
    color:#000000;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.credentials-card h2{
    color:#222;
    font-size:42px;
    line-height:1.2;
    margin-bottom:35px;
}

.credentials-list{
    list-style:none;
    margin:0;
    padding:0;
}

.credentials-list li{
    position:relative;
    padding-left:28px;
    margin-bottom:24px;
}

.credentials-list li:before{
    content:"✓";
    position:absolute;
    left:0;
    top:2px;
    color:#000000;
    font-weight:700;
}

.credentials-list strong{
    display:block;
    color:#222;
    margin-bottom:4px;
}

.credentials-list span{
    color:#555;
    line-height:1.6;
}

.mission-card{
    background:#000000;
    color:#fff;
    padding:100px;
    border-radius:24px;
    position:relative;
    overflow:hidden;
}

.quote-mark{
    position:absolute;
    top:-20px;
    right:30px;
    font-size:180px;
    opacity:.08;
    font-family:serif;
    line-height:1;
}

.mission-card h3{
    font-size:32px;
    margin-bottom:25px;
    position:relative;
    z-index:2;
}

.mission-card p{
    line-height:1.9;
    margin-bottom:18px;
    position:relative;
    z-index:2;
}

.mission-highlight{
    font-size:22px;
    font-weight:600;
    margin-top:30px;
    border-left:4px solid #fff;
    padding-left:20px;
}

@media (max-width:768px){

    .credentials-wrapper{
        grid-template-columns:1fr;
    }

    .credentials-card,
    .mission-card{
        padding:30px;
    }

    .credentials-card h2{
        font-size:32px;
    }

    .mission-card h3{
        font-size:28px;
    }
}

/*different apporach*/

.difference-section{
    padding:50px 0;
}

.difference-card{
    background:#f5eee6;
    border-radius:24px;
    padding:50px;
    position:relative;
    overflow:hidden;
}

.difference-card:before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:8px;
    height:100%;
    background:#000000;
}

.eyebrow{
    color:#000000;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.difference-content h2{
    font-size:42px;
    color:#222;
    margin:15px 0 25px;
    line-height:1.2;
}

.difference-content p{
    color:#444;
    line-height:1.8;
    margin-bottom:18px;
}

.founder-highlight{
    display:flex;
    align-items:center;
    gap:30px;
    margin:35px 0;
    padding:25px;
    background:#fff;
    border-radius:18px;
}

.highlight-number{
    font-size:72px;
    font-weight:700;
    color:#000000;
    line-height:1;
    min-width:140px;
}

.highlight-text strong{
    display:block;
    font-size:22px;
    color:#222;
    margin-bottom:10px;
}

.highlight-text p{
    margin:0;
}

.mission-box{
    margin-top:30px;
    background:#000000;
    color:#fff;
    padding:24px 30px;
    border-radius:16px;
    font-size:18px;
    line-height:1.7;
    font-weight:500;
}

@media (max-width:768px){

    .difference-card{
        padding:35px 25px;
    }

    .difference-content h2{
        font-size:32px;
    }

    .founder-highlight{
        flex-direction:column;
        text-align:center;
    }

    .highlight-number{
        font-size:60px;
        min-width:auto;
    }
}

/*different apporach*/

/*new update*/


.section-title{
    text-align:center;
    margin-bottom:40px;
}

.section-title h2{
    color:#000000;
    margin-bottom:10px;
}

.section-title p{
    max-width:750px;
    margin:auto;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.service-card{
    background:#e1d3b8;
    padding:25px;
    border-radius:16px;
    border-top:4px solid #000000;
    height:100%;
}

.service-card h3{
    color:#000000;
    font-size:22px;
    margin-bottom:15px;
}

.service-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.service-card li{
    position:relative;
    padding-left:18px;
    margin-bottom:10px;
    line-height:1.5;
}

.service-card li:before{
    content:"•";
    color:#000000;
    font-weight:bold;
    position:absolute;
    left:0;
}

@media(max-width:991px){
    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:767px){
    .services-grid{
        grid-template-columns:1fr;
    }
}

/*new update*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-dark);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ===== Header ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--color-white) !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.header .navbar {
    background: #F5EFE6 !important;
}

.navbar {
    padding: 1rem 0 !important;
}

.navbar-brand {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--color-primary) !important;
}

.logo-icon {
    width: auto;
    height: 150px;
  	object-fit: contain;
    color: var(--color-white);
    border-radius: 10%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

.nav-link {
    font-weight: 400;
    color: #000000 !important;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--color-plum) !important;
}

.nav-separator {
    width: 1px;
    min-height: 20px;
    padding: 0 !important;
    margin: 0 0.5rem;
    list-style: none;
    align-self: center;
}

.nav-separator::after {
    content: '';
    display: block;
    width: 1px;
    height: 18px;
    background: #ccc;
    margin: 0 auto;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-patient-login {
    background: var(--color-white) !important;
    color: #000000 !important;
    padding: 0.5rem 1.25rem !important;
    border-radius: 8px !important;
    font-weight: 600;
    border: 1px solid #e0e0e0 !important;
    transition: var(--transition);
}

.btn-patient-login:hover {
    background: #f8f8f8 !important;
    color: #000000 !important;
    border-color: #ccc !important;
}

.btn-header {
    background: #000000 !important;
    color: var(--color-white) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 600;
    border: 1px solid #685148 !important;
}

.btn-header:hover {
    background: #f5eee6 !important;
    color: #685148 !important;
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(2deg, #e1d3b8 5%, #F5EFE6 100%);
    padding: 4rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--color-pink);
    border-radius: 50%;
    opacity: 0.4;
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 300px;
    height: 300px;
    background: var(--color-pink);
    border-radius: 50%;
    opacity: 0.3;
    z-index: 0;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #ffffffcc;
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 600;
    color: #685148;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title-accent {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 600;
    color: var(--color-rose-pink);
}

.hero-desc {
    color: #685148;
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-hero-primary {
    background: #000000 !important;
    color: var(--color-white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: #f5eee6 !important;
    color: var(--color-primary-dark) !important;
    transform: translateY(-2px);
}

.hero-image-wrapper {
    position: relative;
    padding: 0.5rem;
    background: #000000;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.hero-img {
    width: 100%;
    border-radius: calc(var(--radius-lg) - 4px);
    display: block;
}

/* ===== Section Common Styles ===== */
.section-title {
    font-family: var(--font-body);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: var(--color-gray-dark);
    margin-bottom: 1rem;
}

.section-title-serif {
    font-family: var(--font-heading) !important;
    font-weight: 600;
}

.section-desc {
    color: var(--color-gray);
    font-size: 1rem;
    max-width: 1500px;
}

.section-header.text-center .section-desc {
    margin: 0 auto;
}

/* ===== Services Section ===== */
.services-section {
    background: var(--color-white);
}

.service-card {
    background: #f5eee6;
    padding: 2rem;
    border-radius: var(--radius-md);
    height: 100%;
    transition: var(--transition);
    box-shadow: var(--shadow-card);
}

.service-card:hover {
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-4px);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-icon i {
    color: #212529;
    font-size: 1.25rem;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.service-desc {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin: 0 0 1rem;
}

.service-link {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.service-link:hover {
    color: var(--color-primary-dark);
}

/* ===== Specialists Section ===== */

.specialists-section {
    background: #faf9f7;
}

.specialist-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: var(--transition);
}

.specialist-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.specialist-img-wrapper {
    width: 100%;
    max-width: 260px;
    margin: 0 auto 1.25rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.specialist-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
    filter: grayscale(0%);
}

.specialist-role {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-gray-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
}

.specialist-social {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.specialist-social a {
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    font-size: 0.85rem;
}

.specialist-social a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.specialist-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
}

.specialist-bio {
    color: var(--color-gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1.25rem;
}



/* ===== Insurance Section ===== */
.insurance-section {
    background: var(--color-white);
}

.insurance-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.insurance-list li {
    color: var(--color-gray);
    font-size: 0.95rem;
    padding: 0.25rem 0;
    border-bottom: none;
}

.insurance-placeholder {
    background: rgba(0, 0, 0, 0.03);
    border: 1px dashed #ddd;
    border-radius: var(--radius-sm);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 100px;
}

.insurance-placeholder i {
    color: var(--color-gray-light);
    font-size: 1.5rem;
    opacity: 0.5;
}

.insurance-placeholder span {
    color: var(--color-gray-light);
    font-size: 0.875rem;
}

.insurance-note {
    color: var(--color-gray);
    font-size: 0.95rem;
    margin: 0;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background: #8C6E63;
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

.testimonials-section .section-header {
    margin-bottom: 3rem !important;
}

.testimonials-section .section-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: #ffffff;
}

.testimonials-section .section-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.5;
}

.testimonial-card {
    background: #ffffff;
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    height: 100%;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-card .stars {
    color: #f5c842;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-card .stars i {
    margin-right: 3px;
}

.testimonial-text {
    color: #2d2d2d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    font-weight: 400;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.testimonial-author .author-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.author-location {
    font-size: 0.8rem;
    color: var(--color-gray-light);
    font-weight: 400;
    margin-top: 0.15rem;
}

.author-avatar-wrapper {
    width: 52px;
    /* height: 32px; */
    border-radius: 9999px;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(77, 202, 223, 0.15);
}

.author-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.author-name {
    font-weight: 700;
    font-size: 1rem;
    color: #2d2d2d;
}

/* OWL Carousel Testimonials */
.testimonials-carousel .owl-dots {
    margin-top: 2rem;
}

.testimonials-carousel .owl-dot span {
    background: rgba(255, 255, 255, 0.5) !important;
    width: 10px;
    height: 10px;
    margin: 0 4px;
}

.testimonials-carousel .owl-dot.active span {
    background: var(--color-white) !important;
}

.testimonials-carousel .owl-nav button {
    color: var(--color-white) !important;
    font-size: 2rem !important;
}

/* ===== Patient Portal Section ===== */
.portal-section {
    background: var(--color-white);
}

.portal-image {
    position: relative;
}

.portal-logo-badge {
    margin-top: 1rem;
}

.healow-badge {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
}

.btn-portal {
    background: var(--color-orange) !important;
    color: var(--color-white) !important;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.btn-portal:hover {
    background: #d8943a !important;
    color: var(--color-white) !important;
}

.portal-signin {
    color: var(--color-gray) !important;
    font-size: 0.95rem;
}

.portal-signin a {
    color: var(--color-primary);
}

.portal-signin a:hover {
    text-decoration: underline;
}

/* ===== healow Setup Section ===== */
.healow-setup-section {
    background: var(--color-white);
}

.setup-step {
    padding: 1rem;
}

.setup-icon {
    width: 64px;
    height: 64px;
    background: #d4e8f7;
    color: #2a7ab8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.setup-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #2a7ab8;
    margin-bottom: 0.5rem;
}

.setup-desc {
    font-size: 0.9rem;
    color: var(--color-gray);
    margin: 0;
}

.promo-code-row {
    display: flex;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: var(--radius-md);
}

.promo-code-box {
    flex: 1;
    min-width: 200px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-code-blue {
    background: #1e3a5f;
    color: var(--color-white);
    font-size: 0.95rem;
}

.promo-code-orange {
    background: #e8a54b;
    color: var(--color-white);
}

.promo-code-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.1em;
}

/* ===== Tools Section ===== */
.tools-section {
    background: var(--color-white);
}

.tools-tabs .nav-link {
    color: var(--color-gray) !important;
    border: none !important;
    padding: 0.75rem 1rem;
    font-weight: 500;
}

.tools-tabs .nav-link:hover {
    color: var(--color-primary) !important;
}

.tools-tabs .nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

.tools-tabs .nav-link.active {
    color: var(--color-primary) !important;
    background: transparent !important;
    border: none !important;
    border-bottom: 2px solid var(--color-primary) !important;
    margin-bottom: -1px;
}

/* ===== Check-in / Kiosk ===== */
.checkin-image img,
.kiosk-image img,
.app-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--color-gray-dark);
}

.feature-list i {
    color: var(--color-primary);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.btn-schedule {
    background: var(--color-orange) !important;
    color: var(--color-white) !important;
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: var(--transition);
}

.btn-schedule:hover {
    background: #d8943a !important;
    color: var(--color-white) !important;
}

/* ===== App Section ===== */
.app-section {
    background: var(--color-white);
}

.app-instruction {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-app-store,
.btn-google-play {
    background: var(--color-primary) !important;
    color: var(--color-white) !important;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-app-store:hover,
.btn-google-play:hover {
    background: var(--color-primary-dark) !important;
    color: var(--color-white) !important;
}

/* ===== Kiosk Section ===== */
.kiosk-section {
    background: var(--color-white);
}

/* ===== FAQ Section ===== */
.faq-section {
    background: var(--color-white);
}

.accordion-wrapper {
    max-width: 700px;
}

.accordion-item {
    border: none !important;
    border-bottom: 1px solid #eee !important;
    border-radius: 0 !important;
    margin-bottom: 0;
    overflow: hidden;
}

.accordion-item:last-child {
    border-bottom: none !important;
}

.accordion-button {
    font-weight: 600 !important;
    color: var(--color-gray-dark) !important;
    background: var(--color-white) !important;
    box-shadow: none !important;
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    border-bottom: 1px solid #eee;
}

.accordion-button::after {
    flex-shrink: 0;
}

.accordion-body {
    padding: 1rem 1.25rem;
    color: var(--color-gray);
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 4rem 2rem;
    /* background: #faf9f7; */
}

.cta-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.cta-box {
    position: relative;
    background: #e1d3b8;
    padding: 4rem 3rem;
    border-radius: 28px;
    max-width: 720px;
    margin: 0 auto;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: rgba(237, 227, 230, 0.6);
    border-radius: 50%;
    z-index: 0;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: rgba(237, 227, 230, 0.5);
    border-radius: 50%;
    z-index: 0;
}

.cta-box > * {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(1.875rem, 3.5vw, 2.5rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-title-accent {
    color: #d58a8a;
    font-style: italic;
}

.cta-desc {
    font-family: var(--font-body);
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    flex-direction: column;
}

.btn-cta-primary {
    font-family: var(--font-body);
    background: #8C6E63 !important;
    color: var(--color-white) !important;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    box-shadow: 0 2px 10px rgba(92, 58, 90, 0.3);
    transition: var(--transition);
}

.btn-cta-primary:hover {
    background: #4a2f48 !important;
    color: var(--color-white) !important;
}

.btn-cta-outline {
    font-family: var(--font-body);
    background: #fbfbfb !important;
    color: #8C6E63 !important;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid #e5dfe4;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.btn-cta-outline:hover {
    background: #f5f0f2 !important;
    color: #4a2f48 !important;
    border-color: #d5cdd2 !important;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-white);
    border-top: 1px solid #eee;
}

.footer-brand {
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--color-gray-dark);
}

.footer-desc {
    color: var(--color-gray);
    font-size: 0.95rem;
    max-width: 280px;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-gray-dark);
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--color-gray);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.copyright {
    color: var(--color-gray-light);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--color-gray-light);
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: var(--color-primary);
}

/* ===== Responsive Styles ===== */
@media (max-width: 991px) {
    .navbar-collapse {
        padding: 1rem 0;
    }
    
    .navbar-nav {
        margin: 0 !important;
    }
    
    .nav-separator {
        display: none !important;
    }
    
    .nav-link {
        padding: 0.5rem 0 !important;
    }
    
    .header-actions {
        flex-direction: column;
        align-items: stretch;
        margin-top: 1rem;
        gap: 0.5rem;
    }
    
    .btn-header {
        margin-top: 0;
        display: block;
        text-align: center;
    }
    
    .hero-section {
        padding: 3rem 0 4rem;
    }
    
    .hero-image-wrapper {
        margin-top: 2rem;
    }
    
    .specialist-img-wrapper {
        max-width: 200px;
    }
    
    .cta-box {
        padding: 3rem 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .cta-section{
        padding: 2rem 0rem;
    }
}

@media (max-width: 767px) {
    .hero-subheadline {
        font-size: 0.875rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .tools-tabs .nav-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn-hero-primary {
        width: 100%;
        text-align: center;
    }
    
    .section-header {
        text-align: left !important;
    }
    
    .section-header.text-center .section-desc {
        margin: 0;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .btn-app-store,
    .btn-google-play {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
    }
    
    .testimonial-card {
        min-height: auto;
    }
}

@media (max-width: 575px) {
    .insurance-placeholder {
        padding: 1.5rem;
        min-height: 80px;
    }
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(78, 59, 77, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease,
                background 0.3s ease, box-shadow 0.3s ease;
    z-index: 999;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-primary-dark);
    box-shadow: 0 6px 24px rgba(78, 59, 77, 0.45);
}

.back-to-top:focus {
    outline: 2px solid var(--color-plum);
    outline-offset: 2px;
}

.back-to-top i {
    font-size: 1.1rem;
}
