/* ===== Layout tokens (colors: css/theme-tokens.css) ===== */
:root {
  --mkt-primary-dark: #636465;
  --color-surface-soft: #f7fbfb;
  --color-border: #c7dddd;
  --color-text: #2d2d2d;
  --footer-heading-color: #ffffff;
  --social-icon-color: #727374;
  --color-secondary: #636465;
  --mkt-accent-dark: #616263;
  --mkt-accent: #727374;
  --color-gray-light: #9a9a9a;
  --color-gray: #6b6b6b;
  --color-gray-dark: #2d2d2d;
  --color-accent: #727374;
  --color-orange: #83c6c7;
  --color-pink-btn: #727374;
  --color-pink-light: #f7f9f9;
  --color-pink: #f6f8f8;
  --color-rose-pink: #8ccacb;
  --color-surface-muted: #eff7f7;
  --color-accent-red: #2f6f70;
  --color-plum: #78c1c2;
  --color-primary-dark: #717272;
  --color-primary: #929394;
    --font-heading: 'Poppins', serif;
    --font-body: 'Poppins', 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 ===== */
.top-bar {
    background: #066a6f;
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}
/* ===== Comp services ===== */
.adult-care-section {
    padding: 70px 20px;
    background: #f7fbfb;
}

.adult-care-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    align-items: center;
}

.adult-care-intro {
    background: #0a5260;
    color: #fff;
    padding: 35px;
    border-radius: 20px;
    position: sticky;
    top: 20px;
}

.adult-care-intro h2 {
    font-size: 34px;
    line-height: 1.2;
    margin: 15px 0;
    color: #fff;
}

.adult-care-intro p {
    line-height: 1.8;
    opacity: 0.95;
    margin: 0;
}

.section-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.adult-care-services {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(10,82,96,.06);

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

.service-point {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(139,183,185,.25);
}

.service-point:last-child,
.service-point:nth-last-child(2) {
    border-bottom: none;
}

.tick {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
       background: #0a5260;
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-point strong {
    display: block;
    color: #0a5260;
    font-size: 16px;
    line-height: 1.4;
}

.service-point p {
    margin: 6px 0 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Mobile */

@media (max-width: 991px) {

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

    .adult-care-services {
        grid-template-columns: 1fr;
    }

    .adult-care-intro h2 {
        font-size: 28px;
    }

    .adult-care-intro,
    .adult-care-services {
        padding: 25px;
    }
}

/* ===== Comp services ===== */

/* ===== New About Us ===== */
.lnp-about-services {
    padding: 80px 20px;
    background: #f7fbfb;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
}

/* Top Section */

.section-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.about-card {
    background: #0a5260;
    color: #fff;
    padding: 100px;
    border-radius: 20px;
}

.about-card h2 {
    margin: 15px 0;
    font-size: 34px;
}

.about-card p {
    line-height: 1.8;
    opacity: 0.95;
}

.specialty-card {
    background: #f5f9f9;
    border: 2px solid rgba(139,183,185,.25);
    padding: 35px;
    border-radius: 20px;
}

.section-tag {
    display: inline-block;
    background: #e9f1f2;
    color: #0a5260;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
}

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

.specialty-grid div {
    background: #fff;
    padding: 12px 15px;
    border-radius: 12px;
    color: #0a5260;
    font-weight: 500;
    
}

/* Other Services */

.services-section {
    background: #f7fbfb;
    padding: 50px;
    border-radius: 25px;
}

.services-heading {
    text-align: center;
    margin-bottom: 35px;
}

.services-heading h2 {
    color: #0a5260;
    font-size: 34px;
    margin-top: 15px;
}

.service-list {
    display: grid;

    grid-template-columns: repeat(2, 1fr);
    gap: 18px 25px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 18px;
    border-radius: 1px;
    transition: .3s ease;
  border-bottom: 1px solid rgba(139, 183, 185, .25);
}



.check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: #0a5260;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;

}

.service-item strong {
    color: #0a5260;
    display: block;
    margin-bottom: 5px;
}

.service-item p {
    margin: 0;
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Mobile */

@media (max-width: 768px) {

    .section-wrapper,
    .service-list {
        grid-template-columns: 1fr;
    }

    .about-card,
    .specialty-card,
    .services-section {
        padding: 30px;
    }

    .about-card h2,
    .services-heading h2 {
        font-size: 28px;
    }
}

/* ===== New About Us ===== */

/* ===== New Provider's section ===== */
.provider-profile {
    padding: 80px 20px;
    background: linear-gradient(
180deg, #f7fbfb 0%, #0c8a8f 100%);
}

.provider-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: center;
}

/* IMAGE */

.provider-image {
    position: relative;
}

.provider-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    object-fit: cover;
    height: 520px;
    box-shadow: 0 20px 40px rgba(10,82,96,.12);
}

.provider-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 18px;
    left: 18px;
    border: 2px solid #8bb7b9;
    border-radius: 24px;
    z-index: -1;
}

/* CONTENT */

.provider-label {
    display: inline-block;
    background: rgba(139,183,185,.18);
    color: #0a5260;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.provider-info h2 {
    color: #0a5260;
    font-size: 42px;
    line-height: 1.1;
    margin: 18px 0 10px;
}

.credentials {
    color: #0a5260;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.provider-intro {
    color: #444;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* BIO CARD */

.bio-card {
    background: #ffffff;
    border-left: 5px solid #8bb7b9;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(10,82,96,.06);
    margin-bottom: 30px;
}

.bio-card p {
    margin: 0;
    color: #555;
    line-height: 1.9;
}

/* SERVICES */

.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.specialty-tags span {
    background: #0a5260;
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 14px;
    transition: .3s ease;
}



/* MOBILE */

@media (max-width: 991px) {

    .provider-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .provider-image img {
        height: 420px;
    }

    .provider-info h2 {
        font-size: 32px;
    }

    .provider-intro {
        font-size: 16px;
    }
}


/* ===== New Provider's section ===== */

* {
    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: transparent !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: 36px;
    height: 36px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: 0.5rem;
}

.nav-link {
    font-weight: 400;
    color: #0a5260 !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: var(--color-text-light);
    margin: 0 auto;
}

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

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

.btn-patient-login:hover {
    background: var(--color-surface-soft) !important;
    color: var(--color-plum) !important;
    border-color: var(--color-text-light) !important;
}

.btn-header {
    background: var(--color-plum) !important;
    color: var(--color-white) !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 600;
    border: none !important;
}

.btn-header:hover {
    background: var(--color-primary-dark) !important;
    color: var(--color-white) !important;
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, var(--color-pink-btn) 0%, var(--color-surface-muted) 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: color-mix(in srgb, var(--color-surface) 80%, transparent);
    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: var(--color-primary);
    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: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

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

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

.hero-image-wrapper {
    position: relative;
    padding: 0.5rem;
    background: var(--color-white);
    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: 600px;
}

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

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

.service-card {
    background: var(--color-pink-light);
    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: var(--color-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.service-icon i {
    color: var(--color-accent-red);
    font-size: 1.25rem;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-gray-dark);
    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: var(--color-surface-soft);
}

.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: 360px;
    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;

}

.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: var(--color-surface-muted);
    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 var(--color-border);
    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: var(--color-primary) !important;
    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: var(--color-white);
}

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

.testimonial-card {
    background: var(--color-white);
    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: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.testimonial-text {
    color: var(--color-gray-dark);
    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: var(--color-gray-dark);
}

/* 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: var(--mkt-accent-dark) !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: var(--color-surface-muted);
    color: var(--color-primary-dark);
    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: var(--color-primary-dark);
    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: var(--mkt-primary-dark);
    color: var(--color-white);
    font-size: 0.95rem;
}

.promo-code-orange {
    background: var(--color-accent);
    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 var(--mkt-border);
}

.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: var(--mkt-accent-dark) !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 var(--color-border) !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 var(--color-border);
}

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

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

/* ===== CTA Section ===== */
.cta-section {
    padding: 4rem 2rem;
    /* background: var(--color-surface-soft); */
}

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

.cta-box {
    position: relative;
    background: var(--color-surface-soft);
    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: rgb(239 247 247);
    border-radius: 50%;
    z-index: 0;
}

.cta-box::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 220px;
    height: 220px;
    background: rgb(239 247 247);
    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: #0a5260;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-title-accent {
    color: var(--color-secondary);
    font-style: italic;
}

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

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

.btn-cta-primary {
    font-family: var(--font-body);
    background: var(--color-primary) !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: var(--color-primary-dark) !important;
    color: var(--color-white) !important;
}

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

.btn-cta-outline:hover {
    background: var(--color-surface-soft) !important;
    color: var(--color-primary-dark) !important;
    border-color: var(--color-border) !important;
}

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

.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: var(--color-surface);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--social-icon-color);
    transition: var(--transition);
}

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

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--footer-heading-color);
    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;
}
