/* ==========================================================================
   desktop.css - Nihai ve Temiz Versiyon
   ========================================================================== */

/* 1. TEMEL KURULUM VE DEĞİŞKENLER */
:root {
    --primary-color: #007BFF;
    --secondary-color: #28a745;
    --dark-color: #2c3e50;
    --road-color: #4a535e;
    --light-color: #fdfdfd;
    --text-color: #555;
    --panel-bg-color: #fff;
    --body-bg-color: #f0f2f5;
    --border-color: #ced4da;
    --border-radius: 16px;
    --font-main: 'Poppins', sans-serif;
}

/* Responsive Başlıklar */
.hero-title, .form-headline,
.hero-subtitle, .form-subtitle {
    display: block; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; visibility: visible; line-height: 1.4; transition: font-size 0.3s ease; text-align: center;
}
.hero-title, .form-headline { font-weight: 700; color: var(--dark-color); margin-bottom: 0.25em; }
.hero-subtitle, .form-subtitle { font-weight: 400; opacity: 0.85; color: #6c757d; margin-top: 0.25em; }
.hero-title { font-size: 2.8rem; }
.hero-subtitle { font-size: 1.18rem; margin-bottom: 70px; }
.form-headline { font-size: 32px; }
.form-subtitle { font-size: 16px; }
@media screen and (max-width: 480px) {
    .hero-title, .form-headline { font-size: 24px; }
    .hero-subtitle, .form-subtitle { font-size: 13px; }
}
@media screen and (min-width: 768px) {
    .hero-title, .form-headline { font-size: 32px; }
    .hero-subtitle, .form-subtitle { font-size: 16px; }
}

/* Panel */
.info-panel, #multiStepFormSection {
    width: 100%; max-width: 750px; margin: 0 auto; padding: 30px 20px; background: var(--panel-bg-color); border-radius: var(--border-radius); box-shadow: 0 10px 30px rgba(0,0,0,0.1); text-align: center; position: relative; z-index: 2;
}

/* --- DÜZELTME: ORİJİNAL SCROLLBAR GİZLEME VE SAYFA YAPISI --- */
html { height: 100%; box-sizing: border-box; scroll-behavior: smooth; scrollbar-width: none; -ms-overflow-style: none; }
html::-webkit-scrollbar { display: none; }
body { min-height: 100%; margin: 0; padding: 0; font-family: var(--font-main); color: var(--text-color); line-height: 1.7; position: relative; display: flex; flex-direction: column; overflow-x: hidden; }
main { flex-grow: 1; }
*, *::before, *::after { box-sizing: inherit; }

/* 2. GENEL LAYOUT VE ARKA PLAN */
#tech-background { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; pointer-events: none; }
.page-full-center, .form-section-center { min-height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; padding: 40px 20px; }


/* ==========================================================================
   2.1. HEADER (ÜST BİLGİ) STİLLERİ
   ========================================================================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
}
.header-container {
    max-width: 950px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-header .logo a {
    font-size: 28px;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    /* Altındaki span'lere etki etmemesi için genel kalınlığı burada sıfırlıyoruz. */
    font-weight: normal;
}

.site-header .logo a .mtsk {
    font-weight: 700; /* MTSK için kalınlık */
}

.site-header .logo a .akademi {
    font-weight: 500; /* Akademi için normal/ince kalınlık */
}
.site-header .main-navigation a {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    margin-left: 30px;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.site-header .main-navigation a:hover {
    color: #dddddd;
}
.site-header .main-navigation .btn-header-partner {
    background-color: rgba(255, 255, 255, 0.2);
    border: 1px solid #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.site-header .main-navigation .btn-header-partner:hover {
    background-color: #ffffff;
    color: var(--dark-color);
    text-shadow: none;
}


/* 3. BİLEŞENLER (COMPONENTS) */
.info-panel { background: var(--panel-bg-color); border-radius: var(--border-radius); padding: 3px 50px 40px; box-shadow: 0 10px 30px rgba(44, 62, 80, 0.1); max-width: 750px; width: 100%; text-align: center; margin: 0 auto; position: relative; z-index: 2; }
.hero-title, .hero-subtitle, .form-headline, .form-subtitle { white-space: nowrap; visibility: visible; text-align: center; }
.how-it-works { display: flex; justify-content: center; gap: 32px; margin-bottom: 30px; flex-wrap: wrap; }
.step { width: 190px; display: flex; flex-direction: column; align-items: center; text-align: center; transition: transform 0.3s ease, opacity 0.5s ease; opacity: 0; transform: translateY(20px); }
.step.is-active { opacity: 1; transform: translateY(0); }
.icon-wrapper .icon { font-size: 3rem; color: var(--primary-color); transition: color 0.3s; line-height: 1; margin-bottom: 8px; }
.step:hover .icon { color: #0056b3; }
.step-content h3 { margin: 0 0 8px 0; font-size: 1.1rem; font-weight: 600; color: var(--dark-color); }
.step-content p { margin: 0; color: #777; font-size: 0.98rem; line-height: 1.5; }
.cta-button { display: inline-flex; align-items: center; justify-content: center; gap: 15px; background: linear-gradient(45deg, var(--secondary-color), #218838); color: white; padding: 18px 40px; font-size: 1.3rem; font-weight: 600; text-decoration: none; border-radius: 50px; box-shadow: 0 8px 15px rgba(40, 167, 69, 0.25); border: none; cursor: pointer; transition: all 0.3s ease; margin-top: 44px; opacity: 0; transform: scale(0.9); }
.cta-button.is-active { opacity: 1; transform: scale(1); }
.cta-button:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 25px rgba(40, 167, 69, 0.35); }


/* ==========================================================================
   3.1. STATİK SAYFA PANELİ STİLLERİ
   ========================================================================== */
.static-page-container {
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 120px 20px 40px 20px;
}
.static-content-panel {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 40px 50px;
    max-width: 900px;
    width: 100%;
    text-align: left;
    border-top: 5px solid var(--secondary-color);
}
.static-content-panel h1 { font-size: 2.5rem; font-weight: 700; color: #2c3e50; margin-top: 0; margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.static-content-panel h2, .static-content-panel h3 { font-weight: 700; color: #34495e; margin-top: 30px; margin-bottom: 15px; }
.static-content-panel p, .static-content-panel li { font-size: 1.1rem; line-height: 1.8; color: #555; margin-bottom: 1.2em; }
.static-content-panel ul { list-style-type: '✓ '; padding-left: 20px; }

@media (max-width: 768px) {
    .static-page-container { padding-top: 40px; }
    .static-content-panel { padding: 30px 25px; }
    .static-content-panel h1 { font-size: 2rem; }
    .static-content-panel p, .static-content-panel li { font-size: 1rem; }
}


/* 4. FORM STİLLERİ (Tüm düzeltmeler dahil) */
#multiStepFormSection { background: none; border-radius: 0; box-shadow: none; padding: 0; }
.progress-bar { display: flex; justify-content: center; align-items: center; position: relative; margin-bottom: 25px; }
.progress-step { width: 40px; height: 40px; background: #f0f2f5; color: #bbb; border: 2px solid #e5e8ee; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 1.1rem; position: relative; z-index: 1; transition: all 0.3s ease; flex-shrink: 0; }
.progress-step.active { background: var(--primary-color); color: #fff; border-color: var(--primary-color); }
.progress-step.completed { background: #fff; color: var(--primary-color); border-color: var(--primary-color); }
.progress-connector { flex: 1; height: 4px; background: #e5e8ee; margin: 0 10px; border-radius: 2px; position: relative; transition: background 0.3s; }
.progress-connector.completed { background: var(--primary-color); }
.step-title { text-align: center; font-size: 1.25rem; font-weight: 700; color: var(--primary-color); margin: 10px 0 25px 0; }
.form-steps-wrapper { overflow-y: auto; -webkit-overflow-scrolling: touch; }
.form-step { display: none; }
.form-step.active { display: block; animation: fadeInStep .2s ease-in-out; }
.form-step-centered { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; min-height: 350px; }
.form-group { text-align: left; margin-bottom: 16px; }
.form-group label { font-weight: 500; margin-bottom: 6px; color: var(--text-color); }
.form-group .form-control { padding: 9px 12px; border: 1px solid var(--border-color); border-radius: 8px; font-size: 1rem; background: #f7fafd; font-family: var(--font-main); transition: border-color .19s ease; width: 100%; }
.form-group .form-control:focus { border-color: var(--primary-color); outline: none; box-shadow: none; }
.form-group.has-error .form-control { border-color: #e74c3c; background: #fff7f7; }
.form-group .help-block { margin-top: 4px; color: #e74c3c; font-size: 0.84em; }
.form-nav-buttons { display: flex; justify-content: flex-end; gap: 8px; margin-top: 20px; }
.nav-btn { padding: 10px 26px; border: none; border-radius: 20px; color: #fff; font-size: 1.09rem; font-weight: 600; cursor: pointer; transition: all .18s; }
.nav-btn:hover { transform: translateY(-2px); }
.nav-btn.prev-btn { background: #a7b4bf; margin-right: auto; }
.nav-btn.next-btn { background: var(--primary-color); }
.nav-btn.submit-btn { background: var(--secondary-color); }
.nav-btn.full-width { width: 100%; }


/* 5. FOOTER */
footer { padding: 40px 0 20px 0; flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.footer-grid { width: 60%; max-width: 800px; display: flex; justify-content: center; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.footer-bottom { width: 60%; max-width: 800px; text-align: center; padding-top: 20px; font-size: 0.9rem; color: rgba(255, 255, 255, 0.5); border-top: 1px solid rgba(255, 255, 255, 0.15); }
.footer-column { min-width: 140px; max-width: 240px; text-align: left; }
.footer-column h3 { color: #fff; font-size: 1.12rem; font-weight: 600; margin-bottom: 12px; }
.footer-column ul { list-style: none; margin: 0; padding: 0; }
.footer-column ul li a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 0.2s; }
.footer-column ul li a:hover { color: #fff; }
.footer-social { display: flex; gap: 18px; margin-top: 5px; justify-content: flex-start; }
.footer-social a { color: rgba(255, 255, 255, 0.7); font-size: 1.45rem; transition: color 0.2s, transform 0.2s; }
.footer-social a:hover { color: #fff; transform: scale(1.1); }

/* 6. RESPONSIVE AYARLAR */
@media (max-width: 992px) {
    .footer-grid, .footer-bottom { width: 90%; max-width: none; }
}
@media (max-width: 768px) {
    .info-panel { padding: 30px 20px; }
    .footer-grid { flex-direction: column; align-items: center; gap: 30px; }
    .footer-column { width: 100%; max-width: 250px; text-align: left; }
    .footer-social { justify-content: flex-start; }
    .mtsk-logo { position: static; transform: none; margin-bottom: 20px; }
}
@media (max-width: 576px) {
    .how-it-works { gap: 20px; }
    .step { width: 100%; max-width: 250px; }
}

/* 7. ÖZEL DÜZELTMELER (LOGO) */
.mtsk-logo { position: absolute; top: 40px; right: 50px; font-family: var(--font-main); font-weight: 700; font-size: 2.2rem; color: var(--primary-color); letter-spacing: 2px; padding: 0; }

/* ==========================================================================
   8. MODAL PENCERE STİLLERİ
   ========================================================================== */
.modal { display: none; position: fixed; z-index: 99999; left: 0; top: 0; width: 100%; height: 100%; overflow: auto; background-color: rgba(44, 62, 80, 0.6); justify-content: center; align-items: center; animation: fadeIn 0.3s ease-out; }
.modal-content { background-color: #ffffff; margin: auto; padding: 25px 30px; border: none; border-radius: 16px; box-shadow: 0 15px 35px rgba(44, 62, 80, 0.2); width: 90%; max-width: 420px; position: relative; z-index: 100000; animation: slideDown 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards; }
body.modal-open { overflow: hidden !important; }
.modal-header { padding: 0 0 15px 0; border-bottom: 1px solid #e5e5e5; text-align: center; position: relative; }
.modal-title { margin: 0; font-size: 1.5rem; font-weight: 600; color: var(--dark-color); }
.modal .close-button.close { position: absolute; top: -15px; right: -10px; color: #fff; background-color: #a7b4bf; border-radius: 50%; width: 30px; height: 30px; font-size: 24px; font-weight: bold; line-height: 28px; text-align: center; cursor: pointer; transition: all 0.2s ease; }
.modal .close-button.close:hover { background-color: var(--dark-color); transform: scale(1.1); }
.modal-body { padding: 20px 5px; text-align: center; }
.modal-message { font-size: 1.05rem; line-height: 1.6; color: var(--text-color); margin: 0; }
.modal-footer { padding: 15px 0 0 0; border-top: 1px solid #e5e5e5; text-align: center; }
.modal-footer .btn { padding: 10px 30px; border-radius: 25px; font-weight: 600; font-size: 1rem; cursor: pointer; border: none; transition: all 0.2s ease; }
.modal-footer .btn-primary { background-color: var(--primary-color); color: white; }
.modal-footer .btn-primary:hover { background-color: #0069d9; transform: translateY(-2px); }
#verificationCodeInput { text-align: center; font-size: 1.8rem; font-weight: 600; letter-spacing: 1rem; padding: 10px 15px; max-width: 220px; margin: 20px auto 10px auto; border: none; border-bottom: 3px solid #e0e0e0; background-color: transparent; transition: border-color 0.3s ease; caret-color: var(--primary-color); text-indent: 1rem; display: block; }
#verificationCodeInput::placeholder { font-size: 1rem; letter-spacing: normal; text-indent: 0; color: #aaa; }
#verificationCodeInput:focus { outline: none; border-bottom-color: var(--primary-color); }
#verificationModal .d-flex.justify-content-between { display: flex; align-items: center; justify-content: center !important; min-height: 24px; font-size: 0.9rem; gap: 5px; width: 100%; }
#resendSmsTimer { color: #888; }
#resendSmsButton { background: none; border: none; color: var(--primary-color); font-weight: 600; cursor: pointer; text-decoration: underline; padding: 0; font-size: 0.9rem; }
#resendSmsButton:hover { text-decoration: none; }

/* ==========================================================================
   9. ANİMASYONLAR
   ========================================================================== */
@keyframes fadeInStep { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
@keyframes stroke-animation { 100% { stroke-dashoffset: 0; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideDown { from { transform: translateY(-30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ==========================================================================
   10. TEŞEKKÜRLER İKONU (SVG) STİLLERİ
   ========================================================================== */
.success-icon { width: 80px; height: 80px; display: block; margin: 20px auto; }
.success-icon__circle { stroke-dasharray: 166; stroke-dashoffset: 166; stroke-width: 2; stroke-miterlimit: 10; stroke: var(--secondary-color); fill: none; animation: stroke-animation 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards; }
.success-icon__check { transform-origin: 50% 50%; stroke-dasharray: 48; stroke-dashoffset: 48; stroke-width: 3; stroke: var(--secondary-color); fill: none; animation: stroke-animation 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards; }

/* ==========================================================================
   11. HARİTA STİLLERİ
   ========================================================================== */
.site-harita h1 { font-size: 24px; margin-bottom: 10px; }
.site-harita p { font-size: 14px; line-height: 1.5; margin-bottom: 15px; }
#findNearMeBtn { position: absolute; top: 15px; left: 50%; transform: translateX(-50%); z-index: 10; background-color: #007bff; color: white; border: none; padding: 12px 20px; font-size: 16px; border-radius: 8px; cursor: pointer; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
#findNearMeBtn:hover { background-color: #0056b3; }
#map { height: calc(70vh - 60px); width: 100%; border-radius: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.1); margin-top: 20px; }
.info-window-content { font-size: 14px; }
.info-window-content h6 { font-size: 18px; margin-bottom: 5px; }

/* ==========================================================================
   12. PARTNER FORMU GÖRÜNÜM DÜZELTMESİ
   ========================================================================== */
.info-panel #partner-form { background-color: transparent; padding: 0; box-shadow: none; border: none; }
.partners-section { padding: 60px 20px; background-color: #f9f9f9; text-align: center; }
.partners-section .section-title { font-size: 2.5rem; font-weight: 700; margin-bottom: 10px; color: #333; }
.partners-section .section-subtitle { font-size: 1.1rem; color: #666; margin-bottom: 40px; max-width: 600px; margin-left: auto; margin-right: auto; }
.partners-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; max-width: 1200px; margin: 0 auto; }
.partner-card { background-color: #ffffff; padding: 20px 25px; border-radius: 8px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); transition: transform 0.3s ease, box-shadow 0.3s ease; min-width: 250px; }
.partner-card:hover { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); }
.partner-card .partner-name { font-size: 1.2rem; font-weight: 600; color: #444; }

/* ==========================================================================
   13. VİTRİN SAYFASI (KURS LİSTESİ) - NİHAİ STİLLER
   ========================================================================== */
.course-list-page { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0; color: #333; }
.list-header { text-align: center; margin-bottom: 40px; }
.list-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
    /* --- YENİ EKLENEN ÖZELLİKLER --- */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}







/* ==========================================================================
   14. SÜRÜCÜ KURSU PROFİL KARTI STİLLERİ (GÜNCELLENMİŞ)
   ========================================================================== */

.kurs-profil-karti {
    background-color: var(--panel-bg-color);
    border-radius: var(--border-radius);
    box-shadow: 0 12px 35px rgba(44, 62, 80, 0.12);
    /* Logo olmadığı için padding'i artırıyoruz */
    padding: 40px; 
    max-width: 700px;
    width: 100%;
    text-align: center;
    /* border-top kaldırıldı, sade bir görünüm için */
    margin: 0 auto;
    transition: all 0.3s ease;
}

/* Logo olmadığı için .no-logo durumunda üstten boşluk vermeye gerek yok */
.kurs-profil-karti.no-logo {
    margin-top: 0;
}

/* Logo ile ilgili tüm stiller kaldırıldı */

.profil-header .profil-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 0;
    /* İSTEK: Tek satıra sığdırma ve taşarsa ... gösterme */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.profil-header .profil-kategori {
    font-size: 1rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin: 5px 0 15px 0; /* Boşluk ayarlandı */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profil-header .profil-adres {
    /* İSTEK: Adres yazısını küçültme */
    font-size: 0.80rem; 
    color: var(--text-color);
    margin: 0;
    opacity: 0.9;
}

.profil-header .profil-adres i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* ===== ALTERNATİF TASARIM: OUTLINE BUTONLAR ===== */

.profil-cta-container {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.profil-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 25px; /* İç boşluk ayarlandı */
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    /* Arka plan şeffaf, çerçeve ekliyoruz */
    background-color: transparent;
    border: 2px solid; /* Çerçeve kalınlığı */
    cursor: pointer;
    transition: all 0.2s ease-in-out; /* Geçiş yumuşatıldı */
    gap: 10px;
    min-width: 180px;
}

.profil-cta-btn.konum {
    border-color: #5E81AC;
    color: #5E81AC;
}
.profil-cta-btn.konum:hover {
    background-color: #5E81AC;
    color: #fff; /* Hover durumunda renkler tersine döner */
    transform: translateY(-2px);
}

.profil-cta-btn.telefon {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}
.profil-cta-btn.telefon:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Detaylar bölümü aynı kalabilir... */
.profil-detaylar {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    text-align: left;
}
.profil-detaylar .detaylar-baslik {
    font-size: 1.3rem; font-weight: 600; color: var(--dark-color); margin-bottom: 20px; text-align: center;
}
.profil-detaylar ul { list-style: none; padding: 0; margin: 0; }
.profil-detaylar li { display: flex; align-items: flex-start; gap: 15px; font-size: 1rem; color: var(--text-color); margin-bottom: 15px !important; }
.profil-detaylar .icon-detay { font-size: 1.2rem; color: var(--primary-color); margin-top: 4px; width: 20px; text-align: center; }
.ehliyet-etiketleri { margin-top: 8px; display: flex; flex-wrap: wrap; gap: 8px; }
.ehliyet-etiketleri .etiket { background-color: #e9ecef; color: #495057; padding: 5px 12px; border-radius: 20px; font-size: 0.9rem; font-weight: 500; }

@media (max-width: 768px) {
    .kurs-profil-karti { padding: 30px 20px; }
    .profil-header .profil-title { font-size: 1.8rem; }
    .profil-cta-btn { width: 100%; } /* Mobilde butonlar tam genişlik kaplasın */
}






/* ==========================================================================
   KURS DETAY SAYFASI NAVİGASYON BUTONLARI
   ========================================================================== */

/* Ana kartı göreceli konumlandırıyoruz ki, butonları ona göre hizalayabilelim */
.kurs-profil-karti {
    position: relative;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #555;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s ease-in-out;
    z-index: 10;
}

.nav-button:hover {
    background-color: #fff;
    color: var(--primary-color); /* CSS değişkenlerinizden rengi alıyoruz */
    transform: translateY(-50%) scale(1.1);
}

.prev-button {
    left: -22px; /* Butonun yarısı dışarıda kalacak şekilde */
}

.next-button {
    right: -22px; /* Butonun yarısı dışarıda kalacak şekilde */
}

/* Mobil cihazlarda butonları kartın içine alalım, taşmasın */
@media (max-width: 768px) {
    .prev-button {
        left: 10px;
    }
    .next-button {
        right: 10px;
    }
}








/* ==========================================================================
   KURS KARTLARI İÇİN EK STİLLER
   ========================================================================== */

/* --- 1. Normal Kurs Kartı Butonu (Orijinal Haline Geri Döndürüldü) --- */
.card-actions {
    padding: 0;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.btn-card.full-width {
    width: 100%;
    background-color: #f8f9fa;
    color: #495057;
    font-weight: 600;
    padding: 12px 15px;
    border-radius: 0;
    border-bottom-left-radius: var(--border-radius);
    border-bottom-right-radius: var(--border-radius);
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none; /* Orijinal halinde olduğu gibi çerçevesiz */
}

.btn-card.full-width:hover {
    background-color: #e9ecef;
    color: var(--primary-color);
    transform: none;
}


/* --- 2. Sponsorlu Kart ve Reklam Alanı Stilleri --- */

/* Keyframes Animasyonları */
@keyframes sponsored-glow {
    0% { box-shadow: 0 4px 15px rgba(212, 162, 0, 0.3); }
    50% { box-shadow: 0 6px 25px rgba(212, 162, 0, 0.5); }
    100% { box-shadow: 0 4px 15px rgba(212, 162, 0, 0.3); }
}

@keyframes ad-space-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Öne Çıkan Kurs Kartı */
.course-card-sponsored {
    border: 1px solid #D4A200; 
    position: relative;
    background: linear-gradient(135deg, #fffbeb 0%, #fff8e1 100%); 
    animation: sponsored-glow 3s infinite ease-in-out;
    transition: transform 0.3s ease;
}
.course-card-sponsored:hover {
    transform: translateY(-5px);
}

.sponsored-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #FFC107, #FF9800);
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* "Bu Alan Sizin Olabilir!" Reklam Kartı (Çerçeve Güncellendi) */
.course-card-ad-space {
    border: 2px dashed #007BFF; /* ÇERÇEVE HER ZAMAN MAVİ OLACAK ŞEKİLDE DÜZELTİLDİ */
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}
.course-card-ad-space:hover {
    border-color: #0056b3; /* Üzerine gelince çerçeve rengi koyulaşır */
    background-color: #f8fafc;
}

.ad-space-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ad-space-icon {
    font-size: 2.5em;
    color: #007BFF;
    animation: ad-space-pulse 2.5s infinite ease-in-out;
}

.ad-space-content h3 {
    margin: 0;
    font-size: 1.3em;
    color: #2c3e50;
    font-weight: 700;
}

.ad-space-content p {
    margin: 0 0 10px 0;
    max-width: 250px;
    font-size: 0.95em;
    line-height: 1.5;
    color: #546E7A; 
}

.ad-space-content .btn-card {
    background: transparent;
    color: #007BFF;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 25px;
    transition: all 0.2s ease-in-out;
    border: 2px solid #007BFF;
    box-shadow: none;
}
.ad-space-content .btn-card:hover {
    background: #007BFF;
    color: white;
    transform: translateY(-2px);
}








/* ==========================================================================
   GOOGLE PUANI GÖSTERİM ALANI STİLLERİ
   ========================================================================== */

.google-rating-container {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 1px solid #e9ecef;
    text-align: left;
}

.google-rating-container .rating-logo img {
    width: 40px;
    height: 40px;
}

.google-rating-container .rating-info {
    flex-grow: 1;
}

.google-rating-container .rating-info strong {
    font-size: 1.1em;
    color: #2c3e50;
}

.google-rating-container .rating-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #FFC107; /* Altın sarısı yıldız rengi */
    font-size: 1.2em;
    margin-top: 2px;
}

.google-rating-container .rating-stars span {
    color: #555;
    font-weight: bold;
    font-size: 0.9em;
}

.google-rating-container .rating-count {
    font-size: 0.9em;
    color: #6c757d;
    margin-top: 2px;
}





/* ==========================================================================
   FORM KVKK VE HİZMET SÖZLEŞME STİLLERİ
   ========================================================================== */
.consent-step-content {
    text-align: left;
    padding: 10px;
}
.consent-step-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}
.consent-checkbox-wrapper.main-consent {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    /* margin-top: 15px;  <-- BU SATIRI SİLİN, çünkü artık 'gap' kullanıyoruz */
    display: flex;
    gap: 10px;
    align-items: flex-start;
}
.consent-checkbox-wrapper.main-consent label {
    font-size: 0.9rem;
    line-height: 1.6;
    cursor: pointer;
    color: #444;
}
.consent-checkbox-wrapper.main-consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    /* DEĞİŞİKLİK: Manuel ayarı (margin-top) daha hassas bir değerle geri getiriyoruz */
    margin-top: 3px; 
}
.next-btn:disabled {
    background-color: #a0c9ff !important;
    cursor: not-allowed;
    box-shadow: none;
}

.onay-alani {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    margin-top: 2rem;
    text-align: left; /* <-- YENİ EKLENEN KURAL BU */
}


/* Her iki sayfa esinav ve kurs detay için ortak google api fotoğraf stili */
.profil-image-header {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 1rem;
    border-radius: 12px;
}
.profil-image-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}




.course-card-ad-space {
    border: 2px dashed #007bff;
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.ad-space-content {
    padding: 20px;
}

.ad-space-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 10px;
}

.course-card-ad-space h3 {
    color: #333;
}



.course-card-sponsored .ad-space-content h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.course-card-sponsored .sponsored-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ffc107;
    color: #000;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}







/* --- 1. Sponsorlu Kart ve Reklam Alanı Stilleri --- */
.course-card-sponsored {
    border: 1px solid #D4A200;
    position: relative;
    background: linear-gradient(135deg, #fffbeb 0%, #fff8e1 100%);
    animation: sponsored-glow 3s infinite ease-in-out;
    transition: transform 0.3s ease;
}

.course-card-sponsored:hover {
    transform: translateY(-5px);
}

.sponsored-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(45deg, #FFC107, #FF9800);
    color: white;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 0.8em;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.course-card-ad-space {
    border: 2px dashed #007BFF;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.course-card-ad-space:hover {
    border-color: #0056b3;
    background-color: #f8fafc;
}

.ad-space-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.ad-space-icon {
    font-size: 2.5em;
    color: #007BFF;
    animation: ad-space-pulse 2.5s infinite ease-in-out;
}

.ad-space-content h3 {
    margin: 0;
    font-size: 1.3em;
    color: #2c3e50;
    font-weight: 700;
}

.ad-space-content p {
    margin: 0 0 10px 0;
    max-width: 250px;
    font-size: 0.95em;
    line-height: 1.5;
    color: #546E7A;
}

.ad-space-content .btn-card {
    background: transparent;
    color: #007BFF;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 25px;
    transition: all 0.2s ease-in-out;
    border: 2px solid #007BFF;
    box-shadow: none;
}

.ad-space-content .btn-card:hover {
    background: #007BFF;
    color: white;
    transform: translateY(-2px);
}




/* Gerekirse yazıların hizalamasını ayarlayabilirsiniz */
.course-card-sponsored .card-content .course-name,
.course-card-sponsored .card-content .course-address {
    text-align: left; /* Metinlerin sola hizalı kalmasını sağlar */
}




.list-header .subtitle { font-size: 1.1rem; color: var(--text-color); margin-bottom: 30px; }
.filter-bar { display: flex; justify-content: space-between; align-items: center; background-color: #f8f9fa; padding: 15px 20px; border-radius: 12px; border: 1px solid #e9ecef; }
.filter-item { display: flex; align-items: center; gap: 10px; }
.filter-item label { font-weight: 600; }
.filter-item .form-control { padding: 8px 12px; border: 1px solid var(--border-color); border-radius: 8px; background-color: #fff; }
.course-count { font-size: 1rem; color: var(--text-color); }
.cta-banner { background-color: #eaf5ff; border-radius: var(--border-radius); padding: 30px 40px; text-align: center; margin-bottom: 40px; border: 1px solid #cce4ff; }
.cta-banner h2 { font-size: 1.8rem; font-weight: 700; color: var(--dark-color); margin-top: 0; margin-bottom: 10px; }
.cta-banner p { font-size: 1.1rem; color: #555; margin-bottom: 25px; }
.cta-button-banner { background-color: var(--secondary-color); color: #fff; padding: 12px 30px; font-size: 1.1rem; font-weight: 600; text-decoration: none; border-radius: 50px; box-shadow: 0 4px 10px rgba(40, 167, 69, 0.2); border: none; cursor: pointer; transition: all 0.3s ease; }
.cta-button-banner:hover { background-color: #218838; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(40, 167, 69, 0.3); }
.course-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; }
.course-card { background-color: var(--panel-bg-color); border-radius: var(--border-radius); box-shadow: 0 4px 15px rgba(0,0,0,0.07); border: 1px solid #e9ecef; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.course-card:hover { transform: translateY(-5px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.card-content {
    padding: 12px 20px 15px 20px; /* Üst padding değeri düşürüldü */
    flex-grow: 1;
}
.course-name, .course-address { text-transform: capitalize; }
.course-name { font-size: 1.15rem; font-weight: 700; color: var(--dark-color); margin: 0 0 8px 0; min-height: 3.2em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; text-overflow: ellipsis; }
.course-address { font-size: 0.9rem; color: #6c757d; margin: 0; }
.card-actions { padding: 0; border-top: 1px solid #f0f0f0; }
.btn-card.full-width { width: 100%; background-color: #f8f9fa; color: #495057; font-weight: 600; padding: 12px 15px; border-radius: 0; border-bottom-left-radius: var(--border-radius); border-bottom-right-radius: var(--border-radius); transition: all 0.2s ease-in-out; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-card.full-width:hover { background-color: #e9ecef; color: var(--primary-color); }
/* Filtre kaldırıldığı için, kurs sayısını gösteren yazıyı düzenler */
.course-count-container {
    margin-top: 15px;
    text-align: right;
    font-size: 0.9em;
    color: #666;
}

@media (max-width: 600px) {
 .site-harita h1 { font-size: 20px; }
 #findNearMeBtn { padding: 10px 16px; font-size: 14px; }
}



.payment-logos {
    text-align: center; /* Görseli yatayda ortalar */
    margin-top: 20px; /* Footer'ın alt metni ile görsel arasında boşluk bırakır */
    padding-bottom: 20px; /* En alttan boşluk bırakır */
}

.payment-logo-image {
    max-width: 100%; /* Görselin kapsayıcısını aşmamasını sağlar */
    height: auto; /* Oranını korur */
    display: block; /* Margin auto ile ortalamak için blok eleman yapar */
    margin-left: auto;
    margin-right: auto;
    max-height: 50px; /* Görselin çok büyük olmasını engeller */
}

/* Mobil cihazlar için ek ayarlamalar (isteğe bağlı) */
@media (max-width: 768px) {
    .payment-logos {
        margin-top: 15px;
        padding-bottom: 15px;
    }
    .payment-logo-image {
        max-height: 40px; /* Mobil için daha küçük görsel */
    }
}