.home-promo {
    height: 50vh;
    display: block;
    width: 100%;
}


/* === Home Tibbi Section === */

.home-tibbi {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    font-family: "DM Sans", sans-serif;
}

.home-tibbi .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.home-tibbi .container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: center;
}


/* Sol */

.tibbi-left {
    flex: 1;
}

.tibbi-left .section-label {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    opacity: 0.8;
    display: inline-block;
    margin-bottom: 15px;
}

.tibbi-left h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
}

.tibbi-left p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 400px;
}

.tibbi-left .btn-primary {
    display: inline-flex;
    /* ikon ve yazı yan yana */
    align-items: center;
    gap: 10px;
    /* yazı-ikon arası boşluk */
    padding: 14px 30px;
    border-radius: 30px;
    background: #fff;
    color: #BC0042;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.tibbi-left .btn-primary svg path {
    stroke: #BC0042;
    transition: stroke 0.3s;
}

.tibbi-left .btn-primary:hover {
    background: #BC0042;
    color: #fff;
}

.tibbi-left .btn-primary:hover svg path {
    stroke: #fff;
}


/* Sağ */

.tibbi-right {
    flex: 1;
}


/* Search */

.tibbi-search {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 30px;
    padding: 0 20px;
}

.tibbi-search svg {
    flex-shrink: 0;
    margin-right: 10px;
}

.tibbi-search input {
    flex: 1;
    border: none;
    padding: 14px 10px;
    font-size: 14px;
    outline: none;
    color: #333;
    background: transparent;
}

.tibbi-search button {
    display: none;
    /* artık gerek yok */
}


/* Tags */

.tibbi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    min-height: 120px;
}

.tibbi-tags button {
    padding: 12px 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    border-radius: 30px;
    color: #fff;
    height: 50px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.tibbi-tags button:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
}


/* === Sağlık Rehberi Section === */

.home-health {
    padding: 100px 0;
    background: #fff;
    font-family: "DM Sans", sans-serif;
}

.health-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.health-header .section-label {
    font-size: 14px;
    color: #777;
    display: block;
    margin-bottom: 5px;
}

.health-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: #51678F;
}

.health-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.health-actions .swiper-pagination {
    position: static;
}

.health-actions .swiper-buttons {
    display: flex;
    gap: 10px;
}


/* Swiper navigation butonları */

.health-actions .swiper-button-prev,
.health-actions .swiper-button-next {
    position: static;
    /* Swiper default absolute yerine normal akış */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid #51678F;
    transition: all 0.3s;
}

.health-actions .btn-solid {
    white-space: nowrap;
    line-height: 1;
    padding: 12px 24px;
}


/* Swiper default ikonları kapat */

.swiper-button-prev::after,
.swiper-button-next::after {
    content: none !important;
}


/* Custom ok ikonları */

.swiper-button-prev::before,
.swiper-button-next::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border: solid currentColor;
}


/* Sol ok */

.swiper-button-prev::before {
    border-width: 0 0 2px 2px;
    transform: rotate(45deg);
}


/* Sağ ok */

.swiper-button-next::before {
    border-width: 0 2px 2px 0;
    transform: rotate(-45deg);
}


/* Aktif durumda (tıklanabilir) */

.swiper-button-prev,
.swiper-button-next {
    background: #51678F;
    color: #fff;
}


/* Disabled durumda (Swiper otomatik class ekliyor) */

.swiper-button-disabled {
    background: #fff !important;
    color: #ccc !important;
    border-color: #ccc !important;
    cursor: default;
}


/* "Tüm Yazılar" butonu */

.health-actions .btn-outline {
    white-space: nowrap;
    /* Yazı tek satırda kalsın */
    height: 42px;
    /* Sabit yükseklik */
    line-height: 22px;
    /* Dikey hizalama */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.health-actions .btn-outline:hover {
    background: #51678F;
    color: #fff;
}

.home-health .swiper-button-next,
.home-health .swiper-button-prev {
    margin-top: 0 !important;
}

.home-health .swiper-button-prev::before,
.home-health .swiper-button-next::before {
    color: #fff;
}

.home-health .swiper-button-disabled {
    opacity: 1 !important;
    color: #51678F !important;
}

.home-health .swiper-button-prev.swiper-button-disabled::before,
.home-health .swiper-button-next.swiper-button-disabled::before {
    opacity: 1 !important;
    color: #51678F !important;
}

.home-health .swiper-pagination-bullet-active {
    background-color: #51678F !important;
}


/* === Home Medical Technologies === */

.home-medical-technologies {
    padding: 100px 0;
    font-family: "DM Sans", sans-serif;
    background: #fff;
    min-height: 80vh;
}

.home-medical-technologies .container {
    display: flex;
    gap: 60px;
}


/* Sol */

.medical-left {
    flex: 0 0 33%;
}

.medical-left .section-label {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
    display: block;
}

.medical-left h2 {
    font-size: 36px;
    font-weight: 600;
    color: #51678F;
    margin-bottom: 20px;
}

.medical-left p {
    font-size: 16px;
    line-height: 1.6;
    color: #51678F;
    margin-bottom: 30px;
}

.medical-left .btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #51678F;
    padding: 10px 20px;
    border-radius: 30px;
    background: #51678F;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
}

.medical-left .btn-solid:hover {
    background: #fff;
    color: #51678F;
}


/* Sağ */

.medical-right {
    flex: 0 0 66%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.medical-item {
    border-top: 1px solid #e0e0e0;
    padding: 20px 0;
    cursor: pointer;
}

.medical-title {
    font-size: 22px;
    font-weight: 500;
    color: #51678F;
    transition: color 0.3s;
    margin-bottom: 10px;
}


/* Gizli içerik */

.medical-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.medical-content h4 {
    font-size: 20px;
    font-weight: 600;
    color: #BC0042;
    margin-bottom: 10px;
}

.medical-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #51678F;
    margin-bottom: 15px;
}

.medical-content img {
    max-width: 100%;
    border-radius: 12px;
}


/* Hover durumunda açılma */

.medical-item:hover .medical-title {
    color: #BC0042;
}

.medical-item:hover .medical-content {
    display: block;
}


/* Animasyon */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Görsel önizleme alanı */

.medical-image-preview {
    position: absolute;
    pointer-events: none;
    width: 240px;
    height: 160px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    background-color: #eee;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s;
    z-index: 10;
}


/* === Corporate News === */

.corporate-news {
    padding: 100px 0;
    font-family: "DM Sans", sans-serif;
}

.corporate-news-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.corporate-news-header .section-label {
    font-size: 14px;
    color: #777;
    margin-bottom: 6px;
    display: block;
}

.corporate-news-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #51678F;
}

.corporate-news-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    /* sol küçük, sağ büyük */
    gap: 40px;
}

.corporate-news-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 sütun */
    gap: 20px;
    /* sütunlar ve satırlar arası boşluk */
}

.corporate-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.corporate-card img {
    width: 100%;
    display: block;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
}

.corporate-meta {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.corporate-card h3 {
    font-size: 18px;
    font-weight: 500;
    color: #51678F;
    line-height: 1.4;
}

.corporate-card.big h2.corporate-highlight {
    font-size: 28px;
    font-weight: 600;
    color: #BC0042;
    line-height: 1.3;
    margin-bottom: 20px;
}

.corporate-card.big img {
    border-radius: 12px;
}

.corporate-news-row {
    display: flex;
    gap: 60px;
}

.corporate-news-col {
    flex: 1;
}


/* === Quick Access Section === */

.home-quickaccess {
    padding: 100px 0;
    background: #fff url('../images/bg-quick.png') center center no-repeat;
    background-size: cover;
    font-family: "DM Sans", sans-serif;
}

.home-quickaccess .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}


/* Sol */

.quickaccess-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* üst ve altı ayırır */
    height: 100%;
    /* container yüksekliğini doldursun */
}

.quickaccess-left .section-label {
    font-size: 14px;
    color: #777;
    display: block;
    margin-bottom: 10px;
}

.quickaccess-left h2 {
    font-size: 32px;
    font-weight: 600;
    color: #BC0042;
    margin-bottom: 20px;
}

.quickaccess-left .btn-solid {
    margin-bottom: 40px;
}

.quickaccess-info {
    display: flex;
    align-items: flex-start;
    gap: 120px;
}

.quickaccess-info img {
    max-width: 50%;
    border-radius: 12px;
}

.quickaccess-info .info-icon {
    width: 60px;
    margin-bottom: 20px;
}

.quickaccess-info p {
    font-size: 16px;
    color: #51678F;
    line-height: 1.6;
}

.quickaccess-left-top p {
    font-size: 16px;
    color: #51678F;
    line-height: 1.6;
    margin-bottom: 20px;
}


/* Sağ */

.qa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.qa-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    border: 1px solid #eee;
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: inherit;
    background: var(--bg-image) center/cover no-repeat;
}

.onHoverImg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    transition: .3s all linear;
}

.qa-card:hover .onHoverImg {
    opacity: 0;
}


/* Yuvarlak görsel */

.qa-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    transform: translate(-50%, -50%);
    transition: opacity 0.4s ease;
    z-index: 2;
}


/* İçerik */

.qa-content {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.qa-label {
    font-size: 14px;
    color: #777;
    display: block;
    margin-bottom: 6px;
}

.qa-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #51678F;
}

.qa-text {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    margin-top: auto;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s;
}

.qa-arrow {
    font-size: 20px;
    font-weight: bold;
    color: #51678F;
    align-self: flex-start;
    transition: transform 0.3s;
    width: 50px;
    height: 50px;
    border: 1px solid #51678F;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* Hover efektleri */

.qa-card:hover .qa-circle {
    opacity: 0;
}

.qa-card:hover .qa-text {
    opacity: 1;
    transform: translateY(-20px);
}

.qa-card:hover .qa-arrow {
    transform: translateX(6px);
}

#qa1 {
    background: url('../images/bg-qa-1.png') center center no-repeat;
    background-size: cover;
}

#qa2 {
    background: url('../images/bg-qa-2.png') center center no-repeat;
    background-size: cover;
}

#qa3 {
    background: url('../images/bg-qa-3.png') center center no-repeat;
    background-size: cover;
}

#qa4 {
    background: url('../images/bg-qa-4.png') center center no-repeat;
    background-size: cover;
}

.qa-card:hover .qa-label {
    color: #fff;
}

.qa-card:hover .qa-content h3 {
    color: #fff;
}

.qa-card:hover .qa-arrow {
    color: #fff;
    border-color: #fff;
}


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

.home-doctors {
    padding: 100px 0;
    font-family: "DM Sans", sans-serif;
}

.home-doctors .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}


/* Sol Kolon */

.doctors-left .section-label {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
    display: block;
}

.doctors-left h2 {
    font-size: 36px;
    font-weight: 600;
    color: #51678F;
    margin-bottom: 20px;
}

.doctors-left p {
    font-size: 16px;
    color: #51678F;
    line-height: 1.6;
    margin-bottom: 30px;
}


/* Tanıtım Filmi */

.promo-video {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-top: 40px;
    cursor: pointer;
}

.promo-video img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

.promo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.play-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.promo-text h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.promo-text p {
    font-size: 14px;
    line-height: 1.4;
}


/* Sağ Kolon */

.doctors-right {
    display: flex;
    gap: 20px;
}

.doctor-card {
    position: relative;
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    background: #fdf2f5;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* üst ve alt ayrılır */
    text-align: center;
    padding: 20px;
    transition: .3s all linear;
}

.doctor-card:hover {
    background-color: #f4d9e3;
}

.doctor-card svg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}

.doctor-card .doctor-watermark {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
}


/* İsim ve Bölüm üstte */

.doctor-info {
    position: absolute;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding-left: 20px;
    padding-right: 20px;
    top: 40px;
    z-index: 2;
}

.doctor-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #BC0042;
    margin-bottom: 5px;
}

.doctor-info p {
    font-size: 14px;
    color: #51678F;
}


/* Fotoğraf altta */

.doctor-card {
    height: 550px;
}

.doctor-card img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: center bottom;
}

.doctor-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 30px;
    border-radius: 30px;
    background: #fff;
    color: #BC0042;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    opacity: 0;
    transition: all 0.3s;
}


/* Hover Efekt */

.doctor-card:hover .doctor-bg {
    opacity: 0.4;
    background: #BC0042;
}

.doctor-card:hover .doctor-btn {
    opacity: 1;
    bottom: 40px;
}


/* === Certificates Section === */

.home-certificates {
    padding: 40px 0;
    background: #fff;
    font-family: "DM Sans", sans-serif;
}

.home-certificates .container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
}

.certificates-left h2 {
    font-size: 28px;
    font-weight: 600;
    color: #51678F;
    line-height: 1.4;
}

.certificates-right {
    justify-content: space-between;
}

.certificates-right h2 {
    font-family: "DM Sans", sans-serif;
    font-size: 30px;
    font-weight: 600;
    line-height: 1.1;
    color: #BC0042;
    margin-bottom: 12px;
}

.certificate-card-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.certificate-card {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f9fafc;
    border-radius: 12px;
    padding: 20px 30px;
}

.certificate-card img {
    width: 60px;
    height: auto;
    flex-shrink: 0;
}

.certificate-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #BC0042;
    margin-bottom: 5px;
}

.certificate-card p {
    font-size: 14px;
    color: #51678F;
    line-height: 1.4;
}


/* === Home Swiper === */

.home-swiper {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
    font-family: "DM Sans", sans-serif;
}


/* Sol butonlar absolute */


/* Sol butonlar */

.home-swiper .swiper-left-buttons {
    position: absolute;
    top: 50%;
    left: 100px;
    margin-top: 80px;
    /* Tasarımdaki gibi */
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.home-swiper .swiper-left-buttons a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 260px;
    padding: 18px 24px;
    border: 1px solid #51678F;
    background: rgba(81, 103, 143, 0.50);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s;
}

.home-swiper .swiper-left-buttons a:hover {
    background: #BC0042;
    border-color: #BC0042;
}


/* İkon */

.home-swiper .swiper-left-buttons a img {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}


/* Metin */

.home-swiper .swiper-left-buttons a span {
    flex: 1;
}


/* Ok işareti */

.home-swiper .swiper-left-buttons a .arrow {
    font-size: 20px;
    opacity: 0.8;
}


/* Swiper full width */

.home-swiper .home-main-swiper {
    width: 100%;
    height: 100%;
}

.home-main-swiper .swiper-nav {
    width: 110px;
    display: flex;
    gap: 10px;
}

.home-swiper .home-main-swiper .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.home-swiper .home-main-swiper .swiper-slide.video-slide::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(90deg, rgba(10, 26, 47, 0.9) 0%, rgba(18, 52, 90, 0.8) 50%, rgba(28, 76, 125, 0.7) 100%);
}

.home-swiper .slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.home-swiper .slide-content {
    position: absolute;
    bottom: 10%;
    left: 30%;
    max-width: 700px;
    z-index: 2;
    color: #fff;
}

.home-swiper .slide-label {
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
    opacity: 0.8;
}

.home-swiper .slide-content h2 {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 20px;
}

.home-swiper .slide-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 500px;
}


/* Controls bottom-right */


/* Controls wrapper */

.home-swiper .swiper-controls {
    position: absolute;
    bottom: 30px;
    right: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    /* sayı ile oklar arasında boşluk */
    z-index: 5;
}


/* Fraction */

.home-swiper .swiper-pagination-fraction {
    position: static;
    /* absolute kaldır */
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.home-swiper .swiper-pagination-current {
    font-size: 20px;
    font-weight: 700;
}

.home-swiper .swiper-pagination-total {
    font-size: 14px;
    opacity: 0.7;
}


/* Nav container */

.home-hospitals .hospital-controls .swiper-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90px;
    /* sabit genişlik */
    min-width: 90px;
    /* küçülmesini engelle */
    flex-shrink: 0;
    /* parent flex içinde daralmasın */
}


/* Buttons */

.home-swiper .swiper-button-prev,
.home-swiper .swiper-button-next {
    position: static;
    /* artık absolute değil */
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 18px;
    font-weight: bold;
    margin-top: 0;
}


/* Prev */

.home-swiper .swiper-button-prev {
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
}

.home-swiper .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
}


/* Next */

.home-swiper .swiper-button-next {
    background: #fff;
    color: #51678F;
}

.home-swiper .swiper-button-next:hover {
    background: #51678F;
    color: #fff;
}


/* === Home Hospitals === */

.home-hospitals {
    padding: 100px 0;
    background: #fff;
    font-family: "DM Sans", sans-serif;
}

.hospitals-container {
    display: grid;
    grid-template-columns: 40% 40% 20%;
    gap: 20px;
    align-items: stretch;
}


/* Sol kolon */

.hospitals-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hospitals-left .big {
    height: calc(60vh + 20px);
    border-radius: 12px;
    object-fit: cover;
}

.hospitals-left .small {
    height: 30vh;
    border-radius: 12px;
    object-fit: cover;
}


/* Orta kolon */

.hospitals-center {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hospitals-center .info-top {
    height: calc(60vh + 20px);
    background: #fff;
    border-radius: 12px;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* üstten hizala */
    gap: 15px;
}

.hospitals-center .info-top .section-label {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
    display: block;
}

.hospitals-center .info-top h2 {
    font-size: 32px;
    font-weight: 600;
    color: #51678F;
    margin-bottom: 12px;
}

.hospitals-center .info-top p {
    font-size: 16px;
    color: #51678F;
    margin-bottom: 20px;
    line-height: 1.6;
}

.hospitals-center .info-top .btn-outline {
    margin-top: auto;
    /* buton alta yaslanmaz, metin bittiği yerde kalır */
}


/* Sadece home-hospitals içindeki info-top alanındaki buton */

.home-hospitals .hospitals-center .info-top .btn-outline {
    display: inline-flex;
    /* block yerine inline-flex */
    width: auto;
    /* genişliği içeriğe göre */
    max-width: fit-content;
    /* text kadar geniş */
}

.hospitals-center .info-bottom {
    height: 30vh;
    background: #f9fafc;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* dikey ortala */
    align-items: flex-start;
    /* sola hizala */
    gap: 15px;
    /* elemanlar arası boşluk */
}

.hospitals-center .info-bottom h4 {
    font-size: 16px;
    font-weight: 600;
    color: #51678F;
    margin: 0;
}

.hospitals-center .info-bottom p {
    font-size: 18px;
    font-weight: 500;
    color: #51678F;
    margin: 0;
}

.hospitals-center .info-bottom .address-buttons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}


/* Sağ kolon */

.hospitals-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hospitals-right .info-card {
    height: 30vh;
    /* sabit kutu yüksekliği */
    background: #f9fafc;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-card img {
    width: 40px;
    height: auto;
    flex-shrink: 0;
}

.info-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-card-content h3 {
    color: #51678F;
    leading-trim: both;
    text-edge: cap;
    font-family: "DM Sans";
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -3px;
}

.info-card-content p {
    color: #51678F;
    leading-trim: both;
    text-edge: cap;
    font-family: "DM Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.address-buttons .btn-outline {
    display: flex;
    gap: 20px;
    align-items: center;
}

.address-buttons .btn-outline:hover svg {
    filter: brightness(0) invert(100%);
}


/* === Responsive === */


/* Sabit controls bar */

.home-hospitals {
    position: relative;
}

.home-hospitals .hospital-controls {
    position: absolute;
    top: 100px;
    /* right: 0; */
    width: 34%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    z-index: 20;
    left: 43%;
    height: 40px;
}


/* Oklar */

.home-hospitals .hospital-controls .swiper-nav {
    display: flex;
    gap: 10px;
    height: 40px;
    width: 90px;
    position: relative;
}

.home-hospitals .hospital-controls .swiper-button-prev,
.home-hospitals .hospital-controls .swiper-button-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f5f6f8;
    color: #51678F;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.home-hospitals .hospital-controls .swiper-button-prev:hover,
.home-hospitals .hospital-controls .swiper-button-next:hover {
    background: #51678F;
    color: #fff;
}


/* Pagination */

.home-hospitals .hospital-controls .swiper-pagination {
    position: static;
    display: flex;
    gap: 6px;
}


/* Tüm Hastaneler butonu */

.home-hospitals .hospital-controls .btn-solid {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 30px;
    background: #51678F;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s;
    text-wrap: nowrap;
}

.home-hospitals .hospital-controls .btn-solid:hover {
    background: #BC0042;
}

.home-hospitals .hospital-controls .swiper-button-prev {
    left: 0;
    right: auto;
}

.home-hospitals .hospital-controls .swiper-button-next {
    right: 0;
    left: auto;
}

.home-hospitals .swiper-pagination-bullet-active {
    background: #51678F
}

.video-slide {
    position: relative;
    overflow: hidden;
}

.slide-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.video-slide .slide-overlay {
    position: relative;
    z-index: 1;
}

.hospitals-row {
    display: flex;
    gap: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 60px;
    margin-bottom: 60px;
}

.hospitals-row .hospitals-center {
    flex: 3;
}

.hospitals-row .hospitals-left {
    flex: 2;
}

.address-buttons,
.hospitals-row .address-buttons {
    display: flex;
    gap: 20px;
}