/* =============================================
   SPEAKSLEAD - FULL RESPONSIVE CSS
   Sıfırdan yazılmış profesyonel mobil uyum
   Güncelleme: Aralık 2025
   ============================================= */

/* ====================
   1. TEMEL MOBİL AYARLAR & RESET
   ==================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* Touch-friendly minimum boyutlar */
button,
.btn,
a.btn {
    min-height: 28px;
}

/* ====================
   2. MOBİL MENÜ BİLEŞENLERİ
   ==================== */

/* Hamburger Toggle Butonu */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid var(--brand-primary, #ce1b1d);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    color: var(--brand-primary, #ce1b1d);
    font-size: 1.4rem;
    cursor: pointer;
    min-width: 48px;
    min-height: 48px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
    background: var(--brand-primary, #ce1b1d);
    color: #fff;
    outline: none;
}

/* Mobil Menü Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobil Menü Paneli - Sağdan Sola Açılır */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 9999;
    box-shadow: -4px 0 25px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

/* Mobil Menü Header */
.mobile-nav-header {
    background: linear-gradient(135deg, var(--brand-primary, #ce1b1d) 0%, #7c0f12 100%);
    color: #fff;
    padding: 1.25rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.mobile-nav-header img {
    height: 40px;
    width: auto;
}

.mobile-nav-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.mobile-nav-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Mobil Menü Linkleri */
.mobile-nav-links {
    padding: 0.75rem 0;
    flex: 1;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    padding: 1rem 1.25rem;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-nav-links a i {
    margin-right: 12px;
    width: 24px;
    text-align: center;
    color: var(--brand-primary, #ce1b1d);
    font-size: 1.1rem;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: rgba(206, 27, 29, 0.08);
    color: var(--brand-primary, #ce1b1d);
    padding-left: 1.5rem;
}

/* Mobil Menü CTA Butonları */
.mobile-nav-cta {
    padding: 1.25rem;
    border-top: 2px solid #f0f0f0;
    flex-shrink: 0;
}

.mobile-nav-cta .btn {
    display: block;
    width: 100%;
    margin-bottom: 0.75rem;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    border-radius: 12px;
    text-align: center;
}

.mobile-nav-cta .btn:last-child {
    margin-bottom: 0;
}

/* Body scroll lock */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ====================
   3. LARGE TABLET (max-width: 1199px)
   ==================== */

@media (max-width: 1199px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    main section {
        padding: 4rem 0;
    }
}


/* ====================
   4. TABLET (max-width: 991px) - Burger Menü Aktif
   ==================== */

@media (max-width: 991px) {
    /* Hamburger menü görünür */
    .mobile-menu-toggle {
        display: flex !important;
        order: 2;
    }
    
    /* Desktop navigasyon gizle */
    .nav.d-none.d-lg-flex,
    nav.nav.d-none.d-lg-flex {
        display: none !important;
    }
    
    /* Hesap CTA butonları gizle */
    .account-cta.d-none.d-md-flex {
        display: none !important;
    }
    
    /* Header */
    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    }
    
    .nav-wrap {
        padding: 0.5rem 0;
    }
    
    .nav-wrap .container {
        position: relative;
        padding: 0 1rem;
        justify-content: space-between;
    }
    
    /* Logo tablet boyutu - ortalanmış ve büyük */
    .brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .brand img {
        width: 90px;
        height: auto;
    }
    
    /* Topbar - kompakt */
    .topbar {
        padding: 0.25rem 0;
        min-height: 35px;
        font-size: 0.75rem;
    }
    
    .topbar .container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.3rem;
        justify-content: center;
    }
    
    .topbar .contact-inline {
        font-size: 0.7rem;
    }
    
    /* Hero */
    .hero .carousel-item {
        min-height: 55vh !important;
        background-position: center center;
    }
    
    .hero-content {
        padding: 2.5rem 1.5rem;
        max-width: 100%;
    }
    
    .hero-content h1 {
        font-size: clamp(1.6rem, 5vw, 2.5rem);
        line-height: 1.25;
        margin-bottom: 0.875rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .hero-content .eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.15em;
        margin-bottom: 0.5rem;
    }
    
    .hero-content .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
        border-radius: 10px;
    }
    
    /* Stats Section */
    .stats-section {
        padding: 3.5rem 0;
    }
    
    /* Section Headings */
    main section {
        padding: 3.5rem 0;
    }
    
    .section-heading {
        margin-bottom: 2rem;
    }
    
    .section-heading h2 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .section-heading p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .section-heading .eyebrow {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    /* Insights Section */
    .insights-section {
        padding: 3.5rem 0;
    }
    
    /* Teachers Section */
    .teachers-section {
        padding: 3.5rem 0;
    }
    
    .teacher-card {
        border-radius: 18px !important;
        margin-bottom: 1.5rem;
    }
    
    .teacher-head img {
        height: 200px !important;
        object-fit: cover;
    }
    
    .teacher-head .badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.9rem;
        bottom: 12px;
        left: 12px;
        border-radius: 16px;
    }
    
    .teacher-body {
        padding: 1.25rem !important;
    }
    
    .teacher-body h3 {
        font-size: 1.1rem;
        margin-bottom: 0.4rem;
    }
    
    .teacher-body p {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        color: #666;
    }
    
    .teacher-body ul {
        font-size: 0.8rem;
        padding-left: 1rem;
        margin-bottom: 1rem;
    }
    
    .teacher-body ul li {
        margin-bottom: 0.3rem;
    }
    
    .teacher-body .btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
        border-radius: 10px;
    }
    
    /* Legal Highlight */
    .legal-highlight {
        padding: 3.5rem 0;
    }
    
    /* Panel Card */
    .panel-card {
        padding: 2rem !important;
        border-radius: 22px !important;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 3.5rem 0;
    }
    
    .contact-form-card {
        padding: 2rem !important;
        border-radius: 20px !important;
    }
    
    /* Map */
    .map-container {
        height: 450px !important;
        border-radius: 20px !important;
    }
    
    /* Footer */
    .site-footer {
        padding: 3rem 0 1.5rem;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 80px 0 60px !important;
    }
    
    .page-hero h1 {
        font-size: 2rem !important;
    }
    
    .page-hero .lead {
        font-size: 1rem;
    }
}


/* ====================
   5. MOBILE LANDSCAPE (max-width: 767px)
   ==================== */

@media (max-width: 767px) {
    /* Nav - Logo ortalanmış ve büyük */
    .nav-wrap {
        padding: 0.4rem 0;
    }
    
    .nav-wrap .container {
        justify-content: space-between;
    }
    
    .brand {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .brand img {
        width: 80px;
    }
    
    /* Topbar - çok kompakt */
    .topbar {
        padding: 0.2rem 0;
        min-height: 30px;
        font-size: 0.65rem;
    }
    
    .topbar .container {
        padding: 0 0.75rem;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.25rem;
    }
    
    .contact-inline {
        font-size: 0.6rem;
        gap: 0.4rem;
        flex-wrap: wrap;
    }
    
    .contact-inline .separator {
        display: none;
    }
    
    .contact-inline a {
        white-space: nowrap;
    }
    
    .language-dropdown .btn {
        font-size: 0.65rem;
        padding: 0.15rem 0.4rem;
    }
    
    .language-dropdown .dropdown-menu {
        min-width: 100px;
        font-size: 0.8rem;
    }
    
    /* Hero */
    .hero .carousel-item {
        min-height: 50vh !important;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .hero-content .d-flex {
        flex-direction: column;
        gap: 0.75rem !important;
        align-items: center;
    }
    
    .hero-content .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.75rem 1rem;
    }
    
    /* Stats */
    .stats-section {
        padding: 2.5rem 0;
    }
    
    .stats-section .row {
        gap: 0;
    }
    
    .stat-card {
        padding: 1.25rem 1rem;
        margin-bottom: 0.75rem;
        border-radius: 16px;
    }
    
    .stat-value {
        font-size: 2rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
        letter-spacing: 0.05em;
    }
    
    /* Sections */
    main section {
        padding: 2.5rem 0;
    }
    
    .section-heading h2 {
        font-size: 1.5rem;
    }
    
    .section-heading p {
        font-size: 0.875rem;
    }
    
    /* Filter Shell */
    .filter-shell {
        padding: 1.25rem;
        border-radius: 18px;
        margin-bottom: 1.5rem;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    }
    
    .filter-shell .col-12 {
        margin-bottom: 0.75rem;
    }
    
    .filter-shell .form-label {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
        font-weight: 600;
    }
    
    .filter-shell .form-select,
    .filter-shell .form-control {
        font-size: 16px;
        padding: 0.625rem 0.875rem;
        border-radius: 10px;
    }
    
    /* Course Cards */
    .course-result-card {
        padding: 1.25rem !important;
        border-radius: 18px !important;
        margin-bottom: 1rem;
    }
    
    .course-result-card header h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .course-result-card header p {
        font-size: 0.8rem;
        color: #666;
    }
    
    .course-result-card .price {
        font-size: 1.5rem;
        margin: 0.75rem 0;
    }
    
    .course-result-card ul {
        font-size: 0.85rem;
        padding-left: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .course-result-card ul li {
        margin-bottom: 0.35rem;
    }
    
    .course-result-card .d-flex {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .course-result-card .btn {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
        border-radius: 10px;
    }
    
    /* Insights */
    .insights-section {
        padding: 2.5rem 0;
    }
    
    .insight-card {
        padding: 1.5rem !important;
        border-radius: 18px !important;
        margin-bottom: 1rem;
        height: auto !important;
    }
    
    .insight-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        color: var(--brand-dark, #21211f);
    }
    
    .insight-card p {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }
    
    .insight-card ul {
        font-size: 0.85rem;
        padding-left: 1.1rem;
        margin-bottom: 0;
    }
    
    .insight-card ul li {
        margin-bottom: 0.35rem;
    }
    
    /* Teachers */
    .teachers-section {
        padding: 2.5rem 0;
    }
    
    .teacher-card {
        border-radius: 16px !important;
    }
    
    .teacher-head img {
        height: 180px !important;
    }
    
    .teacher-body {
        padding: 1rem !important;
    }
    
    .teacher-body h3 {
        font-size: 1.05rem;
    }
    
    /* Legal */
    .legal-highlight {
        padding: 2.5rem 0;
    }
    
    .legal-highlight .legal-card {
        padding: 1.5rem !important;
        border-radius: 18px !important;
        margin-bottom: 1rem;
    }
    
    .legal-highlight .legal-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .legal-highlight .legal-card p {
        font-size: 0.85rem;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .legal-highlight .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    /* Panel Cards */
    .panel-card {
        padding: 1.5rem !important;
        border-radius: 18px !important;
        margin-bottom: 1rem;
    }
    
    .panel-card h2 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .panel-list {
        gap: 1rem !important;
    }
    
    .panel-list li {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.75rem !important;
        padding-bottom: 1rem !important;
    }
    
    .status {
        font-size: 0.65rem;
        padding: 0.25rem 0.65rem;
        align-self: flex-start;
        border-radius: 12px;
    }
    
    .dashboard-nav {
        padding: 1.25rem !important;
        border-radius: 18px !important;
        margin-bottom: 1.5rem;
    }
    
    .dashboard-nav h3 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .dashboard-menu {
        font-size: 0.85rem;
        gap: 0.5rem !important;
    }
    
    .dashboard-menu li {
        padding: 0.5rem 0;
    }
    
    .dashboard-menu .badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.5rem;
    }
    
    /* Contact Form */
    .contact-section {
        padding: 2.5rem 0;
    }
    
    .contact-form-card {
        padding: 1.5rem !important;
        border-radius: 18px !important;
    }
    
    .contact-form-card h2 {
        font-size: 1.35rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-form-card > p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-control-modern {
        padding: 0.875rem 1rem;
        font-size: 16px;
        border-radius: 12px;
    }
    
    .form-group label {
        font-size: 0.85rem;
    }
    
    .form-check-modern {
        font-size: 0.85rem;
    }
    
    .form-check-modern .form-check-input {
        width: 18px;
        height: 18px;
    }
    
    .btn-submit {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        border-radius: 12px;
    }
    
    /* Contact Info Cards */
    .contact-info h2 {
        font-size: 1.35rem;
    }
    
    .info-card {
        padding: 1.25rem !important;
        gap: 1rem !important;
        margin-bottom: 1rem;
        border-radius: 16px !important;
    }
    
    .info-icon {
        width: 55px !important;
        height: 55px !important;
        font-size: 22px !important;
        border-radius: 14px !important;
        flex-shrink: 0;
    }
    
    .info-content h5 {
        font-size: 0.9rem;
        margin-bottom: 0.25rem !important;
    }
    
    .info-link {
        font-size: 1rem !important;
    }
    
    .info-text {
        font-size: 0.85rem !important;
        line-height: 1.4;
    }
    
    /* Social Contact */
    .social-contact {
        margin-top: 2rem !important;
    }
    
    .social-contact .social-btn {
        width: 48px;
        height: 48px;
        font-size: 18px;
        border-radius: 12px;
    }
    
    /* Map */
    .map-container {
        height: 350px !important;
        border-radius: 18px !important;
        margin-top: 2rem;
    }
    
    .map-overlay {
        top: 12px;
        left: 12px;
        right: 12px;
    }
    
    .map-badge {
        padding: 0.875rem 1rem !important;
        font-size: 0.85rem !important;
        border-radius: 14px !important;
        gap: 0.75rem !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }
    
    .map-badge i {
        font-size: 22px !important;
    }
    
    .map-badge strong {
        font-size: 0.9rem;
    }
    
    .map-badge small {
        font-size: 0.75rem;
    }
    
    /* Footer */
    .site-footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-main .row {
        gap: 0;
    }
    
    .footer-main h5 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        margin-top: 1rem;
    }
    
    .footer-main .list-unstyled {
        margin-bottom: 1rem;
    }
    
    .footer-main .list-unstyled li {
        margin-bottom: 0.4rem;
    }
    
    .footer-main a {
        font-size: 0.85rem;
    }
    
 /*   .brand-foot img {
        height: 20px !important;
    }*/
    
    .brand-foot p {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .newsletter-wrapper {
        position: relative;
    }
    
    .newsletter input {
        padding: 0.6rem 3rem 0.6rem 0.875rem;
        font-size: 0.85rem;
        border-radius: 12px;
    }
    
    .newsletter-wrapper .abone-btn {
        height: 70%;
        padding: 0 0.6rem;
        font-size: 0.8rem;
        border-radius: 8px;
    }
    
    .footer-bottom {
        padding-top: 1rem;
        margin-top: 1.5rem;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
        margin-bottom: 0;
    }
    
    .footer-bottom .socials {
        justify-content: center;
    }
    
    .footer-bottom .socials a {
        font-size: 1.1rem;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 60px 0 40px !important;
    }
    
    .page-hero h1 {
        font-size: 1.6rem !important;
        line-height: 1.3;
    }
    
    .page-hero .eyebrow {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .page-hero .lead {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .page-hero p {
        font-size: 0.9rem;
    }
    
    /* About Cards */
    .about-card,
    .timeline-card,
    .support-card {
        padding: 1.5rem !important;
        border-radius: 18px !important;
        margin-bottom: 1rem;
    }
    
    .about-card h2,
    .timeline-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .about-card p,
    .timeline-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .about-card ul li,
    .support-card p {
        font-size: 0.875rem;
    }
    
    .about-card:hover,
    .timeline-card:hover,
    .support-card:hover {
        transform: translateY(-5px);
    }
    
    /* Support Cards */
    .support-card {
        text-align: center;
    }
    
    .support-card i {
        font-size: 2.5rem !important;
        margin-bottom: 1rem !important;
    }
    
    .support-card h3 {
        font-size: 1.1rem;
    }
    
    /* Team Cards */
    .team-card {
        padding: 1.25rem;
        border-radius: 18px !important;
        margin-bottom: 1rem;
    }
    
    .team-card img {
        border-radius: 14px !important;
        margin-bottom: 0.75rem;
    }
    
    /* Tables */
    .table-responsive {
        border-radius: 12px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        font-size: 0.85rem;
    }
    
    table th,
    table td {
        padding: 0.5rem !important;
        white-space: nowrap;
    }
}


/* ====================
   6. MOBILE PORTRAIT (max-width: 575px)
   ==================== */

@media (max-width: 575px) {
    /* Nav */
    .brand img {
       padding: 3px;
        width: 100px;
        height: auto;
    }
    
    .mobile-menu-toggle {
        padding: 0.4rem 0.6rem;
        min-width: 44px;
        min-height: 44px;
        font-size: 1.25rem;
    }
    
    .mobile-nav {
        width: 90%;
        max-width: 300px;
    }
    
    /* Topbar */
    .topbar {
        padding: 0.4rem 0;
    }
    
    .topbar .container {
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
    }
    
    .topbar .contact-inline {
        width: 100%;
        text-align: center;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .topbar .d-flex {
        justify-content: center !important;
        width: 100%;
    }
    
    .contact-inline a {
        font-size: 0.7rem;
    }
    
    /* Hero */
    .hero .carousel-item {
        min-height: 45vh !important;
    }
    
    .hero-content {
        padding: 1.5rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.3rem;
    }
    
    .hero-content p {
        font-size: 0.85rem;
    }
    
    .hero-content .eyebrow {
        font-size: 0.6rem;
    }
    
    .hero-content .btn {
        max-width: 100%;
        padding: 0.7rem 0.875rem;
        font-size: 0.85rem;
    }
    
    /* Stats */
    .stats-section {
        padding: 2rem 0;
    }
    
    .stats-section .row {
        margin: 0 -0.375rem;
    }
    
    .stats-section .col-6 {
        padding: 0 0.375rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-card {
        padding: 1rem 0.75rem;
        border-radius: 12px;
    }
    
    .stat-value {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
    }
    
    /* Sections */
    main section {
        padding: 2rem 0;
    }
    
    .section-heading h2 {
        font-size: 1.35rem;
    }
    
    /* Filter Shell */
    .filter-shell {
        padding: 1rem;
        border-radius: 14px;
    }
    
    .filter-shell .form-select,
    .filter-shell .form-control {
        font-size: 16px;
        padding: 0.5rem 0.75rem;
    }
    
    /* Course Cards */
    .course-results {
        margin-top: 0.5rem !important;
    }
    
    .course-result-card {
        padding: 1rem !important;
        border-radius: 14px !important;
    }
    
    .course-result-card header h3 {
        font-size: 1rem;
    }
    
    .course-result-card .price {
        font-size: 1.35rem;
    }
    
    /* Insights */
    .insights-section {
        padding: 2rem 0;
    }
    
    .insight-card {
        padding: 1.25rem !important;
        border-radius: 14px !important;
    }
    
    .insight-card h3 {
        font-size: 1rem;
    }
    
    .insight-card p {
        font-size: 0.825rem;
    }
    
    .insight-card ul {
        font-size: 0.8rem;
    }
    
    /* Teachers */
    .teachers-section {
        padding: 2rem 0;
    }
    
    .teacher-card {
        margin-bottom: 1rem;
        border-radius: 14px !important;
    }
    
    .teacher-head img {
        height: 160px !important;
    }
    
    .teacher-head .badge {
        font-size: 0.6rem;
        padding: 0.35rem 0.7rem;
        bottom: 10px;
        left: 10px;
    }
    
    .teacher-body h3 {
        font-size: 1rem;
    }
    
    .teacher-body p {
        font-size: 0.8rem;
    }
    
    .teacher-body ul {
        font-size: 0.75rem;
    }
    
    .teacher-body .btn {
        padding: 0.5rem 0.875rem;
        font-size: 0.8rem;
    }
    
    /* Legal */
    .legal-highlight {
        padding: 2rem 0;
    }
    
    .legal-highlight .legal-card {
        padding: 1.25rem !important;
        border-radius: 14px !important;
    }
    
    .legal-highlight .legal-card h3 {
        font-size: 1rem;
    }
    
    .legal-highlight .legal-card p {
        font-size: 0.8rem;
    }
    
    /* Panel Cards */
    .panel-card {
        padding: 1.25rem !important;
        border-radius: 14px !important;
    }
    
    .panel-card h2 {
        font-size: 1.15rem;
    }
    
    .dashboard-nav {
        padding: 1rem !important;
        border-radius: 14px !important;
    }
    
    /* Contact */
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-form-card {
        padding: 1.25rem !important;
        border-radius: 14px !important;
    }
    
    .contact-form-card h2 {
        font-size: 1.2rem;
    }
    
    .info-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem !important;
        border-radius: 14px !important;
    }
    
    .info-icon {
        margin: 0 auto 0.5rem;
    }
    
    .info-content {
        text-align: center;
    }
    
    .social-contact .social-btn {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
    
    /* Map */
    .map-container {
        height: 280px !important;
        border-radius: 14px !important;
    }
    
    .map-overlay {
        top: 10px;
        left: 10px;
        right: 10px;
    }
    
    .map-badge {
        padding: 0.75rem !important;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem !important;
    }
    
    .map-badge i {
        font-size: 20px !important;
    }
    
    /* Footer */
    .site-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-main .col-12.col-lg-4 {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-main .col-6 {
        margin-bottom: 1rem;
    }
    
    .brand-foot .contact-inline {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .newsletter-wrapper {
        max-width: 100%;
    }
    
    .footer-bottom p {
        font-size: 0.7rem;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 50px 0 35px !important;
    }
    
    .page-hero h1 {
        font-size: 1.4rem !important;
    }
    
    .page-hero .lead {
        font-size: 0.85rem;
    }
    
    /* About Cards */
    .about-card,
    .timeline-card,
    .support-card {
        padding: 1.25rem !important;
        border-radius: 14px !important;
    }
    
    .timeline-card h3 {
        font-size: 1.1rem;
    }
    
    .team-card {
        padding: 1rem;
        border-radius: 14px !important;
    }
    
    /* Modal & Dropdown */
    .modal-dialog {
        margin: 0.5rem;
    }
    
    .modal-content {
        border-radius: 16px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
    
    .dropdown-menu {
        width: calc(100vw - 2rem);
        max-width: 300px;
        border-radius: 12px !important;
    }
}

/* ====================
   7. PANEL SAYFALARI MOBİL SIDEBAR
   ==================== */

/* Panel sayfaları için özel responsive */
@media (max-width: 992px) {
    /* Panel Sidebar */
    .panel-page .sidebar,
    body:has(.sidebar) .sidebar {
        left: calc(-1 * var(--sidebar-width, 270px)) !important;
        transition: left 0.3s ease;
    }
    
    .panel-page .sidebar.open,
    body:has(.sidebar) .sidebar.open,
    .sidebar:not(.closed) {
        left: 0 !important;
    }
    
    /* Main Content */
    .panel-page .main-content,
    body:has(.sidebar) .main-content {
        margin-left: 0 !important;
        transition: margin-left 0.3s ease;
    }
    
    /* Footer */
    .panel-page footer,
    body:has(.sidebar) footer {
        margin-left: 0 !important;
        transition: margin-left 0.3s ease;
    }
}

/* ====================
   8. YARDIMCI SINIFLAR
   ==================== */

/* Mobilde gizle */
@media (max-width: 767px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Tablette gizle */
@media (max-width: 991px) {
    .hide-tablet {
        display: none !important;
    }
}

/* Sadece mobilde göster */
@media (min-width: 768px) {
    .show-mobile-only {
        display: none !important;
    }
}

/* Print stilleri */
@media print {
    .mobile-menu-toggle,
    .mobile-nav,
    .mobile-nav-overlay {
        display: none !important;
    }
}


/* ====================
   9. LEGAL CONTENT SAYFALAR
   ==================== */

.legal-content {
    padding: 4rem 0;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--brand-dark, #21211f);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--brand-primary, #ce1b1d);
}

.legal-content p,
.legal-content ul {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 767px) {
    .legal-content {
        padding: 2.5rem 0;
    }
    
    .legal-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .legal-content h2 {
        font-size: 1.25rem;
        margin-top: 1.5rem;
    }
    
    .legal-content p,
    .legal-content ul {
        font-size: 0.9rem;
        line-height: 1.7;
    }
}

@media (max-width: 575px) {
    .legal-content {
        padding: 2rem 0;
    }
    
    .legal-content h1 {
        font-size: 1.5rem;
    }
    
    .legal-content h2 {
        font-size: 1.1rem;
    }
}
