/* Stiluri Globale */
:root {
    --primary-color: #005A9C; 
    --secondary-color: #4db8ff;
    --accent-color: #4CAF50;
    --light-color: #f8f9fa;
    --light-subtle-color: #f1f3f5; /* Nuanță mai subtilă de gri */
    --dark-color: #212529;
    --text-color: #495057; /* Gri mai deschis pentru text */
    --border-color: #dee2e6;
    --font-family: 'Inter', sans-serif; /* Font nou */

    /* Suprascriere culori Bootstrap */
    --bs-primary: var(--primary-color);
    --bs-secondary: var(--accent-color); /* Verde ca secundar */
    --bs-body-color: var(--text-color);
    --bs-body-font-family: var(--font-family);
    --bs-link-color: var(--primary-color);
    --bs-link-hover-color: var(--secondary-color);
    --bs-light-subtle: var(--light-subtle-color);
    --bs-body-bg: var(--light-color);
}

html,
body {
    /* Previne scroll-ul orizontal (ex. din animațiile AOS fade-left/right).
       `clip` oprește tragerea laterală fără a strica header-ul sticky. */
    overflow-x: clip;
}

html {
    /* Compensează header-ul sticky la navigarea prin ancore (ex. /chirurgie-oncologica.html#biopsie),
       altfel titlul țintă rămâne ascuns sub bara fixă. */
    scroll-padding-top: 68px;
}

body {
    line-height: 1.7; /* Spațiere verticală mai bună */
    font-weight: 400;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 3rem !important;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

/* Linie subtilă sub titlurile de secțiune */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background-color: var(--accent-color);
    border-radius: 3px;
}
/* Aliniere stânga pentru titlu în secțiunea Despre */
.about-short .section-title {
    padding-bottom: 10px;
}
.about-short .section-title::after {
    left: 0;
    transform: translateX(0);
    width: 50px;
    height: 3px;
}

/* Header & Navigație */
.navbar {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}
.navbar-brand.logo-text {
    font-size: 1.6rem;
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.6rem 1rem;
    color: var(--bs-body-color);
    position: relative;
    transition: color 0.3s ease;
    border-radius: 4px; /* Rotunjire subtilă */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(0, 90, 156, 0.05); /* Fundal subtil la hover/activ */
}

/* Eliminare underline default din nav */
.navbar-nav .nav-link::after { display: none; }

/* Stil meniu mobil */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #fff;
        margin-top: 0.5rem;
        padding: 1rem;
        border-radius: 0.375rem; /* Bootstrap default */
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    }
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
        background-color: rgba(0, 90, 156, 0.07);
    }
}

/* Custom Buttons */
.custom-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px; /* Pill shape */
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    border-width: 2px;
}

.custom-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Primary Button Styles */
.btn-primary.custom-btn {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary.custom-btn:hover {
    background-color: #004a7f; /* Even darker shade of primary for better hover distinction */
    border-color: #004a7f;
    color: white;
}

/* Secondary Button Styles */
.btn-secondary.custom-btn {
    background-color: var(--primary-color); /* Same as primary background initially */
    border-color: var(--primary-color);
    color: white;
}

.btn-secondary.custom-btn:hover {
    background-color: var(--secondary-color); /* Lighter blue on hover */
    border-color: var(--secondary-color);
    color: white;
}

/* Outline Button Styles */
.custom-btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background-color: transparent;
}

.custom-btn-outline:hover {
    background-color: var(--secondary-color); /* Use secondary color for better contrast */
    color: white;
    border-color: var(--secondary-color); /* Match background */
}

/* Hero Section */
.hero-section {
    /* TODO: Adaugă imagine de fundal sau gradient */
    background: linear-gradient(rgba(0, 90, 156, 0.8), rgba(0, 90, 156, 0.8)), url('...') no-repeat center center/cover; /* Exemplu cu gradient */
    background-color: var(--primary-color); /* Fallback */
    min-height: 65vh;
    padding: 4rem 0;
}

/* Specific styling for the button inside the hero section */
.hero-section .custom-btn {
    background-color: var(--accent-color); /* Use accent color for contrast */
    border-color: var(--accent-color);
    color: white;
}

.hero-section .custom-btn:hover {
    background-color: #388E3C; /* Darker shade of accent green */
    border-color: #388E3C;
    color: white;
    /* Inherits transform and shadow from .custom-btn:hover */
}

/* Clinics List Section */
.clinics-list {
    background-color: var(--bs-light-subtle);
}

.clinic-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    background-color: #fff;
}

.clinic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.map-placeholder-container {
    background-color: #e9ecef;
    min-height: 150px; /* Înălțime minimă pe mobil */
}
@media (min-width: 576px) {
    .map-placeholder-container {
        min-height: 100%; /* Ocupă toată înălțimea cardului pe sm+ */
    }
}
.map-placeholder {
     width: 100%;
     height: 100%;
}
.clinic-card .card-body {
    padding: 1.25rem;
}

/* About Section */
.about-short .lead {
    color: var(--text-color);
    font-weight: 400;
}
.about-short ul li {
    padding: 0.25rem 0;
}

/* Services Overview Section */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-color) !important;
    background-color: #fff;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.07) !important;
    border-color: var(--secondary-color) !important;
}
.service-icon i {
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--primary-color);
}
.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: var(--secondary-color);
}
.service-card .card-title {
     color: var(--dark-color);
     margin-top: 0.5rem;
}
.service-card .card-text {
    color: var(--text-color);
}

/* Testimonials Section */
.bg-secondary-custom {
    background-color: var(--secondary-color) !important;
}

.testimonial-card {
   background-color: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(5px);
   height: 100%;
   border-radius: 0.5rem; /* Bootstrap card radius */
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background-color: rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
    width: 10px !important;
    height: 10px !important;
    transition: background-color 0.3s ease, transform 0.3s ease !important;
}

.swiper-pagination-bullet-active {
    background-color: #fff !important;
    transform: scale(1.2);
}

/* FAQ Section */
.custom-accordion-item {
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: 0.375rem !important; /* Bootstrap default */
    box-shadow: none;
    overflow: hidden;
}

.accordion-button {
    background-color: #fff;
    color: var(--dark-color);
    font-weight: 500; /* Ajustat */
    border: none !important;
    box-shadow: none !important;
    padding: 1rem 1.25rem;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bs-light-subtle);
    color: var(--primary-color);
    box-shadow: none !important;
}

.accordion-button:focus {
     box-shadow: none !important;
     border: none !important;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform .2s ease-in-out;
}
.accordion-button:not(.collapsed)::after {
     background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23005A9C'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
     transform: rotate(-180deg);
}

.accordion-body {
     background-color: #fff;
     padding: 1rem 1.25rem;
     color: var(--text-color);
}

/* Footer */
.footer-custom {
   background-color: var(--dark-color);
}
.footer-custom a:hover {
    color: var(--secondary-color) !important;
    text-decoration: underline;
}

.footer-custom .logo-text-footer {
     color: #fff !important;
}
.footer-custom .text-white-50 {
    opacity: 0.8 !important;
}
.footer-custom .text-white-50:hover {
     opacity: 1 !important;
}

.footer-custom > .container {
    text-align: center;
}

.footer-custom .row.gy-4 {
    justify-content: center;
}

.footer-custom .row.gy-4 > [class*="col-"] {
    text-align: center;
}

.footer-custom .row.gy-4 > [class*="col-"]:last-child ul.list-unstyled > li {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-custom .row.gy-4 > [class*="col-"]:last-child ul.list-unstyled > li i.fas.me-2 {
    margin-right: 0 !important;
    margin-bottom: 0.25rem;
}

.footer-custom .row.gy-4 > [class*="col-"]:last-child ul.list-unstyled > li.mt-3 {
    flex-direction: row;
    justify-content: center;
    gap: 0.25rem;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
    .hero-section {
        min-height: 70vh;
    }
}

/* Stiluri Specifice Alte Pagini (vor fi adăugate/ajustate) */
/* .about-detailed { ... } */
/* .clinics-page { ... } */
/* .services-page { ... } */
/* .contact-page { ... } */

/* —— Tema modernă (toate paginile: .site-theme) —— */
.site-theme {
    font-family: 'DM Sans', system-ui, sans-serif;
}

.site-theme .sticky-top.shadow-sm.bg-white {
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.site-theme .navbar-brand.logo-text {
    font-family: 'DM Serif Display', Georgia, serif;
    letter-spacing: -0.02em;
    color: #0b7ec8 !important;
}

.site-theme .navbar-nav .nav-link:hover,
.site-theme .navbar-nav .nav-link.active {
    color: #0b7ec8 !important;
    background-color: rgba(11, 126, 200, 0.06);
}

@media (max-width: 991.98px) {
    .site-theme .navbar-nav .nav-link:hover,
    .site-theme .navbar-nav .nav-link.active {
        background-color: rgba(11, 126, 200, 0.08);
    }
}

.site-theme .home-hero {
    position: relative;
    overflow: hidden;
    min-height: 72vh;
    padding: clamp(3rem, 12vw, 6rem) 0;
    background: linear-gradient(145deg, #063d5c 0%, #0b7ec8 42%, #0a6b7c 100%) !important;
    border: none;
}

.site-theme .home-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 60% at 50% -30%, rgba(255, 255, 255, 0.22), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(14, 158, 138, 0.15), transparent);
    pointer-events: none;
}

.site-theme .home-hero .container {
    position: relative;
    z-index: 1;
}

.site-theme .home-hero .home-hero-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.site-theme .home-hero h1 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: #fff;
}

.site-theme .home-hero .home-hero-lead {
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    font-weight: 500;
    opacity: 0.95;
}

.site-theme .home-hero .home-hero-muted {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.55;
}

.site-theme .home-hero .home-hero-emphasis {
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
}

.site-theme .home-value-section {
    padding: clamp(3rem, 8vw, 5.5rem) 0;
    background: linear-gradient(180deg, #eef2f6 0%, #f8fafc 45%, #ffffff 100%);
}

.site-theme .home-value-intro {
    max-width: 36rem;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.site-theme .home-value-intro .home-section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0b7ec8;
    margin-bottom: 0.5rem;
}

.site-theme .home-value-intro h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.65rem, 4vw, 2.25rem);
    font-weight: 400;
    color: #1a1f2e;
    margin-bottom: 0.5rem;
}

.site-theme .home-value-intro p {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.site-theme .home-value-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(11, 126, 200, 0.1);
    box-shadow: 0 4px 28px rgba(26, 31, 46, 0.06);
    padding: 2rem 1.75rem;
    height: 100%;
    transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

.site-theme .home-value-card:hover {
    box-shadow: 0 20px 50px rgba(11, 126, 200, 0.12);
    transform: translateY(-5px);
    border-color: rgba(14, 158, 138, 0.28);
}

.site-theme .home-value-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(11, 126, 200, 0.12), rgba(14, 158, 138, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: #0b7ec8;
    font-size: 1.25rem;
}

.site-theme .home-value-card__group-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--bs-primary);
    margin-bottom: 0.75rem;
}

.site-theme .home-value-card__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.35rem, 2.8vw, 1.55rem);
    color: #1a1f2e;
    text-align: center;
    margin-bottom: 1.35rem;
    font-weight: 400;
}

.site-theme .home-value-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-theme .home-value-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.8rem 0.95rem;
    margin-bottom: 0.45rem;
    background: #f8fafc;
    border-radius: 12px;
    color: #4b5563;
    font-size: 0.9375rem;
    line-height: 1.45;
    transition: background 0.2s ease;
    border: 1px solid transparent;
}

.site-theme .home-value-list li:last-child {
    margin-bottom: 0;
}

.site-theme .home-value-list li:hover {
    background: #f0f9ff;
    border-color: rgba(11, 126, 200, 0.08);
}

.site-theme .home-value-card__header {
    margin-bottom: 1.25rem;
}

.site-theme .home-value-card__lead {
    margin-bottom: 1.25rem;
}

.site-theme .home-value-card__group + .home-value-card__group {
    margin-top: 1.5rem;
}

.site-theme .home-value-card__group-note {
    padding-left: 0.15rem;
}

.site-theme .home-value-card__footer-link {
    padding-top: 0.25rem;
    border-top: 1px solid rgba(11, 126, 200, 0.1);
}

.site-theme .home-value-list--compact li {
    padding: 0.65rem 0.85rem;
}

.site-theme .home-value-dot {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    margin-top: 0.45rem;
    background: linear-gradient(135deg, #0b7ec8, #0e9e8a);
}

@media (min-width: 1200px) {
    .site-theme .home-value-intro {
        max-width: 44rem;
        margin-bottom: 3rem;
    }

    .site-theme .home-value-row {
        align-items: stretch;
    }

    .site-theme .home-value-card {
        padding: 2rem 1.85rem 1.85rem;
    }

    .site-theme .home-value-card__header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(11, 126, 200, 0.1);
    }

    .site-theme .home-value-card__header .home-value-card__icon {
        margin: 0;
        flex-shrink: 0;
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
    }

    .site-theme .home-value-card__header .home-value-card__title {
        text-align: left;
        margin-bottom: 0;
        font-size: 1.45rem;
    }

    .site-theme .home-value-card__lead {
        margin-bottom: 1.35rem;
        line-height: 1.55;
    }

    .site-theme .home-value-card__group + .home-value-card__group {
        margin-top: 0;
    }

    .site-theme .home-value-card__group-label {
        margin-bottom: 0.65rem;
    }

    /* Ce tratez: patologii 2×2, servicii 2 coloane */
    .site-theme .home-value-card__group:first-of-type .home-value-list--compact {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem;
    }

    .site-theme .home-value-card__group:first-of-type .home-value-list--compact li {
        margin-bottom: 0;
        padding: 0.6rem 0.75rem;
        font-size: 0.875rem;
        line-height: 1.4;
    }

    .site-theme .home-value-row > .col-xl-6:first-child .home-value-list--detail li {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
        line-height: 1.45;
    }

    /* Abordare: cele 4 blocuri în grilă 2×2 */
    .site-theme .home-value-card__groups--approach {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.15rem 1.25rem;
    }

    .site-theme .home-value-card__groups--approach .home-value-card__group {
        margin: 0;
        padding: 1rem 1rem 0.85rem;
        background: #f8fafc;
        border-radius: 14px;
        border: 1px solid rgba(11, 126, 200, 0.06);
    }

    .site-theme .home-value-card__groups--approach .home-value-list--detail {
        display: block;
    }

    .site-theme .home-value-card__groups--approach .home-value-list--detail li {
        margin-bottom: 0.4rem;
        padding: 0.55rem 0.65rem;
        background: #fff;
    }

    .site-theme .home-value-card__groups--approach .home-value-list--detail li:last-child {
        margin-bottom: 0;
    }

    .site-theme .home-value-card__footer-link {
        margin-top: 1.25rem !important;
        padding-top: 1rem;
    }
}

.site-theme .home-consult-wrap {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
    background: #fff;
}

.site-theme .home-consult-banner {
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3a4d 50%, #1e2d3d 100%);
    color: #fff;
    border-radius: 20px;
    padding: clamp(2rem, 5vw, 2.75rem) 1.75rem;
    text-align: center;
    box-shadow: 0 20px 50px rgba(26, 31, 46, 0.18);
    max-width: 640px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.site-theme .home-consult-banner h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.5rem, 3.5vw, 1.85rem);
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.5rem;
}

.site-theme .home-consult-banner .home-consult-accent {
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #0e9e8a, #0b7ec8);
    margin: 0 auto 1rem;
}

.site-theme .home-consult-banner .lead {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}

.site-theme .home-consult-banner .text-muted-custom {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin-bottom: 1.35rem;
}

.site-theme .home-about-section {
    padding: clamp(3rem, 7vw, 5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.site-theme .home-about-media {
    position: relative;
    display: inline-block;
}

.site-theme .home-about-media img {
    border-radius: 20px;
    box-shadow: 0 24px 48px rgba(26, 31, 46, 0.12);
    max-width: 300px;
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.site-theme .home-about-media::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    border: 1px solid rgba(11, 126, 200, 0.15);
    pointer-events: none;
}

.site-theme .home-about-section .section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
}

.site-theme .home-about-pills li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

.site-theme .home-about-pills li:last-child {
    border-bottom: none;
}

.site-theme .home-about-pills .pill-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(11, 126, 200, 0.15), rgba(14, 158, 138, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b7ec8;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.site-theme .home-explore-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: #f1f5f9;
}

.site-theme .home-explore-section > .container > .section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    margin-bottom: 2.5rem !important;
}

.site-theme .home-explore-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    padding: 1.75rem 1.35rem;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    box-shadow: 0 2px 16px rgba(26, 31, 46, 0.04);
}

.site-theme .home-explore-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(11, 126, 200, 0.12);
    border-color: rgba(11, 126, 200, 0.22);
}

.site-theme .home-explore-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #0b7ec8, #0a8fb0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(11, 126, 200, 0.25);
}

.site-theme .home-explore-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1f2e;
    margin-bottom: 0.65rem;
}

.site-theme .home-explore-card p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 0;
}

.site-theme .home-explore-card .btn {
    margin-top: 1.15rem;
}

.site-theme .home-faq-section {
    background: #fff;
}

.site-theme .home-faq-section .section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
}

.site-theme .home-hero .btn-light {
    color: #0a4a6e;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-theme .home-hero .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    color: #063d5c;
}

/* Hero: H2 subtitlu pe fundal întunecat */
.site-theme .home-hero h2.home-hero-lead {
    color: #fff;
    font-family: 'DM Sans', system-ui, sans-serif;
}

.site-theme .home-hero-secondary-link {
    display: inline-flex;
    align-items: center;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    transition: border-color 0.25s ease, opacity 0.25s ease;
}

.site-theme .home-hero-secondary-link:hover {
    border-bottom-color: #fff;
    opacity: 0.92;
}

/* —— Secțiunea „Primii 3 pași” (Anxiety-Relief) —— */
.site-theme .home-steps-section {
    padding: clamp(3rem, 8vw, 5rem) 0;
    background: linear-gradient(180deg, #ffffff 0%, #eef2f6 100%);
}

.site-theme .home-steps-section .home-value-intro {
    max-width: 44rem;
}

.site-theme .home-step-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(11, 126, 200, 0.1);
    box-shadow: 0 4px 28px rgba(26, 31, 46, 0.06);
    padding: 1.85rem 1.5rem;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-theme .home-step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(11, 126, 200, 0.12);
    border-color: rgba(14, 158, 138, 0.28);
}

.site-theme .home-step-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(11, 126, 200, 0.12), rgba(14, 158, 138, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b7ec8;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.site-theme .home-step-card__tag {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0e9e8a;
    margin-bottom: 0.35rem;
}

.site-theme .home-step-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1f2e;
    margin-bottom: 0.55rem;
}

.site-theme .home-step-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.55;
    margin-bottom: 0;
}

/* —— Piloni de servicii (home-value-section) —— */
.site-theme .home-pillar-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid rgba(11, 126, 200, 0.1);
    box-shadow: 0 4px 28px rgba(26, 31, 46, 0.06);
    padding: 1.75rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.site-theme .home-pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(11, 126, 200, 0.12);
    border-color: rgba(14, 158, 138, 0.28);
}

.site-theme .home-pillar-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0b7ec8, #0a8fb0);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 8px 20px rgba(11, 126, 200, 0.25);
}

.site-theme .home-pillar-card__tag {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0b7ec8;
    margin-bottom: 0.35rem;
}

.site-theme .home-pillar-card h3 {
    font-size: 1.12rem;
    font-weight: 600;
    color: #1a1f2e;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.site-theme .home-pillar-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.55;
    margin-bottom: 0.85rem;
}

.site-theme .home-pillar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.site-theme .home-pillar-list li {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.4;
    margin-bottom: 0.45rem;
}

.site-theme .home-pillar-list li i {
    color: #0e9e8a;
    font-size: 0.75rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.site-theme .home-pillar-card__link {
    margin-top: auto;
}

.site-theme .site-pill-link,
.site-theme .site-related-note__link,
.site-theme .home-pillar-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.45rem 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.35;
    color: #fff !important;
    text-decoration: none !important;
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3a4d 55%, #1e2d3d 100%);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 14px rgba(26, 31, 46, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-theme .site-pill-link:hover,
.site-theme .site-related-note__link:hover,
.site-theme .home-pillar-card__link:hover {
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(26, 31, 46, 0.22);
}

.site-theme .site-pill-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.site-theme .site-pill-links--start {
    justify-content: flex-start;
}

.site-theme p .site-pill-link,
.site-theme p .site-related-note__link {
    margin: 0.15rem 0;
    vertical-align: middle;
}

@media (hover: none) {
    .site-theme .site-pill-link:hover,
    .site-theme .site-related-note__link:hover,
    .site-theme .home-pillar-card__link:hover {
        transform: none;
    }
}

.site-theme .home-value-approach-note {
    max-width: 46rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem;
    color: #6b7280;
}

@media (hover: none) {
    .site-theme .home-step-card:hover,
    .site-theme .home-pillar-card:hover {
        transform: none;
    }
}

/* —— Hero compact pagini interioare —— */
.site-theme .site-page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(2.25rem, 8vw, 3.85rem) 0;
    background: linear-gradient(145deg, #063d5c 0%, #0b7ec8 42%, #0a6b7c 100%);
    text-align: center;
}

.site-theme .site-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 85% 55% at 50% -35%, rgba(255, 255, 255, 0.2), transparent 55%),
        radial-gradient(ellipse 45% 38% at 100% 100%, rgba(14, 158, 138, 0.14), transparent);
    pointer-events: none;
}

.site-theme .site-page-hero .container {
    position: relative;
    z-index: 1;
}

.site-theme .site-page-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.site-theme .site-page-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.03em;
    color: #fff !important;
    font-size: clamp(1.85rem, 5vw, 2.65rem);
    margin-bottom: 0.85rem;
    line-height: 1.12;
}

.site-theme .site-page-lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2.2vw, 1.18rem);
    line-height: 1.55;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
    font-weight: 500;
}

.site-theme .site-page-lead strong {
    color: #fff;
    font-weight: 600;
}

.site-theme .site-page-sub {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.98rem;
    line-height: 1.5;
    max-width: 36rem;
    margin: 0.85rem auto 0;
}

.site-theme .site-page-sub a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-theme .site-page-sub a:hover {
    color: rgba(255, 255, 255, 0.92);
}

.site-theme .site-page-hero + .services-page {
    padding-top: clamp(1.5rem, 4vw, 2.25rem);
}

.site-theme .site-page-hero + .site-intro-band {
    padding-top: clamp(2rem, 5vw, 3rem);
}

.site-theme .site-page-hero + .contact-page {
    padding-top: clamp(1.5rem, 4vw, 2.25rem);
}

.site-theme .site-page-hero + .about-detailed {
    padding-top: clamp(1.75rem, 4vw, 2.75rem);
}

.site-theme .site-page-hero + #clinici-partenere {
    padding-top: clamp(1.25rem, 4vw, 2rem);
}

.site-theme .site-page-hero + .site-page-cazuri {
    padding-top: clamp(1.5rem, 4vw, 2.25rem);
}

/* —— Pagini interioare —— */
.site-theme main .section-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    color: #1a1f2e;
}

.site-theme main .section-title::after {
    background: linear-gradient(90deg, #0e9e8a, #0b7ec8);
    height: 3px;
    border-radius: 2px;
}

.site-theme main .text-start.section-title::after,
.site-theme .about-detailed .section-title::after {
    left: 0;
    transform: none;
}

.site-theme .services-page {
    background: linear-gradient(180deg, #eef2f6 0%, #f8fafc 35%, #ffffff 100%);
    padding-top: clamp(2.5rem, 6vw, 4rem);
    padding-bottom: clamp(3rem, 8vw, 5rem);
}

.site-theme .site-intro-band + .services-page {
    padding-top: clamp(2rem, 5vw, 3rem);
}

.site-theme .services-page + .site-intro-band,
.site-theme .about-detailed + .site-intro-band {
    border-top: 1px solid rgba(11, 126, 200, 0.1);
    padding-top: clamp(2rem, 5vw, 3rem);
}

.site-theme .site-intro-band + .about-timeline-section {
    padding-top: clamp(2rem, 5vw, 3rem);
}

.site-theme .site-intro-band__checklist--spaced {
    margin-top: 1.25rem;
}

.site-theme .site-intro-band--duo .site-intro-band__block + .site-intro-band__block {
    margin-top: clamp(1.75rem, 4vw, 2.5rem);
    padding-top: clamp(1.75rem, 4vw, 2.5rem);
    border-top: 1px solid #e5e7eb;
}

.site-theme .services-page--cta {
    padding-top: clamp(2rem, 5vw, 3rem);
}

/* —— Bandă intro (între hero și carduri) —— */
.site-theme .site-intro-band {
    background: #fff;
    padding-bottom: clamp(2rem, 5vw, 3rem);
    border-bottom: 1px solid rgba(11, 126, 200, 0.1);
}

.site-theme .site-intro-band__highlights--flush {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.site-theme .site-intro-band__eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0e9e8a;
}

.site-theme .site-intro-band__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 400;
    color: #1a1f2e;
    line-height: 1.25;
    margin: 0;
}

.site-theme .site-intro-band__content p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.site-theme .site-intro-band__checklist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 1.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-theme .site-intro-band__checklist li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: #6b7280;
}

.site-theme .site-intro-band__checklist li i {
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.site-theme .site-intro-band__footer {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e5e7eb;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #6b7280;
}

.site-theme .site-intro-band__highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 1.5rem 0 0;
    padding: 1.25rem 0 0;
    list-style: none;
    border-top: 1px solid #e5e7eb;
}

.site-theme .site-intro-band__highlights li {
    padding-right: 1.25rem;
}

.site-theme .site-intro-band__highlights li + li {
    padding-left: 1.25rem;
    border-left: 1px solid #e5e7eb;
}

.site-theme .site-intro-band__highlight-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0b7ec8;
    margin-bottom: 0.35rem;
}

.site-theme .site-intro-band__highlight-text {
    display: block;
    font-size: 0.875rem;
    line-height: 1.45;
    color: #4b5563;
}

@media (max-width: 767.98px) {
    .site-theme .site-intro-band__checklist {
        grid-template-columns: 1fr;
    }

    .site-theme .site-intro-band__highlights {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-top: 1rem;
    }

    .site-theme .site-intro-band__highlights li {
        padding: 0;
    }

    .site-theme .site-intro-band__highlights li + li {
        padding: 1rem 0 0;
        border-left: none;
        border-top: 1px solid #e5e7eb;
    }
}

/* —— Grupuri de carduri (pagina Patologii) —— */
.site-theme .patologii-group {
    margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.site-theme .patologii-group:last-of-type {
    margin-bottom: 0;
}

.site-theme .patologii-group__head {
    margin-bottom: 1.5rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(11, 126, 200, 0.15);
}

.site-theme .patologii-group__eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0e9e8a;
    margin-bottom: 0.35rem;
}

.site-theme .patologii-group__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.3rem, 2.6vw, 1.7rem);
    font-weight: 400;
    color: #1a1f2e;
    margin: 0;
}

.site-theme .patologii-group__sub {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #6b7280;
    margin: 0.5rem 0 0;
    max-width: 65ch;
}

.site-theme .service-detailed-card {
    border: 1px solid rgba(11, 126, 200, 0.1) !important;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(26, 31, 46, 0.06) !important;
    transition: box-shadow 0.35s ease, transform 0.35s ease, border-color 0.35s ease;
}

/* Ancore în carduri: AOS fade-up deplasează conținutul la hash → titlul iese din cadru */
.site-theme .service-detailed-card[id][data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.site-theme .service-detailed-card:hover {
    box-shadow: 0 16px 44px rgba(11, 126, 200, 0.1) !important;
    transform: translateY(-3px);
    border-color: rgba(14, 158, 138, 0.22) !important;
}

.site-theme .service-detailed-card .card-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    color: #1a1f2e;
}

.site-theme .service-icon-bg {
    background: linear-gradient(160deg, rgba(11, 126, 200, 0.14), rgba(14, 158, 138, 0.08)) !important;
}

.site-theme .contact-page {
    background: linear-gradient(180deg, #eef2f6 0%, #ffffff 55%);
    padding-top: clamp(2.5rem, 6vw, 4rem);
    padding-bottom: 2rem;
}

.site-theme .contact-form-container {
    border-radius: 20px;
    border: 1px solid rgba(11, 126, 200, 0.1);
    box-shadow: 0 4px 28px rgba(26, 31, 46, 0.06);
}

.site-theme .contact-form-container .h4 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    color: #1a1f2e;
}

.site-theme .contact-details-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding-top: clamp(2.5rem, 6vw, 4rem);
    padding-bottom: clamp(3rem, 8vw, 5rem);
}

.site-theme .contact-details-section > .container > h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    color: #1a1f2e;
}

.site-theme .contact-details-list .list-group-item {
    border-radius: 16px !important;
    margin-bottom: 0.75rem;
    border: 1px solid rgba(226, 232, 240, 0.95) !important;
    padding: 1.25rem 1.5rem !important;
    box-shadow: 0 2px 16px rgba(26, 31, 46, 0.04);
}

.site-theme .about-detailed {
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 50%, #ffffff 100%);
    padding-top: clamp(2.5rem, 6vw, 4rem);
    padding-bottom: clamp(3rem, 8vw, 5rem);
}

.site-theme .about-detailed .home-about-media img {
    max-width: 280px;
}

.site-theme .about-detailed h2.h5 {
    color: #1a1f2e;
}

.site-theme .about-profile__lead {
    font-size: 1.0625rem;
    line-height: 1.65;
}

.site-theme .about-profile__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.35rem;
    font-weight: 400;
}

.site-theme .about-specialty-chip {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #0b7ec8;
    background: rgba(11, 126, 200, 0.08);
    border: 1px solid rgba(11, 126, 200, 0.15);
    border-radius: 999px;
}

.site-theme .about-stats {
    margin-top: clamp(2rem, 5vw, 3rem) !important;
}

.site-theme .about-stat-card {
    text-align: center;
    padding: 1.35rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(11, 126, 200, 0.1);
    background: #fff;
    box-shadow: 0 4px 24px rgba(26, 31, 46, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-theme .about-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(11, 126, 200, 0.1);
}

.site-theme .about-stat-card__value {
    display: block;
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    line-height: 1.1;
    color: #1a1f2e;
    margin-bottom: 0.35rem;
    font-variant-numeric: tabular-nums;
    min-width: 3.5ch;
}

.site-theme .about-stat-card__label {
    display: block;
    font-size: 0.8125rem;
    line-height: 1.4;
    color: #6b7280;
}

.site-theme .about-timeline-section {
    padding-top: clamp(2.5rem, 6vw, 4rem);
    padding-bottom: clamp(2.5rem, 6vw, 4rem);
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.site-theme .about-timeline-section--alt {
    background: linear-gradient(180deg, #ffffff 0%, #eef2f6 50%, #ffffff 100%);
}

.site-theme .about-timeline-section__intro {
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.site-theme .about-timeline {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.site-theme .about-timeline__item {
    display: grid;
    grid-template-columns: minmax(5.5rem, 7.5rem) 1fr;
    gap: 1rem 1.5rem;
    padding-bottom: 1.75rem;
    position: relative;
}

.site-theme .about-timeline__item:last-child {
    padding-bottom: 0;
}

.site-theme .about-timeline__item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 3.35rem;
    top: 2.25rem;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(14, 158, 138, 0.45), rgba(11, 126, 200, 0.2));
    border-radius: 1px;
}

.site-theme .about-timeline__period {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0e9e8a;
    line-height: 1.35;
    padding-top: 0.15rem;
    text-align: right;
}

.site-theme .about-timeline__body {
    padding: 1rem 1.25rem;
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 2px 16px rgba(26, 31, 46, 0.04);
    position: relative;
}

.site-theme .about-timeline__body::before {
    content: '';
    position: absolute;
    left: -1.35rem;
    top: 1.15rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0e9e8a, #0b7ec8);
    box-shadow: 0 0 0 4px rgba(14, 158, 138, 0.15);
}

.site-theme .about-timeline__title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1f2e;
    margin: 0 0 0.35rem;
    line-height: 1.35;
}

.site-theme .about-timeline__meta {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
}

.site-theme .about-timeline__item--highlight .about-timeline__body {
    border-color: rgba(11, 126, 200, 0.22);
    background: linear-gradient(135deg, rgba(11, 126, 200, 0.04), rgba(14, 158, 138, 0.06));
}

.site-theme .about-detailed--cta {
    padding-top: 0;
    padding-bottom: clamp(3rem, 8vw, 5rem);
}

@media (max-width: 575.98px) {
    .site-theme .about-timeline__item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .site-theme .about-timeline__period {
        text-align: left;
    }

    .site-theme .about-timeline__item:not(:last-child)::after {
        left: 0.35rem;
        top: 2rem;
    }

    .site-theme .about-timeline__body::before {
        left: auto;
        right: 1rem;
        top: 1rem;
    }
}

.site-theme #clinici-partenere {
    background: linear-gradient(180deg, #eef2f6 0%, #ffffff 100%);
    padding-top: clamp(2.5rem, 6vw, 4rem);
    padding-bottom: 1rem;
}

.site-theme .map-placeholder {
    border-radius: 20px !important;
    border: 1px solid rgba(11, 126, 200, 0.1);
    box-shadow: 0 8px 32px rgba(26, 31, 46, 0.08) !important;
    background: linear-gradient(145deg, #f8fafc, #eef2f6) !important;
}

.site-theme .clinics-list-detailed {
    background: transparent;
    padding-top: clamp(2rem, 5vw, 3.5rem);
    padding-bottom: clamp(2rem, 5vw, 3.5rem);
}

.site-theme .clinics-list-detailed > .container > h2 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    color: #1a1f2e;
}

.site-theme .clinic-card {
    border-radius: 20px !important;
    border: 1px solid rgba(11, 126, 200, 0.1) !important;
    box-shadow: 0 4px 28px rgba(26, 31, 46, 0.06) !important;
    transition: box-shadow 0.35s ease, transform 0.35s ease;
}

.site-theme .clinic-card:hover {
    box-shadow: 0 16px 40px rgba(11, 126, 200, 0.1) !important;
    transform: translateY(-4px);
}

.site-theme .clinic-card .card-title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    color: #1a1f2e;
}

.site-theme .site-readable-panel {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(11, 126, 200, 0.1);
    box-shadow: 0 4px 28px rgba(26, 31, 46, 0.06);
    padding: clamp(1.75rem, 4vw, 2.5rem);
}

/* Variantă „accent callout” pentru panourile de informare/checklist */
.site-theme .site-readable-panel--accent {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid rgba(11, 126, 200, 0.12);
    border-left: 4px solid #0b7ec8;
    padding-left: clamp(1.5rem, 4vw, 2.25rem);
}

.site-theme .site-readable-panel--accent::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at top right, rgba(14, 158, 138, 0.1), transparent 70%);
    pointer-events: none;
}

.site-theme .site-readable-panel--accent > h2 {
    position: relative;
    color: #1a1f2e;
    padding-bottom: 0.85rem;
    margin-bottom: 1.35rem;
}

.site-theme .site-readable-panel--accent > h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 46px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #0e9e8a, #0b7ec8);
}

.site-theme .site-readable-panel--accent ul li,
.site-theme .site-readable-panel--accent ol li {
    line-height: 1.6;
}

.site-theme .site-page-cazuri {
    background: linear-gradient(180deg, #eef2f6 0%, #ffffff 100%);
    padding-top: clamp(2.5rem, 6vw, 4rem);
    padding-bottom: clamp(3rem, 8vw, 5rem);
}

.site-theme .footer-custom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-theme .form-control:focus {
    border-color: rgba(11, 126, 200, 0.45);
    box-shadow: 0 0 0 0.2rem rgba(11, 126, 200, 0.12);
}

.site-theme .site-related-note {
    border-left-color: rgba(11, 126, 200, 0.35) !important;
    background: transparent;
}

.site-theme .site-related-note--center {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.site-theme .site-related-note__glyph {
    opacity: 0.85;
}


.site-theme .site-cta-strip {
    background: linear-gradient(135deg, #1a1f2e 0%, #2d3a4d 55%, #1e2d3d 100%);
    color: #fff;
    border-radius: 20px;
    padding: clamp(2rem, 4vw, 2.75rem) 1.5rem !important;
    box-shadow: 0 20px 50px rgba(26, 31, 46, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.site-theme .site-cta-strip h3 {
    font-family: 'DM Serif Display', Georgia, serif;
    font-weight: 400;
    color: #fff !important;
}

.site-theme .site-cta-strip p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 1.25rem;
}

.site-theme .site-cta-strip .btn-primary.custom-btn,
.site-theme .home-consult-banner .btn-primary.custom-btn {
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
    line-height: 1.35;
    max-width: 100%;
    white-space: normal;
}

@media (max-width: 575.98px) {
    .site-theme .site-cta-strip {
        padding: 1.25rem 1rem !important;
        border-radius: 16px;
    }

    .site-theme .site-cta-strip h3 {
        font-size: 1.15rem;
        margin-bottom: 0.5rem;
    }

    .site-theme .site-cta-strip p {
        font-size: 0.875rem;
        margin-bottom: 0.85rem;
    }

    .site-theme .home-consult-banner {
        padding: 1.35rem 1rem;
        border-radius: 16px;
    }

    .site-theme .home-consult-banner h2 {
        font-size: 1.2rem;
    }

    .site-theme .home-consult-banner .text-muted-custom {
        font-size: 0.8125rem;
        margin-bottom: 0.85rem !important;
    }

    .site-theme .site-cta-strip .btn-primary.custom-btn,
    .site-theme .home-consult-banner .btn-primary.custom-btn,
    .site-theme .custom-btn {
        padding: 0.45rem 0.9rem !important;
        font-size: 0.8125rem;
        letter-spacing: 0;
        border-width: 1.5px;
    }
}

.site-theme .custom-accordion-item {
    border-radius: 14px !important;
    border: 1px solid rgba(226, 232, 240, 0.95);
    margin-bottom: 0.65rem;
    box-shadow: 0 2px 12px rgba(26, 31, 46, 0.04);
}

.site-theme .accordion-button:not(.collapsed) {
    color: #0b7ec8;
    background-color: rgba(11, 126, 200, 0.06);
}

@media (max-width: 991.98px) {
    .site-theme .home-hero {
        min-height: auto;
    }
}

/* Pe dispozitive tactile (fără pointer) efectul de „ridicare” la :hover rămâne
   blocat după tap. Anulăm doar transformările hover, păstrând stilul pe desktop. */
@media (hover: none) {
    .custom-btn:hover,
    .clinic-card:hover,
    .service-card:hover,
    .service-card:hover .service-icon i,
    .site-theme .home-value-card:hover,
    .site-theme .home-explore-card:hover,
    .site-theme .service-detailed-card:hover,
    .site-theme .clinic-card:hover,
    .site-theme .home-hero .btn-light:hover {
        transform: none;
    }

    .site-theme .contact-channel:hover {
        transform: none;
    }
}

/* —— Contact: bandă direct + FAB sticky —— */
.site-theme .contact-direct-band__inner {
    background: linear-gradient(160deg, #1a1f2e 0%, #2d3a4d 55%, #1e2d3d 100%);
    color: #fff;
    border-radius: 14px;
    padding: 1rem 1.15rem;
    box-shadow: 0 12px 32px rgba(26, 31, 46, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem 1.25rem;
}

.site-theme .contact-direct-band__intro {
    flex: 1 1 200px;
    min-width: 0;
}

.site-theme .contact-direct-band__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #fff;
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.site-theme .contact-direct-band__lead {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.4;
}

.site-theme .contact-direct-band__channels {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    flex: 2 1 320px;
}

.site-theme .contact-direct-band .contact-channel {
    flex: 1 1 auto;
    min-width: min(100%, 155px);
    margin-bottom: 0;
}

.site-theme .contact-channel {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.site-theme .contact-channel:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.site-theme .contact-channel__icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(11, 126, 200, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.site-theme .contact-channel--whatsapp .contact-channel__icon {
    background: rgba(37, 211, 102, 0.28);
}

.site-theme .contact-channel__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1.25;
}

.site-theme .contact-channel__label {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.site-theme .contact-channel__value {
    font-size: 0.78rem;
    font-weight: 500;
    word-break: break-all;
}

@media (min-width: 768px) {
    .site-theme .contact-direct-band__inner {
        padding: 1rem 1.35rem;
    }
}

/* FAB: telefon stânga, WhatsApp dreapta */
.site-theme .contact-fab-wrap {
    position: fixed;
    inset: auto 0 0 0;
    pointer-events: none;
    z-index: 1055;
    height: 0;
}

.site-theme .contact-fab {
    position: fixed;
    bottom: max(1.25rem, env(safe-area-inset-bottom, 1.25rem));
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    text-decoration: none;
    pointer-events: auto;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.site-theme .contact-fab:hover {
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.site-theme .contact-fab--phone {
    left: max(1rem, env(safe-area-inset-left, 1rem));
    background: linear-gradient(145deg, #0b7ec8, #0969a8);
}

.site-theme .contact-fab--whatsapp {
    right: max(1rem, env(safe-area-inset-right, 1rem));
    background: linear-gradient(145deg, #25d366, #128c7e);
}

@media (hover: none) {
    .site-theme .contact-fab:hover {
        transform: none;
    }
}

.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 82px;
    z-index: 1060;
    background: #ffffff;
    border: 1px solid #dbe2ea;
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.2);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.cookie-banner__text {
    margin: 0;
    color: #1f2937;
    font-size: 0.92rem;
    line-height: 1.45;
}

.cookie-banner__text a {
    font-weight: 600;
}

.cookie-banner__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    border: 1px solid #0b7ec8;
    background: #fff;
    color: #0b7ec8;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 0.85rem;
    font-weight: 600;
}

.cookie-banner__btn--accept {
    background: #0b7ec8;
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 72px;
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__actions {
        width: 100%;
    }

    .cookie-banner__btn {
        flex: 1;
    }
}