/* İmplant Sayfası Stilleri */ 

/* Genel Sayfa Yapısı */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-section {
    padding: 80px 0;
}

.bg-light {
    background-color: #fff;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-top: 0;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    font-size: 18px;
    line-height: 1.7;
}

/* Hero Bölümü */
.hero-implant {
    height: 60vh;
    background-image: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%), url('../img/implant_hero.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    padding: 0 16vw;
}

.hero-implant-content {
    max-width: 50%;
    text-align: left;
}

.hero-implant-content h1 {
    font-size: 40px;
    margin: 0 0 15px 0;
    color: #fff;
    line-height: 1.3;
}

.hero-implant-content p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Tedavi Süreci */
.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.step {
    text-align: center;
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.step-icon {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.step h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

/* SSS ve Görsel Bölümü */
.content-image-split {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.content-image-split.faq-layout {
    grid-template-columns: 3fr 2fr; /* SSS Bölümü: Yazı (3/5), Görsel (2/5) */
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.faq-item {
    margin-bottom: 25px;
}
.faq-item h4 {
    margin-bottom: 10px;
}

/* İmplant Çeşitleri Bölümü */
.implant-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.type-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.type-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.type-card-content {
    padding: 25px;
}

.type-card-content h4 {
    margin-top: 0;
}

/* RANDEVU ÇAĞRISI (CTA) */
.cta-section {
    padding: 60px 20px;
    background-color: var(--primary-color); /* Varsayılan arka plan rengi */
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}

#implant-cta {
    background-image: url('../img/implant_callaction.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax efekti için */
}

#implant-cta .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Yarı saydam siyah overlay */
    z-index: -1;
}

.cta-section h2 {
    font-size: 2.2rem;
}

.btn-cta {
    display: inline-block;
    padding: 15px 35px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin-top: 20px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.btn-cta:hover {
    background-color: #f0f2f5;
    transform: translateY(-3px);
}

/* Animasyon */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-implant {
        padding-top: 100px; /* Navbar için boşluk eklendi */
    }

    .content-image-split,
    .treatment-steps,
    .faq-container {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .step-card {
        text-align: center; /* Adım kartı içeriğini ortala */
    }

    .faq-item {
        margin-bottom: 15px;
    }

    .content-image-split,
    .content-image-split.faq-layout {
        grid-template-columns: 1fr;
    }

    .content-image-split.faq-layout .image-content {
        order: -1; /* SSS bölümünde resmi üste taşı */
    }

    .process-steps {
        grid-template-columns: 1fr; /* Adımları tek sütuna düşür */
    }

    .hero-implant {
        justify-content: center;
        text-align: center;
    }

    .hero-implant-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-implant-content h1 {
        font-size: 34px;
    }

    .content-image-split {
        display: flex;
    }
} 