﻿html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    overflow-x: hidden;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

:root {
    --hv-primary: #116466;
    --hv-primary-dark: #0b4143;
    --hv-accent: #f59e0b;
    --hv-danger: #e11d48;
    --hv-bg: #f7fbfc;
    --hv-soft-bg: #eef8f9;
    --hv-dark: #102a43;
    --hv-text: #1f2937;
    --hv-muted: #64748b;
    --hv-white: #ffffff;
    --hv-shadow: 0 14px 35px rgba(16, 42, 67, 0.10);
    --hv-radius: 20px;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--hv-bg);
    color: var(--hv-text);
    font-family: "Segoe UI", Arial, sans-serif;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.15rem rgba(17, 100, 102, 0.25);
}

/* HEADER */

.top-contact-bar {
    background: var(--hv-primary-dark);
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
}

.main-navbar {
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(16, 42, 67, 0.08);
}

.navbar-brand {
    color: var(--hv-primary-dark) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--hv-primary), var(--hv-accent));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.main-navbar .nav-link {
    color: #1f2937 !important;
    font-weight: 600;
}

    .main-navbar .nav-link:hover {
        color: var(--hv-primary) !important;
    }

.hv-header-cta,
.btn-primary {
    background: var(--hv-primary);
    border-color: var(--hv-primary);
    color: #ffffff;
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 700;
}

    .hv-header-cta:hover,
    .btn-primary:hover {
        background: var(--hv-primary-dark);
        border-color: var(--hv-primary-dark);
        color: #ffffff;
    }





/* QUICK QUOTE */

.quick-quote-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 370px;
    max-width: calc(100% - 30px);
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    z-index: 1050;
    box-shadow: 0 18px 45px rgba(16, 42, 67, 0.22);
    border: 1px solid rgba(17, 100, 102, 0.12);
}

.quick-quote-header {
    background: linear-gradient(135deg, var(--hv-primary), var(--hv-primary-dark));
    color: #ffffff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

    .quick-quote-header strong {
        display: block;
        font-size: 16px;
        font-weight: 800;
    }

    .quick-quote-header small {
        display: block;
        font-size: 12px;
        opacity: 0.9;
    }

.quick-quote-actions {
    display: flex;
    gap: 8px;
}

    .quick-quote-actions button {
        width: 28px;
        height: 28px;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.18);
        color: #ffffff;
        font-size: 18px;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .quick-quote-actions button:hover {
            background: rgba(255, 255, 255, 0.32);
        }

.quick-quote-body {
    padding: 16px;
    max-height: 72vh;
    overflow-y: auto;
}

.quick-quote-form .form-control,
.quick-quote-form .form-select {
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
}

.hv-quote-btn {
    background: var(--hv-danger);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 12px 14px;
    font-weight: 800;
}

    .hv-quote-btn:hover {
        background: #be123c;
        color: #ffffff;
    }

.quick-quote-widget.minimized .quick-quote-body {
    display: none;
}

.quick-quote-widget.minimized {
    width: 290px;
}

.quick-quote-widget.closed {
    display: none;
}

.quick-quote-open-btn {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1049;
    display: none;
    border-radius: 50px;
    padding: 13px 22px;
    font-weight: 800;
    box-shadow: 0 14px 35px rgba(16, 42, 67, 0.22);
}

.quick-quote-open-btn {
    display: none;
}

    .quick-quote-open-btn.show {
        display: inline-flex;
    }

html[dir="rtl"] .quick-quote-widget,
html[dir="rtl"] .quick-quote-open-btn {
    right: auto;
    left: 24px;
}











/* SECTIONS */

.hv-home-hero {
    width: 100%;
    padding: 50px 0 58px;
    background: linear-gradient(135deg, #f7fbfc 0%, #eef8f9 100%);
}

.hv-section,
.home-section {
    width: 100%;
    padding: 70px 0;
}

    .hv-soft-section,
    .hv-process-section,
    .home-section.bg-soft {
        background: var(--hv-soft-bg);
    }

.hv-section-heading {
    margin-bottom: 34px;
}

    .hv-section-heading span,
    .hv-badge {
        color: var(--hv-primary);
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.4px;
    }

.hv-badge {
    display: inline-block;
    background: rgba(17, 100, 102, 0.10);
    padding: 8px 16px;
    border-radius: 50px;
    text-transform: none;
}

.hv-section-heading h2,
.hv-hero-title,
.section-title {
    color: var(--hv-dark);
    font-weight: 900;
    line-height: 1.15;
}

.hv-hero-title {
    font-size: 46px;
}

.hv-section-heading h2,
.section-title {
    font-size: 36px;
}

.hv-section-heading p,
.hv-hero-text,
.hv-muted,
.section-subtitle {
    color: var(--hv-muted);
}

.section-subtitle {
    max-width: 650px;
    margin: 0 auto 35px;
}

.hv-hero-text {
    font-size: 17px;
    line-height: 1.7;
}

/* BANNER CAROUSEL */

.healthovia-carousel,
.healthovia-carousel .carousel-item {
    min-height: 540px;
}

    .healthovia-carousel .carousel-item {
        background-size: cover;
        background-position: center;
        position: relative;
    }

        .healthovia-carousel .carousel-item::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(11, 65, 67, 0.88), rgba(17, 100, 102, 0.48));
        }

    .healthovia-carousel .carousel-caption-custom {
        position: relative;
        z-index: 2;
        min-height: 540px;
        display: flex;
        align-items: center;
    }

    .healthovia-carousel h1 {
        font-size: 3.2rem;
        font-weight: 900;
        color: #ffffff;
        line-height: 1.15;
    }

    .healthovia-carousel p {
        font-size: 1.15rem;
        max-width: 650px;
        color: rgba(255, 255, 255, 0.92);
        line-height: 1.7;
    }

    .healthovia-carousel .carousel-control-prev,
    .healthovia-carousel .carousel-control-next {
        width: 7%;
    }

    .healthovia-carousel .carousel-indicators button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
    }

/* BUTTONS */

.hv-btn-primary,
.hv-btn-whatsapp,
.hv-btn-danger,
.hv-btn-light,
.hv-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-weight: 800;
    transition: 0.25s ease;
}

.hv-btn-primary,
.hv-btn-whatsapp,
.hv-btn-danger,
.hv-btn-light {
    padding: 10px 22px;
    font-size: 15px;
}

.hv-btn-primary {
    background: var(--hv-primary);
    color: #ffffff;
}

    .hv-btn-primary:hover {
        background: var(--hv-primary-dark);
        color: #ffffff;
    }

.hv-btn-whatsapp {
    background: #16a34a;
    color: #ffffff;
}

    .hv-btn-whatsapp:hover {
        background: #15803d;
        color: #ffffff;
    }

.hv-btn-danger {
    background: var(--hv-danger);
    color: #ffffff;
}

    .hv-btn-danger:hover {
        background: #be123c;
        color: #ffffff;
    }

.hv-btn-light {
    background: #ffffff;
    color: var(--hv-primary);
}

    .hv-btn-light:hover {
        background: #f1f5f9;
        color: var(--hv-primary-dark);
    }

.hv-link-btn {
    color: var(--hv-primary);
    font-weight: 800;
}

    .hv-link-btn:hover {
        color: var(--hv-primary-dark);
        text-decoration: underline;
    }

/* HERO IMAGE */

.hv-hero-image-card {
    position: relative;
    background: #ffffff;
    border-radius: 26px;
    padding: 14px;
    box-shadow: var(--hv-shadow);
    overflow: hidden;
}

    .hv-hero-image-card img {
        width: 100%;
        height: 365px;
        object-fit: cover;
        border-radius: 20px;
        display: block;
    }

.hv-hero-mini-card {
    position: absolute;
    left: 35px;
    bottom: 35px;
    background: #ffffff;
    padding: 12px 18px;
    border-radius: 16px;
    box-shadow: var(--hv-shadow);
}

    .hv-hero-mini-card strong {
        color: var(--hv-primary);
    }

html[dir="rtl"] .hv-hero-mini-card {
    left: auto;
    right: 35px;
}

/* CONTENT CARDS */

.hv-content-card,
.hv-testimonial-card,
.hv-feature-box,
.hv-process-card,
.healthovia-card {
    background: #ffffff;
    border-radius: var(--hv-radius);
    box-shadow: var(--hv-shadow);
    overflow: hidden;
    border: 1px solid rgba(17, 100, 102, 0.06);
    transition: 0.25s ease;
    height: 100%;
}

    .hv-content-card:hover,
    .hv-testimonial-card:hover,
    .hv-feature-box:hover,
    .hv-process-card:hover,
    .healthovia-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 18px 40px rgba(16, 42, 67, 0.14);
    }

    .hv-card-img,
    .healthovia-card img {
        width: 100%;
        height: 205px;
        object-fit: cover;
        display: block;
    }

.hv-doctor-img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.hv-card-body {
    padding: 22px;
}

    .hv-card-body h5 {
        font-size: 19px;
        font-weight: 800;
        color: var(--hv-dark);
        margin-bottom: 10px;
    }

    .hv-card-body p {
        color: var(--hv-muted);
        line-height: 1.6;
    }

/* TESTIMONIAL */

.hv-testimonial-card {
    padding: 26px;
    text-align: center;
}

.hv-testimonial-img {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 16px;
}

.hv-testimonial-card h5 {
    font-weight: 800;
    color: var(--hv-dark);
}

.hv-badge-small {
    display: inline-block;
    background: rgba(17, 100, 102, 0.10);
    color: var(--hv-primary);
    font-weight: 700;
    border-radius: 50px;
    padding: 6px 14px;
    margin-bottom: 12px;
}

.hv-stars {
    margin-top: 12px;
}

/* FEATURE / PROCESS */

.hv-feature-box,
.hv-process-card {
    padding: 26px;
}

.hv-feature-icon,
.hv-process-icon {
    width: 54px;
    height: 54px;
    background: rgba(17, 100, 102, 0.10);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.hv-feature-box h5,
.hv-process-card h5 {
    font-weight: 800;
    color: var(--hv-dark);
}

.hv-feature-box p,
.hv-process-card p {
    color: var(--hv-muted);
    line-height: 1.6;
}

.hv-process-card {
    text-align: center;
}

    .hv-process-card .hv-process-icon {
        margin-left: auto;
        margin-right: auto;
    }

/* CTA */

.hv-final-cta {
    width: 100%;
    background: linear-gradient(135deg, var(--hv-primary), var(--hv-primary-dark));
    color: #ffffff;
    padding: 55px 0;
}

    .hv-final-cta h2 {
        font-weight: 900;
        font-size: 34px;
    }

    .hv-final-cta p {
        opacity: 0.95;
        font-size: 17px;
    }

/* FOOTER */

footer {
    width: 100%;
}

/* DARK MODE */

.dark-mode {
    background: #0f172a;
    color: #e5e7eb;
}

    .dark-mode .main-navbar,
    .dark-mode .quick-quote-widget,
    .dark-mode .hv-content-card,
    .dark-mode .hv-testimonial-card,
    .dark-mode .hv-feature-box,
    .dark-mode .hv-process-card,
    .dark-mode .healthovia-card,
    .dark-mode footer {
        background: #111827 !important;
        color: #e5e7eb !important;
    }

    .dark-mode .hv-home-hero,
    .dark-mode .hv-soft-section,
    .dark-mode .hv-process-section,
    .dark-mode .home-section.bg-soft {
        background: #0f172a;
    }

    .dark-mode .hv-section-heading h2,
    .dark-mode .hv-hero-title,
    .dark-mode .hv-card-body h5,
    .dark-mode .hv-feature-box h5,
    .dark-mode .hv-process-card h5,
    .dark-mode .hv-testimonial-card h5,
    .dark-mode .section-title {
        color: #ffffff;
    }

    .dark-mode .hv-section-heading p,
    .dark-mode .hv-hero-text,
    .dark-mode .hv-card-body p,
    .dark-mode .hv-feature-box p,
    .dark-mode .hv-process-card p,
    .dark-mode .hv-muted,
    .dark-mode .section-subtitle {
        color: #cbd5e1;
    }

    .dark-mode .main-navbar .nav-link,
    .dark-mode .navbar-brand {
        color: #ffffff !important;
    }

    .dark-mode .quick-quote-form .form-control,
    .dark-mode .quick-quote-form .form-select {
        background: #0f172a;
        color: #ffffff;
        border-color: rgba(255, 255, 255, 0.12);
    }

        .dark-mode .quick-quote-form .form-control::placeholder {
            color: #94a3b8;
        }

/* RESPONSIVE */

@media (max-width: 991px) {
    .hv-home-hero {
        padding: 45px 0;
    }

    .hv-hero-title {
        font-size: 36px;
    }

    .hv-section-heading h2,
    .section-title {
        font-size: 30px;
    }

    .hv-hero-image-card img {
        height: 290px;
    }

    .hv-section,
    .home-section {
        padding: 50px 0;
    }

    .top-contact-left {
        font-size: 13px;
    }

    .healthovia-carousel,
    .healthovia-carousel .carousel-item,
    .healthovia-carousel .carousel-caption-custom {
        min-height: 460px;
    }

        .healthovia-carousel h1 {
            font-size: 2.35rem;
        }

        .healthovia-carousel p {
            font-size: 1rem;
        }
}

@media (max-width: 768px) {
    .quick-quote-widget {
        right: 15px;
        bottom: 15px;
        width: calc(100% - 30px);
    }

        .quick-quote-widget.minimized {
            width: calc(100% - 30px);
        }

    .quick-quote-open-btn {
        right: 15px;
        bottom: 15px;
    }

    html[dir="rtl"] .quick-quote-widget,
    html[dir="rtl"] .quick-quote-open-btn {
        left: 15px;
        right: auto;
    }

    .healthovia-carousel,
    .healthovia-carousel .carousel-item,
    .healthovia-carousel .carousel-caption-custom {
        min-height: 430px;
    }

        .healthovia-carousel h1 {
            font-size: 2rem;
        }

        .healthovia-carousel p {
            font-size: 1rem;
        }
}

@media (max-width: 575px) {
    .top-contact-bar .container {
        justify-content: center !important;
        text-align: center;
    }

    .top-contact-left span {
        display: block;
        margin: 2px 0 !important;
    }

    .hv-hero-title {
        font-size: 30px;
    }

    .hv-section-heading h2,
    .section-title {
        font-size: 26px;
    }

    .hv-card-img,
    .hv-doctor-img,
    .healthovia-card img {
        height: 210px;
    }

    .quick-quote-body {
        max-height: 68vh;
    }
}



/* HERO FINAL POLISH */

.healthovia-carousel .hv-badge {
    background: transparent;
    color: var(--hv-accent);
    padding: 0;
    border-radius: 0;
    font-size: 16px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

    .healthovia-carousel .hv-badge::before {
        content: "🛡️";
        font-size: 22px;
    }

.healthovia-carousel h1 {
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.healthovia-carousel .carousel-item::before {
    background: radial-gradient(circle at 8% 10%, rgba(255,255,255,0.08), transparent 28%), linear-gradient(90deg, rgba(5, 71, 73, 0.96), rgba(17, 100, 102, 0.70));
}

.healthovia-carousel .hv-hero-image-card {
    border: 12px solid #ffffff;
    padding: 0;
    border-radius: 28px;
}

    .healthovia-carousel .hv-hero-image-card img {
        height: 430px;
        border-radius: 18px;
    }

.healthovia-carousel .hv-hero-mini-card {
    left: 28px;
    bottom: 28px;
    display: flex;
    gap: 6px;
    align-items: center;
}

.healthovia-carousel .carousel-indicators {
    bottom: 24px;
}

@media (max-width: 991px) {
    .healthovia-carousel .hv-badge {
        font-size: 14px;
    }

        .healthovia-carousel .hv-badge::before {
            content: "✓";
            width: 22px;
            height: 22px;
            border: 2px solid var(--hv-accent);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 900;
            color: var(--hv-accent);
        }
}








/* INNER PAGE HERO */

.hv-page-hero {
    background: radial-gradient(circle at 10% 20%, rgba(255,255,255,0.10), transparent 28%), linear-gradient(135deg, var(--hv-primary-dark), var(--hv-primary));
    color: #ffffff;
    padding: 78px 0;
}

    .hv-page-hero h1 {
        font-size: 46px;
        font-weight: 900;
        margin: 14px 0;
    }

    .hv-page-hero p {
        max-width: 720px;
        margin: 0 auto;
        color: rgba(255,255,255,0.90);
        font-size: 17px;
        line-height: 1.7;
    }

.hv-page-badge {
    display: inline-block;
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.20);
    color: var(--hv-accent);
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 800;
}

.hv-empty-state {
    background: #ffffff;
    border-radius: var(--hv-radius);
    padding: 50px 25px;
    box-shadow: var(--hv-shadow);
}

    .hv-empty-state h4 {
        font-weight: 800;
        color: var(--hv-dark);
    }

    .hv-empty-state p {
        color: var(--hv-muted);
    }

.dark-mode .hv-empty-state {
    background: #111827;
}

    .dark-mode .hv-empty-state h4 {
        color: #ffffff;
    }

@media (max-width: 768px) {
    .hv-page-hero {
        padding: 55px 0;
    }

        .hv-page-hero h1 {
            font-size: 34px;
        }
}



/* DETAILS PAGE */

.hv-detail-hero-image {
    background: #ffffff;
    border-radius: 28px;
    padding: 12px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

    .hv-detail-hero-image img,
    .hv-detail-main-image img {
        width: 100%;
        height: 330px;
        object-fit: cover;
        border-radius: 20px;
        display: block;
    }

.hv-detail-card,
.hv-inquiry-card {
    background: #ffffff;
    border-radius: var(--hv-radius);
    box-shadow: var(--hv-shadow);
    border: 1px solid rgba(17, 100, 102, 0.08);
    overflow: hidden;
}

.hv-detail-card-header {
    padding: 26px 28px 0;
}

    .hv-detail-card-header span {
        color: var(--hv-primary);
        font-weight: 800;
    }

    .hv-detail-card-header h2 {
        color: var(--hv-dark);
        font-weight: 900;
        margin-top: 8px;
    }

.hv-detail-content {
    padding: 22px 28px 30px;
    color: var(--hv-text);
    line-height: 1.8;
}

    .hv-detail-content h1,
    .hv-detail-content h2,
    .hv-detail-content h3,
    .hv-detail-content h4,
    .hv-detail-content h5 {
        color: var(--hv-dark);
        font-weight: 800;
        margin-top: 22px;
    }

    .hv-detail-content p {
        color: var(--hv-text);
        margin-bottom: 16px;
    }

    .hv-detail-content ul,
    .hv-detail-content ol {
        padding-left: 22px;
        margin-bottom: 18px;
    }

html[dir="rtl"] .hv-detail-content ul,
html[dir="rtl"] .hv-detail-content ol {
    padding-left: 0;
    padding-right: 22px;
}

.hv-inquiry-card {
    top: 105px;
}

.hv-inquiry-card-header {
    background: linear-gradient(135deg, var(--hv-primary), var(--hv-primary-dark));
    color: #ffffff;
    padding: 20px 22px;
}

    .hv-inquiry-card-header h5 {
        font-weight: 900;
        margin-bottom: 6px;
    }

    .hv-inquiry-card-header p {
        margin: 0;
        opacity: 0.92;
        font-size: 14px;
    }

.hv-inquiry-card-body {
    padding: 22px;
}

.hv-inquiry-card .form-control,
.hv-inquiry-card .form-select {
    border-radius: 12px;
    padding: 11px 13px;
}

.hv-alert {
    border-radius: 14px;
    border: none;
    box-shadow: var(--hv-shadow);
}

.dark-mode .hv-detail-card,
.dark-mode .hv-inquiry-card {
    background: #111827;
    color: #e5e7eb;
}

.dark-mode .hv-detail-card-header h2,
.dark-mode .hv-detail-content h1,
.dark-mode .hv-detail-content h2,
.dark-mode .hv-detail-content h3,
.dark-mode .hv-detail-content h4,
.dark-mode .hv-detail-content h5 {
    color: #ffffff;
}

.dark-mode .hv-detail-content,
.dark-mode .hv-detail-content p {
    color: #cbd5e1;
}

.dark-mode .hv-inquiry-card .form-control,
.dark-mode .hv-inquiry-card .form-select {
    background: #0f172a;
    color: #ffffff;
    border-color: rgba(255,255,255,0.12);
}

@media (max-width: 991px) {
    .hv-inquiry-card {
        top: auto;
    }

    .hv-detail-hero-image img,
    .hv-detail-main-image img {
        height: 260px;
    }
}


/* HOSPITAL LISTING */

.hv-featured-badge {
    display: inline-block;
    background: rgba(17,100,102,.10);
    color: var(--hv-primary);
    font-size: 13px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.hv-location {
    color: var(--hv-primary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 14px;
}

.hv-logo-wrapper {
    height: 220px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.hv-hospital-logo {
    max-height: 140px;
    max-width: 100%;
    object-fit: contain;
}

.dark-mode .hv-logo-wrapper {
    background: #111827;
}



/* HOSPITAL DETAILS */

.hv-detail-hero-logo {
    background: #ffffff;
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hv-detail-hero-logo img {
        max-height: 160px;
        max-width: 100%;
        object-fit: contain;
    }

.hv-mini-doctor-card {
    background: #ffffff;
    border: 1px solid rgba(17, 100, 102, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(16, 42, 67, 0.08);
    transition: 0.25s ease;
}

    .hv-mini-doctor-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 34px rgba(16, 42, 67, 0.12);
    }

    .hv-mini-doctor-card img {
        width: 100%;
        height: 190px;
        object-fit: cover;
        object-position: top center;
        display: block;
    }

.hv-mini-doctor-body {
    padding: 18px;
}

    .hv-mini-doctor-body h5 {
        color: var(--hv-dark);
        font-weight: 800;
        margin-bottom: 8px;
    }

.dark-mode .hv-detail-hero-logo,
.dark-mode .hv-mini-doctor-card {
    background: #111827;
}

.dark-mode .hv-mini-doctor-body h5 {
    color: #ffffff;
}

.hv-doctor-image-wrap {
    width: 100%;
    height: 260px;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(135deg, #eafaf6, #f4fbff);
    margin-bottom: 18px;
}

.hv-doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hv-doctor-placeholder {
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hv-doctor-placeholder i {
        font-size: 72px;
        color: #1bbf9c;
    }

.hv-card-subtitle {
    color: #1bbf9c;
    font-weight: 600;
    margin-bottom: 14px;
}

.hv-meta-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 14px;
}

    .hv-meta-list div {
        display: flex;
        align-items: center;
        gap: 9px;
        color: #607080;
        font-size: 14px;
    }

    .hv-meta-list i {
        width: 18px;
        color: #1bbf9c;
    }

.hv-empty-state {
    padding: 70px 20px;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 18px 45px rgba(13, 45, 72, 0.08);
}

    .hv-empty-state i {
        font-size: 60px;
        color: #1bbf9c;
        margin-bottom: 18px;
    }








.hv-doctor-detail-image-wrap {
    width: 100%;
    min-height: 320px;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #eafaf6, #f4fbff);
}

.hv-doctor-detail-image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.hv-detail-title {
    font-size: 32px;
    font-weight: 800;
    color: #12344d;
    margin-bottom: 8px;
}

.hv-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 20px;
}

.hv-info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border-radius: 18px;
    background: #f7fbfc;
}

    .hv-info-item i {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        background: #e6faf5;
        color: #1bbf9c;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hv-info-item strong {
        display: block;
        color: #12344d;
        font-size: 14px;
        margin-bottom: 2px;
    }

    .hv-info-item span {
        color: #607080;
        font-size: 14px;
    }

.hv-treatment-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .hv-treatment-tags a {
        display: inline-flex;
        padding: 10px 16px;
        border-radius: 999px;
        background: #f4fbff;
        color: #12344d;
        border: 1px solid rgba(27, 191, 156, 0.2);
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.25s ease;
    }

        .hv-treatment-tags a:hover {
            background: #1bbf9c;
            color: #ffffff;
        }

.hv-detail-description {
    color: #607080;
    line-height: 1.8;
}

    .hv-detail-description p:last-child {
        margin-bottom: 0;
    }




.hv-testimonial-card {
    background: #fff;
    border-radius: 28px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 18px 45px rgba(13, 45, 72, 0.08);
    transition: all .3s ease;
}

    .hv-testimonial-card:hover {
        transform: translateY(-6px);
    }

.hv-testimonial-top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.hv-testimonial-avatar {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    object-fit: cover;
}

.hv-testimonial-avatar-placeholder {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: #eafaf6;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hv-testimonial-avatar-placeholder i {
        color: #1bbf9c;
        font-size: 28px;
    }

.hv-testimonial-treatment {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 999px;
    background: #eafaf6;
    color: #1bbf9c;
    font-weight: 600;
    font-size: 13px;
}

.hv-rating {
    color: #ffb400;
}

    .hv-rating i {
        margin-right: 2px;
    }

.hv-testimonial-story {
    color: #607080;
    line-height: 1.8;
    flex-grow: 1;
}

.hv-btn-outline {
    border: 2px solid #1bbf9c;
    color: #1bbf9c;
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 600;
}

    .hv-btn-outline:hover {
        background: #1bbf9c;
        color: #fff;
    }





.hv-blog-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(13, 45, 72, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

    .hv-blog-card:hover {
        transform: translateY(-6px);
    }

.hv-blog-image-wrap {
    width: 100%;
    height: 230px;
    background: linear-gradient(135deg, #eafaf6, #f4fbff);
    overflow: hidden;
}

.hv-blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hv-blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hv-blog-placeholder i {
        font-size: 58px;
        color: #1bbf9c;
    }

.hv-blog-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hv-blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #607080;
    font-size: 13px;
}

.hv-blog-category {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 999px;
    background: #eafaf6;
    color: #1bbf9c;
    font-weight: 700;
}

.hv-blog-title {
    font-size: 21px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 12px;
}

    .hv-blog-title a {
        color: #12344d;
        text-decoration: none;
    }

        .hv-blog-title a:hover {
            color: #1bbf9c;
        }

.hv-blog-text {
    color: #607080;
    line-height: 1.8;
    margin-bottom: 0;
}

.hv-blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1bbf9c;
    font-weight: 700;
    text-decoration: none;
}

    .hv-blog-link:hover {
        color: #12344d;
    }




.hv-blog-detail-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(13, 45, 72, 0.08);
}

.hv-blog-detail-image-wrap {
    width: 100%;
    max-height: 520px;
    overflow: hidden;
    border-radius: 28px;
    margin-bottom: 28px;
    background: linear-gradient(135deg, #eafaf6, #f4fbff);
}

.hv-blog-detail-image {
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}

.hv-blog-summary {
    padding: 22px 24px;
    border-radius: 22px;
    background: #f4fbff;
    color: #12344d;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 600;
    border-left: 5px solid #1bbf9c;
    margin-bottom: 28px;
}

[dir="rtl"] .hv-blog-summary {
    border-left: 0;
    border-right: 5px solid #1bbf9c;
}

.hv-blog-content {
    color: #607080;
    line-height: 1.9;
    font-size: 16px;
}

    .hv-blog-content h1,
    .hv-blog-content h2,
    .hv-blog-content h3,
    .hv-blog-content h4,
    .hv-blog-content h5 {
        color: #12344d;
        font-weight: 800;
        margin-top: 28px;
        margin-bottom: 14px;
    }

    .hv-blog-content p {
        margin-bottom: 18px;
    }

    .hv-blog-content img {
        max-width: 100%;
        border-radius: 20px;
        margin: 20px 0;
    }

    .hv-blog-content ul,
    .hv-blog-content ol {
        padding-left: 22px;
        margin-bottom: 20px;
    }

[dir="rtl"] .hv-blog-content ul,
[dir="rtl"] .hv-blog-content ol {
    padding-left: 0;
    padding-right: 22px;
}

.hv-blog-content blockquote {
    padding: 20px 24px;
    border-radius: 20px;
    background: #eafaf6;
    color: #12344d;
    border-left: 5px solid #1bbf9c;
}

[dir="rtl"] .hv-blog-content blockquote {
    border-left: 0;
    border-right: 5px solid #1bbf9c;
}

.hv-comments-section {
    margin-top: 55px;
}

.hv-comments-heading {
    margin-bottom: 24px;
}

    .hv-comments-heading h3 {
        margin-top: 12px;
        font-weight: 800;
        color: #12344d;
    }

.hv-comment-form-card {
    background: #ffffff;
    border-radius: 28px;
    padding: 28px;
    box-shadow: 0 18px 45px rgba(13, 45, 72, 0.08);
}

    .hv-comment-form-card h4 {
        font-weight: 800;
        color: #12344d;
        margin-bottom: 8px;
    }

    .hv-comment-form-card p {
        color: #607080;
        margin-bottom: 22px;
    }

.hv-comment-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}




/* ==========================
   BLOG COMMENTS
========================== */

.hv-comment-item {
    background: #ffffff;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 12px 35px rgba(13, 45, 72, 0.08);
    margin-bottom: 18px;
}

.hv-comment-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 15px;
}

.hv-comment-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1bbf9c;
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hv-comment-user h6 {
    margin: 0;
    font-weight: 700;
    color: #12344d;
}

.hv-comment-user span {
    font-size: 13px;
    color: #607080;
}

.hv-comment-content {
    color: #607080;
    line-height: 1.8;
    font-size: 15px;
}

.hv-comment-reply-btn {
    border: none;
    background: transparent;
    color: #1bbf9c;
    font-weight: 600;
    padding: 0;
}

    .hv-comment-reply-btn:hover {
        color: #12344d;
    }

    .hv-comment-reply-btn i {
        margin-right: 6px;
    }

.hv-reply-form {
    margin-top: 15px;
    background: #f7fbfc;
    padding: 20px;
    border-radius: 18px;
}

.hv-comment-children {
    margin-top: 20px;
    margin-left: 40px;
    padding-left: 20px;
    border-left: 3px solid rgba(27, 191, 156, 0.25);
}

[dir="rtl"] .hv-comment-children {
    margin-left: 0;
    padding-left: 0;
    margin-right: 40px;
    padding-right: 20px;
    border-left: none;
    border-right: 3px solid rgba(27, 191, 156, 0.25);
}

.hv-contact-info-card,
.hv-contact-form-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 34px;
    box-shadow: 0 18px 45px rgba(13, 45, 72, 0.08);
}

.hv-contact-info-card {
    background: linear-gradient(135deg, #12344d, #1bbf9c);
    color: #ffffff;
}

    .hv-contact-info-card .hv-section-badge {
        background: rgba(255, 255, 255, 0.18);
        color: #ffffff;
    }

    .hv-contact-info-card h2 {
        font-size: 34px;
        font-weight: 800;
        margin: 18px 0;
    }

    .hv-contact-info-card p {
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.8;
    }

.hv-contact-points {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

    .hv-contact-points div {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .hv-contact-points i {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.18);
        display: flex;
        align-items: center;
        justify-content: center;
    }

.hv-contact-form-card h3 {
    color: #12344d;
    font-weight: 800;
    margin-bottom: 8px;
}

.hv-contact-form-card p {
    color: #607080;
    margin-bottom: 24px;
}


.hv-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hv-faq-item {
    border: none;
    border-radius: 22px !important;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(13, 45, 72, 0.08);
}

    .hv-faq-item .accordion-button {
        padding: 22px 26px;
        font-weight: 800;
        color: #12344d;
        background: #ffffff;
        box-shadow: none;
    }

        .hv-faq-item .accordion-button:not(.collapsed) {
            color: #1bbf9c;
            background: #f4fbff;
        }

    .hv-faq-item .accordion-body {
        padding: 0 26px 24px;
        color: #607080;
        line-height: 1.8;
    }

    .hv-faq-item .accordion-button:focus {
        box-shadow: none;
    }




.hv-cms-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(13, 45, 72, 0.08);
}

/*.hv-cms-image-wrap {
    width: 100%;
    max-height: 480px;
    overflow: hidden;
    border-radius: 28px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #eafaf6, #f4fbff);
}*/

/*.hv-cms-image {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}*/

.hv-cms-content {
    color: #607080;
    line-height: 1.9;
    font-size: 16px;
}

    .hv-cms-content h1,
    .hv-cms-content h2,
    .hv-cms-content h3,
    .hv-cms-content h4,
    .hv-cms-content h5,
    .hv-cms-content h6 {
        color: #12344d;
        font-weight: 800;
        margin-top: 28px;
        margin-bottom: 14px;
    }

    .hv-cms-content p {
        margin-bottom: 18px;
    }

    .hv-cms-content img {
        max-width: 100%;
        border-radius: 20px;
        margin: 20px 0;
    }

    .hv-cms-content ul,
    .hv-cms-content ol {
        padding-left: 22px;
        margin-bottom: 20px;
    }

[dir="rtl"] .hv-cms-content ul,
[dir="rtl"] .hv-cms-content ol {
    padding-left: 0;
    padding-right: 22px;
}

.hv-cms-content blockquote {
    padding: 20px 24px;
    border-radius: 20px;
    background: #eafaf6;
    color: #12344d;
    border-left: 5px solid #1bbf9c;
}

[dir="rtl"] .hv-cms-content blockquote {
    border-left: 0;
    border-right: 5px solid #1bbf9c;
}



.hv-service-content img,
.hv-cms-content img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    margin: 25px auto;
    border-radius: 22px;
    box-shadow: 0 14px 38px rgba(13, 45, 72, 0.12);
}

.hv-service-content,
.hv-cms-content {
    background: #ffffff;
    padding: 34px;
    border-radius: 30px;
    box-shadow: 0 18px 45px rgba(13, 45, 72, 0.08);
}

.hv-service-actions {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}


.hv-service-hero-icon {
    width: 82px;
    height: 82px;
    border-radius: 26px;
    background: linear-gradient(135deg, #1bbf9c, #12344d);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 34px;
}

.hv-service-detail-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 32px;
    box-shadow: 0 18px 45px rgba(13, 45, 72, 0.08);
}

.hv-service-image-wrap {
    width: 100%;
    max-height: 520px;
    overflow: hidden;
    border-radius: 28px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #eafaf6, #f4fbff);
    text-align: center;
}

.hv-service-image {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.hv-service-content {
    color: #607080;
    line-height: 1.9;
    font-size: 16px;
}

    .hv-service-content h1,
    .hv-service-content h2,
    .hv-service-content h3,
    .hv-service-content h4,
    .hv-service-content h5,
    .hv-service-content h6 {
        color: #12344d;
        font-weight: 800;
        margin-top: 28px;
        margin-bottom: 14px;
    }

    .hv-service-content p {
        margin-bottom: 18px;
    }

    .hv-service-content img {
        display: block;
        max-width: 100%;
        height: auto;
        max-height: 520px;
        object-fit: contain;
        margin: 25px auto;
        border-radius: 22px;
        box-shadow: 0 14px 38px rgba(13, 45, 72, 0.12);
    }

    .hv-service-content ul,
    .hv-service-content ol {
        padding-left: 22px;
        margin-bottom: 20px;
    }

[dir="rtl"] .hv-service-content ul,
[dir="rtl"] .hv-service-content ol {
    padding-left: 0;
    padding-right: 22px;
}

.hv-service-content blockquote {
    padding: 20px 24px;
    border-radius: 20px;
    background: #eafaf6;
    color: #12344d;
    border-left: 5px solid #1bbf9c;
}

[dir="rtl"] .hv-service-content blockquote {
    border-left: 0;
    border-right: 5px solid #1bbf9c;
}

.hv-service-actions {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .hv-service-detail-card {
        padding: 22px;
        border-radius: 24px;
    }

    .hv-service-actions .btn {
        width: 100%;
    }
}




.hv-service-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(13, 45, 72, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

    .hv-service-card:hover {
        transform: translateY(-6px);
    }

.hv-service-card-image-wrap {
    width: 100%;
    height: 225px;
    background: linear-gradient(135deg, #eafaf6, #f4fbff);
    overflow: hidden;
}

.hv-service-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hv-service-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .hv-service-card-placeholder i {
        font-size: 58px;
        color: #1bbf9c;
    }

.hv-service-card-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.hv-service-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: linear-gradient(135deg, #1bbf9c, #12344d);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 24px;
}

.hv-service-card-body h3 {
    font-size: 21px;
    font-weight: 800;
    color: #12344d;
    margin-bottom: 12px;
}

.hv-service-card-body p {
    color: #607080;
    line-height: 1.8;
    margin-bottom: 0;
}


.hv-footer {
    background: #0f2d46;
    color: #ffffff;
    padding-top: 70px;
    padding-bottom: 25px;
    margin-top: 80px;
}

.hv-footer-brand h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 18px;
}

.hv-footer-brand p {
    color: rgba(255,255,255,.75);
    line-height: 1.9;
}

.hv-footer-title {
    font-weight: 700;
    margin-bottom: 20px;
}

.hv-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .hv-footer-links li {
        margin-bottom: 12px;
    }

    .hv-footer-links a {
        color: rgba(255,255,255,.75);
        text-decoration: none;
        transition: .3s;
    }

        .hv-footer-links a:hover {
            color: #1bbf9c;
        }

.hv-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

    .hv-footer-contact div {
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }

    .hv-footer-contact i {
        color: #1bbf9c;
        margin-top: 4px;
    }

.hv-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

    .hv-footer-social a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        background: rgba(255,255,255,.1);
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: .3s;
    }

        .hv-footer-social a:hover {
            background: #1bbf9c;
        }

.hv-footer-divider {
    margin: 40px 0 20px;
    border-color: rgba(255,255,255,.12);
}

.hv-footer-bottom {
    text-align: center;
    color: rgba(255,255,255,.65);
}






.hv-site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #ffffff;
    transition: all .3s ease;
}

    .hv-site-header.scrolled {
        box-shadow: 0 12px 35px rgba(13, 45, 72, 0.12);
    }

.hv-top-bar {
    background: #12344d;
    color: #ffffff;
    padding: 9px 0;
    font-size: 14px;
}

.hv-top-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

    .hv-top-contact a {
        color: rgba(255,255,255,.88);
        text-decoration: none;
    }

    .hv-top-contact i {
        color: #1bbf9c;
        margin-right: 6px;
    }

.hv-top-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hv-lang-btn,
.hv-theme-btn {
    min-width: 64px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.08);
    color: #ffffff;
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.hv-theme-btn {
    min-width: 54px;
    padding: 5px 10px;
}

    .hv-lang-btn:hover,
    .hv-theme-btn:hover {
        background: #1bbf9c;
        color: #ffffff;
    }

.theme-icon-light,
.theme-icon-dark {
    font-size: 15px;
    line-height: 1;
}


.hv-main-navbar {
    background: #ffffff;
    padding: 14px 0;
}

.hv-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.hv-brand-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: linear-gradient(135deg, #1bbf9c, #12344d);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 22px;
}

.hv-brand-text {
    font-size: 24px;
    font-weight: 900;
    color: #12344d;
}

.hv-main-navbar .navbar-nav {
    gap: 6px;
}

.hv-main-navbar .nav-link {
    color: #12344d;
    font-weight: 600;
    padding: 10px 13px !important;
    border-radius: 999px;
}

    .hv-main-navbar .nav-link:hover,
    .hv-main-navbar .nav-link.active {
        background: #eafaf6;
        color: #1bbf9c;
    }

.hv-navbar-toggler {
    border: none;
    box-shadow: none !important;
}

@media (max-width: 991px) {
    .hv-main-navbar .navbar-collapse {
        margin-top: 14px;
        background: #ffffff;
        border-radius: 22px;
        padding: 18px;
        box-shadow: 0 18px 45px rgba(13, 45, 72, 0.12);
    }

    .hv-main-navbar .navbar-nav {
        gap: 4px;
    }

    .hv-main-navbar .nav-link {
        padding: 12px 14px !important;
    }
}

@media (max-width: 575px) {
    .hv-top-contact {
        gap: 8px;
        font-size: 12px;
    }

    .hv-brand-text {
        font-size: 21px;
    }

    .hv-brand-icon {
        width: 40px;
        height: 40px;
    }
}

[dir="rtl"] .hv-top-contact i {
    margin-right: 0;
    margin-left: 6px;
}






.quick-quote-widget {
    user-select: none;
}

.quick-quote-body {
    user-select: text;
}

.quick-quote-widget.dragging {
    opacity: 0.92;
    transition: none !important;
}

.quick-quote-widget input,
.quick-quote-widget textarea,
.quick-quote-widget button {
    user-select: auto;
}


/* =========================================================
   HEALTHOVIA MOBILE RESPONSIVE FINAL POLISH
   Put this at the bottom of site.css / included in polished file
   ========================================================= */

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

/* Better touch targets */
button,
.btn,
.nav-link,
.hv-lang-btn,
.hv-theme-btn,
.quick-quote-open-btn {
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 991.98px) {

    .container,
    .container-fluid {
        max-width: 100%;
    }

    /* Header */
    .hv-site-header {
        position: sticky;
        top: 0;
        z-index: 1030;
    }

    .hv-top-bar {
        padding: 8px 0;
    }

        .hv-top-bar .container,
        .top-contact-bar .container {
            gap: 8px;
        }

    .hv-top-contact,
    .top-contact-left {
        gap: 10px;
        font-size: 12px;
        line-height: 1.5;
    }

    .hv-top-actions {
        gap: 6px;
    }

    .hv-lang-btn,
    .hv-theme-btn {
        min-width: auto;
        height: 32px;
        padding: 5px 11px;
        font-size: 12px;
    }

    .hv-main-navbar,
    .main-navbar,
    .navbar {
        padding: 12px 0;
    }

    .hv-brand-text,
    .navbar-brand {
        font-size: 21px;
        line-height: 1.1;
    }

    .hv-brand-icon,
    .brand-logo {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 13px;
        font-size: 21px;
    }

    .navbar-toggler,
    .hv-navbar-toggler {
        border: 0 !important;
        box-shadow: none !important;
        outline: none !important;
        padding: 6px 8px;
    }

    .navbar-collapse,
    .hv-main-navbar .navbar-collapse {
        background: #ffffff;
        margin-top: 12px;
        padding: 14px;
        border-radius: 18px;
        box-shadow: 0 16px 38px rgba(13, 45, 72, 0.14);
    }

    .navbar-nav,
    .hv-main-navbar .navbar-nav {
        gap: 2px !important;
    }

        .navbar-nav .nav-link,
        .hv-main-navbar .nav-link,
        .main-navbar .nav-link {
            display: block;
            padding: 11px 12px !important;
            font-size: 15px;
            border-radius: 12px;
        }

    .dropdown-menu {
        border: 0;
        box-shadow: none;
        padding: 4px 0 4px 14px;
        margin: 0;
        background: transparent;
    }

    html[dir="rtl"] .navbar-nav,
    html[dir="rtl"] .dropdown-menu {
        text-align: right;
    }

    html[dir="rtl"] .dropdown-menu {
        padding-left: 0;
        padding-right: 14px;
    }

    /* Sections */
    .hv-section,
    .home-section {
        padding: 48px 0;
    }

    .hv-home-hero {
        padding: 42px 0;
    }

    .hv-section-heading {
        margin-bottom: 26px;
        text-align: center;
    }

        .hv-section-heading h2,
        .section-title,
        .hv-section-title {
            font-size: 28px !important;
            line-height: 1.25;
        }

    .hv-hero-title {
        font-size: 34px !important;
        line-height: 1.2;
    }

    .hv-hero-text,
    .section-subtitle,
    .hv-section-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    /* Carousel / home banner */
    .healthovia-carousel,
    .healthovia-carousel .carousel-item,
    .healthovia-carousel .carousel-caption-custom {
        min-height: 430px !important;
    }

        .healthovia-carousel .carousel-caption-custom {
            align-items: center;
            padding: 34px 0 54px;
        }

        .healthovia-carousel h1 {
            font-size: 2rem !important;
            line-height: 1.2;
            word-break: normal;
        }

        .healthovia-carousel p {
            font-size: 0.98rem;
            line-height: 1.65;
        }

        .healthovia-carousel .hv-badge {
            font-size: 14px;
        }

        .healthovia-carousel .hv-hero-image-card {
            margin-top: 24px;
            border-width: 8px;
            border-radius: 22px;
        }

            .healthovia-carousel .hv-hero-image-card img,
            .hv-hero-image-card img {
                height: 280px;
                border-radius: 16px;
            }

        .healthovia-carousel .hv-hero-mini-card,
        .hv-hero-mini-card {
            left: 18px;
            bottom: 18px;
            padding: 10px 14px;
            font-size: 13px;
            border-radius: 13px;
        }

    html[dir="rtl"] .healthovia-carousel .hv-hero-mini-card,
    html[dir="rtl"] .hv-hero-mini-card {
        left: auto;
        right: 18px;
    }

    .healthovia-carousel .carousel-control-prev,
    .healthovia-carousel .carousel-control-next {
        width: 10%;
    }

    /* Inner page hero */
    .hv-page-hero {
        padding: 54px 0;
        text-align: center;
    }

        .hv-page-hero h1 {
            font-size: 32px !important;
            line-height: 1.25;
        }

        .hv-page-hero p {
            font-size: 15px;
        }

    /* Cards and images */
    .card,
    .hv-content-card,
    .hv-testimonial-card,
    .hv-feature-box,
    .hv-process-card,
    .healthovia-card,
    .hv-blog-card,
    .hv-service-card,
    .hv-detail-card,
    .hv-inquiry-card,
    .hv-contact-info-card,
    .hv-contact-form-card,
    .hv-cms-card,
    .hv-service-detail-card,
    .hv-blog-detail-card {
        border-radius: 20px !important;
        margin-bottom: 20px;
    }

    .hv-card-body,
    .hv-blog-body,
    .hv-service-card-body,
    .hv-contact-info-card,
    .hv-contact-form-card,
    .hv-cms-card,
    .hv-service-detail-card,
    .hv-blog-detail-card,
    .hv-detail-card-header,
    .hv-detail-content,
    .hv-inquiry-card-body {
        padding: 22px !important;
    }

    .hv-card-img,
    .healthovia-card img,
    .hv-blog-image-wrap,
    .hv-service-card-image-wrap {
        height: 210px;
    }

    .hv-doctor-img,
    .hv-doctor-image-wrap,
    .hv-doctor-placeholder {
        height: 240px;
        min-height: 240px;
    }

    .hv-detail-hero-image img,
    .hv-detail-main-image img,
    .hv-doctor-detail-image,
    .hv-doctor-detail-image-wrap {
        height: auto;
        min-height: 250px;
    }

    .hv-detail-hero-logo {
        min-height: 210px;
        padding: 28px;
    }

    .hv-logo-wrapper {
        height: 190px;
        padding: 24px;
    }

    .hv-blog-detail-image-wrap,
    .hv-service-image-wrap {
        max-height: none;
    }

    .hv-blog-detail-image,
    .hv-service-image {
        max-height: 330px;
        object-fit: contain;
    }

    .hv-blog-summary {
        font-size: 16px;
        padding: 18px;
    }

    .hv-comment-children {
        margin-left: 16px;
        padding-left: 14px;
    }

    html[dir="rtl"] .hv-comment-children {
        margin-left: 0;
        padding-left: 0;
        margin-right: 16px;
        padding-right: 14px;
    }

    /* Contact / inquiry forms */
    .form-control,
    .form-select,
    textarea,
    .quick-quote-form .form-control,
    .quick-quote-form .form-select,
    .hv-inquiry-card .form-control,
    .hv-inquiry-card .form-select {
        width: 100%;
        font-size: 14px;
        min-height: 44px;
    }

        textarea.form-control,
        textarea {
            min-height: 110px;
        }

    .hv-contact-info-card h2 {
        font-size: 30px;
    }

    .hv-contact-points div,
    .hv-footer-contact div {
        align-items: flex-start;
    }

    /* Footer */
    .hv-footer,
    footer {
        margin-top: 50px;
        padding-top: 48px;
        padding-bottom: 96px !important;
    }

    .hv-footer-brand h3 {
        font-size: 30px;
    }

    .hv-footer-title {
        margin-top: 22px;
        margin-bottom: 14px;
    }

    .hv-footer-links li {
        margin-bottom: 10px;
    }

    .hv-footer-divider {
        margin: 28px 0 18px;
    }

    /* Quick Quote: prevent content overlap */
    .quick-quote-open-btn,
    #quickQuoteOpenBtn,
    .quick-quote-btn {
        position: fixed !important;
        right: 14px !important;
        left: auto !important;
        bottom: 18px !important;
        z-index: 1049 !important;
        transform: scale(0.86);
        transform-origin: right bottom;
        white-space: nowrap;
        padding: 12px 20px;
        box-shadow: 0 12px 28px rgba(13, 45, 72, 0.22);
    }

    html[dir="rtl"] .quick-quote-open-btn,
    html[dir="rtl"] #quickQuoteOpenBtn,
    html[dir="rtl"] .quick-quote-btn {
        right: auto !important;
        left: 14px !important;
        transform-origin: left bottom;
    }

    .quick-quote-widget,
    #quickQuoteWidget {
        position: fixed !important;
        width: calc(100% - 24px) !important;
        max-width: none !important;
        right: 12px !important;
        left: 12px !important;
        bottom: 12px !important;
        max-height: 82vh !important;
        overflow: hidden !important;
        border-radius: 20px !important;
        z-index: 1050 !important;
    }

        .quick-quote-widget.minimized {
            width: 260px !important;
            left: auto !important;
            right: 14px !important;
        }

    html[dir="rtl"] .quick-quote-widget.minimized {
        right: auto !important;
        left: 14px !important;
    }

    .quick-quote-body {
        max-height: calc(82vh - 60px) !important;
        overflow-y: auto !important;
        padding: 14px !important;
    }
}

@media (max-width: 575.98px) {

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hv-top-bar .container,
    .top-contact-bar .container {
        flex-direction: column;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
    }

    .hv-top-contact,
    .top-contact-left {
        justify-content: center;
        text-align: center;
        gap: 6px 12px;
    }

        .top-contact-left span {
            display: inline-block;
            margin: 0 !important;
        }

    .hv-main-navbar .container,
    .main-navbar .container,
    .navbar .container {
        gap: 8px;
    }

    .hv-brand-text,
    .navbar-brand {
        font-size: 20px;
    }

    .hv-brand-icon,
    .brand-logo {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: 20px;
    }

    .healthovia-carousel,
    .healthovia-carousel .carousel-item,
    .healthovia-carousel .carousel-caption-custom {
        min-height: 390px !important;
    }

        .healthovia-carousel .carousel-caption-custom {
            padding: 28px 0 48px;
        }

        .healthovia-carousel h1 {
            font-size: 1.72rem !important;
        }

        .healthovia-carousel p {
            font-size: 0.92rem;
        }

        .healthovia-carousel .hv-badge {
            font-size: 13px;
        }

    .hv-hero-title {
        font-size: 29px !important;
    }

    .hv-section-heading h2,
    .section-title,
    .hv-section-title {
        font-size: 24px !important;
    }

    .hv-page-hero h1 {
        font-size: 28px !important;
    }

    .hv-final-cta h2 {
        font-size: 28px;
    }

    .hv-final-cta {
        padding: 44px 0;
        text-align: center;
    }

    .hv-card-body,
    .hv-blog-body,
    .hv-service-card-body,
    .hv-contact-info-card,
    .hv-contact-form-card,
    .hv-cms-card,
    .hv-service-detail-card,
    .hv-blog-detail-card,
    .hv-detail-card-header,
    .hv-detail-content,
    .hv-inquiry-card-body {
        padding: 18px !important;
    }

    .hv-card-img,
    .healthovia-card img,
    .hv-blog-image-wrap,
    .hv-service-card-image-wrap {
        height: 200px;
    }

    .hv-doctor-img,
    .hv-doctor-image-wrap,
    .hv-doctor-placeholder {
        height: 230px;
        min-height: 230px;
    }

    .hv-treatment-tags a,
    .hv-btn-primary,
    .hv-btn-whatsapp,
    .hv-btn-danger,
    .hv-btn-light,
    .btn {
        font-size: 14px;
    }

    .hv-service-actions .btn,
    .hv-final-cta .btn {
        width: 100%;
    }

    .hv-footer,
    footer {
        text-align: left;
        padding-bottom: 100px !important;
    }

    html[dir="rtl"] .hv-footer,
    html[dir="rtl"] footer {
        text-align: right;
    }

    .hv-footer-social {
        justify-content: flex-start;
    }

    html[dir="rtl"] .hv-footer-social {
        justify-content: flex-end;
    }

    .quick-quote-open-btn,
    #quickQuoteOpenBtn,
    .quick-quote-btn {
        right: 12px !important;
        bottom: 16px !important;
        transform: scale(0.82);
        padding: 11px 18px;
    }

    html[dir="rtl"] .quick-quote-open-btn,
    html[dir="rtl"] #quickQuoteOpenBtn,
    html[dir="rtl"] .quick-quote-btn {
        right: auto !important;
        left: 12px !important;
    }

    .quick-quote-widget.minimized {
        width: 238px !important;
    }
}

@media (max-width: 380px) {
    .hv-brand-text,
    .navbar-brand {
        font-size: 18px;
    }

    .hv-brand-icon,
    .brand-logo {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .healthovia-carousel h1 {
        font-size: 1.58rem !important;
    }

    .quick-quote-open-btn,
    #quickQuoteOpenBtn,
    .quick-quote-btn {
        transform: scale(0.78);
        right: 8px !important;
    }

    html[dir="rtl"] .quick-quote-open-btn,
    html[dir="rtl"] #quickQuoteOpenBtn,
    html[dir="rtl"] .quick-quote-btn {
        right: auto !important;
        left: 8px !important;
    }
}



/* MOBILE MENU FIX */
@media (max-width: 991px) {

    .hv-main-navbar .navbar-collapse {
        width: 100%;
        display: none;
        margin-top: 14px;
        background: #ffffff;
        border-radius: 20px;
        padding: 16px;
        box-shadow: 0 18px 45px rgba(13, 45, 72, 0.14);
    }

        .hv-main-navbar .navbar-collapse.show {
            display: block !important;
        }

    .hv-public-menu {
        width: 100%;
        margin: 0 !important;
        padding: 0;
    }

        .hv-public-menu .nav-item {
            width: 100%;
        }

        .hv-public-menu .nav-link {
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 12px 14px !important;
            border-radius: 12px;
        }

        .hv-public-menu .dropdown-menu {
            position: static !important;
            transform: none !important;
            width: 100%;
            border: 0;
            box-shadow: none;
            background: #f7fbfc;
            padding: 8px;
            margin-top: 4px;
            border-radius: 14px;
        }

        .hv-public-menu .dropdown-item {
            border-radius: 10px;
            padding: 10px 12px;
            white-space: normal;
        }

    .hv-main-navbar .btn {
        width: 100%;
        margin-top: 10px;
    }

    html[dir="rtl"] .hv-public-menu .nav-link {
        text-align: right;
    }
}




/* MOBILE HAMBURGER VISIBILITY FIX */
.hv-navbar-toggler {
    border: 1px solid rgba(18, 52, 77, 0.25);
    border-radius: 12px;
    padding: 8px 10px;
    background: #ffffff;
    color: #12344d;
    display: none;
    align-items: center;
    gap: 6px;
}

    .hv-navbar-toggler .navbar-toggler-icon {
        display: inline-block;
    }

.hv-menu-text {
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 991px) {
    .hv-navbar-toggler {
        display: inline-flex !important;
    }

    .hv-main-navbar .navbar-collapse {
        width: 100%;
        flex-basis: 100%;
        margin-top: 14px;
        background: #ffffff;
        border-radius: 20px;
        padding: 16px;
        box-shadow: 0 18px 45px rgba(13, 45, 72, 0.14);
    }

    .hv-public-menu,
    .hv-main-navbar .navbar-nav {
        width: 100%;
        margin: 0 !important;
        padding: 0;
    }

    .hv-main-navbar .nav-item {
        width: 100%;
    }

    .hv-main-navbar .nav-link {
        width: 100%;
        padding: 12px 14px !important;
        border-radius: 12px;
    }

    .hv-main-navbar .dropdown-menu {
        position: static !important;
        transform: none !important;
        width: 100%;
        border: 0;
        box-shadow: none;
        background: #f7fbfc;
        padding: 8px;
        margin-top: 4px;
        border-radius: 14px;
    }

    .hv-main-navbar .btn {
        width: 100%;
        margin-top: 10px;
    }
}


/* =========================================================
   HEALTHOVIA FINAL MOBILE MENU + RESPONSIVE OVERRIDES
   Keep this block at the VERY END of site.css
   ========================================================= */

/* Make Bootstrap hamburger visible even if navbar-light class is missed */
.hv-navbar-toggler {
    border: 1px solid rgba(18, 52, 77, 0.22) !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: #12344d !important;
    padding: 8px 10px !important;
    align-items: center;
    gap: 7px;
    box-shadow: none !important;
}

    .hv-navbar-toggler .navbar-toggler-icon {
        width: 22px;
        height: 16px;
        background-image: none !important;
        position: relative;
        display: inline-block;
    }

        .hv-navbar-toggler .navbar-toggler-icon::before,
        .hv-navbar-toggler .navbar-toggler-icon::after,
        .hv-navbar-toggler .navbar-toggler-icon {
            border-top: 2px solid #12344d;
        }

            .hv-navbar-toggler .navbar-toggler-icon::before,
            .hv-navbar-toggler .navbar-toggler-icon::after {
                content: "";
                position: absolute;
                left: 0;
                width: 22px;
            }

            .hv-navbar-toggler .navbar-toggler-icon::before {
                top: 5px;
            }

            .hv-navbar-toggler .navbar-toggler-icon::after {
                top: 12px;
            }

.hv-menu-text {
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
}

/* Desktop: keep toggler hidden */
@media (min-width: 992px) {
    .hv-navbar-toggler {
        display: none !important;
    }

    .hv-public-menu {
        margin-left: auto;
        margin-right: auto;
        align-items: center;
    }
}

/* Mobile menu */
@media (max-width: 991.98px) {
    .hv-main-navbar .container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .hv-navbar-toggler {
        display: inline-flex !important;
        margin-left: auto;
    }

    html[dir="rtl"] .hv-navbar-toggler {
        margin-left: 0;
        margin-right: auto;
    }

    .hv-main-navbar .navbar-collapse {
        flex-basis: 100%;
        width: 100%;
        margin-top: 14px;
        background: #ffffff;
        border-radius: 20px;
        padding: 16px;
        box-shadow: 0 18px 45px rgba(13, 45, 72, 0.14);
    }

    .hv-public-menu,
    .hv-main-navbar .navbar-nav {
        width: 100%;
        margin: 0 !important;
        padding: 0 !important;
        gap: 4px !important;
    }

        .hv-public-menu .nav-item,
        .hv-main-navbar .nav-item {
            width: 100%;
        }

        .hv-public-menu .nav-link,
        .hv-main-navbar .nav-link {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 12px 14px !important;
            border-radius: 12px;
            color: #12344d !important;
            font-weight: 700;
        }

            .hv-public-menu .nav-link:hover,
            .hv-public-menu .nav-link:focus,
            .hv-main-navbar .nav-link:hover,
            .hv-main-navbar .nav-link:focus {
                background: #eafaf6;
                color: #1bbf9c !important;
            }

        .hv-public-menu .dropdown-menu,
        .hv-main-navbar .dropdown-menu {
            position: static !important;
            transform: none !important;
            width: 100%;
            border: 0 !important;
            box-shadow: none !important;
            background: #f7fbfc;
            padding: 8px;
            margin-top: 4px;
            border-radius: 14px;
        }

        .hv-public-menu .dropdown-item,
        .hv-main-navbar .dropdown-item {
            white-space: normal;
            border-radius: 10px;
            padding: 10px 12px;
            color: #12344d;
            font-weight: 600;
        }

            .hv-public-menu .dropdown-item:hover,
            .hv-main-navbar .dropdown-item:hover {
                background: #eafaf6;
                color: #1bbf9c;
            }

    .hv-main-navbar .ms-lg-auto {
        width: 100%;
    }

        .hv-main-navbar .ms-lg-auto .btn,
        .hv-main-navbar .btn {
            width: 100%;
            margin-top: 10px;
        }

    html[dir="rtl"] .hv-public-menu .nav-link,
    html[dir="rtl"] .hv-main-navbar .nav-link {
        text-align: right;
    }
}

/* Mobile Quick Quote: avoid covering content */
@media (max-width: 575.98px) {
    .quick-quote-open-btn,
    #quickQuoteOpenBtn {
        right: 12px !important;
        bottom: 18px !important;
        transform: scale(0.84);
        transform-origin: right bottom;
    }

    html[dir="rtl"] .quick-quote-open-btn,
    html[dir="rtl"] #quickQuoteOpenBtn {
        right: auto !important;
        left: 12px !important;
        transform-origin: left bottom;
    }

    .quick-quote-widget,
    #quickQuoteWidget {
        width: calc(100% - 20px) !important;
        right: 10px !important;
        left: 10px !important;
        bottom: 10px !important;
        max-height: 84vh !important;
        border-radius: 18px !important;
    }

    .quick-quote-body {
        max-height: calc(84vh - 70px) !important;
        overflow-y: auto !important;
    }

    .hv-footer,
    footer {
        padding-bottom: 105px !important;
    }
}





/* =========================================================
   HEALTHOVIA HERO BANNER IMAGE DISPLAY FIX
   ========================================================= */

.healthovia-carousel .hv-hero-image-card {
    width: 100%;
    background: #ffffff;
    border: 10px solid #ffffff;
    border-radius: 28px;
    padding: 0;
    overflow: hidden;
}

    .healthovia-carousel .hv-hero-image-card img {
        width: 100%;
        height: 430px;
        object-fit: cover;
        object-position: center center;
        display: block;
        border-radius: 18px;
    }

@media (max-width: 991px) {
    .healthovia-carousel .hv-hero-image-card {
        border-width: 7px;
        border-radius: 22px;
        margin-top: 25px;
    }

        .healthovia-carousel .hv-hero-image-card img {
            height: 280px;
            object-fit: cover;
            object-position: center center;
            border-radius: 16px;
        }
}

@media (max-width: 575px) {
    .healthovia-carousel .hv-hero-image-card img {
        height: 230px;
    }

    .hv-hero-mini-card {
        display: none;
    }
}



/* =========================================================
   HEALTHOVIA DYNAMIC SERVICES DROPDOWN
   Safe add-on: does not disturb existing header/mobile design
   ========================================================= */

.hv-services-dropdown {
    min-width: 260px;
    border: 0;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 18px 45px rgba(13, 45, 72, 0.14);
    background: #ffffff;
}

    .hv-services-dropdown .dropdown-item {
        border-radius: 10px;
        padding: 10px 14px;
        color: #12344d;
        font-weight: 600;
        white-space: normal;
        line-height: 1.4;
    }

        .hv-services-dropdown .dropdown-item:hover,
        .hv-services-dropdown .dropdown-item:focus {
            background: #eafaf6;
            color: #1bbf9c;
        }

html[dir="rtl"] .hv-services-dropdown {
    text-align: right;
}

/* Mobile Services Dropdown */
@media (max-width: 991.98px) {
    .hv-services-dropdown {
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        padding: 4px 0 4px 14px;
        margin: 0;
        background: transparent;
    }

        .hv-services-dropdown .dropdown-item {
            padding: 10px 12px;
            border-radius: 10px;
            font-size: 14px;
        }

    html[dir="rtl"] .hv-services-dropdown {
        padding-left: 0;
        padding-right: 14px;
    }
}

/* Dark Mode Services Dropdown */
.dark-mode .hv-services-dropdown {
    background: #111827;
}

    .dark-mode .hv-services-dropdown .dropdown-item {
        color: #e5e7eb;
    }

        .dark-mode .hv-services-dropdown .dropdown-item:hover,
        .dark-mode .hv-services-dropdown .dropdown-item:focus {
            background: rgba(27, 191, 156, 0.14);
            color: #1bbf9c;
        }

@media (max-width: 991.98px) {
    .dark-mode .hv-services-dropdown {
        background: transparent;
    }
}


.hv-ltr-text {
    direction: ltr;
    unicode-bidi: embed;
    display: inline-block;
}


.hv-testimonial-img,
.hv-testimonial-avatar {
    width: 92px !important;
    height: 92px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 5px solid #eefafa;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.hv-testimonial-card {
    text-align: center;
    padding: 28px;
}

.hv-testimonial-story {
    color: #334155;
    line-height: 1.8;
    font-size: 0.95rem;
}


.hv-testimonial-full-story {
    color: #334155;
    line-height: 1.9;
    font-size: 1rem;
}

    .hv-testimonial-full-story p {
        margin-bottom: 1rem;
    }



.hv-testimonial-avatar,
.hv-testimonial-img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #eefafa;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}



.hv-testimonial-modal .modal-dialog {
    max-width: 520px;
}

.hv-testimonial-modal .modal-content {
    border: 0;
    border-radius: 22px;
    overflow: hidden;
}

.hv-testimonial-modal .modal-header {
    padding: 18px 22px;
}

.hv-testimonial-modal .modal-body {
    padding: 22px;
    max-height: 65vh;
}

.hv-testimonial-full-story {
    color: #334155;
    line-height: 1.8;
    font-size: 0.95rem;
}

    .hv-testimonial-full-story p {
        margin-bottom: 1rem;
    }

.hv-testimonial-card {
    padding: 24px;
}

.hv-testimonial-story {
    font-size: 0.92rem;
    line-height: 1.7;
}











.hv-home-testimonials-slider {
    overflow-x: auto;
    overflow-y: hidden;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
    touch-action: pan-y;
    padding: 8px 0 12px;
}

    .hv-home-testimonials-slider::-webkit-scrollbar {
        display: none;
    }

.hv-home-testimonials-track {
    display: flex;
    gap: 22px;
    width: max-content;
}

.hv-home-testimonial-slide {
    width: 300px;
    flex: 0 0 300px;
}

.hv-home-testimonial-card {
    min-height: 395px;
    padding: 20px !important;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
}

.hv-home-testimonial-img {
    width: 74px !important;
    height: 74px !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 50% !important;
    border: 4px solid #eefafa;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.12);
    display: block;
    margin: 0 auto 10px;
}

.hv-home-testimonial-card h5 {
    font-size: 1rem;
    line-height: 1.3;
    margin: 0 0 4px;
}

.hv-home-testimonial-card .hv-muted,
.hv-home-testimonial-card p.hv-muted {
    margin-bottom: 10px !important;
    line-height: 1.3;
}

.hv-home-testimonial-treatment {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.3;
    padding: 7px 14px;
    margin-top: 0;
}

.hv-home-testimonial-card .hv-stars {
    margin-top: 12px !important;
    min-height: 26px;
}

.hv-home-testimonial-story {
    min-height: 72px;
    color: #334155;
    font-size: 0.9rem;
    line-height: 1.55;
    margin: 10px 0 0;
}

.hv-home-testimonial-btn {
    width: 100%;
    margin-top: auto;
    border-radius: 14px;
    padding: 10px 16px;
    border: 2px solid #0f766e;
    color: #0f766e;
    background: #ffffff;
    font-weight: 800;
}

    .hv-home-testimonial-btn:hover {
        background: #0f766e;
        color: #ffffff;
    }

@media (max-width: 767px) {
    .hv-home-testimonial-slide {
        width: 260px;
        flex-basis: 260px;
    }

    .hv-home-testimonial-card {
        min-height: 380px;
        padding: 18px !important;
    }

    .hv-home-testimonial-img {
        width: 68px !important;
        height: 68px !important;
    }

    .hv-home-testimonial-story {
        min-height: 68px;
        font-size: 0.86rem;
    }
}
/* =========================================================
   TESTIMONIALS INDEX PAGE ONLY - FINAL COMPACT POLISH
   Scope: Views/Testimonials/Index.cshtml only
   Uses page-specific classes from Testimonials Index view.
   Does NOT affect Home testimonial swiper.
   ========================================================= */

.hv-testimonial-list-card {
    min-height: 430px !important;
    max-height: none !important;
    padding: 20px !important;
    border-radius: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
}

    .hv-testimonial-list-img,
    .hv-testimonial-list-card .hv-testimonial-avatar {
        width: 72px !important;
        height: 72px !important;
        object-fit: cover !important;
        object-position: center !important;
        border-radius: 50% !important;
        border: 4px solid #eefafa !important;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12) !important;
        display: block !important;
        margin: 0 auto 10px !important;
    }

    .hv-testimonial-list-card h5 {
        min-height: auto !important;
        font-size: 1rem !important;
        line-height: 1.3 !important;
        margin: 0 0 4px !important;
        color: var(--hv-dark) !important;
        font-weight: 800 !important;
    }

    .hv-testimonial-list-card .hv-muted,
    .hv-testimonial-list-card p.hv-muted {
        margin: 0 0 10px !important;
        line-height: 1.3 !important;
        font-size: 0.95rem !important;
    }

.hv-testimonial-list-treatment {
    min-height: 38px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.3 !important;
    padding: 7px 14px !important;
    margin: 0 !important;
    border-radius: 999px !important;
    font-size: 0.88rem !important;
}

.hv-testimonial-list-card .hv-rating {
    min-height: 26px !important;
    margin-top: 12px !important;
    margin-bottom: 12px !important;
}

    .hv-testimonial-list-card .hv-rating i {
        margin-right: 2px !important;
    }

.hv-testimonial-list-card .hv-testimonial-story {
    min-height: 72px !important;
    color: #334155 !important;
    font-size: 0.9rem !important;
    line-height: 1.55 !important;
    margin: 0 0 12px !important;
    flex: 1 1 auto !important;
}

.hv-testimonial-list-btn {
    width: 100% !important;
    margin-top: auto !important;
    border-radius: 14px !important;
    padding: 10px 16px !important;
    border: 2px solid #0f766e !important;
    color: #0f766e !important;
    background: #ffffff !important;
    font-weight: 800 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 46px !important;
}

    .hv-testimonial-list-btn:hover,
    .hv-testimonial-list-btn:focus {
        background: #0f766e !important;
        color: #ffffff !important;
    }

.hv-testimonial-modal .modal-dialog {
    max-width: 520px !important;
}

.hv-testimonial-modal .modal-content {
    border: 0 !important;
    border-radius: 22px !important;
    overflow: hidden !important;
}

.hv-testimonial-modal .modal-header {
    padding: 18px 22px !important;
}

.hv-testimonial-modal .modal-body {
    padding: 22px !important;
    max-height: 65vh !important;
}

.hv-testimonial-full-story {
    color: #334155 !important;
    line-height: 1.8 !important;
    font-size: 0.95rem !important;
}

    .hv-testimonial-full-story p {
        margin-bottom: 1rem !important;
    }

@media (max-width: 767px) {
    .hv-testimonial-list-card {
        min-height: 390px !important;
        padding: 18px !important;
    }

        .hv-testimonial-list-img,
        .hv-testimonial-list-card .hv-testimonial-avatar {
            width: 68px !important;
            height: 68px !important;
        }

        .hv-testimonial-list-card h5 {
            font-size: 0.98rem !important;
        }

        .hv-testimonial-list-card .hv-testimonial-story {
            min-height: 68px !important;
            font-size: 0.86rem !important;
            line-height: 1.55 !important;
        }
}





























/* =========================================
   HEALTHOVIA LOGOS
========================================= */

.hv-logo-brand {
    padding: 0;
    display: inline-flex;
    align-items: center;
    height: 42px;
    overflow: hidden;
}

.hv-header-logo {
    height: 40px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

.hv-footer-logo {
    max-width: 260px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 18px;
}

@media (max-width: 768px) {

    .hv-logo-brand {
        height: 48px;
        max-height: 48px;
    }

    .hv-header-logo {
        height: 44px;
        max-width: 200px;
    }

    .hv-footer-logo {
        max-width: 210px;
    }
}

/* =========================================================
   HEALTHOVIA HEADER / FOOTER LOGO FINAL POLISH
   Keep this block at the VERY BOTTOM of site.css
   ========================================================= */

.hv-main-navbar {
    padding: 5px 0 !important;
    min-height: 58px !important;
}

    .hv-main-navbar > .container {
        min-height: 50px !important;
        display: flex !important;
        align-items: center !important;
    }

.hv-logo-brand {
    padding: 0 !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    height: 50px !important;
    max-height: 50px !important;
    overflow: visible !important;
}

.hv-header-logo {
    height: 48px !important;
    width: auto !important;
    max-width: 245px !important;
    object-fit: contain !important;
    display: block !important;
}

.hv-main-navbar .nav-link {
    padding: 7px 12px !important;
    line-height: 1.2 !important;
}

.hv-main-navbar .navbar-nav {
    align-items: center !important;
}

.hv-main-navbar .hv-btn-primary {
    padding: 9px 24px !important;
    line-height: 1.2 !important;
}

.hv-footer-logo {
    max-width: 320px !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
    margin-bottom: 20px !important;
}

@media (max-width: 991.98px) {
    .hv-main-navbar,
    .main-navbar,
    .navbar {
        padding: 6px 0 !important;
    }

    .hv-logo-brand {
        height: 46px !important;
        max-height: 46px !important;
    }

    .hv-header-logo {
        height: 44px !important;
        max-width: 220px !important;
    }

    .hv-main-navbar .navbar-collapse {
        margin-top: 8px !important;
        padding: 12px !important;
    }
}

@media (max-width: 575px) {
    .hv-logo-brand {
        height: 42px !important;
        max-height: 42px !important;
    }

    .hv-header-logo {
        height: 40px !important;
        max-width: 190px !important;
    }

    .hv-footer-logo {
        max-width: 240px !important;
    }
}
