@font-face {
    font-family: 'Portland Black';
    src: url('/Portland-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Portland Medium';
    src: url('/Portland-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Portland Black', sans-serif;
}

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

.navbar-brand {
    width: 250px;
}

/* Color Variables */
:root {
    --primary-dark: #296a5c;
    --primary-light: #83c8d7;
    --accent: #F9B233;
    --text-dark: #333333;
    --text-light: #ffffff;
    --bg-light: #f8f9fa;
}

/* Update existing color definitions */
.btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
    color: #24473f;
    position: relative;
    z-index: 2;
}

.btn-primary:hover {
    background-color: #e5a12f;
    border-color: #e5a12f;
    color: #18352f;
}

.btn-outline-primary {
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--text-light);
}

.navbar .nav-link:after {
    background-color: var(--primary-dark);
}

.navbar .nav-link:hover {
    color: var(--primary-dark);
}

.navbar .btn-primary,
.navbar .btn-primary:hover,
.navbar .btn-primary:focus {
    color: #025050;
}

.navbar-search-btn {
    border: 1px solid rgba(48, 124, 110, 0.16);
    background: rgba(255, 255, 255, 0.82);
    color: var(--primary-dark);
    font-weight: 600;
}

.navbar-search-btn:hover {
    background: rgba(48, 124, 110, 0.08);
    color: var(--primary-dark);
}

.navbar .dropdown-menu .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-dark);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

.stats-section .stat-card .stat-icon {
    color: var(--primary-dark);
}

.service-card .icon-box {
    background: rgba(39, 102, 89, 0.1);
}

.service-card .icon-box i {
    color: var(--primary-dark);
}

.appointment-section {
    position: relative;
    overflow: hidden;
}

.appointment-form-container {
    position: relative;
    z-index: 2;
}

.appointment-content {
    position: relative;
    z-index: 2;
}

/* Appointment Section Updates */
.appointment-section .appointment-form-container {
    border-left: 4px solid var(--primary-light);
}

.appointment-section .btn-primary {
    background-color: var(--accent);
    border-color: var(--accent);
}

.appointment-section .btn-primary:hover {
    background-color: #e5a12f;
    border-color: #e5a12f;
}

.feature-item i {
    color: var(--primary-dark) !important;
}

/* Form Controls */
.form-control:focus,
.form-select:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 0.25rem rgba(145, 216, 204, 0.25);
}

/* Stats Cards Hover Effect */
.stats-section .stat-card:hover {
    border-bottom: 3px solid var(--primary-light);
}

/* Service Cards Update */
.service-card:hover {
    border-bottom: 3px solid var(--accent);
}

/* Text Highlights */
.text-primary {
    color: var(--primary-dark) !important;
}

.bg-primary {
    background-color: var(--primary-dark) !important;
}

/* Links */
a {
    color: var(--primary-dark);
}

a:hover {
    color: var(--accent);
}


.navbar-wrapper {
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.5) 30%,
            rgba(255, 255, 255, 0.2) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.5rem;
    border-radius: 50px;
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    margin: 1rem;
}

.navbar {
    padding: 0.5rem 1rem;
    position: relative;
    flex: auto;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.5),
            rgba(255, 255, 255, 0.2));
    pointer-events: none;
}

.navbar-toggler {
    margin: 0 auto;
}

.navbar .navbar-brand {
    position: relative;
    z-index: 1;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.navbar .nav-link {
    font-family: 'Portland Medium', sans-serif;
    color: var(--primary-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0.75rem;
    /* Padding deÄŸerini azalttÄ±m */
    white-space: nowrap;
    /* Metinlerin satÄ±r atlamasÄ±nÄ± engeller */
}

.navbar .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #276558;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar .nav-link:hover {
    color: #276558;
}

.navbar .nav-link:hover:after {
    width: 100%;
}

.navbar .dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow:
        0 5px 30px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-top: 0.5rem;
    /* DeÄŸeri azalttÄ±m */
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar .dropdown-menu .dropdown-item {
    font-family: 'Portland Medium', sans-serif;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    color: var(--primary-dark);
}

.navbar .dropdown-menu .dropdown-item:hover {
    background: rgba(39, 102, 89, 0.1);
    transform: translateX(5px);
}

.slide-in {
    animation: slideIn 0.3s ease-out;
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991.98px) {
    .navbar-wrapper {
        margin: 0.5rem;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 300px;
        height: 100vh;
        padding: 2rem;
        background: #fff;
        transition: 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 1050;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-toggler {
        border: none;
        padding: 0;
        width: 30px;
        height: 30px;
        position: relative;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler .navbar-toggler-icon {
        transition: opacity 0.3s;
    }

    .navbar-toggler .close-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-size: 24px;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .dropdown-menu {
        position: static !important;
        border: none;
        padding-left: 1rem;
        margin: 0;
        box-shadow: none;
        background: transparent;
    }

    .dropdown-submenu {
        margin-left: 1rem;
    }

    .navbar-nav .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        padding: 0.5rem 0;
    }

    .dropdown-menu.show {
        display: block;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
    }

    .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }

    .dropdown-toggle.show::after {
        transform: rotate(180deg);
    }

    /* Mobile overlay */
    .navbar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.18);
        z-index: 1030;
        pointer-events: none;
    }

    .navbar-overlay.show {
        display: block;
    }

    /* Language selector positioning */
    .language-selector .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
    }

    /* Button full width on mobile */
    .btn {
        width: 100%;
        margin: 0.5rem 0;
    }

    /* Dropdown arrows */
    .dropdown-toggle::after {
        float: right;
        margin-top: 10px;
        transition: transform 0.2s;
    }

    .dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    .navbar-nav .nav-item.dropdown {
        display: block;
        width: 100%;
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .nav-item {
        padding: 0.5rem 0;
    }
}



.hero-section {
    position: relative;
    background: linear-gradient(135deg, #276558, #badcd7);
    overflow: hidden;
    padding: 120px 0px;
}

.hero-section .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/hero-bg.webp') center/cover;
    opacity: 0.04;
    z-index: 1;
}

.hero-section h1 {
    font-family: 'Portland Black', sans-serif;
    color: white;
    font-size: 3.5rem;
    line-height: 1.2;
}

.hero-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.stats-section {
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.stats-section .stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.stats-section .stat-card:hover {
    transform: translateY(-5px);
}

.stats-section .stat-card .stat-icon {
    font-size: 2.5rem;
    color: #276558;
    margin-bottom: 1rem;
}

.stats-section .stat-card .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #343a40;
    margin-bottom: 0.5rem;
}

.stats-section .stat-card .stat-text {
    color: #6c757d;
    margin: 0;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card .icon-box i {
    font-size: 2rem;
    color: #276558;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.care-flow-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.care-flow-card {
    padding: 1.4rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(48, 124, 110, 0.1);
    box-shadow: 0 16px 38px rgba(24, 67, 57, 0.08);
}

.care-flow-card h3 {
    margin-bottom: 0.65rem;
    font-size: 1.15rem;
    color: var(--primary-dark);
}

.care-flow-card p {
    margin-bottom: 0;
    color: #5f7770;
}

.care-flow-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    border-radius: 999px;
    background: rgba(48, 124, 110, 0.08);
    color: var(--primary-dark);
    font-weight: 700;
    letter-spacing: 0.08em;
}

.services-discovery-shell {
    padding: 2.5rem;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 247, 245, 0.96));
    box-shadow: 0 24px 60px rgba(24, 67, 57, 0.08);
}

.services-discovery-actions {
    display: flex;
    justify-content: center;
    gap: 0.85rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
}

.service-path-card {
    display: flex;
    flex-direction: column;
    padding: 1.35rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(48, 124, 110, 0.12);
    box-shadow: 0 18px 40px rgba(26, 75, 64, 0.08);
}

.service-path-card-head {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    margin-bottom: 1rem;
}

.service-path-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(48, 124, 110, 0.1);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
}

.service-path-title {
    margin-bottom: 0.2rem;
    font-size: 1.15rem;
    color: var(--primary-dark);
}

.service-path-count {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #65847c;
}

.service-path-summary {
    color: #5c756e;
    min-height: 4.8rem;
    margin-bottom: 1rem;
}

.service-path-links {
    margin-bottom: 1.15rem;
}

.service-path-links li + li {
    margin-top: 0.55rem;
}


.mega-menu-services,
.mega-menu-checkup {
    max-height: calc(100vh - 8rem);
    overflow: hidden;
}

.mega-menu-services .container,
.mega-menu-checkup .container {
    max-height: calc(100vh - 8rem);
    overflow-y: auto;
    scrollbar-width: thin;
}
.service-path-links a {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.94rem;
}

.service-path-links a i {
    color: #7d988f;
    font-size: 0.72rem;
}

.service-path-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.service-path-secondary {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    padding: 0;
}

.appointment-section {
    background: #f8f9fa;
}

.appointment-section .appointment-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.appointment-section .feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.appointment-section .feature-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.appointment-section .feature-item p {
    margin: 0;
    font-size: 1.1rem;
}

[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}


/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;

    &:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .blog-image {
        height: 200px;
        overflow: hidden;

        img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-top-left-radius: 15px;
            border-top-right-radius: 15px;
        }
    }

    .blog-title {
        font-family: 'Portland Black', sans-serif;

        a {
            color: var(--text-dark);
            transition: color 0.3s ease;

            &:hover {
                color: var(--primary-dark);
                text-decoration: none;
            }
        }
    }

    .blog-meta {
        font-size: 0.9rem;
    }

    .blog-excerpt {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Blog Slider Styles */
.blog-slider-container {
    position: relative;
    padding: 20px 0;
    overflow: hidden; /* yatay kaymayı önle */
}

.blog-slider {
    padding: 20px 10px 50px;
}

.blog-slider .swiper-slide {
    height: auto;
    transition: transform 0.3s ease;
}

/* Navigation button styles */
.blog-slider .swiper-button-next,
.blog-slider .swiper-button-prev {
    color: var(--primary-dark);
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-slider .swiper-button-next:after,
.blog-slider .swiper-button-prev:after {
    font-size: 18px;
}

/* Pagination styles */
.blog-slider .swiper-pagination-bullet {
    background: var(--primary-dark);
    opacity: 0.5;
}

.blog-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent);
}

/* Card styles in slider */
.blog-slider .blog-card {
    margin: 0 10px;
    height: 100%;
}

/* FAQ Section Styles */
.faq-section {
    background-color: var(--bg-light);
}

.accordion-item {
    border: none;
    margin-bottom: 1rem;
    background: transparent;
}

.accordion-button {
    background-color: white;
    border-radius: 10px !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    font-family: 'Portland Medium', sans-serif;
    font-weight: 500;
    padding: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-dark);
    background-color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button:focus {
    border-color: var(--primary-light);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all 0.3s ease;
}

.accordion-body {
    background-color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 1.5rem;
}

.faq-item h5 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.faq-item ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: start;
}

.faq-item ul li i {
    margin-top: 0.3rem;
}

/* Hover effects */
.accordion-button:hover {
    background-color: rgba(39, 102, 89, 0.05);
}

.accordion-button:not(.collapsed):hover {
    background-color: rgba(39, 102, 89, 0.05);
}

/* Mobile Header Adjustments */
.navbar-wrapper {
    transition: all 0.3s ease;
}


/* Floating Buttons - Fixed position on right with left expansion above Zoho chat */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
}

.floating-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
}

.floating-btn i {
    position: absolute;
    right: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.floating-btn span {
    margin-right: 56px;
    /* Space for icon */
    padding-left: 20px;
    padding-right: 10px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.floating-btn:hover {
    width: auto;
    border-radius: 28px;
    color: white;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}

.floating-btn:hover span {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-btn {
    background: #25D366;
}

.consultation-btn {
    background: var(--primary-dark, #1c524f);
}

.chat-btn {
    background: var(--accent, #e67e22);
}

@media (max-width: 576px) {
    .floating-buttons {
        right: 15px;
        bottom: 82px;
        gap: 10px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        border-radius: 50%;
    }

    .floating-btn:hover {
        border-radius: 24px;
    }

    .floating-btn i {
        font-size: 20px;
        width: 48px;
        height: 48px;
    }

    .floating-btn span {
        margin-right: 48px;
        font-size: 13px;
    }
}

/* Cost Estimator */
.estimator-form {
    max-width: 600px;
    margin: 0 auto;
}


.image-slider-section {
    background: var(--bg-light);
}

.image-slider {
    position: relative;
    padding-bottom: 40px;
}

.image-slider img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.image-slider .swiper-button-next,
.image-slider .swiper-button-prev {
    color: var(--primary-dark);
}

.image-slider .swiper-pagination-bullet {
    background: var(--primary-dark);
    opacity: 0.5;
}

.image-slider .swiper-pagination-bullet-active {
    opacity: 1;
}

@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .navbar-wrapper {
        margin: 0;
        padding: 0.5rem 0;
    }


    .navbar-collapse {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        padding: 6rem 2rem 2rem;
        z-index: 1040;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .navbar-collapse.show {
        display: block;
        opacity: 1;
    }

    .navbar-nav {
        padding: 1rem 0;
    }


    /* When menu is open */
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        opacity: 0;
    }

    .navbar-toggler[aria-expanded="true"] .close-icon {
        opacity: 1;
    }

    /* Navigation items */
    .navbar-nav {
        text-align: center;
    }

    .nav-item {
        margin: 1rem 0;
        font-size: 1.2rem;
    }

    /* Dropdown menus */
    .dropdown-menu {
        text-align: center;
        border: none;
        background: transparent;
        margin-top: 0.5rem;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-item {
        padding: 0.5rem 1rem;
    }

    /* Book Appointment button */
    .btn-primary {
        margin-top: 1rem;
    }

    /* Keep navbar brand visible */
    .navbar-brand {
        position: relative;
        z-index: 1050;
    }

    /* Mobile hero section fix */
    .hero-section {
        min-height: calc(100vh - 80px);
        padding-top: 7rem;
        padding-bottom: 2rem;
    }

    /* Mobile buttons adjustment */
    .hero-buttons .btn {
        margin-bottom: 1rem;
        width: 100%;
    }
}

/* General Mobile Responsiveness */
@media (max-width: 767.98px) {

    .hero-section h1 {
        font-size: 2rem;
    }

    /* Typography adjustments */
    .display-4 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.1rem;
    }

    /* Stats cards */
    .stats-section {
        margin-top: -50px;
    }

    .stat-card {
        padding: 1.5rem;
    }

    /* Service cards */
    .service-card {
        margin-bottom: 1.5rem;
    }

    /* Blog slider */
    .blog-slider {
        padding: 0;
    }

    .blog-card {
        margin: 0 0.5rem;
    }

    /* Appointment section */
    .appointment-form-container {
        padding: 1.5rem;
    }

    .appointment-content {
        padding-top: 2rem;
    }

    /* FAQ section */
    .accordion-button {
        padding: 1rem;
    }

    .accordion-body {
        padding: 1rem;
    }

    /* Utility classes for mobile */
    .mb-sm-3 {
        margin-bottom: 1rem !important;
    }

    .py-sm-4 {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .navbar .container {
        padding-left: 5px;
        padding-right: 5px;
    }
}

/* Small mobile devices */
@media (max-width: 575.98px) {
    .navbar {
        padding: 0px;
    }

    .navbar .container-fluid {
        padding-right: 5px;
        padding-left: 5px;
    }

    /* Further typography reduction */
    .display-4 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    /* Button size adjustment */
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 1rem;
    }

    /* Image container */
    .hero-image-container {
        margin-top: 2rem;
    }

    /* Stats layout */
    .stat-card {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    /* Blog cards */
    .blog-image {
        height: 160px;
    }

    .blog-content {
        padding: 1rem !important;
    }

    /* Form elements */
    .form-floating>label {
        font-size: 0.9rem;
    }
}

/* Single Page Styles */
.page-hero {
    background: linear-gradient(135deg, #1a5a4f, var(--primary-dark), var(--primary-light));
    color: white;
    padding: 160px 0px;
}

.page-hero .breadcrumb {
    background: transparent;
}

.page-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.page-hero .breadcrumb-item.active {
    color: white;
}

.page-hero .lead {
    color: rgba(255, 255, 255, 0.9);
}

.content-section {
    background: var(--bg-light);
    padding: 4rem 0;
}

.content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.content h2 {
    color: var(--primary-dark);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.content h3 {
    color: var(--primary-dark);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.content ul li {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 8rem 0;
    }

    .content {
        font-size: 1rem;
    }
}

/* List Page Styles */
.list-section {
    background: var(--bg-light);
}

.content-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;

    &:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
}

.card-image {
    height: 200px;
    overflow: hidden;

    img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.card-title a {
    color: var(--text-dark);
    transition: color 0.3s ease;

    &:hover {
        color: var(--primary-dark);
    }
}

.card-meta {
    font-size: 0.9rem;
}

.card-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Pagination Styles */
.pagination {
    .page-link {
        color: var(--primary-dark);
        border: none;
        padding: 0.5rem 1rem;
        margin: 0 0.2rem;
        border-radius: 5px;

        &:hover {
            background-color: rgba(39, 102, 89, 0.1);
        }
    }

    .page-item.active .page-link {
        background-color: var(--primary-dark);
        color: white;
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .card-image {
        height: 180px;
    }

    .card-content {
        padding: 1rem !important;
    }

    .pagination .page-link {
        padding: 0.4rem 0.8rem;
    }
}


/* Contact Page Styles */
.contact-section {
    background: var(--bg-light);
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-info-container {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-method-item {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-method-item .icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(39, 102, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-item .icon-box i {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.contact-method-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.contact-method-item p {
    margin: 0;
}

.contact-method-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method-item a:hover {
    color: var(--primary-dark);
}

.map-container {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {

    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }

    .contact-method-item {
        margin-bottom: 1.5rem;
    }
}

/* Service Page Styles */
.service-hero {
    color: white;
    padding: 8rem 0;
}

.service-hero .breadcrumb {
    background: transparent;
}

.service-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.service-hero .breadcrumb-item.active {
    color: white;
}

.procedure-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;

    &:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
}

.procedure-card .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(39, 102, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;

    i {
        font-size: 1.5rem;
        color: var(--primary-dark);
    }
}

.procedure-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;

    i {
        margin-right: 0.75rem;
        width: 20px;
    }
}

.service-content {
    h2 {
        color: var(--primary-dark);
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    h3 {
        color: var(--primary-dark);
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    ul {
        padding-left: 1.5rem;
        margin-bottom: 1.5rem;
    }

    ul li {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 8rem 0;
    }

    .procedure-card {
        padding: 1.5rem;
    }
}

/* Mobile Menu Improvements */
@media (max-width: 991.98px) {
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        /* SaÄŸdan baÅŸla */
        height: 100vh;
        background: white;
        transition: right 0.3s ease;
        /* right Ã¶zelliÄŸini animate et */
        z-index: 1050;
        padding: 2rem 1rem;
        overflow-y: auto;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-collapse.show {
        transform: translateX(0);
    }

    /* Dropdown menu styles */
    .dropdown-menu {
        display: none;
        border: none;
        background: transparent;
        padding: 0;
        margin: 0;
        box-shadow: none;
    }

    .dropdown-menu.show {
        display: block;
        padding-left: 1rem;
        margin: 0.5rem 0;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
    }

    /* Overlay for mobile menu */
    .navbar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: transparent;
        z-index: 1040;
    }

    .navbar-overlay.show {
        display: block;
    }

    /* Close button */
    .navbar-toggler {
        z-index: 1051;
    }

    /* Reset desktop hover effects */
    .navbar .nav-link:after {
        display: none;
    }

    /* Dropdown toggle icon */
    .dropdown-toggle::after {
        float: right;
        margin-top: 12px;
    }

    /* Mobile button styles */
    .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }

    /* Language selector */
    .language-selector .dropdown-menu {
        position: static !important;
        width: 100%;
    }
}

/* Smooth slide-in animation */
.slide-in {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Dropdown Styles */
@media (min-width: 992px) {
    .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .dropend:hover>.dropdown-menu {
        display: block;
        position: absolute;
        left: 100%;
        top: 0;
    }

    .dropdown-submenu {
        min-width: 200px;
    }

    .dropdown-item.dropdown-toggle {
        position: relative;
        padding-right: 2rem;
    }

    .dropdown-item.dropdown-toggle::after {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%) rotate(-90deg);
    }

    /* Smooth animations */
    .dropdown-menu {
        display: none;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.2s, transform 0.2s;
    }

    .dropdown:hover>.dropdown-menu,
    .dropend:hover>.dropdown-menu {
        opacity: 1;
        transform: translateY(0);
    }

    /* Prevent flickering */
    .dropdown-menu {
        pointer-events: none;
    }

    .dropdown:hover>.dropdown-menu,
    .dropend:hover>.dropdown-menu {
        pointer-events: auto;
    }
}

/* Mobile adjustments */
@media (max-width: 991.98px) {
    .dropdown-submenu {
        margin-left: 1rem;
    }

    .dropdown-item.dropdown-toggle::after {
        transform: rotate(0deg);
        transition: transform 0.2s;
    }

    .dropdown-item.dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }
}

@media (max-width: 768px) {
    .image-slider img {
        max-width: 100%;
    }
}

/* Consultation Modal Styles */
.consultation-benefits li {
    display: flex;
    align-items: start;
}

.consultation-benefits i {
    margin-top: 3px;
}

.modal-header.bg-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.consultation-notice {
    background: rgba(var(--primary-rgb), 0.1);
    padding: 1rem;
    border-radius: 8px;
}

#consultationForm .form-floating {
    margin-bottom: 1rem;
}

#consultationForm .form-control,
#consultationForm .form-select {
    border-radius: 8px;
}

#consultationForm .btn-primary {
    padding: 1rem;
    border-radius: 8px;
}

@media (max-width: 767.98px) {
    .modal-dialog {
        margin: 0.5rem;
    }
}

/* Add to styles.css */
.estimate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.estimate-item strong {
    color: var(--primary-dark);
}

.total-estimate {
    background: linear-gradient(135deg, rgba(39, 102, 89, 0.1), rgba(39, 102, 89, 0.05));
}

.total-estimate h3 {
    font-size: 2rem;
    font-weight: 700;
}

@media (max-width: 767.98px) {
    .estimate-item {
        font-size: 0.9rem;
    }

    .total-estimate h3 {
        font-size: 1.5rem;
    }
}

/* Hero section & navbar responsive adjustments */
@media (min-width: 992px) and (max-width: 1366px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }

    .navbar .nav-link {
        font-size: 0.9rem;
        padding: 0.5rem 0.6rem !important;
    }

    .navbar .nav-link i {
        display: block;
        text-align: center;
        margin: 0 auto 0.3rem;
        font-size: 1rem;
    }

    .navbar-brand {
        width: 200px;
    }

    /* Dropdown menu adjustments */
    .navbar .dropdown-menu {
        min-width: 200px;
    }

    .navbar .dropdown-item {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }

    /* Book Appointment button */
    .btn-primary {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

/* Tablet/Medium devices */
@media (min-width: 768px) and (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .navbar-brand {
        width: 180px;
    }

    .navbar .nav-link {
        font-size: 0.85rem;
        text-align: center;
    }

    .navbar .nav-link i {
        display: block;
        margin: 0 auto 0.2rem;
        font-size: 0.9rem;
    }
}

/* Modern Footer Services Styling */
.footer-heading {
    font-family: 'Portland Medium', sans-serif;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-dark);
}

.footer-services .service-category h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.footer-services .service-category ul li {
    margin-bottom: 0.5rem;
}

.footer-services .service-category ul li a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    display: block;
    padding: 0.2rem 0;
}

.footer-services .service-category ul li a:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .footer-services {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .footer-services {
        grid-template-columns: 1fr;
    }
}

footer-heading {
    font-family: 'Portland Medium', sans-serif;
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-dark);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
    color: white;
}

.footer-contact p {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-legal a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-dark);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }

    .col-lg-3 {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Mega Menu Styles */
.mega-menu {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 0;
    margin-top: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transform: translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
}

.dropdown.show .mega-menu {
    transform: translateY(0);
    opacity: 1;
}

/* Position static for mega menu parent */
.nav-item.position-static {
    position: static !important;
}

/* Container adjustments */
.mega-menu .container {
    position: relative;
    max-width: 100%;
    /* Konteyner geniÅŸliÄŸini tam geniÅŸliÄŸe ayarlar */
}

.mega-menu-title {
    color: var(--primary-dark);
    font-family: 'Portland Medium', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
    white-space: nowrap;
    /* BaÅŸlÄ±klarÄ±n satÄ±r atlamasÄ±nÄ± engeller */
}

.mega-menu ul li {
    margin-bottom: 0.5rem;
}

.mega-menu ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.3rem 0;
    white-space: normal;
    /* Liste elemanlarÄ±nÄ±n satÄ±r atlamasÄ±na izin verir */
}

.mega-menu ul li a:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Responsive adjustments */
/* Mobile Mega Menu Styles */
@media (max-width: 991.98px) {
    .mega-menu {
        position: static;
        transform: none;
        opacity: 1;
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        padding: 0;
    }

    .mega-menu .container {
        padding: 0;
    }

    .mega-menu .row {
        margin: 0;
    }

    .mega-menu .col-lg-4 {
        padding: 0;
        margin-bottom: 1.5rem;
    }

    .mega-menu-title {
        font-size: 1rem;
        padding: 0.5rem 0;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid rgba(39, 102, 89, 0.1);
    }

    .mega-menu .row .col-6 {
        padding: 0 0.5rem;
    }

    .mega-menu ul li a {
        padding: 0.5rem 0;
        font-size: 0.9rem;
    }

    .mega-menu .bg-light {
        background: transparent !important;
        padding: 0 !important;
        margin-top: 1rem;
    }

    .mega-menu .btn-sm {
        padding: 0.5rem 1rem;
        width: 100%;
    }

    /* Ä°kon dÃ¼zenlemeleri */
    .mega-menu ul li a i {
        width: 20px;
        text-align: center;
        margin-right: 0.5rem;
    }

    /* Animasyon dÃ¼zeltmesi */
    .dropdown.show .mega-menu {
        transform: none;
    }
}

.breadcrumb-shell {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
}

.page-hero .breadcrumb-shell,
.service-hero .breadcrumb-shell,
.sl-hero .breadcrumb-shell {
    margin-bottom: 1.5rem;
}

.page-hero .breadcrumb-item + .breadcrumb-item::before,
.service-hero .breadcrumb-item + .breadcrumb-item::before,
.sl-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
}

.sl-hero .breadcrumb-item,
.sl-hero .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.96);
}

.sl-hero .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.76);
}

.mega-menu-kicker {
    display: inline-block;
    margin-bottom: 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.mega-menu-display {
    font-family: 'Portland Black', sans-serif;
    font-size: 1.8rem;
    color: var(--primary-dark);
}

.mega-menu-copy {
    color: #58736c;
    font-size: 0.98rem;
    max-width: 52rem;
}

.mega-menu-note,
.checkup-menu-card,
.footer-directory-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 248, 246, 0.96));
    border: 1px solid rgba(48, 124, 110, 0.12);
    border-radius: 24px;
    box-shadow: 0 18px 38px rgba(33, 85, 76, 0.08);
}

.mega-menu-note {
    padding: 1rem 1.1rem;
    color: #4f6761;
    font-size: 0.92rem;
}

.mega-menu-section {
    margin-bottom: 1rem;
}

.mega-menu-link {
    gap: 0.75rem;
}

.mega-menu-count,
.footer-directory-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.55rem;
    border-radius: 999px;
    background: rgba(48, 124, 110, 0.08);
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
}

.mega-menu-viewall {
    font-weight: 600;
    color: var(--primary-dark) !important;
}

.mega-check-list li {
    margin-bottom: 0.9rem;
}

.mega-check-list a {
    padding: 0.65rem 0.75rem !important;
    border-radius: 16px;
    background: rgba(48, 124, 110, 0.04);
}

.mega-check-list a:hover {
    background: rgba(48, 124, 110, 0.08);
    transform: translateX(0) !important;
}

.checkup-menu-card {
    padding: 1.4rem;
}

.footer-links-compact li {
    margin-bottom: 0.55rem;
}

.footer-directory-intro {
    max-width: 64rem;
}

.footer-directory-lead {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.footer-directory-arrow {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(48, 124, 110, 0.08);
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.footer-directory-card {
    padding: 1.25rem;
}

.footer-directory-group + .footer-directory-group {
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(48, 124, 110, 0.1);
}

.footer-directory-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    color: var(--primary-dark);
    font-family: 'Portland Medium', sans-serif;
    font-size: 1rem;
    text-decoration: none;
}

.footer-directory-links li {
    margin-bottom: 0.45rem;
}

.footer-directory-links a {
    color: #607570;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}

.footer-directory-links a:hover {
    color: var(--primary-dark);
    padding-left: 0.2rem;
}

body.nav-open,
body.service-atlas-open,
body.search-open {
    overflow: hidden;
}

.mobile-nav-head,
.mobile-nav-tools {
    display: none;
}

.mobile-nav-kicker {
    display: inline-block;
    margin-bottom: 0.3rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.mobile-nav-title {
    font-family: 'Portland Black', sans-serif;
    color: var(--primary-dark);
}

.mobile-nav-close {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 50%;
    background: rgba(48, 124, 110, 0.08);
    color: var(--primary-dark);
}

.service-atlas {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: stretch;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.28s ease;
}

.service-atlas.show {
    opacity: 1;
    pointer-events: auto;
}

.service-atlas-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 28, 25, 0.54);
    backdrop-filter: blur(10px);
}

.service-atlas-panel {
    position: relative;
    width: min(1320px, calc(100vw - 2rem));
    height: calc(100vh - 2rem);
    margin: 1rem;
    padding: 1.4rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(252, 254, 253, 0.98), rgba(240, 248, 246, 0.97));
    box-shadow: 0 32px 60px rgba(11, 39, 33, 0.24);
    overflow: hidden;
    transform: translateY(24px) scale(0.98);
    transition: transform 0.28s ease;
}

.service-atlas.show .service-atlas-panel {
    transform: translateY(0) scale(1);
}

.service-atlas-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-atlas-title {
    font-family: 'Portland Black', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    color: var(--primary-dark);
}

.service-atlas-copy {
    color: #5f7872;
    max-width: 54rem;
}

.service-atlas-close {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(48, 124, 110, 0.08);
    color: var(--primary-dark);
    flex-shrink: 0;
}

.service-atlas-toolbar {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.service-atlas-search-wrap {
    position: relative;
}

.service-atlas-search-wrap i {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: #6b847d;
}

.service-atlas-search-wrap input {
    height: 56px;
    padding-left: 2.8rem;
    border-radius: 18px;
    border: 1px solid rgba(48, 124, 110, 0.14);
    background: rgba(255, 255, 255, 0.92);
}

.service-atlas-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.service-atlas-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 0;
    background: rgba(48, 124, 110, 0.08);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.service-atlas-pill.is-active {
    background: var(--primary-dark);
    color: #fff;
}

.service-atlas-grid {
    max-height: calc(100vh - 16rem);
    overflow: auto;
    padding-right: 0.35rem;
}

.service-atlas-card {
    height: 100%;
    padding: 1.15rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(48, 124, 110, 0.1);
}

.service-atlas-card-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    text-decoration: none;
    font-family: 'Portland Medium', sans-serif;
}

.service-atlas-links li {
    margin-bottom: 0.45rem;
}

.service-atlas-links a {
    color: #5f7770;
    text-decoration: none;
    font-size: 0.92rem;
}

.service-atlas-links a:hover {
    color: var(--primary-dark);
}

.site-search {
    position: fixed;
    inset: 0;
    z-index: 1250;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
}

.site-search.show {
    opacity: 1;
    pointer-events: auto;
}

.site-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(11, 27, 24, 0.56);
    backdrop-filter: blur(12px);
}

.site-search-panel {
    position: relative;
    width: min(1100px, calc(100vw - 2rem));
    max-height: calc(100vh - 2rem);
    overflow: auto;
    margin: 1rem;
    padding: 1.4rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 246, 0.98));
    box-shadow: 0 30px 60px rgba(11, 39, 33, 0.22);
}

.site-search-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.site-search-title {
    font-family: 'Portland Black', sans-serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    color: var(--primary-dark);
}

.site-search-copy {
    max-width: 50rem;
    color: #5a736d;
}

.site-search-close {
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 50%;
    background: rgba(48, 124, 110, 0.08);
    color: var(--primary-dark);
    flex-shrink: 0;
}

.site-search-toolbar {
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    margin-bottom: 0.85rem;
}

.site-search-input-wrap {
    position: relative;
}

.site-search-input-wrap i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b847d;
}

.site-search-input-wrap input {
    height: 58px;
    padding-left: 2.9rem;
    border-radius: 18px;
    border: 1px solid rgba(48, 124, 110, 0.14);
    background: rgba(255, 255, 255, 0.94);
}

.site-search-filters {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.site-search-filter {
    border: 0;
    border-radius: 999px;
    padding: 0.55rem 0.95rem;
    background: rgba(48, 124, 110, 0.08);
    color: var(--primary-dark);
    font-weight: 600;
}

.site-search-filter.is-active {
    background: var(--primary-dark);
    color: #fff;
}

.site-search-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #647f77;
    font-size: 0.92rem;
}

.site-search-shortcut {
    font-weight: 600;
}

.site-search-results {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.site-search-result {
    display: block;
    padding: 1.1rem;
    border-radius: 22px;
    border: 1px solid rgba(48, 124, 110, 0.12);
    background: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    color: inherit;
}

.site-search-result h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
    font-size: 1.05rem;
}

.site-search-result p {
    margin-bottom: 0;
    color: #5f7770;
    font-size: 0.94rem;
}

.site-search-result-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.6rem;
}

.site-search-result-type,
.site-search-result-section {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6c867f;
}

.site-search-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    min-height: 220px;
    border-radius: 24px;
    border: 1px dashed rgba(48, 124, 110, 0.16);
    color: #5f7770;
    text-align: center;
}

.site-search-empty i {
    font-size: 1.6rem;
    color: var(--primary-dark);
}

@media (max-width: 991.98px) {
    .navbar-wrapper {
        margin: 0.45rem;
        border-radius: 56px;
    }

    .navbar-collapse {
        right: auto;
        left: auto;
        width: min(92vw, 420px);
        padding: 1rem 1rem 2rem;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(241, 248, 246, 0.98));
        border-radius: 28px 0 0 28px;
        box-shadow: -20px 0 50px rgba(19, 49, 42, 0.18);
        backdrop-filter: blur(18px);
    }

    .mobile-nav-head,
    .mobile-nav-tools {
        display: flex;
    }

    .mobile-nav-head {
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid rgba(48, 124, 110, 0.1);
    }

    .mobile-nav-tools {
        flex-direction: column;
        gap: 0.65rem;
        margin-bottom: 1rem;
    }

    .navbar-nav {
        padding: 0.35rem 0 1rem;
    }

    .navbar-nav .nav-item {
        margin: 0.2rem 0;
        width: 100%;
    }

    .navbar .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.95rem 1rem !important;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.7);
        box-shadow: inset 0 0 0 1px rgba(48, 124, 110, 0.06);
    }

    .navbar .nav-link:after {
        display: none;
    }

    .mega-menu,
    .navbar .dropdown-menu {
        margin-top: 0.35rem;
        padding: 0.35rem 0.35rem 0.75rem 0.75rem;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.5) !important;
    }

    .mega-menu-note,
    .checkup-menu-card {
        border-radius: 18px;
        box-shadow: none;
    }

    .service-atlas-panel {
        width: calc(100vw - 1rem);
        height: calc(100vh - 1rem);
        margin: 0.5rem;
        padding: 1rem;
        border-radius: 24px;
    }

    .service-atlas-header {
        align-items: flex-start;
    }

    .service-atlas-grid {
        max-height: calc(100vh - 15rem);
    }

    .services-discovery-shell {
        padding: 1.35rem;
    }

    .service-path-summary {
        min-height: 0;
    }

    .care-flow-grid,
    .site-search-results {
        grid-template-columns: 1fr;
    }

    .site-search-panel {
        width: calc(100vw - 1rem);
        margin: 0.5rem;
        padding: 1rem;
        border-radius: 24px;
    }

    .site-search-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-directory-lead {
        align-items: stretch;
    }
}

/* Google Translate gizleme */
.goog-te-banner-frame {
    display: none !important;
}

.goog-te-menu-value:hover {
    text-decoration: none !important;
}

.VIpgJd-ZVi9od-l4eHX-hSRGPd,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:link,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:visited,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:hover,
.VIpgJd-ZVi9od-l4eHX-hSRGPd:active {
    display: none !important;
}

.stat-card.clickable {
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.stat-card.clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-card.clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.stat-card.clickable:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
}

/*
  .stat-card.clickable:after {
    content: "Click for details";
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    font-size: 12px;
    color: #0d6efd;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
    */

.stat-card.clickable:hover:after {
    opacity: 1;
}

.stat-card.clickable i.fa-plus-circle {
    font-size: 14px;
    color: #0d6efd;
    margin-left: 5px;
    vertical-align: top;
}


/* Hero Slider Styles - GÃ¼ncellendi */
.hero-slider-section {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end; /* içeriği alta hizala */
    position: relative;
    color: white;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 0;
    animation: kenburns 20s ease forwards;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Alta doğru koyulaşan gradient - metin okunabilirliği için */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 30, 25, 0.72) 100%
    );
    z-index: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    padding-bottom: 80px; /* alta boşluk */
    padding-top: 0;
}

/* İçeriği ortalayan yardımcı sınıf */
.hero-content-centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent; /* overlay ile çakışmayı önle, overlay yeterli */
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.3s;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.hero-text {
    font-size: 1.1rem;
    margin: 0 auto 2rem; /* Ortalama ve alt boşluk */
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.7s;
}

.hero-buttons {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.9s;
}



/* Sadece arka plan iÃ§in Ken Burns efekti */
@keyframes kenburns {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper Navigation Stilleri */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: white;
    background: rgba(48, 124, 110, 0.7);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    /* OklarÄ± kenarlara yerleÅŸtir */
    top: calc(50% - 25px);
}

.hero-slider .swiper-button-next {
    right: 20px;
}

.hero-slider .swiper-button-prev {
    left: 20px;
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 20px;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: rgba(39, 101, 89, 0.9);
    transform: scale(1.1);
}

/* Pagination Stilleri */
.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.6);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

/* Responsive Düzenlemeler */
@media (max-width: 991.98px) {
    .hero-slider-section {
        height: 80vh;
    }

    .hero-slide .container {
        padding-bottom: 60px; /* tablet */
        padding-top: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-text {
        font-size: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-slider-section {
        height: 100vh;
    }

    .hero-slide .container {
        padding-bottom: 60px; /* mobil */
        padding-top: 0;
    }

    .hero-content-centered {
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-text {
        font-size: 0.9rem;
    }

    .hero-buttons .btn {
        margin-bottom: 0.5rem;
    }
}

/* Modern Image Showcase Slider Styles - Improved */
.image-showcase-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.showcase-slider-container {
    position: relative;
    padding: 20px 0;
}

.showcase-slider {
    padding-bottom: 60px;
}

.showcase-card {
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.showcase-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.showcase-content {
    background: white;
    padding: 20px;
    border-top: 3px solid var(--primary-dark);
}

.showcase-content h3 {
    color: var(--primary-dark);
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 1.3rem;
}

.showcase-content p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.95rem;
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Navigation styling */
.showcase-nav-next,
.showcase-nav-prev {
    color: var(--primary-dark);
    background: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.showcase-nav-next:after,
.showcase-nav-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.showcase-nav-next:hover,
.showcase-nav-prev:hover {
    background: var(--primary-dark);
    color: white;
}

/* Pagination styling */
.showcase-pagination {
    bottom: 0;
}

.showcase-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.showcase-pagination .swiper-pagination-bullet-active {
    background: var(--primary-dark);
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .showcase-slider {
        padding-bottom: 50px;
    }

    .showcase-image {
        height: 250px;
    }
}

@media (max-width: 767px) {
    .showcase-image {
        height: 220px;
    }

    .showcase-content {
        padding: 15px;
    }

    .showcase-content h3 {
        font-size: 1.1rem;
    }
}

/* Modern Elegant Showcase Slider Styles */
.showcase-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.modern-showcase-container {
    position: relative;
    padding: 20px 0;
}

.modern-showcase-slider {
    padding-bottom: 60px;
}

.modern-showcase-card {
    position: relative;
    height: 100%;
    transition: all 0.5s ease;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.modern-showcase-image {
    position: relative;
    overflow: hidden;
    height: 420px;
    /* Daha uzun gÃ¶rÃ¼nÃ¼m iÃ§in yÃ¼kseklik artÄ±rÄ±ldÄ± */
    width: 100%;
}

.modern-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

.modern-showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    opacity: 1;
}

.modern-showcase-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    color: white;
    transform: translateY(5px);
    transition: all 0.5s ease;
}

.modern-showcase-content h3 {
    margin-bottom: 10px;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.modern-showcase-content p {
    margin-bottom: 0;
    font-size: 1rem;
    opacity: 0.9;
    max-width: 90%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.modern-showcase-card:hover .modern-showcase-image img {
    transform: scale(1.08);
}

.modern-showcase-card:hover .modern-showcase-content {
    transform: translateY(-5px);
}

/* Navigation styling */
.modern-showcase-nav-next,
.modern-showcase-nav-prev {
    color: white;
    background: rgba(39, 102, 89, 0.8);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.modern-showcase-nav-next:after,
.modern-showcase-nav-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.modern-showcase-nav-next:hover,
.modern-showcase-nav-prev:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

/* Pagination styling */
.modern-showcase-pagination {
    bottom: 0;
}

.modern-showcase-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px;
    transition: all 0.3s ease;
    opacity: 0.6;
    background: var(--primary-dark);
}

.modern-showcase-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 30px;
    border-radius: 5px;
    opacity: 1;
}

@media (max-width: 991px) {
    .modern-showcase-slider {
        padding-bottom: 50px;
    }

    .modern-showcase-image {
        height: 350px;
    }

    .modern-showcase-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .modern-showcase-image {
        height: 280px;
    }

    .modern-showcase-content {
        padding: 20px;
    }

    .modern-showcase-content h3 {
        font-size: 1.2rem;
    }

    .modern-showcase-content p {
        font-size: 0.9rem;
    }
}

/* Featured Image Styles */
.featured-image-wrapper {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.featured-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-image-wrapper:hover .featured-image {
    transform: scale(1.02);
}

.featured-image-wrapper figcaption {
    font-size: 0.9rem;
    font-style: italic;
    padding: 0.5rem 0;
}

@media (max-width: 768px) {
    .featured-image {
        max-height: 300px;
    }

    .content-section {
        padding: 2rem 0;
    }
}

/* Slider Navigation Responsive Fixes - DosyanÄ±n sonuna ekleyin */
@media (max-width: 767px) {

    /* TÃ¼m slider oklarÄ± iÃ§in genel dÃ¼zenleme */
    .swiper-button-next,
    .swiper-button-prev {
        width: 30px !important;
        height: 30px !important;
        background-color: rgba(255, 255, 255, 0.8) !important;
        color: var(--primary-dark) !important;
        border-radius: 50%;
        transform: translateY(-50%);
        top: 50%;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px !important;
        font-weight: bold;
    }

    /* Hero slider iÃ§in Ã¶zel dÃ¼zenleme */
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        border: none;
        width: 35px !important;
        height: 35px !important;
        top: auto !important;
        bottom: 118px !important;
        background-color: rgba(255, 255, 255, 0.8) !important;
        color: var(--primary-dark) !important;
    }

    /* Blog slider iÃ§in Ã¶zel dÃ¼zenleme */
    .blog-slider .swiper-button-next,
    .blog-slider .swiper-button-prev {
        top: 30%;
    }

    /* Medical excellence slider iÃ§in Ã¶zel dÃ¼zenleme */
    .modern-showcase-slider .swiper-button-next,
    .modern-showcase-slider .swiper-button-prev {
        top: 35%;
    }

    /* KÃ¼Ã§Ã¼k ekranlarda iÃ§eriÄŸi gÃ¶ster, oklarÄ± merkezden uzaÄŸa kaydÄ±r */
    .swiper-button-next {
        right: 5px !important;
    }

    .swiper-button-prev {
        left: 5px !important;
    }
}

/* En kÃ¼Ã§Ã¼k mobil ekranlar iÃ§in ek dÃ¼zenlemeler */
@media (max-width: 480px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 28px !important;
        height: 28px !important;
    }

    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        bottom: 100px !important;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 12px !important;
    }
}

/* Notice Banner Styles */
.notice-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #2a6a5c 100%);
    border-top: 3px solid var(--accent);
    border-bottom: 3px solid var(--accent);
}

.notice-banner {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    animation: subtle-pulse 3s ease-in-out infinite;
}

.notice-banner i {
    color: var(--accent);
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

@keyframes subtle-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.9;
    }
}

/* Responsive adjustments for notice banner */
@media (max-width: 768px) {
    .notice-banner {
        font-size: 0.95rem;
        padding: 0.5rem;
        line-height: 1.4;
    }

    .notice-banner i {
        display: block;
        margin: 0.25rem 0;
    }
}

.highlight-cancer {
    color: var(--primary-dark) !important;
    font-weight: bold;
    border-radius: 4px;
    padding: 2px 8px;
}

/* Phone Input Group Styles */
.phone-input-group {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-top: 0.5rem;
}

.phone-input-group .country-code-select {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-right: none;
    padding-left: 6px;
    padding-right: 6px;
    font-size: 0.85rem;
    width: 80px;
    min-width: 80px;
}

.phone-input-group .form-control {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    flex: 1;
}

.phone-input-group .country-code-select:focus,
.phone-input-group .form-control:focus {
    z-index: 3;
}

/* Form floating compatibility */
.form-floating>.phone-input-group {
    position: relative;
}

.form-floating>.phone-input-group>.form-control {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.75rem;
}

.form-floating>.phone-input-group>.country-code-select {
    height: calc(3.5rem + 2px);
    padding: 1rem 0.25rem;
}

@media (max-width: 767.98px) {
    .phone-input-group {
        flex-direction: column;
        margin-top: 0.25rem;
    }

    .phone-input-group .country-code-select {
        border-radius: 8px 8px 0 0;
        border-right: 1px solid #ced4da;
        border-bottom: none;
        width: 100% !important;
        min-width: 100% !important;
        padding: 0.75rem 0.5rem;
    }

    .phone-input-group .form-control {
        border-radius: 0 0 8px 8px;
        border-top: none;
    }

}

/* ========================================
   SIDEBAR CTA STYLES
   ======================================== */

/* Sticky CTA Wrapper */
.sidebar-cta-wrapper {
    position: sticky;
    top: 100px;
}

/* Main CTA Card - Green Theme */
.sidebar-cta-card {
    background: linear-gradient(145deg, var(--primary-dark) 0%, #1a5a4f 100%);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    color: white;
    box-shadow: 0 8px 30px rgba(39, 101, 88, 0.25);
}

.sidebar-cta-card .cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.sidebar-cta-card .cta-icon i {
    font-size: 1.5rem;
    color: white;
}

.sidebar-cta-card h4 {
    font-family: 'Portland Black', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: white;
}

.sidebar-cta-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

/* Yellow CTA Button */
.btn-cta-yellow {
    background: var(--accent);
    color: #1a1a1a !important;
    border: none;
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-yellow:hover {
    background: #e5a12f;
    transform: translateY(-2px);
    color: #1a1a1a !important;
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: white !important;
    border: none;
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    display: block;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    color: white !important;
}

/* Contact Card */
.sidebar-contact-card {
    background: #f8faf9;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(39, 101, 88, 0.1);
}

.sidebar-contact-card h5 {
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.contact-item:hover {
    background: var(--primary-dark);
    color: white;
}

.contact-item i {
    color: var(--primary-dark);
    width: 16px;
}

.contact-item:hover i {
    color: white;
}

/* ========================================
   UNIVERSAL LANDING PAGE STYLES
   ======================================== */

.landing-page {
    overflow-x: hidden;
}

/* 1. HERO SECTION */
.landing-hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--primary-dark);
    margin-bottom: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    z-index: 0;
    transition: transform 10s ease;
    animation: zoomEffect 20s infinite alternate;
}

@keyframes zoomEffect {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(48, 124, 110, 0.95) 0%, rgba(39, 102, 89, 0.8) 100%);
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 3;
}

.mw-600 {
    max-width: 600px;
}

.mw-800 {
    max-width: 800px;
}

/* 2. OVERVIEW SECTION */
.floating-badge {
    min-width: 200px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* 3. CARDS & HOVER EFFECTS */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.bg-primary-soft {
    background-color: rgba(48, 124, 110, 0.1);
}

.group-hover-zoom:hover img {
    transform: scale(1.05);
}

.icon-display {
    transition: transform 0.3s ease;
}

.group-hover-zoom:hover .icon-display {
    transform: scale(1.1);
}

/* 4. TIMELINE PROCESS */
.timeline-step {
    transition: all 0.3s ease;
}

.col-lg-3:hover .timeline-step {
    background-color: var(--accent) !important;
    color: #333 !important;
    transform: scale(1.1);
}

/* 5. GALLERY */
.gallery-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.bg-gradient-dark {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

/* 6. UTILITIES */
.text-accent {
    color: var(--accent) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

.bg-white-10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.border-white-20 {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.tracking-wide {
    letter-spacing: 0.1em;
}

.tracking-wider {
    letter-spacing: 0.2em;
}

.opacity-75 {
    opacity: 0.75;
}

.opacity-90 {
    opacity: 0.9;
}

.btn-white {
    background-color: white;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1a5a4f 100%);
}


/* =============================================
   SERVICE LANDING PAGE — redesign
============================================= */

/* ---- Spacing utility ---- */
.py-6 { padding-top: 5rem; padding-bottom: 5rem; }
@media (min-width: 992px) { .py-6 { padding-top: 7rem; padding-bottom: 7rem; } }

/* ---- Hero ---- */
.sl-hero {
    background-color: var(--primary-dark);
    padding-top: 130px;
    padding-bottom: 80px;
    overflow: hidden;
}
.sl-hero-bg {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0.18;
    animation: zoomEffect 24s infinite alternate;
}
.sl-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(20,70,60,0.97) 0%, rgba(48,124,110,0.88) 100%);
}
.sl-wave {
    position: absolute; bottom: -2px; left: 0; width: 100%; line-height: 0; z-index: 3;
}
.sl-badge {
    display: inline-flex; align-items: center;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(6px);
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    color: rgba(255,255,255,0.9);
    font-size: 0.82rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.2);
}

/* ---- Stats card (inside hero) — glassmorphism ---- */
.sl-stats-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.15);
}
.sl-stats-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.25rem;
}
.sl-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.sl-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 1rem 0.5rem;
    border: 1px solid rgba(255,255,255,0.15);
    transition: background 0.2s;
}
.sl-stat:hover {
    background: rgba(255,255,255,0.16);
}
.sl-stat i {
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 0.5rem;
    opacity: 0.9;
}
.sl-stat-value {
    font-family: 'Portland Black', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    line-height: 1.2;
}
.sl-stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.55);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.25rem;
}

/* ---- Trust strip ---- */
.sl-trust { border-bottom: 1px solid rgba(0,0,0,0.06); }
.sl-trust-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    padding: 1.25rem 0;
}
.sl-trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.75rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}
.sl-trust-icon {
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(48,124,110,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-dark);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.sl-trust-sep {
    width: 1px; height: 28px;
    background: rgba(0,0,0,0.1);
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .sl-trust-inner { gap: 0.5rem; }
    .sl-trust-item { padding: 0.5rem 1rem; font-size: 0.8rem; }
    .sl-trust-sep { display: none; }
}

/* ---- Eyebrow labels ---- */
.sl-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}
.sl-eyebrow--light { color: rgba(255,255,255,0.65); }

/* ---- Content section ---- */
.sl-content-section {
    background: #fff;
}

/* WITH IMAGE: side-by-side split */
.sl-cb-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 992px) {
    .sl-cb-split { grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
    .sl-cb-split--reverse { direction: rtl; }
    .sl-cb-split--reverse > * { direction: ltr; }
}
.sl-cb-split-img {
    border-radius: 20px;
    overflow: hidden;
    min-height: 280px;
}
@media (min-width: 992px) {
    .sl-cb-split-img {
        position: sticky;
        top: 120px;
    }
}
.sl-cb-split-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    min-height: 280px;
}

/* NO IMAGE: editorial label-left + body-right */
.sl-cb-editorial {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}
@media (min-width: 992px) {
    .sl-cb-editorial {
        grid-template-columns: 220px 1fr;
        gap: 5rem;
    }
    .sl-cb-label {
        position: sticky;
        top: 100px;
    }
}
.sl-cb-blocknum {
    font-family: 'Portland Black', sans-serif;
    font-size: 4rem;
    line-height: 1;
    color: rgba(48, 124, 110, 0.1);
    display: block;
    margin-bottom: 0;
}
.sl-cb-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    line-height: 1.35;
    margin-top: 0.6rem;
    margin-bottom: 0;
}

.sl-prose {
    color: #555;
    line-height: 1.9;
    font-size: 1rem;
}
.sl-prose p { margin-bottom: 1rem; }
.sl-prose ul, .sl-prose ol { padding-left: 1.2rem; margin-bottom: 1rem; }
.sl-prose li { margin-bottom: 0.55rem; }
.sl-prose strong { color: var(--primary-dark); }


/* ---- Journey timeline (infographic) ---- */
.bg-primary-deep {
    background: linear-gradient(135deg, #1a4d44 0%, var(--primary-dark) 100%);
}
.sl-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    padding-top: 1rem;
}
.sl-timeline--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 991px) {
    .sl-timeline { grid-template-columns: repeat(2, 1fr); }
    .sl-timeline--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .sl-timeline { grid-template-columns: 1fr; }
    .sl-timeline--4 { grid-template-columns: 1fr; }
}

/* Horizontal connector line on desktop */
.sl-timeline::before {
    content: '';
    position: absolute;
    top: 38px;
    left: calc(100% / 6);
    width: calc(100% - 100% / 3);
    height: 2px;
    background: repeating-linear-gradient(90deg, rgba(255,255,255,0.3) 0, rgba(255,255,255,0.3) 8px, transparent 8px, transparent 16px);
    z-index: 0;
}
.sl-timeline--4::before {
    left: calc(100% / 8);
    width: calc(100% - 100% / 4);
}
@media (max-width: 991px) {
    .sl-timeline::before, .sl-timeline--4::before { display: none; }
}

.sl-tl-item {
    text-align: center;
    position: relative;
    z-index: 1;
}
.sl-tl-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.sl-tl-num {
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-family: 'Portland Black', sans-serif;
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
    position: relative;
    z-index: 2;
}
.sl-tl-icon {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.6);
}
.sl-tl-title {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}
.sl-tl-desc {
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
    padding: 0 0.5rem;
}

/* ---- Why section (2-col list) ---- */
.sl-why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(48,124,110,0.1);
    background: #fff;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.sl-why-item:hover {
    box-shadow: 0 8px 30px rgba(48,124,110,0.12);
    transform: translateY(-3px);
}
.sl-why-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: rgba(48,124,110,0.1);
    color: var(--primary-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ---- FAQ 2-col ---- */
.sl-accordion .accordion-button:not(.collapsed) {
    background: #f0faf8;
    color: var(--primary-dark);
    box-shadow: none;
}
.sl-accordion .accordion-button::after {
    filter: none;
}

/* ---- Disclaimer ---- */
.sl-disclaimer {
    max-width: 900px;
}
.sl-disclaimer-inner {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 3px solid rgba(48,124,110,0.25);
    color: #888;
    font-size: 0.8rem;
    line-height: 1.7;
}
.sl-disclaimer-inner i { color: #adb5bd; font-size: 0.9rem; margin-top: 0.1rem; }
.sl-disclaimer-inner strong { color: #555; }

/* ---- Final CTA (horizontal layout) ---- */
.sl-final-cta {
    background: linear-gradient(135deg, #1a4d44 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
}
.sl-final-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.sl-final-cta-text { flex: 1; min-width: 250px; }
.sl-final-cta-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .sl-final-cta-inner { flex-direction: column; text-align: center; }
    .sl-final-cta-btns { justify-content: center; }
}

/* ---- Cancer cards (list page) ---- */
.sl-cancer-card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    color: inherit;
    height: 100%;
}
.sl-cancer-card:hover {
    box-shadow: 0 12px 40px rgba(48,124,110,0.15);
    transform: translateY(-4px);
    color: inherit;
}
.sl-cancer-card-img {
    height: 200px;
    overflow: hidden;
}
.sl-cancer-card-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}
.sl-cancer-card:hover .sl-cancer-card-img img {
    transform: scale(1.06);
}
.sl-cancer-card-body {
    padding: 1.4rem 1.5rem;
    flex: 1;
}
.sl-cancer-card-meta {
    display: flex; gap: 1rem; flex-wrap: wrap;
}
.sl-cancer-card-meta span {
    font-size: 0.78rem; color: #6c757d; font-weight: 500;
}
.sl-cancer-card-meta i {
    color: var(--primary-dark); margin-right: 4px;
}
.sl-cancer-card-footer {
    padding: 0.9rem 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    background: #f8fffe;
}
/* ==========================================================================
   Tıbbi onay imzası (partials/medical-review.html)
   Google'ın sağlık içeriğinde beklediği güven sinyali; yapısal veriyle
   birebir aynı bilgiyi kullanıcıya da gösterir.
   ========================================================================== */
.medical-review {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0 28px;
    padding: 14px 18px;
    border: 1px solid #dfe7e3;
    border-left: 4px solid var(--primary-dark);
    border-radius: 8px;
    background: #f7faf8;
}
.medical-review__photo {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}
.medical-review__body { min-width: 0; }
.medical-review__label {
    margin: 0;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #6b7f79;
}
.medical-review__name {
    margin: 3px 0 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}
.medical-review__name a {
    color: var(--primary-dark);
    text-decoration: none;
}
.medical-review__name a:hover { text-decoration: underline; }
.medical-review__cred { font-weight: 600; color: #6b7f79; }
.medical-review__meta {
    margin: 2px 0 0;
    font-size: .82rem;
    color: #6b7f79;
}
@media (max-width: 576px) {
    .medical-review { flex-direction: column; align-items: flex-start; gap: 10px; }
}
