/* ===== GENEL ve TEMEL AYARLAR ===== */
:root {
    --primary-color: #8e44ad;
    --secondary-color: #3498db;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --text-color: #34495e;
    --background-color: #ffffff;
    --border-radius: 8px;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

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

h1, h2, h3 {
    color: var(--dark-color);
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

section {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

.btn-primary:hover {
    background-color: #732d91;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

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


/* ===== HEADER ===== */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

header nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s;
}

header nav a:hover {
    color: var(--primary-color);
}


/* ===== HERO BÖLÜMÜ ===== */
#hero {
    background-color: #f9f6fc;
    padding: 60px 0;
}

#hero .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

#hero .hero-text {
    flex: 1;
}

#hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1rem;
}

#hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

#hero .hero-image {
    flex: 1;
    text-align: center;
}

#hero .hero-image img {
    max-width: 100%;
    height: auto;
}



/* ===== FOR WHOM BÖLÜMÜ ===== */
#for-whom {
    background-color: var(--light-color);
}
.for-whom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.for-whom-card {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.for-whom-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.for-whom-card a {
    display: inline-block;
    margin-top: 1rem;
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
}


/* ===== TESTIMONIALS BÖLÜMÜ ===== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.testimonial-card {
    background-color: #f9f6fc;
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card footer {
    font-weight: 600;
    color: var(--primary-color);
}


/* ===== CTA BÖLÜMÜ ===== */
#cta {
    background-color: var(--dark-color);
    color: #fff;
    text-align: center;
}

#cta h2, #cta p {
    color: #fff;
}

#cta p {
    margin: 1rem 0 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER BÖLÜMÜ ===== */
footer {
    background-color: var(--dark-color);
    color: #bdc3c7;
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h3, .footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
}

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

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

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-col a:hover {
    color: #fff;
}

.social-links a {
    font-size: 1.5rem;
    margin-right: 15px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #4a627a;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* css/style.css -> Dosyanın sonuna, @media sorgularından önce ekleyin */

/* ===== ALT SAYFA GENEL STİLLERİ ===== */
#page-hero {
    background-color: var(--primary-color);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}
#page-hero h1, #page-hero p {
    color: #fff;
}
#page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}
#page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}
header nav a.active {
    color: var(--primary-color);
}

/* ===== SORUN & ÇÖZÜM BÖLÜMÜ ===== */
#problem-solution {
    background-color: var(--light-color);
}
.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.problem-card, .solution-card {
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
}
.problem-card {
    background-color: #fff;
    box-shadow: var(--box-shadow);
    border-top: 4px solid #e74c3c; /* Kırmızı - Sorun */
}
.solution-card {
    background-color: #fff;
    box-shadow: var(--box-shadow);
    border-top: 4px solid #2ecc71; /* Yeşil - Çözüm */
}
.problem-card i, .solution-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.problem-card i { color: #e74c3c; }
.solution-card i { color: #2ecc71; }
.problem-card h4, .solution-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* ===== SSS (FAQ) BÖLÜMÜ ===== */
#faq {
    background-color: #fff;
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--light-color);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-color);
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-answer p {
    padding: 0 20px 20px 20px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-item.active .faq-answer {
    max-height: 200px; /* Cevabın sığacağı bir yükseklik */
}

/* css/style.css -> Dosyanın sonuna, @media sorgularından önce ekleyin */

/* ===== KURUMLAR SAYFASI ÖZEL STİLLERİ ===== */
#page-hero.kurum-hero {
    background-color: var(--dark-color); /* Farklı bir arkaplan rengi */
}

#who-can-use {
    background-color: var(--light-color);
}
#who-can-use .feature-card {
    text-align: left;
}
#who-can-use .feature-card i {
    float: left;
    margin-right: 20px;
}

#admin-features {
    padding-bottom: 0;
}

/* ===== NASIL ÇALIŞIR? BÖLÜMÜ ===== */
#how-it-works {
    background-color: #f9f6fc;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
}
.step-card {
    padding-top: 40px;
}
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem auto;
    box-shadow: 0 0 0 8px #fff, 0 0 0 10px var(--primary-color);
}
.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* Adımlar arasındaki oklar */
.steps-grid::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #e0d1eb;
    z-index: 0;
}

/* css/style.css -> Dosyanın sonuna, @media sorgularından önce ekleyin */

/* ===== KOÇLAR SAYFASI ÖZEL STİLLERİ ===== */
#page-hero.coach-hero {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
}

/* ===== KARŞILAŞTIRMA BÖLÜMÜ ===== */
#comparison {
    background-color: var(--light-color);
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.comparison-card {
    padding: 30px;
    border-radius: var(--border-radius);
    background: #fff;
    box-shadow: var(--box-shadow);
}
.comparison-card h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}
.comparison-card.old-way h3 { color: #e74c3c; }
.comparison-card.new-way h3 { color: #2ecc71; }
.comparison-card ul {
    list-style: none;
}
.comparison-card li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}
.comparison-card .fa-times-circle { color: #e74c3c; }
.comparison-card .fa-check-circle { color: #2ecc71; }

/* ===== FİYATLANDIRMA BÖLÜMÜ ===== */
#pricing {
    background-color: #f9f6fc;
}
.pricing-grid {
    display: flex;
    justify-content: center;
}
.pricing-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    max-width: 400px;
    border-top: 5px solid var(--primary-color);
}
.pricing-card h3 {
    font-size: 1.6rem;
}
.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1rem 0;
}
.pricing-card .price span {
    font-size: 1.5rem;
    font-weight: 400;
}
.pricing-card > p {
    color: #7f8c8d;
    margin-bottom: 2rem;
}
.pricing-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}
.pricing-card li {
    margin-bottom: 10px;
}
.pricing-card li i {
    color: var(--secondary-color);
    margin-right: 10px;
}
.pricing-card .btn {
    width: 100%;
}


#page-hero.guidance-hero {
    background-color: var(--secondary-color); /* Farklı, güven veren bir mavi tonu */
}

#proactive-guidance {
    background-color: #fff;
}

/* ===== RESPONSIVE GÜNCELLEMELERİ ===== */
@media (max-width: 768px) {
    /* ... (mevcut responsive kodlarınız) ... */

    .problem-solution-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== OKULLAR & KURSLAR SAYFASI ÖZEL STİLLERİ ===== */

#ecosystem {
    background-color: var(--light-color);
}
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}
.ecosystem-card {
    text-align: center;
}
.ecosystem-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.ecosystem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

#manager-features {
    background-color: #fff;
}

#brand-value {
    background-color: #f9f6fc;
}
.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}
.value-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

/* css/style.css -> Dosyanın sonuna, @media sorgularından önce ekleyin */

/* ===== ÖĞRETMENLER SAYFASI ÖZEL STİLLERİ ===== */
#page-hero.teacher-hero {
    background: linear-gradient(to right, #1abc9c, #16a085); /* Yeşil tonlarında, güven ve eğitim hissi verir */
}

#classroom-pulse {
    background-color: var(--light-color);
}

#teacher-features {
    background-color: #fff;
}

/* css/style.css -> Dosyanın sonuna, @media sorgularından önce ekleyin */

/* ===== YARDIM MERKEZİ SAYFASI ÖZEL STİLLERİ ===== */
#page-hero.help-hero {
    background: #f4f6f9;
}
#page-hero.help-hero h1, #page-hero.help-hero p {
    color: var(--dark-color);
}
.search-bar-container {
    position: relative;
    max-width: 700px;
    margin: 2rem auto 0 auto;
}
.search-bar-container i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}
#help-search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
}

#help-content {
    padding-top: 40px;
}
.help-accordion {
    max-width: 900px;
    margin: 0 auto;
}
.help-category {
    border: 1px solid var(--light-color);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    overflow: hidden;
}
.help-category-title {
    width: 100%;
    background-color: #fff;
    border: none;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-color);
}
.help-category-title i {
    transition: transform 0.3s ease;
}
.help-category-title span i {
    color: var(--primary-color);
    margin-right: 10px;
}
.help-category-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background-color: #fdfdfd;
}
.help-category.active .help-category-title i.fa-chevron-down {
    transform: rotate(180deg);
}
.help-category.active .help-category-content {
    max-height: 2000px; /* İçeriğin sığabileceği büyük bir değer */
}
.help-item {
    display: flex;
    gap: 30px;
    padding: 25px;
    border-top: 1px solid var(--light-color);
}
.help-item-text {
    flex: 1;
}
.help-item-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.help-item-video {
    flex: 1;
    min-width: 300px;
}
.help-item-video iframe {
    width: 100%;
    height: 100%;
    min-height: 240px;
    border-radius: var(--border-radius);
}

/* ===== RESPONSIVE GÜNCELLEMELERİ ===== */
@media (max-width: 768px) {
    /* ... (mevcut responsive kodlarınız) ... */
    
    .help-item {
        flex-direction: column;
    }
}

/* ===== RESPONSIVE GÜNCELLEMELERİ ===== */
@media (max-width: 768px) {
    /* ... (mevcut responsive kodlarınız) ... */
    
    .value-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== RESPONSIVE TASARIM ===== */
@media (max-width: 768px) {
    h2 { font-size: 2rem; }
    
    header .container { flex-wrap: wrap; }
    header nav { order: 3; width: 100%; margin-top: 15px; }
    header nav ul { justify-content: center; }

    #hero .container { flex-direction: column; text-align: center; }
    #hero .hero-text { order: 2; }
    #hero .hero-image { order: 1; margin-bottom: 20px; }
    #hero h1 { font-size: 2.5rem; }

    .for-whom-grid, .testimonials-grid, .footer-grid { grid-template-columns: 1fr; }
}

    .steps-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid::before {
        display: none;
    }
}

/* ===== FEATURES BÖLÜMÜ (GELİŞMİŞ VERSİYON) ===== */
#features {
    background-color: #fff;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

/* Son elemanın altındaki boşluğu kaldır */
.feature-row:last-child {
    margin-bottom: 0;
}

/* Her ikinci satırda görsel ve metnin yerini değiştirir */
.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.feature-image img {
    width: 100%;
    display: block;
}

.feature-text {
    flex: 1;
}

.feature-text .feature-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f9f6fc; /* Morun çok açık tonu */
    margin-bottom: 1.5rem;
}

.feature-text .feature-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.feature-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-text p {
    margin-bottom: 1.5rem;
    color: #555;
}

.feature-text ul {
    list-style: none;
    padding-left: 0;
}

.feature-text ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 500;
}

.feature-text ul li i {
    color: var(--secondary-color);
}

/* ===== MOBİL UYUMLULUK İÇİN GÜNCELLEME ===== */
@media (max-width: 768px) {
    /* ... (mevcut responsive kodlarınızın sonuna ekleyin) ... */
    
    .feature-row, .feature-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .feature-text ul {
        text-align: left;
    }

    .feature-text .feature-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ===== HERO SLIDER STYLES (YENİ EKLENDİ) ===== */
#hero .hero-image {
    position: relative; /* İçindeki slaytları konumlandırmak için */
    overflow: hidden; /* Taşmaları gizle */
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    min-height: 450px; /* Konteynerin bir yüksekliği olması için */
}

.slider-container .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* 1 saniyelik yumuşak geçiş efekti */
    z-index: 1;
}

.slider-container .slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-container .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Görüntünün bozulmadan alanı kaplamasını sağlar */
}

/* ===== MOBİL UYUMLULUK İÇİN GÜNCELLEME ===== */
@media (max-width: 768px) {
    #hero .hero-image {
        min-height: 300px;
        width: 100%;
    }
}

/* ===== GÜNCELLENMİŞ ÖZELLİKLER BÖLÜMÜ STİLLERİ ===== */

/* Öğrenci/Öğretmen gibi grup başlıkları için stil */
.features-group-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-top: 60px; /* Gruplar arası boşluk */
    margin-bottom: 40px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 10px;
}

/* Başlığın ortalanması için bir sarmalayıcı */
.features-title-wrapper {
    text-align: center;
    margin-bottom: 40px;
}

/* Tıklanabilir video linki için görsel sarmalayıcı */
.feature-image a {
    display: block;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Görselin üzerine geldiğinde video oynatma ikonu */
.feature-image a::after {
    content: '\f04b'; /* Font Awesome Play ikonu */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #fff;
    background-color: rgba(0, 0, 0, 0.5);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.feature-image a:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* ===== GÜNCELLENMİŞ KULLANICI YORUMLARI (SLIDER) STİLLERİ ===== */
#testimonials {
    background-color: var(--light-color);
}

.testimonial-slider {
    position: relative;
    width: 100%;
    overflow: hidden; /* Dışarıdaki slaytları gizle */
}

.slider-wrapper {
    display: flex; /* Slaytları yan yana diz */
    transition: transform 0.5s ease-in-out; /* Yumuşak kayma efekti */
}

.testimonial-slide {
    flex: 0 0 100%; /* Her slayt tam genişlikte olsun ve küçülmesin */
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Orijinal iki sütunlu düzen */
    gap: 40px;
}

/* Orijinal kart stilini koruyoruz */
.testimonial-card {
    background-color: #f9f6fc;
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    display: flex;
    flex-direction: column; /* İçeriği dikeyde hizala */
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Paragrafın kalan boşluğu doldurmasını sağlar */
}

/* Videonun ve altındaki ismin olduğu koyu alan */
.video-container {
    background-color: var(--dark-color);
    border-radius: var(--border-radius);
    padding: 15px;
    margin-top: auto; /* Konteyneri kartın altına iter */
}

.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Video oranını koru */
    margin-bottom: 10px;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 4px;
}

.video-container footer {
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
}

/* Slider Kontrol Okları */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    transition: all 0.2s ease;
}

.slider-arrow:hover {
    background-color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: -20px;
}

.slider-arrow.next {
    right: -20px;
}

/* Okların başında/sonunda gizlenmesi için */
.slider-arrow.hidden {
    display: none;
}

/* ===== SLIDER İÇİN RESPONSIVE AYARLAR ===== */
@media (max-width: 768px) {
    .testimonial-slide {
        grid-template-columns: 1fr; /* Mobilde tek sütun */
    }
    .slider-arrow.prev { left: 10px; }
    .slider-arrow.next { right: 10px; }
}

/* ===== YASAL METİN SAYFALARI İÇİN STİLLER ===== */
#legal-content {
    padding-top: 60px;
    padding-bottom: 60px;
}

#legal-content .container {
    max-width: 800px; /* Metnin okunabilirliğini artırmak için daha dar bir alan */
}

#legal-content h1, 
#legal-content h2, 
#legal-content h3 {
    margin-bottom: 1rem;
    color: var(--dark-color);
}

#legal-content h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

#legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    border-bottom: 2px solid var(--light-color);
    padding-bottom: 0.5rem;
}

#legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

#legal-content ul {
    list-style-position: inside;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

#legal-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* ===== AÇILIR GİRİŞ MENÜSÜ STİLLERİ ===== */
.header-actions {
    display: flex;
    align-items: center;
}

        #success-message h3 {
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 100;
    border-radius: 8px;
    overflow: hidden; /* Kenarları yuvarlak tutmak için */
    border: 1px solid #eee;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 14px; /* Menü içi font boyutu */
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* ===== ÖĞRENCİ SAYFASI VİDEO SLIDER STİLLERİ ===== */
#student-features {
    background-color: #fff; /* Veya var(--light-color) */
}

.video-slider {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 0 40px; /* Oklar için yanlarda boşluk */
}

.video-slider-wrapper {
    display: flex;
    overflow: hidden; /* Sadece aktif slaytın görünmesini sağlar */
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.video-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.video-slide {
    flex: 0 0 100%;
    width: 100%;
}

.video-slide .video-embed-container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-slide .video-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-slide h4.video-title {
    text-align: center;
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-top: 1.5rem;
}

/* Slider Kontrol Okları */
.video-slider .slider-arrow {
    position: absolute;
    top: 40%; /* Videonun ortasına daha yakın */
    transform: translateY(-50%);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
    color: var(--dark-color);
}
.video-slider .slider-arrow:hover {
    background-color: #f1f1f1;
    transform: translateY(-50%) scale(1.1);
}
.video-slider .slider-arrow.prev {
    left: 0;
}
.video-slider .slider-arrow.next {
    right: 0;
}

/* ===== SSS (FAQ) BÖLÜMÜ GÜNCELLEMESİ ===== */
.faq-answer p a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}
.faq-answer p a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE HAMBURGER MENÜ STİLLERİ (DÜZELTİLMİŞ) ===== */

/* Menü Butonu (Hamburger) */
.hamburger-btn {
    display: none; /* Varsayılan olarak (masaüstünde) gizli */
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 12px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

.hamburger-btn i {
    margin-right: 5px;
}

/* ÖNEMLİ DÜZELTME: Masaüstünde menünün her zaman görünür olmasını sağlıyoruz. */
header nav {
    display: block;
}


/* DAR EKRANLAR İÇİN MEDIA QUERY (Tablet ve Altı) */
@media (max-width: 992px) {
    /* Header container'ın elemanları alt satıra kayabilsin */
    header .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    /* Normal menüyü gizle */
    header nav {
        display: none; 
        order: 3; 
        width: 100%;
        margin-top: 15px;
    }
    
    /* Hamburger butonunu göster */
    .hamburger-btn {
        display: block; 
        order: 2; 
    }

    /* Giriş Yap butonunu logonun sağına al */
    .header-actions {
        order: 1;
    }
    .logo {
        order: 0;
    }

    /* JavaScript ile .nav-open class'ı eklendiğinde menüyü göster */
    header nav.nav-open {
        display: block;
    }

    header nav ul {
        flex-direction: column; /* Linkleri alt alta diz */
        align-items: center;
        width: 100%;
        background-color: #f9f6fc;
        padding: 10px 0;
        border-radius: var(--border-radius);
    }

    header nav ul li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }
}

/* ===== FİYATLANDIRMA SAYFASI STİLLERİ ===== */
#page-hero.pricing-hero {
    background: var(--dark-color);
}

#pricing .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch; /* Kartların aynı yükseklikte olmasını sağlar */
}

#pricing .pricing-card {
    display: flex;
    flex-direction: column; /* Kart içeriğini dikeyde hizala */
}

#pricing .pricing-card ul {
    flex-grow: 1; /* Özellikler listesinin kalan boşluğu doldurmasını sağlar */
}

#pricing .pricing-card .btn {
    margin-top: auto; /* Butonu kartın en altına iter */
}

/* Fiyatlandırma için responsive ayarlar */
@media (max-width: 992px) {
    #pricing .pricing-grid {
        grid-template-columns: 1fr;
    }
}
/* ===== MODAL (POPUP FORM) STİLLERİ ===== */
.modal-overlay {
    display: none; /* Varsayılan olarak gizli */
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5); /* Yarı şeffaf siyah arkaplan */
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: var(--border-radius);
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: black;
    text-decoration: none;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.modal-content input, 
.modal-content select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.modal-content button[type="submit"] {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.modal-content button[type="submit"]:hover {
    background-color: #732d91;
}

/* Başarı Mesajı Stilleri */
#success-message, #quote-success-message {
    text-align: center;
}

#success-message .fas, #quote-success-message .fas {
    font-size: 4rem;
    color: #2ecc71; /* Yeşil */
    margin-bottom: 1rem;
}

#success-message h3, #quote-success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* ===== YENİ RESPONSIVE HAMBURGER MENÜ STİLLERİ ===== */

/* Menü Butonu (Hamburger) */
.hamburger-btn {
    display: none; /* Masaüstünde gizli */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-btn i {
    font-size: 1.5rem;
    color: var(--dark-color);
}

/* DAR EKRANLAR İÇİN MEDIA QUERY (Tablet ve Altı) */
@media (max-width: 992px) {
    header .container {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    /* NORMAL NAVİGASYONU VE GİRİŞ YAP BUTONUNU MASAÜSTÜNDE GİZLE */
    header nav,
    .header-actions {
        display: none;
    }

    /* MOBİLDE HAMBURGER BUTONUNU GÖSTER */
    .hamburger-btn {
        display: block;
    }


    .mobile-nav-overlay.nav-open {
        left: 0; /* Açıldığında ekranı kapla */
    }

    .mobile-nav-overlay .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        background: none;
        border: none;
        color: var(--dark-color);
        cursor: pointer;
    }
    
    .mobile-nav-overlay ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .mobile-nav-overlay ul li {
        margin-bottom: 25px;
    }

    .mobile-nav-overlay ul a {
        font-size: 1.5rem;
        font-weight: 600;
        text-decoration: none;
        color: var(--dark-color);
        transition: color 0.3s;
    }
    
    .mobile-nav-overlay ul a:hover {
        color: var(--primary-color);
    }

    /* Mobil menünün en altına Giriş Yap butonlarını ekle */
    .mobile-nav-actions {
        margin-top: auto; /* Butonları en alta iter */
        padding-top: 20px;
        border-top: 1px solid var(--light-color);
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .mobile-nav-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== YENİ HEADER ve MENÜ STİLLERİ (Masaüstü & Mobil) ===== */

/* Masaüstü Açılır Menüleri (Giriş Yap ve Yardım) */
.header-actions .dropdown,
header nav .dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif; /* Yazı tipini eşitle */
    font-weight: 600;
}
/* Menü linki gibi görünen dropdown butonu için ek stil */
header nav .dropdown .dropbtn {
    color: var(--text-color);
    padding: 0;
    font-size: 1rem;
    transition: color 0.3s;
}
header nav .dropdown .dropbtn:hover {
    color: var(--primary-color);
}


.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.15);
    z-index: 100;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid #eee;
}

.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
    display: block;
}


/* Menü Butonu (Hamburger) */
.hamburger-btn {
    display: none; /* Masaüstünde gizli */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}
.hamburger-btn i {
    font-size: 1.5rem;
    color: var(--dark-color);
}


/* DAR EKRANLAR İÇİN MEDIA QUERY (Tablet ve Altı) */
@media (max-width: 992px) {
    header .container {
        justify-content: space-between;
    }

    /* Masaüstü navigasyonu ve giriş yap butonunu gizle */
    header nav,
    .header-actions {
        display: none;
    }

    /* Mobilde hamburger butonunu göster */
    .hamburger-btn {
        display: block;
    }



    .mobile-nav-overlay.nav-open {
        left: 0;
    }

    .mobile-nav-overlay .close-btn {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 2.2rem;
        background: none;
        border: none;
        color: var(--dark-color);
        cursor: pointer;
    }
    
    .mobile-nav-overlay ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .mobile-nav-overlay ul li {
        margin-bottom: 20px; /* Boşluğu azalt */
    }

    .mobile-nav-overlay ul a {
        font-size: 1.3rem; /* Puntoları küçült */
        font-weight: 600;
        text-decoration: none;
        color: var(--dark-color);
    }
    
    .mobile-nav-actions {
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid var(--light-color);
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .mobile-nav-actions .btn {
        width: 100%;
        text-align: center;
    }
}
/* ===== YENİ HEADER ve MENÜ STİLLERİ (DÜZELTİLMİŞ) ===== */

/* Genel Header Düzeni */
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Masaüstü Navigasyon */
header nav {
    display: block; /* MASAÜSTÜNDE GÖRÜNÜR OLMASINI GARANTİLER */
}
header nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}
header nav ul li {
    padding: 0;
}

/* Masaüstü Açılır Menüleri (Giriş Yap ve Yardım) */
.header-actions .dropdown,
header nav .dropdown {
    position: relative;
    display: inline-block;
}

.dropdown .dropbtn {
    cursor: pointer;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}
header nav .dropdown .dropbtn {
    color: var(--text-color);
    padding: 0;
    font-size: 1rem;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}
header nav .dropdown .dropbtn:hover {
    color: var(--primary-color);
}
.header-actions .dropdown .dropbtn {
    /* Bu, Giriş Yap butonunun kendi stilini korumasını sağlar */
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid var(--primary-color);
}


.dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #ffffff;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.15);
    z-index: 100;
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid #eee;
}
header nav .dropdown .dropdown-content {
    left: 0;
    right: auto;
}
.dropdown-content a {
    color: #333;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 14px;
}
.dropdown-content a:hover {
    background-color: #f1f1f1;
}
.dropdown.active .dropdown-content {
    display: block;
}
/* Menü Butonu (Hamburger) */
.hamburger-btn {
    display: none; /* MASAÜSTÜNDE GİZLİ */
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}
.hamburger-btn i {
    font-size: 1.5rem;
    color: var(--dark-color);
}

/* Mobil Navigasyon - MASAÜSTÜNDE TAMAMEN GİZLİ */
.mobile-nav-overlay {
    display: none;
}

/* DAR EKRANLAR İÇİN MEDIA QUERY (Tablet ve Altı) */
@media (max-width: 992px) {
    /* Masaüstü navigasyonu ve giriş yap butonunu gizle */
    header nav,
    .header-actions {
        display: none;
    }

    /* Mobilde hamburger butonunu göster */
    .hamburger-btn {
        display: block;
    }

    /* Tam ekran mobil menüyü GÖRÜNÜR HALE GETİR */
    .mobile-nav-overlay {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        z-index: 1001;
        transition: left 0.4s ease;
        display: flex; /* SADECE MOBİLDE FLEX OLACAK */
        flex-direction: column;
        padding: 60px 25px 25px 25px;
        box-sizing: border-box;
    }

    .mobile-nav-overlay.nav-open {
        left: 0;
    }

    .mobile-nav-overlay .close-btn {
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 2.5rem;
        background: none;
        border: none;
        color: var(--dark-color);
        cursor: pointer;
    }
    
    .mobile-nav-overlay ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
    }

    .mobile-nav-overlay ul li {
        margin-bottom: 22px;
    }

    .mobile-nav-overlay ul a {
        font-size: 1.4rem;
        font-weight: 600;
        text-decoration: none;
        color: var(--dark-color);
    }
    
    .mobile-nav-actions {
        margin-top: auto;
        padding-top: 20px;
        border-top: 1px solid var(--light-color);
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .mobile-nav-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* ===== İLETİŞİM SAYFASI STİLLERİ ===== */
#contact-section {
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.contact-info p {
    margin-bottom: 2rem;
    color: #555;
}

.contact-details li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-details i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
}

#form-status {
    margin-top: 15px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    display: none; /* Varsayılan olarak gizli */
}
#form-status.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
#form-status.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}
/* ===== KOÇLAR SAYFASI TAŞMA SORUNU İÇİN DÜZELTME ===== */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr; /* İki sütunlu yapıyı tek sütuna düşürür */
    }
}
/* ===== GİRİŞ YAP BUTONU HOVER EFEKTİ GÜNCELLEMESİ ===== */

/* .btn-secondary'nin üzerine gelindiğinde (hover) yazı rengini değiştir */
.btn-secondary:hover {
    color: #f0eaf3; /* Morun üzerinde iyi duracak açık, soluk bir gri/lavanta rengi */
}