.slider-desc {
    line-height: 2em;
}

.service-item {
    overflow: hidden;
}

.service-item img {
    display: block;
    object-fit: cover;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
}

.doctor-item img {
    object-fit: cover;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-top: -65px;
}


.vision-hero {
    position: relative;
    padding: clamp(56px, 8vw, 104px) 0;
    margin-bottom: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #F2FAFF 45%, var(--light) 100%);
    border-radius: 0 0 clamp(32px, 4vw, 56px) clamp(32px, 4vw, 56px);
}

.vision-hero.has-hero-bg {
    background-color: var(--dark-primary);
    background-image:
        linear-gradient(180deg, rgba(2, 43, 77, .72) 0%, rgba(2, 43, 77, .55) 45%, rgba(2, 43, 77, .82) 100%),
        var(--hero-bg);
    background-size: cover;
    background-position: center;
}

html[data-theme="dark"] .vision-hero.has-hero-bg {
    background-image:
        linear-gradient(180deg, rgba(2, 6, 23, .80) 0%, rgba(2, 6, 23, .64) 45%, rgba(2, 6, 23, .88) 100%),
        var(--hero-bg-dark, var(--hero-bg));
}

.vision-hero.has-hero-bg .vision-shape {
    display: none;
}

.vision-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(16, 137, 236, 0.16);
    filter: blur(70px);
    pointer-events: none;
}

.vision-shape-1 {
    width: 360px;
    height: 360px;
    top: -120px;
    inset-inline-end: -90px;
}

.vision-shape-2 {
    width: 260px;
    height: 260px;
    bottom: -70px;
    inset-inline-start: -80px;
}

.vision-title {
    color: var(--dark-primary);
    font-size: clamp(32px, 4.6vw, 56px);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 22px;
}

html[data-theme="dark"] .vision-title {
    color: white !important;
}

.vision-desc {
    color: var(--gray);
    font-size: clamp(16px, 1.5vw, 19px);
    font-weight: 400;
    line-height: 2;
    max-width: 58ch;
    margin-bottom: 32px;
}

.vision-hero.has-hero-bg .vision-title,
html[data-theme="dark"] .vision-hero.has-hero-bg .vision-title {
    color: #ffffff !important;
}

.vision-hero.has-hero-bg .vision-desc {
    color: rgba(255, 255, 255, .88);
}

.vision-hero.has-hero-text .vision-title,
html[data-theme="dark"] .vision-hero.has-hero-text .vision-title {
    color: var(--hero-text) !important;
}

.vision-hero.has-hero-text .vision-desc {
    color: var(--hero-text);
    opacity: .88;
}

.vision-hero.has-hero-bg.has-hero-text .vision-title,
.vision-hero.has-hero-bg.has-hero-text-dark .vision-title,
html[data-theme="dark"] .vision-hero.has-hero-bg.has-hero-text .vision-title,
html[data-theme="dark"] .vision-hero.has-hero-bg.has-hero-text-dark .vision-title {
    color: var(--hero-text-dark, #ffffff) !important;
}

.vision-hero.has-hero-bg.has-hero-text .vision-desc,
.vision-hero.has-hero-bg.has-hero-text-dark .vision-desc,
html[data-theme="dark"] .vision-hero.has-hero-bg.has-hero-text .vision-desc,
html[data-theme="dark"] .vision-hero.has-hero-bg.has-hero-text-dark .vision-desc {
    color: var(--hero-text-dark, #ffffff);
    opacity: .88;
}

html[data-theme="dark"] .vision-hero.has-hero-text-dark .vision-title {
    color: var(--hero-text-dark) !important;
}

html[data-theme="dark"] .vision-hero.has-hero-text-dark .vision-desc {
    color: var(--hero-text-dark);
    opacity: .88;
}

.vision-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.vision-hero.has-hero-bg .s-btn-dark {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--dark-primary);
}

.vision-hero.has-hero-bg .s-btn-dark:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.vision-image-box {
    position: relative;
}

.vision-image-box img {
    display: block;
    width: 100%;
    border-radius: clamp(24px, 3vw, 32px);
    position: relative;
    z-index: 2;
}

@media (max-width: 991.98px) {
    .vision-actions {
        justify-content: center;
    }

    .vision-hero.has-mobile-bg {
        padding: clamp(84px, 16vw, 132px) 0;
        background-color: var(--dark-primary);
        background-image:
            linear-gradient(180deg, rgba(2, 43, 77, .78) 0%, rgba(2, 43, 77, .62) 45%, rgba(2, 43, 77, .88) 100%),
            var(--hero-bg-mobile);
        background-size: cover;
        background-position: center;
    }

    html[data-theme="dark"] .vision-hero.has-mobile-bg {
        background-image:
            linear-gradient(180deg, rgba(2, 6, 23, .82) 0%, rgba(2, 6, 23, .66) 45%, rgba(2, 6, 23, .90) 100%),
            var(--hero-bg-mobile-dark, var(--hero-bg-mobile));
    }

    .vision-hero.has-mobile-bg .vision-shape,
    .vision-hero.has-mobile-bg .vision-image-box {
        display: none;
    }

    .vision-hero.has-mobile-bg .vision-title,
    html[data-theme="dark"] .vision-hero.has-mobile-bg .vision-title {
        color: #ffffff !important;
    }

    .vision-hero.has-mobile-bg .vision-desc {
        color: rgba(255, 255, 255, .88);
    }

    .vision-hero.has-mobile-bg.has-hero-text .vision-title,
    .vision-hero.has-mobile-bg.has-hero-text-dark .vision-title,
    html[data-theme="dark"] .vision-hero.has-mobile-bg.has-hero-text .vision-title,
    html[data-theme="dark"] .vision-hero.has-mobile-bg.has-hero-text-dark .vision-title {
        color: var(--hero-text-dark, #ffffff) !important;
    }

    .vision-hero.has-mobile-bg.has-hero-text .vision-desc,
    .vision-hero.has-mobile-bg.has-hero-text-dark .vision-desc,
    html[data-theme="dark"] .vision-hero.has-mobile-bg.has-hero-text .vision-desc,
    html[data-theme="dark"] .vision-hero.has-mobile-bg.has-hero-text-dark .vision-desc {
        color: var(--hero-text-dark, #ffffff);
        opacity: .88;
    }

    .vision-hero.has-mobile-bg .s-btn-dark {
        background-color: #ffffff;
        border-color: #ffffff;
        color: var(--dark-primary);
    }

    .vision-hero.has-mobile-bg .s-btn-dark:hover {
        background-color: var(--primary);
        border-color: var(--primary);
        color: #ffffff;
    }
}


.offers-section {
    position: relative;
}

.offers-marquee {
    direction: ltr;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.offers-marquee::-webkit-scrollbar {
    display: none;
}

.offers-marquee.is-dragging {
    cursor: grabbing;
}

.offers-marquee.is-dragging .offer-card {
    pointer-events: none;
}

.offers-marquee-track {
    display: flex;
    width: max-content;
    gap: 24px;
}

.offer-card {
    position: relative;
    display: block;
    flex: 0 0 auto;
    overflow: hidden;
    height: clamp(var(--offer-card-min-height, 200px), 24vw, var(--offer-card-max-height, 380px));
    border-radius: 32px;
    text-decoration: none;
    box-shadow: 0 15px 40px rgba(53, 72, 98, .10);
    transition: transform .35s ease, box-shadow .35s ease;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 60px rgba(53, 72, 98, .16);
}

.offer-card img {
    display: block;
    height: 100%;
    width: auto;
    user-select: none;
    -webkit-user-drag: none;
}


.home-info {
    position: relative;
    overflow: hidden;
    border-radius: clamp(24px, 3vw, 32px);
    padding: clamp(28px, 5vw, 72px);
    background-color: var(--dark-primary);
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 50px rgba(53, 72, 98, .12);
}

.home-info::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2, 43, 77, .55), rgba(16, 137, 236, .25));
}

.home-info-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: clamp(26px, 4vw, 48px);
    border-radius: clamp(20px, 2.5vw, 28px);
    background: #fff;
    box-shadow: 0 20px 50px rgba(53, 72, 98, .18);
    text-align: center;
}

.home-info-text {
    margin: 0;
    color: var(--gray);
    font-size: clamp(16px, 1.6vw, 20px);
    font-weight: 400;
    line-height: 2;
}
