/* --- GENEL AYARLAR (Yeşil Tema) --- */
:root {
    --primary: #198754;
    --primary-dark: #146c43;
    --secondary: #343a40;
    --light: #f8f9fa;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Open Sans', sans-serif;
    color: #444;
    line-height: 1.7;
    background-color: var(--light);
}

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

h1,
h2,
h3 {
    font-weight: 700;
    color: var(--secondary);
    margin-top: 0;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- TOP BAR --- */
.top-bar {
    background: var(--secondary);
    color: #ccc;
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
}

/* --- HEADER --- */
header {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

nav {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo .highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav a {
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-nav {
    background: var(--primary);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-nav:hover {
    background: var(--primary-dark);
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    font-size: 1.4rem;
    color: var(--secondary);
    cursor: pointer;
}

/* --- HERO (Giriş Bölümü - Güncellendi) --- */
.hero {
    position: relative;
    background: url('../images/dede-torun-parkta.jpg') center/cover no-repeat;
    background-position: center 5%;
    height: 600px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h1 {
    font-size: 3rem;
    color: var(--primary-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-white {
    background: #fff;
    color: var(--secondary);
    margin-left: 10px;
    border: 1px solid #ddd;
}

/* --- QUICK ACCESS --- */
.quick-access {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding-bottom: 50px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.qa-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    border-bottom: 4px solid transparent;
    transition: 0.3s;
}

.qa-box:hover,
.qa-box.active {
    border-bottom-color: var(--primary);
    transform: translateY(-5px);
}

.qa-box i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* --- ÇÖZÜMLER --- */
.solutions {
    padding: 80px 0;
}

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

.section-title h2 {
    font-size: 2.5rem;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sol-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    transition: 0.3s;
    text-align: left;
}

.sol-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(25, 135, 84, 0.1);
}

.icon-bg {
    width: 60px;
    height: 60px;
    background: #e9f7ef;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.text-link {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

/* --- DOKTOR BIO --- */
.doctor-bio {
    padding: 80px 0;
    background: #fff;
}

.bio-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.bio-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 #e9f7ef;
}

/* --- GALERİ --- */
.gallery-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.myKlinikGallery {
    margin-top: 40px;
    padding-bottom: 60px;
}

.myKlinikGallery .swiper-slide {
    display: flex;
    justify-content: center;
}

.myKlinikGallery img {
    width: 100%;
    max-width: 950px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

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

.myKlinikGallery .swiper-pagination-bullet {
    background: #c2d9cd;
    opacity: 1;
}

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

@media (max-width: 768px) {
    .myKlinikGallery {
        padding-bottom: 40px;
    }

    .myKlinikGallery img {
        border-radius: 12px;
    }

    .myKlinikGallery .swiper-button-next,
    .myKlinikGallery .swiper-button-prev {
        display: none;
    }
}

/* --- WHATSAPP FLOAT BUTTON --- */
.float-whatsapp {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.float-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.2);
}

.float-whatsapp .my-float {
    font-size: 1.8rem;
}

.badge {
    background: var(--primary);
    color: #fff;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary);
    font-weight: 600;
}

.check-list i {
    color: var(--primary);
}

/* --- İLETİŞİM --- */
.contact-green {
    padding: 80px 0;
    background: var(--primary);
    color: #fff;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
    align-items: stretch;
}

.contact-details h3 {
    color: #fff;
    margin-bottom: 20px;
}

.c-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.c-item i {
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.c-item a {
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
}

.c-item span {
    color: #f0f0f0;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Harita Yüksekliği Ayarı */
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 15px;
    border: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-white-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.btn-white-outline:hover {
    background: #fff;
    color: var(--primary);
}

.clinic-photo-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.clinic-photo-box p {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.clinic-photo-box img {
    width: 100%;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* --- FOOTER --- */
footer {
    background: var(--secondary);
    color: #aaa;
    padding: 30px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    align-items: flex-start;
}

.footer-contact h3 {
    color: #fff;
    margin-top: 0;
}

.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 0;
    color: #ddd;
}

.footer-contact li {
    margin-bottom: 6px;
}

.footer-contact a {
    color: #fff;
    font-weight: 600;
}

.footer-meta {
    text-align: center;
}

.f-links a {
    margin: 0 10px;
    color: #fff;
}

.footer-meta {
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icons a {
    color: #bbb;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-icons a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.social-icons a[aria-label="Instagram"]:hover {
    color: #E1306C;
}

.social-icons a[aria-label="Facebook"]:hover {
    color: #1877F2;
}

.social-icons a[aria-label="YouTube"]:hover {
    color: #FF0000;
}

.social-icons a[aria-label="TikTok"]:hover {
    color: #000;
    text-shadow: 1px 1px 0 #fff;
}

.social-icons a[aria-label="LinkedIn"]:hover {
    color: #0077b5;
}

/* --- MOBİL --- */
@media (max-width: 768px) {
    header .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding: 0 15px;
    }

    .menu-toggle {
        display: block !important;
        font-size: 2rem;
        color: #343a40;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 2000;
        padding: 5px;
        margin-left: auto;
    }

    nav {
        width: 100%;
    }

    nav ul,
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        padding: 20px 0;
        border-top: 1px solid #eee;
        z-index: 1500;
    }

    nav ul.active,
    .nav-links.active {
        display: flex;
    }

    nav ul li,
    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f9f9f9;
    }

    nav ul li:last-child,
    .nav-links li:last-child {
        border-bottom: none;
    }

    nav ul li a,
    .nav-links li a {
        display: block;
        padding: 15px;
        font-size: 1.1rem;
    }

    .nav-cta,
    .top-bar,
    .contact-card {
        display: none !important;
    }

    .btn-nav {
        display: block !important;
        width: 90%;
        margin: 15px auto;
        text-align: center;
        padding: 12px 0;
    }

    .hero {
        height: auto;
        padding: 80px 0;
        text-align: center;
    }

    .hero-overlay {
        background: rgba(255, 255, 255, 0.9);
    }

    .hero-content {
        margin: 0 auto;
    }

    .bio-flex,
    .contact-wrapper,
    .grid-3,
    .symptoms-wrapper,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .logo img {
        max-height: 40px;
    }

    .footer-meta {
        text-align: left;
    }

}
