:root {
    --bd-blue: #2f94ee;
    --bd-blue-light: #a9d0f5;
    --bd-blue-soft: #e9f4ff;
    --bd-text: #6f6a5f;
    --bd-dark: #343434;
    --bd-muted: #7d7d7d;
    --bd-bg: #f7f8fa;
    --bd-white: #ffffff;
    --bd-cream: #eceee7;
    --bd-border: rgba(30, 45, 70, 0.10);
    --bd-shadow: 0 18px 45px rgba(30, 45, 70, 0.10);
    --bd-radius: 24px;
    --bahadirweb-hero-bg: none;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Ubuntu", Arial, sans-serif;
    color: var(--bd-text);
    background: var(--bd-white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

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

.bd-container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

/* =========================
   Header Desktop
========================= */

.bd-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.06);
}

.bd-header__inner {
    width: min(1320px, calc(100% - 40px));
    min-height: 92px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
}

.bd-header__logo {
    margin-right: auto;
}

.bd-header__logo a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 400;
    color: var(--bd-text);
    letter-spacing: -0.04em;
}

.bd-header__logo img,
.bd-header__logo .custom-logo {
    max-width: 230px;
    max-height: 56px;
    width: auto;
    height: auto;
}

.bd-logo-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--bd-blue-light);
    display: inline-block;
    flex: 0 0 auto;
}

.bd-logo-text {
    letter-spacing: -0.04em;
}

.bd-nav {
    display: flex;
    align-items: center;
}

.bd-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 26px;
    padding: 0;
    margin: 0;
}

.bd-menu li {
    position: relative;
}

.bd-menu a {
    font-size: 16px;
    color: var(--bd-dark);
    transition: color .2s ease;
}

.bd-menu a:hover {
    color: var(--bd-blue);
}

.bd-header__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    white-space: nowrap;
}

.bd-working-hours {
    font-size: 14px;
    color: var(--bd-muted);
}

.bd-appointment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--bd-blue);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(47, 148, 238, 0.28);
}

.bd-phone {
    color: var(--bd-muted);
    font-size: 16px;
}

.bd-menu-toggle {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: var(--bd-blue-soft);
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 0 12px;
    cursor: pointer;
}

.bd-menu-toggle span {
    height: 2px;
    width: 100%;
    background: var(--bd-blue);
    border-radius: 999px;
}

/* =========================
   Hero Desktop
========================= */

.bd-hero {
    position: relative;
    min-height: calc(100vh - 92px);
    background:
        radial-gradient(circle at 15% 0%, rgba(47, 148, 238, 0.08), transparent 28%),
        linear-gradient(90deg, #fbfbfb 0%, #ffffff 100%);
    overflow: hidden;
}

.bd-hero__logo-shape {
    display: none;
}

.bd-hero__inner {
    min-height: calc(100vh - 92px);
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 40px;
}

.bd-hero__subtitle {
    display: inline-block;
    color: var(--bd-blue);
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 300;
}

.bd-hero__title {
    margin: 0;
    max-width: 560px;
    font-size: clamp(42px, 5vw, 74px);
    line-height: 1.1;
    letter-spacing: -0.055em;
    font-weight: 300;
    color: var(--bd-text);
}

.bd-hero__button {
    margin-top: 42px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 56px;
    padding: 0 34px;
    border: 2px solid rgba(47, 148, 238, 0.55);
    border-radius: 999px;
    color: var(--bd-dark);
    background: rgba(255, 255, 255, 0.75);
    transition: .2s ease;
}

.bd-hero__button:hover {
    background: var(--bd-blue);
    color: #fff;
    border-color: var(--bd-blue);
    transform: translateY(-2px);
}

.bd-hero__button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.bd-hero__rating {
    margin-top: 140px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px 10px 8px;
    border-radius: 999px;
    background: #fff;
    box-shadow: var(--bd-shadow);
}

.bd-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
    font-weight: 800;
    color: #4285f4;
    font-family: Arial, sans-serif;
}

.bd-stars {
    color: #f8c400;
    letter-spacing: 1px;
}

.bd-hero__image {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.bd-hero__image img {
    width: 100%;
    max-height: calc(100vh - 110px);
    object-fit: contain;
    object-position: bottom center;
}

.bd-hero__placeholder {
    width: 100%;
    min-height: 620px;
    border-radius: 40px;
    background: linear-gradient(135deg, #edf6ff, #ffffff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bd-blue);
    border: 1px dashed rgba(47, 148, 238, 0.35);
}

/* =========================
   Sections
========================= */

.bd-section {
    padding: 95px 0;
}

.bd-section-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.bd-section-heading span {
    color: var(--bd-blue);
    font-weight: 600;
}

.bd-section-heading h2 {
    margin: 8px 0 14px;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
    letter-spacing: -0.04em;
    font-weight: 300;
    color: var(--bd-text);
}

.bd-section-heading p {
    margin: 0;
    color: var(--bd-muted);
    font-size: 18px;
}

/* =========================
   Services
========================= */

.bd-services {
    position: relative;
    background:
        radial-gradient(circle at 12% 0%, rgba(47, 148, 238, 0.07), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.bd-section-heading--center {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.bd-service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.bd-service-card {
    min-width: 0;
}

.bd-service-card a {
    position: relative;
    min-height: 285px;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(30, 45, 70, 0.08);
    box-shadow: 0 18px 48px rgba(30, 45, 70, 0.07);
    overflow: hidden;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease,
        background .25s ease;
}

.bd-service-card a::before {
    content: "";
    position: absolute;
    right: -45px;
    top: -45px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(47, 148, 238, 0.08);
    transition: .25s ease;
}

.bd-service-card a:hover {
    transform: translateY(-7px);
    border-color: rgba(47, 148, 238, 0.28);
    background: #ffffff;
    box-shadow: 0 26px 70px rgba(30, 45, 70, 0.13);
}

.bd-service-card a:hover::before {
    transform: scale(1.18);
    background: rgba(47, 148, 238, 0.13);
}

.bd-service-card__top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.bd-service-card__icon {
    width: 50px;
    height: 50px;
    border-radius: 18px;
    background: var(--bd-blue-soft);
    color: var(--bd-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    line-height: 1;
}

.bd-service-card__icon span {
    display: block;
    transform: translateY(-1px);
}

.bd-service-card__number {
    color: rgba(111, 106, 95, 0.18);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.bd-service-card h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 13px;
    color: var(--bd-dark);
    font-size: 24px;
    line-height: 1.22;
    letter-spacing: -0.035em;
    font-weight: 500;
}

.bd-service-card p {
    position: relative;
    z-index: 2;
    margin: 0 0 24px;
    color: var(--bd-muted);
    font-size: 16px;
    line-height: 1.65;
}

.bd-service-card__link {
    position: relative;
    z-index: 2;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bd-blue);
    font-size: 15px;
    font-weight: 700;
}

.bd-service-card__link span {
    transition: transform .2s ease;
}

.bd-service-card a:hover .bd-service-card__link span {
    transform: translateX(4px);
}

/* =========================
   Doctors
========================= */

.bd-doctors {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

.bd-doctors .bd-section-heading {
    max-width: 760px;
    margin-bottom: 46px;
}

.bd-doctor-slider-wrap {
    position: relative;
}

.bd-doctor-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
}

.bd-doctor-card {
    min-width: 0;
}

.bd-doctor-card a {
    display: block;
}

.bd-doctor-card__image {
    position: relative;
    width: 100%;
    height: 315px;
    border-radius: 14px;
    overflow: hidden;
    background: #e9e9e9;
    box-shadow: none;
}

.bd-doctor-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform .3s ease;
}

.bd-doctor-card a:hover .bd-doctor-card__image img {
    transform: scale(1.035);
}

.bd-doctor-card__placeholder {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 50% 20%, rgba(47, 148, 238, 0.10), transparent 30%),
        linear-gradient(180deg, #f2f3f4 0%, #e4e6e8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(111, 106, 95, 0.55);
    font-size: 14px;
}

.bd-doctor-card__body {
    padding: 15px 8px 0;
    text-align: center;
}

.bd-doctor-card__body h3 {
    margin: 0;
    color: var(--bd-dark);
    font-size: 19px;
    line-height: 1.25;
    letter-spacing: -0.035em;
    font-weight: 400;
}

.bd-doctor-card__body p {
    margin: 6px 0 0;
    color: var(--bd-muted);
    font-size: 15px;
    line-height: 1.4;
}

.bd-doctor-arrow {
    position: absolute;
    top: 135px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #a9d0f5;
    color: #ffffff;
    font-size: 34px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(30, 45, 70, 0.12);
    transition: transform .2s ease, background .2s ease;
}

.bd-doctor-arrow:hover {
    transform: translateY(-2px);
    background: var(--bd-blue);
}

.bd-doctor-arrow--prev {
    left: -54px;
}

.bd-doctor-arrow--next {
    right: -54px;
}

.bd-doctors__bottom {
    display: flex;
    justify-content: center;
    margin-top: 52px;
}

.bd-soft-button {
    min-height: 56px;
    padding: 0 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #f1f1f1;
    color: var(--bd-dark);
    font-weight: 500;
    box-shadow: 0 14px 34px rgba(30, 45, 70, 0.07);
    transition: .2s ease;
}

.bd-soft-button span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--bd-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.bd-soft-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(30, 45, 70, 0.12);
}

.bd-soft-button span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--bd-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.bd-soft-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(30, 45, 70, 0.12);
}

/* =========================
   Footer
========================= */

.bd-footer {
    background: #f5f6f8;
    padding-top: 50px;
}

.bd-footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 36px;
}

.bd-footer__bottom {
    border-top: 1px solid var(--bd-border);
    padding: 18px 0;
    color: var(--bd-muted);
    font-size: 14px;
}

.bd-footer-menu {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
}

/* =========================
   Tablet
========================= */

@media (max-width: 1100px) {
    .bd-header__actions,
    .bd-nav {
        display: none;
    }

    .bd-menu-toggle {
        display: flex;
    }

    .bd-hero__inner {
        grid-template-columns: 1fr;
        padding: 70px 0;
    }

    .bd-hero__rating {
        margin-top: 42px;
    }

    .bd-hero__image {
        min-height: 420px;
    }

    .bd-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
.bd-services {
    margin-top: 0;
}

.bd-section-heading--center {
    text-align: left;
}

.bd-service-card a {
    min-height: 255px;
    padding: 25px;
    border-radius: 26px;
}

.bd-service-card h3 {
    font-size: 22px;
}
}

.bd-doctor-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 18px 8px;
    margin-left: -18px;
    margin-right: -18px;
}

.bd-doctor-grid::-webkit-scrollbar {
    display: none;
}

.bd-doctor-card {
    flex: 0 0 72%;
    scroll-snap-align: start;
}

.bd-doctor-card__image {
    height: 330px;
    border-radius: 18px;
}

.bd-doctor-arrow {
    display: none;
}

.bd-doctors__bottom {
    justify-content: flex-start;
    margin-top: 34px;
}

.bd-soft-button {
    min-height: 52px;
    padding: 0 18px;
}

/* =========================================================
   Mobile - Referans görsele daha yakın hero/header
========================================================= */

@media (max-width: 720px) {
    .bd-container {
        width: 100%;
        margin: 0;
    }

    .bd-site-main {
        margin-top: 0;
    }

    .bd-header {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 72px;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        z-index: 90;
    }

    .bd-header__inner {
        width: 100%;
        min-height: 72px;
        padding: 0 17px;
        margin: 0;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .bd-header__logo {
        margin-right: auto;
        max-width: calc(100% - 72px);
        overflow: hidden;
        position: relative;
        z-index: 6;
    }

    .bd-header__logo a {
        gap: 8px;
        font-size: 20px;
        line-height: 1;
        font-weight: 300;
        color: #6f6a5f;
        white-space: nowrap;
        letter-spacing: -0.055em;
    }

    .bd-header__logo img,
    .bd-header__logo .custom-logo {
        max-width: 190px;
        max-height: 38px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    .bd-logo-mark {
        width: 22px;
        height: 22px;
        border-radius: 7px;
        flex: 0 0 22px;
        background: #a9d0f5;
    }

    .bd-logo-text {
        max-width: 220px;
        display: inline-block;
        overflow: hidden;
        text-overflow: ellipsis;
        letter-spacing: -0.055em;
    }

    .bd-menu-toggle {
        display: flex;
        width: 42px;
        height: 42px;
        margin-left: auto;
        padding: 0;
        border: 0;
        border-radius: 50%;
        background: transparent;
        box-shadow: none;
        align-items: center;
        justify-content: center;
        gap: 5px;
        position: relative;
        z-index: 6;
    }

    .bd-menu-toggle span {
        width: 25px;
        height: 2px;
        background: #3f3f3f;
        border-radius: 999px;
    }

    .bd-nav,
    .bd-header__actions {
        display: none;
    }

    .bd-hero {
        position: relative;
        display: block;
        width: 100%;
        height: 805px;
        min-height: 805px;
        padding: 0;
        margin: 0;
        background-color: #f1f3ec;
        background-image: var(--bahadirweb-hero-bg);
        background-size: cover;
        background-repeat: no-repeat;

        /* Görseli yukarı taşıyoruz; yüz başlığın üstüne çıkacak */
        background-position: center -92px;

        overflow: hidden;
    }

    /* Alttaki beyaz oval geçiş */
    .bd-hero::after {
        content: "";
        position: absolute;
        left: -60px;
        right: -60px;
        bottom: -88px;
        height: 250px;
        background: #ffffff;
        border-radius: 50% 50% 0 0;
        transform: rotate(6deg);
        z-index: 3;
        pointer-events: none;
    }

    /* Logo arkasındaki üst beyaz eğimli alan */
    .bd-hero__logo-shape {
        display: block;
        position: absolute;
        width: 390px;
        height: 145px;
        left: -48px;
        top: -78px;
        background: #ffffff;
        border-radius: 0 0 78px 78px;
        transform: rotate(-12deg);
        z-index: 2;
        pointer-events: none;
        box-shadow: 0 18px 36px rgba(30, 45, 70, 0.035);
    }

    .bd-hero__inner {
        position: relative;
        display: block;
        width: 100%;
        height: 805px;
        min-height: 805px;
        padding: 0;
        margin: 0;
        z-index: 5;
    }

    .bd-hero__content {
        position: relative;
        z-index: 8;
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 402px 17px 0;
        text-align: left;
    }

    .bd-hero__subtitle {
        display: block;
        margin: 0 0 30px;
        color: #3d91df;
        font-size: 18px;
        line-height: 1.35;
        font-weight: 300;
    }

    .bd-hero__title {
        width: 100%;
        max-width: 560px;
        margin: 0;
        color: #6f6a5f;
        font-size: 50px;
        line-height: 1.05;
        letter-spacing: -0.07em;
        font-weight: 300;
    }

    .bd-hero__button {
        display: none;
    }

    /* Rating artık örnekteki gibi başlığın altında */
    .bd-hero__rating {
        position: relative;
        left: auto;
        top: auto;
        margin: 72px 0 0;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 15px 8px 7px;
        border-radius: 999px;
        background: #ffffff;
        box-shadow: 0 13px 32px rgba(30, 45, 70, 0.13);
        z-index: 9;
    }

    .bd-google {
        width: 34px;
        height: 34px;
        font-size: 18px;
        flex: 0 0 34px;
        line-height: 1;
    }

    .bd-hero__rating strong {
        font-size: 16px;
        color: #3f3f3f;
        line-height: 1;
    }

    .bd-stars {
        font-size: 18px;
        letter-spacing: 0;
        line-height: 1;
        color: #f8c400;
    }

    .bd-hero__image,
    .bd-hero__placeholder {
        display: none;
    }

    .bd-section {
        padding: 65px 18px;
    }

    .bd-service-grid {
        grid-template-columns: 1fr;
    }

    .bd-doctors .bd-section-heading {
        margin-bottom: 34px;
    }

    .bd-doctor-grid {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 0 18px 8px;
        margin-left: -18px;
        margin-right: -18px;
    }

    .bd-doctor-grid::-webkit-scrollbar {
        display: none;
    }

    .bd-doctor-card {
        flex: 0 0 72%;
        scroll-snap-align: start;
    }

    .bd-doctor-card__image {
        height: 330px;
        border-radius: 18px;
    }

    .bd-doctor-card__body {
        text-align: left;
        padding: 14px 6px 0;
    }

    .bd-doctor-arrow {
        display: none;
    }

    .bd-doctors__bottom {
        justify-content: flex-start;
        margin-top: 34px;
    }

    .bd-soft-button {
        min-height: 52px;
        padding: 0 18px;
    }

    .bd-footer__inner {
        flex-direction: column;
        padding-left: 18px;
        padding-right: 18px;
    }

    .bd-footer-menu {
        flex-direction: column;
    }
}

/* 480px altı - ana mobil görünüm */
@media (max-width: 479px) {
    .bd-hero {
        height: 805px;
        min-height: 805px;
        background-size: cover;
        background-position: center -92px;
    }

    .bd-hero__inner {
        height: 805px;
        min-height: 805px;
    }

    .bd-hero__content {
        padding-top: 402px;
    }

    .bd-hero__title {
        font-size: 50px;
        line-height: 1.05;
    }

    .bd-hero__rating {
        margin-top: 72px;
    }
}

/* 430px altı */
@media (max-width: 430px) {
    .bd-hero {
        height: 790px;
        min-height: 790px;
        background-position: center -88px;
    }

    .bd-hero__inner {
        height: 790px;
        min-height: 790px;
    }

    .bd-hero__content {
        padding-top: 398px;
    }

    .bd-hero__title {
        font-size: 48px;
    }

    .bd-hero__rating {
        margin-top: 70px;
    }
}

/* 390px altı */
@media (max-width: 390px) {
    .bd-header__logo a {
        font-size: 18px;
    }

    .bd-logo-text {
        max-width: 190px;
    }

    .bd-hero {
        height: 760px;
        min-height: 760px;
        background-position: center -76px;
    }

    .bd-hero__inner {
        height: 760px;
        min-height: 760px;
    }

    .bd-hero__content {
        padding-top: 382px;
    }

    .bd-hero__subtitle {
        font-size: 17px;
        margin-bottom: 26px;
    }

    .bd-hero__title {
        font-size: 43px;
    }

    .bd-hero__rating {
        margin-top: 66px;
    }
}

/* Çok küçük cihaz */
@media (max-width: 360px) {
    .bd-header__logo a {
        font-size: 16px;
    }

    .bd-logo-mark {
        width: 20px;
        height: 20px;
        border-radius: 6px;
        flex-basis: 20px;
    }

    .bd-menu-toggle span {
        width: 23px;
    }

    .bd-hero {
        height: 730px;
        min-height: 730px;
        background-position: center -62px;
    }

    .bd-hero__content {
        padding-top: 368px;
    }

    .bd-hero__title {
        font-size: 39px;
    }

    .bd-hero__rating {
        margin-top: 60px;
    }
}
/* =========================================================
   BahadirWeb Dental - Doctor Desktop Force Fix
   Bu kod en altta kalmalı
========================================================= */

@media (min-width: 721px) {
    .bd-doctors .bd-container {
        width: min(1200px, calc(100% - 40px));
        margin-left: auto;
        margin-right: auto;
    }

    .bd-doctor-slider-wrap {
        position: relative;
        width: 100%;
    }

    .bd-doctor-grid {
        display: grid !important;
        grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
        gap: 18px !important;
        overflow: visible !important;
        padding: 0 !important;
        margin: 0 !important;
        scroll-snap-type: none !important;
    }

    .bd-doctor-card {
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        flex: initial !important;
        scroll-snap-align: initial !important;
    }

    .bd-doctor-card a {
        display: block !important;
        width: 100% !important;
    }

    .bd-doctor-card__image {
        width: 100% !important;
        height: 315px !important;
        border-radius: 14px !important;
        overflow: hidden !important;
        box-shadow: none !important;
        background: #e9e9e9 !important;
    }

    .bd-doctor-card__image img {
        width: 100% !important;
        height: 100% !important;
        display: block !important;
        object-fit: cover !important;
        object-position: center top !important;
    }

    .bd-doctor-card__body {
        text-align: center !important;
        padding: 15px 8px 0 !important;
    }

    .bd-doctor-arrow {
        display: inline-flex !important;
    }

    .bd-doctor-arrow--prev {
        left: -54px !important;
    }

    .bd-doctor-arrow--next {
        right: -54px !important;
    }

    .bd-doctors__bottom {
        justify-content: center !important;
        margin-top: 52px !important;
    }
}