﻿.hero-section {
    position: relative;
    min-height: 50vh; /* Adjust height as needed */
    /*background-image: url('/images/global/our-hospital.jpg');*/
    background-image: url('/images/global/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 60px 5%; /* Adjust padding */
    color: white;
    box-sizing: border-box;
}

.hero-overlay { /* Optional overlay for better text contrast */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(37, 184, 197, 0.8) 0%, rgba(37, 184, 197, 0.6) 40%, rgba(37, 184, 197, 0.1) 100%); /* Example gradient */
    z-index: 1;
}

.hero-content-container {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end; /* Align items towards the bottom */
    width: 100%;
    gap: 20px;
}

.hero-text-buttons {
    flex-basis: 55%; /* Adjust basis */
    max-width: 600px; /* Limit width */
}

.hero-contact-slider {
    display: flex;
    flex-direction: column;
    align-items: flex-end; /* Align items to the right */
    gap: 200px; /* Space between contact buttons and slider */
    flex-basis: 50%; /* Adjust basis */
}


.hero-section h1 {
    font-size: 3.5rem; /* Adjust size */
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.info-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Two columns */
    gap: 15px; /* Spacing between buttons */
    max-width: 550px; /* Adjust width */
}

.info-button {
    background-color: white;
    color: #042d59;
    padding: 12px 18px;
    border-radius: 8px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.fem {
    background-color: purple !important;
    color: white !important;
}


.kid {
    background-color: lightgreen !important;
    color: white !important;
}


.men {
    background-color: dodgerblue !important;
    color: white !important;
}


.info-button i {
    /*color: #25b8c5;*/ /* Teal icon color */
    color: white;
    font-size: 1.2em;
    width: 20px; /* Fixed width for alignment */
    text-align: center;
}

.info-button:hover {
    background-color: #f0f0f0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-self: flex-end; /* Align to the right within its container */
    margin-bottom: 20px; /* Add space below contact buttons */
}

.contact-action-button {
    background-color: #25b8c5; /* Teal background */
    color: white !important;
    padding: 15px 25px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex; /* Use inline-flex */
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    min-width: 200px; /* Minimum width */
    justify-content: center;
}

    .contact-action-button i {
        font-size: 1.3em;
    }


    .contact-action-button:hover {
        /*background-color: #1e9aab;*/ /* Darker teal on hover */
        /*box-shadow: 0 4px 8px rgba(0,0,0,0.3);*/
        color: #25b8c5 !important;
        background-color: #fff;
        box-shadow: 0 4px 8px rgba(0,  0,  0,  0.3);
    }

.hero-slider-container {
    width: 100%; /* Full width of its container */
    position: relative; /* Needed for arrow positioning */
}

.hero-image-slider {
    position: absolute;
    width: 100%;
    padding-bottom: 20px; /* Space for arrows below */
}

    .hero-image-slider .swiper-slide {
        background: #eee; /* Placeholder background */
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        transition: transform 0.3s ease;
    }

        .hero-image-slider .swiper-slide:hover {
            transform: scale(1.03);
        }


        .hero-image-slider .swiper-slide img {
            display: block;
            width: 100%;
            height: 150px; /* Adjust height as needed */
            object-fit: cover;
        }

/* Custom Swiper Arrows */
.hero-swiper-prev,
.hero-swiper-next {
    position: absolute;
    transform: translateY(-20%);
    width: 40px;
    height: 40px;
    /*background-color: rgba(255, 255, 255, 0.8);*/ /* White semi-transparent */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

    .hero-swiper-prev::after,
    .hero-swiper-next::after {
        color: #042d59; /* Dark icon color */
        font-size: 1.2rem;
    }


    .hero-swiper-prev:hover,
    .hero-swiper-next:hover {
        background-color: white; /* Solid white on hover */
    }

        .hero-swiper-prev:hover i,
        .hero-swiper-next:hover i {
            color: #25b8c5; /* Teal icon color on hover */
        }



/* Responsive Adjustments */
@media (max-width: 991px) {
    .hero-content-container {
        flex-direction: column;
        align-items: center; /* Center items on smaller screens */
        text-align: center;
    }

    .hero-text-buttons, .hero-contact-slider {
        flex-basis: auto; /* Reset basis */
        width: 100%;
        align-items: center; /* Center items within */
        max-width: 600px; /* Consistent max width */
    }

    .info-buttons-grid {
        margin: 0 auto; /* Center grid */
    }

    .contact-actions {
        flex-direction: row; /* Stack horizontally */
        justify-content: center; /* Center buttons */
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-action-button {
        min-width: 180px;
    }

    .hero-slider-container {
        max-width: 90%; /* Wider slider on mobile */
    }

    .hero-section h1 {
        font-size: 2.8rem; /* Slightly smaller title */
    }

    .hero-section {
        min-height: 85vh; /* Taller section */
        padding: 40px 5%;
    }

    .hero-overlay { /* Adjust gradient for better readability */
        background: linear-gradient(180deg, rgba(37, 184, 197, 0.85) 0%, rgba(37, 184, 197, 0.7) 50%, rgba(37, 184, 197, 0.4) 100%);
    }

    .hero-swiper-prev {
        left: 10px;
        transform: translateY(0);
        bottom: 5px;
    }

    .hero-swiper-next {
        right: 10px;
        transform: translateY(0);
        bottom: 5px;
    }
}

@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 2.2rem;
    }

    .info-buttons-grid {
        grid-template-columns: 1fr; /* Single column */
        max-width: 350px; /* Adjust for single column */
    }

    .contact-actions {
        flex-direction: column; /* Stack vertically again */
        gap: 15px;
    }

    .contact-action-button {
        width: 100%;
        max-width: 300px; /* Limit width */
        margin: 0 auto; /* Center */
    }

    .hero-image-slider .swiper-slide img {
        height: 180px; /* Adjust height */
    }

    .hero-swiper-prev {
        left: 5px;
        bottom: 0px;
    }

    .hero-swiper-next {
        right: 5px;
        bottom: 0px;
    }
}

/* Information Section Styles */
.information-section {
    padding: 80px 5% 100px;
    background-color: #f8f9fa;
}

#information, #rooms, #how-to-go, #services-offered, #medical-tech {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1320px;
    margin: 0 auto 60px;
}

.info-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25b8c5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .info-icon i {
        color: white;
        font-size: 28px;
    }

#information h2, #rooms h2 {
    font-size: 2.2rem;
    color: #042d59;
    margin-bottom: 0;
    font-weight: 600;
}

.info-content {
    line-height: 1.7;
    color: #042d5999;
}

#information .content-wrapper p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #042d59;
    opacity: 0.66;
}

.info-hospital {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    max-width: 1200px;
    margin: 0 auto 60px;
}

.info-hospital-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25b8c5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

    .info-hospital-icon i {
        color: white;
        font-size: 22px;
    }

.info-hospital h3 {
    font-size: 1.8rem;
    color: #042d59;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-hospital p {
    color: #042d5999;
    line-height: 1.6;
}

.info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.info-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.wide-card {
    grid-column: span 2;
}

.info-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25b8c5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

    .info-card-icon i {
        color: white;
        font-size: 22px;
    }

.info-card h3 {
    font-size: 1.6rem;
    color: #042d59;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card p {
    color: #042d5999;
    line-height: 1.6;
    margin-bottom: 15px;
}

.medical-tech-section {
    max-width: 1200px;
    margin: 0 auto;
}

    .medical-tech-section h2 {
        text-align: center;
        margin-bottom: 40px;
    }

.medical-tech-slider {
    padding-bottom: 60px;
}

.medical-tech-slide {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: auto;
}

.tech-image {
    height: 200px;
    overflow: hidden;
}

    .tech-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.tech-info {
    padding: 25px;
}

    .tech-info h4 {
        font-size: 1.4rem;
        color: #042d59;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .tech-info p {
        color: #042d5999;
        line-height: 1.6;
        font-size: 0.95rem;
    }

.tech-pagination {
    position: relative;
    bottom: 0;
}

.tech-button-next,
.tech-button-prev {
    color: #25b8c5;
}

    .tech-button-next:after,
    .tech-button-prev:after {
        font-size: 20px;
        font-weight: bold;
    }

/* Responsive */
@media (max-width: 991px) {
    .info-cards {
        grid-template-columns: 1fr;
    }

    .wide-card {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .information-section {
        padding: 60px 5% 80px;
    }

        .information-section h2 {
            font-size: 1.8rem;
        }

    .info-hospital h3,
    .info-card h3 {
        font-size: 1.4rem;
    }

    .tech-info h4 {
        font-size: 1.2rem;
    }
}

/* Room Types Section */
.room-types-section {
    background-color: #fff;
}

.room-types-container {
    max-width: 1320px;
    margin: 0 auto;
}

.section-title {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.room-icon {
    font-size: 24px;
    color: #25b8c5;
    margin-right: 15px;
}

.room-types-section h2 {
    font-size: 2rem;
    color: #042d59;
    font-weight: 600;
}

.room-types-content {
    margin-bottom: 50px;
}

.room-type-block {
    margin-bottom: 30px;
}

.room-type-title {
    color: #042d59;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    cursor: pointer;
}

.room-type-block p {
    color: #042d5999;
    line-height: 1.6;
    max-width: 100%;
}

.room-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.gallery-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

    .gallery-image:hover {
        transform: translateY(-5px);
    }

    .gallery-image img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #042d59;
    padding: 10px;
    font-weight: 600;
    text-align: center;
    font-size: 1rem;
}

/* Gallery Overlay */
.gallery-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: auto;
}

.gallery-content {
    position: relative;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-gallery {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    z-index: 1001;
    cursor: pointer;
}

#gallery-img {
    max-width: 90%;
    max-height: 80vh;
    object-fit: contain;
}

.gallery-caption {
    position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 1.2rem;
    padding: 10px 0;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.6s ease;
    user-select: none;
    border-radius: 0 3px 3px 0;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

    .prev:hover, .next:hover {
        background-color: rgba(255, 255, 255, 0.2);
    }

.gallery-dots {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

    .active-dot, .dot:hover {
        background-color: #25b8c5;
    }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .room-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .room-gallery {
        grid-template-columns: 1fr;
    }

    .section-title {
        flex-direction: column;
        text-align: center;
    }

    .room-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* Info Section Styles */
.info-section {
}

.info-container {
    max-width: 1320px;
    margin: 0 auto;
}

.info-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #25b8c5;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

    .info-icon-circle i {
        color: white;
        font-size: 22px;
    }

.info-section h2 {
    font-size: 2rem;
    color: #1a3b6e;
    margin: 0;
    font-weight: 600;
}

.info-text p {
    margin-bottom: 20px;
    color: #042d5999;
    line-height: 1.6;
}

.hospital-box {
    background-color: #f0f8fa;
    border-radius: 8px;
    padding: 20px;
    margin: 30px 0;
    display: flex;
    align-items: center;
}

.hospital-icon {
    width: 60px;
    margin-right: 20px;
    flex-shrink: 0;
}

    .hospital-icon img {
        width: 100%;
        height: auto;
    }

.hospital-box p {
    margin: 0;
    color: #042d5999;
    line-height: 1.6;
}

/* Diagnostic Section Styles */
.diagnostic-section, .info-section, .patient-focus-section, .room-types-section, .group-section {
    padding: 40px 0;
}

.diagnostic-container {
    max-width: 1320px;
    margin: 0 auto;
}

.diagnostic-section h2 {
    font-size: 1.8rem;
    color: #1a3b6e;
    margin-bottom: 20px;
    font-weight: 600;
}

.diagnostic-container p {
    color: #042d5999;
    line-height: 1.6;
}

/* Patient Focus Section Styles */
.patient-focus-section {
}

.patient-focus-container {
    max-width: 1320px;
    margin: 0 auto;
}

.patient-focus-section h2 {
    font-size: 1.8rem;
    color: #1a3b6e;
    margin-bottom: 20px;
    font-weight: 600;
}

.patient-focus-container p {
    color: #042d5999;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Group Section Styles */
.group-section {
    background-color: #fff;
}

.group-container {
    max-width: 1320px;
    margin: 0 auto;
}

.group-section h2 {
    font-size: 1.8rem;
    color: #1a3b6e;
    margin-bottom: 20px;
    font-weight: 600;
}

.group-container p {
    color: #042d5999;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .info-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .info-icon-circle {
        margin-bottom: 15px;
    }

    .hospital-box {
        flex-direction: column;
        text-align: center;
    }

    .hospital-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .info-section h2,
    .diagnostic-section h2,
    .patient-focus-section h2,
    .group-section h2 {
        font-size: 1.5rem;
    }
}

/* Medicinska Odjeljenja (Tıbbi Departmanlar) Bölümü */
.medical-departments-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

    .medical-departments-section .section-header {
        justify-content: unset !important
    }

.section-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    justify-content: flex-start; /* Sola hizalama */
}

.doctors-container .section-header {
    justify-content: space-between;
}

.section-icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
}

.medical-departments-section h2,
#how-to-go h2,
#services-offered h2 {
    font-size: 2rem;
    color: #042d59;
    font-weight: 600;
    margin: 0;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.department-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .department-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .department-item i {
        color: #25b8c5;
        font-size: 1.2rem;
        margin-right: 10px;
        width: 24px;
        text-align: center;
    }

    .department-item span {
        color: #042d59;
        font-weight: 500;
    }

.view-all-link {
    text-align: right;
    margin-top: 20px;
}

    .view-all-link a {
        color: #25b8c5;
        text-decoration: none;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        transition: color 0.3s ease;
    }

        .view-all-link a:hover {
            color: #1a8e9b;
        }

        .view-all-link a i {
            margin-left: 8px;
            font-size: 0.9rem;
        }

/* Smjernice za dolazak u bolnicu (Hastaneye Geliş Yönlendirmeleri) Bölümü */
#how-to-go {
    padding: 60px 0;
    background-color: #fff;
}

.directions-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.direction-tab {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-right: 10px;
}

    .direction-tab.active {
        border-bottom-color: #25b8c5;
        background-color: #f8f8f8;
    }

.tab-number {
    font-weight: 700;
    font-size: 1.2rem;
    color: #25b8c5;
    margin-right: 10px;
}

.tab-title {
    color: #042d59;
    font-weight: 500;
}

.direction-content-container {
    position: relative;
    min-height: 300px;
}

.direction-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

    .direction-content.active {
        display: block;
    }

    .direction-content p {
        color: #042d5999;
        margin-bottom: 25px;
        line-height: 1.6;
    }

#how-to-go .card-description p {
    align-items: center;
    margin-bottom: 15px;
    padding: 10px 15px;
    background-color: #f9f9f9;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

    #how-to-go .card-description p:hover {
        background-color: #f0f0f0;
    }

.direction-step img {
    width: 24px;
    height: 24px;
    margin-right: 15px;
}

.direction-step span {
    color: #042d59;
    line-height: 1.4;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Usluge Koje Pružamo (Sunduğumuz Hizmetler) Bölümü */
#services-offered {
    padding: 60px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

#services-offered .services-offered-card-wrapper {
    display: flex;
    align-items: center;
    padding: 20px;
    margin: 10px -5px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    #services-offered .services-offered-card-wrapper:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

.service-icon {
    margin-right: 15px;
    flex-shrink: 0;
}

#services-offered .services-offered-card-wrapper .service-title h6 {
    color: #042d59;
    margin: 0;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .departments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .departments-grid {
        grid-template-columns: 1fr;
    }

    .directions-tabs {
        flex-direction: column;
        border-bottom: none;
    }

    .direction-tab {
        border-left: 3px solid transparent;
        border-bottom: 1px solid #e0e0e0;
        margin-right: 0;
    }

        .direction-tab.active {
            border-left-color: #25b8c5;
            border-bottom-color: #e0e0e0;
        }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .section-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .view-all-link {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .medical-departments-section,
    #how-to-go,
    .services-section {
        padding: 40px 0;
    }

        .medical-departments-section h2,
        #how-to-go h2,
        .services-section h2 {
            font-size: 1.5rem;
        }

    .tab-title {
        font-size: 0.9rem;
    }
}

/* Smjernice za dolazak u bolnicu (Hastaneye Geliş Yönlendirmeleri) Bölümü */
.directions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.direction-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-top: 4px solid #25b8c5;
}

.direction-header {
    padding: 15px;
    background-color: #f8f8f8;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ececec;
}

.direction-number {
    font-weight: 700;
    font-size: 1.5rem;
    color: #25b8c5;
    margin-right: 10px;
}

.direction-title {
    color: #25b8c5;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.direction-content {
    padding: 15px;
    flex-grow: 1;
    max-height: 350px;
    overflow-y: auto; /* İçerik uzunsa scroll olacak */
}

    .direction-content p {
        color: #042d5999;
        margin-bottom: 20px;
        line-height: 1.5;
    }

.direction-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.direction-step {
    display: flex;
    align-items: flex-start;
    background-color: #f9f9f9;
    padding: 12px;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

    .direction-step:hover {
        background-color: #f0f0f0;
    }

    .direction-step img {
        width: 18px;
        height: 18px;
        margin-right: 12px;
        margin-top: 3px;
    }

    .direction-step span {
        color: #042d59;
        line-height: 1.4;
        font-size: 0.95rem;
    }

/* Responsive Styles */
@media (max-width: 992px) {
    .directions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .directions-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .section-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Smjernice za dolazak u bolnicu Bölümü */
#how-to-go {
    padding: 60px 0;
    background-color: #fff;
}

    #how-to-go .section-header {
        display: flex;
        align-items: center;
        margin-bottom: 40px;
    }

    #how-to-go .location-icon {
        width: 40px;
        height: 40px;
        background-color: #25b8c5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }

        #how-to-go .location-icon i {
            color: white;
            font-size: 20px;
        }

    #how-to-go h2 {
        color: #042d59;
        font-size: 2rem;
        font-weight: 600;
        margin: 0;
    }

.direction-columns {
    display: flex;
    margin-top: 30px;
}

#how-to-go .card-description {
    flex: 1;
    padding: 0 15px;
    max-height: 400px;
    overflow: auto;
}

.direction-divider {
    width: 1px;
    background-color: #e0e0e0;
    margin: 0 15px;
}

.column-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.direction-arrow {
    color: #25b8c5;
    margin-right: 5px;
}

.column-number {
    color: #25b8c5;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 5px;
}

.column-title {
    color: #25b8c5;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.column-content p {
    color: #042d5999;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.direction-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.step-icon {
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #25b8c5;
}

.direction-step span {
    color: #042d59;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .swiper.hero-image-slider {
        margin-top: -50%;
    }

    .direction-columns {
        flex-direction: column;
    }

    .direction-column {
        margin-bottom: 30px;
    }

    .direction-divider {
        width: 100%;
        height: 1px;
        margin: 20px 0;
    }
}

@media (max-width: 768px) {
    #how-to-go h2 {
        font-size: 1.6rem;
    }

    .column-title {
        font-size: 1rem;
    }
}

@media (min-width: 991px) {
    .contact-actions {
        margin-right: 25%;
    }
}





#femcheckbasic, #femcheckannual, #oncocheckf, #femcare, #womanpremiumpreventivnipregled, #cardiofemale, #kiddobasic, #kiddocheckcomplete, #kiddocheckair, #strongstart, #vitalman, #mensuro, #oncocheckm, #cardiomale, #manpremiumpreventivnipregled, #rooms, #how-to-go, #services-offered, #medical-tech {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 1320px;
    margin: 0 auto 60px;
}


    #femcheckbasic, #femcheckannual, #oncocheckf, #femcare, #womanpremiumpreventivnipregled, #cardiofemale, #kiddobasic, #kiddocheckcomplete, #kiddocheckair, #strongstart, #vitalman, #mensuro, #oncocheckm, #cardiomale, #manpremiumpreventivnipregled, h2, #rooms h2 {
        /*font-size: 2.2rem;*/
        color: #042d59;
        margin-bottom: 0;
        /*font-weight: 600;*/
    }


        #femcheckbasic, #femcheckannual, #oncocheckf, #femcare, #womanpremiumpreventivnipregled, #cardiofemale, #kiddobasic, #kiddocheckcomplete, #kiddocheckair, #strongstart, #vitalman, #mensuro, #oncocheckm, #cardiomale, #manpremiumpreventivnipregled .content-wrapper p {
            margin-bottom: 20px;
            font-size: 14px;
            color: #042d59;
            opacity: 0.66;
        }


        #femcheckbasic, #femcheckannual, #oncocheckf, #femcare, #womanpremiumpreventivnipregled, #cardiofemale, #kiddobasic, #kiddocheckcomplete, #kiddocheckair, #strongstart, #vitalman, #mensuro, #oncocheckm, #cardiomale, #manpremiumpreventivnipregled table {
           text-align:center
        }

.price-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 0;
    justify-content: center;
    margin: 2rem auto;
    max-width: 1200px;
}

.price-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    padding: 1.5rem 2rem;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .price-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .price-card h3 {
        font-size: 1.1rem;
        color: #031b34;
        margin-bottom: 0.5rem;
    }

    .price-card p {
        font-size: 1.5rem;
        font-weight: bold;
        color: #25b8c5; /* İstersen tema rengine göre özelleştirebiliriz */
        margin: 0;
    }


/* Responsive uyum */
@media (max-width: 600px) {
    .price-card {
        max-width: calc(50% - 8px);
        flex: 2 2 100%;
    }
}