@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ========================================= */
/* GENEL AYARLAR, RENKLER VE MODERN GÖLGELER */
/* ========================================= */
:root {
    --primary-color: #0284c7; 
    --primary-gradient: linear-gradient(135deg, #0ea5e9, #0284c7);
    --dark-color: #0f172a;
    --text-color: #334155;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --shadow-soft: 0 10px 40px -10px rgba(2, 132, 199, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; 
}

body {
    background-color: var(--bg-light); 
    color: var(--text-color); 
}

/* Tüm Premium Beyaz Kartlar İçin Ortak Sınıflar */
.treatment-card, .doctor-profile, .about-text-box, .contact-split {
    background-color: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: var(--shadow-soft); 
    border-radius: 16px;
    transition: all 0.3s ease;
}

/* ========================================= */
/* HEADER VE NAVİGASYON                      */
/* ========================================= */
.main-header {
    background-color: white;
    position: sticky;
    top: 0;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px; 
    transition: all 0.4s ease;
    /* EKLENDİ: Sayfayla karışmaması için kalıcı hafif gölge */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
}

.main-header.scrolled {
    padding: 8px 50px;
    background-color: #ffffff; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); 
    border-bottom: 1px solid #cbd5e1; 
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
    flex: 1;
    transition: all 0.4s ease;
}

.logo img {
    height: 70px;
    width: auto;
    transition: all 0.4s ease;
}

.main-header.scrolled .logo img {
    height: 50px; 
}

.main-menu {
    flex: 2; 
    display: flex;
    justify-content: center;
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
}

.main-menu a:hover {
    color: var(--primary-color);
}

.header-right {
    flex: 1; 
    display: flex;
    justify-content: flex-end; 
    align-items: center;
    gap: 20px;
}

.header-phone {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s;
}

.header-phone i {
    color: var(--primary-color);
}

.header-phone:hover {
    color: var(--primary-color);
}

.header-socials {
    display: flex;
    gap: 15px;
}

.header-socials a, .footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.header-socials .instagram, .footer-socials .instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.header-socials .facebook, .footer-socials .facebook {
    background-color: #1877F2;
}

.header-socials a:hover, .footer-socials a:hover {
    transform: scale(1.15);
}

/* ========================================= */
/* BUTONLAR (Premium Tasarım)                */
/* ========================================= */
.btn-primary, .btn-directions, .btn-directions-large {
    background: var(--primary-gradient); 
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
}

.btn-primary:hover, .btn-directions:hover, .btn-directions-large:hover {
    transform: translateY(-3px); 
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.4); 
    color: white;
}

/* ========================================= */
/* HERO (ANA SAYFA KARŞILAMA)                */
/* ========================================= */
.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('anasayfa.jpeg');
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    height: calc(100vh - 75px); 
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5); 
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #e2e8f0;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; 
}

/* ========================================= */
/* ORTAK BÖLÜM AYARLARI                      */
/* ========================================= */
.section-container {
    padding: 80px 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

h2.section-title,
.section-title h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dark-color);
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto 15px auto;
    letter-spacing: -0.5px;
}

h2.section-title::after,
.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.about-compact h2.section-title {
    margin-left: 0;
    margin-right: 0;
}

.about-compact h2.section-title::after {
    left: 0;
    transform: none;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.bg-light {
    background-color: var(--bg-light);
}

/* ========================================= */
/* HAKKIMIZDA BÖLÜMÜ YENİ TASARIM            */
/* ========================================= */
.about-split {
    display: flex;
    align-items: center; 
    gap: 80px; 
}

.about-image-box {
    flex: 1; 
    position: relative;
    padding: 20px;
}

.about-image-wrapper {
    position: relative;
    z-index: 2;
}

.main-about-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    display: block;
    position: relative;
    z-index: 2;
}

.about-shape-bg {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.15;
    z-index: 1;
    transform: rotate(-3deg);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 3;
    animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.badge-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.3;
}

.about-text-box {
    flex: 1; 
}

.sub-heading {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.about-text-box .section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.about-subtitle {
    color: var(--secondary-color);
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.about-text-box p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted); 
    margin-bottom: 20px;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-features li {
    font-size: 1.05rem;
    color: var(--dark-color);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-features li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .about-split {
        flex-direction: column;
        gap: 50px;
    }
    .about-badge {
        right: 0;
        bottom: -20px;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Compact About Section Overrides */
.about-compact {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 80px;
}
.about-compact .about-split {
    gap: 120px;
    width: 100%;
}
.about-compact .about-text-box {
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 60px;
    padding-right: 20px;
}
.about-compact .section-title {
    font-size: 2.2rem;
    margin-bottom: 5px !important;
}
.about-compact .about-subtitle {
    font-size: 1.15rem;
    margin-bottom: 15px;
}
.about-compact p {
    font-size: 1rem;
    margin-bottom: 10px;
    line-height: 1.5;
}
.about-compact .about-features {
    margin: 15px 0;
    gap: 10px;
}
.about-compact .about-features li {
    font-size: 0.95rem;
}
.about-compact .about-badge {
    padding: 15px 20px;
    bottom: -15px;
    right: -15px;
}
.about-compact .badge-number {
    font-size: 2rem;
}
.about-compact .badge-text {
    font-size: 0.85rem;
}
@media (max-width: 992px) {
    .about-compact .about-split {
        gap: 30px;
    }
}
/* ========================================= */
/* KLİNİĞİMİZ (SWIPER)                       */
/* ========================================= */
.clinicGallery {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
    overflow: hidden; /* Swiper'ın taşmasını engeller */
}

.clinicGallery .swiper-slide {
    width: 600px;
    height: 400px;
    background-color: #fff; 
    border-radius: 20px; 
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .clinicGallery .swiper-slide {
        width: 320px;
        height: 250px;
    }
}

.clinicGallery .swiper-slide img {
    display: block; 
    width: 100%;
    height: 100%; 
    object-fit: cover;
}

.clinicGallery .swiper-button-next, 
.clinicGallery .swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.clinicGallery .swiper-button-next:after, 
.clinicGallery .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.clinicGallery .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

/* ========================================= */
/* TEDAVİLER BÖLÜMÜ (MODERN AUTOFIT GRID)    */
/* ========================================= */
.treatments-section {
    padding: 90px 24px;
    background-color: var(--bg-light);
}

.treatments-section .section-title {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.treatments-section .section-title h2 {
    color: var(--dark-color);
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.treatments-section .section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Filtreleme Butonları */
.treatment-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}

.filter-btn {
    padding: 10px 22px;
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.filter-btn i {
    color: var(--primary-color);
    transition: color 0.3s;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(2, 132, 199, 0.12);
}

.filter-btn.active {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

.filter-btn.active i {
    color: #ffffff;
}

/* Grid & Kart Tasarımı */
.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 28px;
    max-width: 1280px;
    margin: 0 auto;
}

.treatment-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: #ffffff;
    border-radius: 18px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 1;
    transform: scale(1);
}

.treatment-card.hide {
    display: none !important;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 45px -12px rgba(2, 132, 199, 0.22);
    border-color: rgba(2, 132, 199, 0.35);
}

.treatment-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f1f5f9;
}

.treatment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.treatment-card:hover .treatment-img {
    transform: scale(1.08);
}

.treatment-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    z-index: 2;
}

.treatment-badge.badge-popular {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.treatment-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.treatment-info h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.35;
}

.treatment-info p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 22px;
    flex-grow: 1;
}

.btn-detail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    background-color: #f8fafc;
    color: var(--primary-color);
    border: 1px solid #e2e8f0;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 10px;
    text-align: center;
    margin-top: auto;
    transition: all 0.3s ease;
}

.btn-detail i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-detail:hover {
    background: var(--primary-gradient);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(2, 132, 199, 0.25);
}

.btn-detail:hover i {
    transform: translateX(4px);
}

/* ========================================= */
/* DOKTORLAR BÖLÜMÜ                          */
/* ========================================= */
.doctors-flex {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap; /* İki doktordan fazlası için iyi */
}

.doctor-profile {
    flex: 1;
    max-width: 380px;
    background: #ffffff;
    border-radius: 20px;
    text-align: center;
    padding-bottom: 30px; 
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.doctor-profile:hover {
    transform: translateY(-12px); 
    box-shadow: 0 25px 50px rgba(2, 132, 199, 0.2);
}

.doctor-profile img {
    width: 100%;
    height: 380px; 
    object-fit: cover;
    object-position: top; 
    border-bottom: 5px solid var(--primary-color); 
    display: block;
    transition: transform 0.5s ease;
}

.doctor-profile:hover img {
    transform: scale(1.05);
}

.doctor-profile h3 {
    margin: 25px 0 8px 0;
    color: var(--dark-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.doc-title { 
    margin: 0;
    color: var(--primary-color); 
    font-weight: 500;
    font-size: 1.1rem;
    background: rgba(2, 132, 199, 0.1);
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
}

/* ========================================= */
/* İLETİŞİM BÖLÜMÜ                           */
/* ========================================= */
#iletisim {
    margin-top: 100px; 
}

.contact-split {
    display: flex;
    gap: 50px;
    padding: 40px;
}

.contact-info-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-box h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-info-box > p {
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-details-list p {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-color);
}

.contact-details-list p i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.contact-details-list a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-details-list a:hover {
    color: var(--primary-color);
}

.contact-map-box {
    flex: 1;
    min-height: 350px;
    border-radius: 12px;
    overflow: hidden; 
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* ========================================= */
/* FOOTER                                    */
/* ========================================= */
.main-footer {
    margin-top: 100px; 
    background-color: var(--dark-color);
    color: #cbd5e1;
    padding: 70px 50px 20px 50px;
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.footer-logo {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.footer-col h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col p i {
    color: var(--primary-color);
    width: 20px; 
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
}

/* ========================================= */
/* MOBİL / RESPONSIVE AYARLAR                */
/* ========================================= */
.hamburger-menu {
    display: none !important; 
    font-size: 32px;
    cursor: pointer;
    user-select: none;
}

.mobile-call-btn {
    display: none; 
}

@media (max-width: 1024px) {
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 992px) {
    .main-header {
        position: relative;
    }
    .hamburger-menu {
        display: block !important; 
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        z-index: 1001;
    }
    .header-right {
        display: flex !important;
        align-items: center;
        position: absolute;
        right: 70px; 
        top: 50%;
        transform: translateY(-50%);
        gap: 18px; 
    }
    .header-right a {
        color: var(--text-color); 
        font-size: 1.3rem; 
        transition: transform 0.2s ease, color 0.2s ease;
        padding: 5px; 
    }
    .header-phone {
        display: none !important;
    }
    
    .main-menu ul {
        display: none !important; 
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        padding: 0;
        margin: 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    .main-menu ul li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #eee;
    }
    .main-menu ul li a {
        display: block;
        padding: 15px 0;
    }
    .main-menu.active ul {
        display: flex !important; 
    }

    .about-split, .contact-split {
        flex-direction: column; 
        gap: 40px;
    }
    .about-text-box h2 {
        text-align: center !important; 
    }
    .contact-map-box {
        min-height: 300px;
        width: 100%;
    }
    .doctors-flex {
        flex-direction: column; 
        align-items: center;    
        gap: 30px;              
    }
    .doctor-profile {
        max-width: 350px; 
        width: 90%;  
    }
    .doctor-profile img {
        height: 340px; 
    }
    .mobile-call-btn {
        display: flex !important; 
        justify-content: center;
        align-items: center;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background-color: #25d366;
        color: #ffffff;
        text-decoration: none;
        padding: 15px 0;
        font-size: 1.2rem;
        font-weight: 700;
        z-index: 9999;
        box-shadow: 0 -4px 10px rgba(0,0,0,0.15);
    }
}

@media (max-width: 600px) {
    .treatments-grid {
        grid-template-columns: 1fr; 
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}

/* ========================================= */
/* İÇ SAYFALAR (TEDAVİ DETAYLARI)            */
/* ========================================= */
.treatment-hero {
    position: relative;
    width: 100%;
    height: 400px;
    background-color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.treatment-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 1;
}

.treatment-hero-text {
    position: relative;
    z-index: 2;
    color: #ffffff;
    padding: 20px;
    max-width: 800px;
}

.treatment-hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

.treatment-hero-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    text-shadow: 1px 2px 5px rgba(0,0,0,0.5);
}

.treatment-content-wrapper {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.treatment-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.treatment-content h2 {
    color: var(--dark-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    margin-top: 30px;
}

.treatment-content h2:first-child {
    margin-top: 0;
}

.treatment-content p {
    color: var(--text-color);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.info-box {
    background-color: #f8fafc;
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 12px 12px 0;
}

.info-box h3 {
    color: var(--dark-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box ul li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--text-color);
    display: flex;
    align-items: flex-start;
}

.info-box ul li i {
    color: var(--primary-color);
    margin-right: 12px;
    margin-top: 5px;
}

/* ========================================= */
/* İLETİŞİM / RANDEVU KUTUSU (ALT KISIM CTA) */
/* ========================================= */
.treatment-sidebar {
    max-width: 800px;
    margin: 60px auto 0;
    width: 100%;
}

.appointment-card {
    background: var(--primary-gradient);
    color: #ffffff;
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(2, 132, 199, 0.3);
    position: relative;
    overflow: hidden;
}

/* Dekoratif arka plan çemberleri */
.appointment-card::before, .appointment-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.appointment-card::before {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -100px;
}

.appointment-card::after {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -50px;
}

.appointment-card h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.appointment-card p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.appointment-card .btn-primary {
    background: #ffffff;
    color: var(--primary-color);
    font-size: 1.2rem;
    padding: 15px 35px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.appointment-card .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
    background: var(--dark-color);
    color: #ffffff;
}

.appointment-card .btn-primary i {
    margin-right: 8px;
}