/* ===== NAVIGATION ===== */
.navbar {
    padding: 1.5rem 0;
    transition: all var(--transition-normal);
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(128, 0, 0, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    border-radius: 0 0 25px 25px;
}

/* Login Dropdown Styles */
.login-dropdown {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white !important;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.login-dropdown:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.login-dropdown:focus {
    color: white !important;
    box-shadow: 0 0 0 0.2rem rgba(128, 0, 0, 0.25);
}

.login-dropdown-menu {
    background: white;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 10px 0;
    margin-top: 10px;
    min-width: 220px;
    border: 2px solid rgba(128, 0, 0, 0.1);
}

.login-dropdown-menu .dropdown-item {
    padding: 12px 20px;
    color: #2d3748;
    font-weight: 500;
    transition: all var(--transition-fast);
    border-radius: 8px;
    margin: 2px 8px;
    display: flex;
    align-items: center;
}

.login-dropdown-menu .dropdown-item:hover {
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.1), rgba(128, 0, 0, 0.05));
    color: var(--primary-color);
    transform: translateX(5px);
}

.login-dropdown-menu .dropdown-item i {
    width: 20px;
    text-align: center;
    font-size: 14px;
}

.login-dropdown-menu .dropdown-divider {
    margin: 8px 0;
    border-color: rgba(128, 0, 0, 0.1);
}

.login-item {
    color: var(--primary-color) !important;
}

.register-item {
    color: var(--success-color) !important;
}

.login-item:hover {
    background: rgba(128, 0, 0, 0.1) !important;
    color: var(--primary-color) !important;
}

.register-item:hover {
    background: rgba(5, 150, 105, 0.1) !important;
    color: var(--success-color) !important;
}

.navbar-scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(25px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 3px solid rgba(128, 0, 0, 0.2);
    padding: 0.5rem 0;
    border-radius: 0 0 25px 25px;
}

.navbar-scrolled .logo-card {
    transform: scale(0.8);
}

.navbar-scrolled .navbar-collapse {
    opacity: 0.8;
}

.navbar-scrolled .navbar-nav-container {
    opacity: 0.8;
    transform: translateY(-50%) scale(0.9);
}

.navbar-scrolled .navbar-nav-left,
.navbar-scrolled .navbar-nav-right {
    opacity: 0.8;
    transform: scale(0.9);
}

.navbar-scrolled .logo-card {
    opacity: 1;
    visibility: visible;
    transform: scale(0.8) translateY(0);
}

/* Logo Card */
.logo-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 8px 32px rgba(128, 0, 0, 0.15);
    border: 3px solid rgba(128, 0, 0, 0.2);
    transition: all var(--transition-normal);
    z-index: 1001;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    height: 60px;
    margin-top: 25px;
    justify-self: center;
    transform: scale(0.8);
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ===== DOCUMENT MANAGEMENT ===== */
.document-type-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 15px;
    overflow: hidden;
}

.document-type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.document-type-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
}

.document-item {
    transition: all 0.3s ease;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.document-item:hover {
    background: #f8f9fa;
    transform: translateX(5px);
    border-color: var(--primary-color);
}

.document-icon {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545;
}

.document-name {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.document-actions .btn-group-sm .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
}

/* File Upload Area */
.file-upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    background: #f8f9fa;
    position: relative;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
    background: #fff5f5;
    transform: scale(1.02);
}

.file-upload-area.dragover {
    border-color: var(--primary-color);
    background: #fff5f5;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(128, 0, 0, 0.1);
}

.file-upload-content h5 {
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.file-upload-content i {
    color: var(--primary-color);
}

.file-preview {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.file-info .file-name {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.file-info .file-size {
    font-size: 0.8rem;
    color: #6c757d;
}

/* Document Status Badges */
.document-status .badge {
    font-size: 0.75rem;
    padding: 0.4em 0.8em;
    border-radius: 20px;
}

/* PDF Viewer */
#documentViewer {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
}

#documentViewer iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

/* Document Statistics Cards */
.document-stats-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 15px;
}

.document-stats-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.document-stats-card .card-body {
    padding: 1.5rem;
}

.document-stats-card i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.document-stats-card h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

/* Responsive Document Management */
@media (max-width: 768px) {
    .document-type-card {
        margin-bottom: 20px;
    }
    
    .file-upload-area {
        padding: 20px 10px;
    }
    
    .file-upload-content h5 {
        font-size: 1rem;
    }
    
    .document-actions .btn-group {
        flex-direction: column;
    }
    
    .document-actions .btn {
        margin-bottom: 2px;
        width: 100%;
    }
    
    .document-stats-card {
        margin-bottom: 15px;
    }
    
    .document-stats-card h4 {
        font-size: 1.5rem;
    }
}

/* Document Management Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.document-type-card,
.document-item,
.document-stats-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Document Upload Progress */
.upload-progress {
    display: none;
    margin-top: 15px;
}

.upload-progress .progress {
    height: 8px;
    border-radius: 10px;
    background: #e9ecef;
}

.upload-progress .progress-bar {
    background: var(--primary-color);
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Document Type Icons */
.document-type-icon.passport { color: #007bff; }
.document-type-icon.education { color: #28a745; }
.document-type-icon.work { color: #ffc107; }
.document-type-icon.english { color: #17a2b8; }
.document-type-icon.bank { color: #6f42c1; }
.document-type-icon.business { color: #fd7e14; }


/* ===== CUSTOM CSS VARIABLES ===== */
:root {
    /* Logo Renk Paleti */
    --primary-color: #800000;
    --primary-dark: #600000;
    --primary-light: #a00000;
    --secondary-color: #000000;
    --accent-color: #780000;
    
    /* Destekleyici Renkler */
    --success-color: #059669;
    --warning-color: #d97706;
    --light-color: #f8fafc;
    --white-color: #ffffff;
    
    /* Tipografi */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 15px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ===== GLOBAL STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    overflow-y: auto;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: #333;
    overflow-y: auto;
    min-height: 100vh;
    padding-top: 40px; /* Header yüksekliği için padding */
}


/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    position: relative;
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(128, 0, 0, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(3px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: inline-block;
    text-align: center;
}



.section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1.5rem;
    padding: 0.3rem 0.6rem;
    border: 1px solid rgba(128, 0, 0, 0.08);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(2px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
    display: inline-block;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
}

/* Section Header Container */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(128, 0, 0, 0.2), transparent);
    z-index: -1;
}

.section-header .section-title {
    background: var(--white-color);
    position: relative;
    z-index: 1;
}

/* ===== SECTION CONTAINERS ===== */
section {
    margin: 3rem 4rem;
    padding: 2.5rem 2rem;
    border: 1px solid rgba(128, 0, 0, 0.08);
    border-radius: 16px;
    background: 
        radial-gradient(circle at 20% 80%, rgba(128, 0, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(128, 0, 0, 0.08) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(248, 250, 252, 0.08) 100%);
    backdrop-filter: blur(3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    text-align: center;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 16px 16px 0 0;
}

section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 1px 1px, rgba(128, 0, 0, 0.15) 1px, transparent 0);
    background-size: 18px 18px;
    opacity: 0.6;
    pointer-events: none;
    border-radius: 16px;
}

/* Section içerik container'ları */
section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

section .row {
    justify-content: center;
    align-items: center;
}

/* ===== BUTTONS ===== */
.btn {
    font-weight: 500;
    border-radius: 8px;
    padding: 12px 24px;
    transition: all var(--transition-normal);
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white-color);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.btn-outline-light {
    border: 2px solid var(--white-color);
    color: var(--white-color);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--white-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-outline-success {
    border: 2px solid var(--success-color);
    color: var(--success-color);
    background: transparent;
}

.btn-outline-success:hover {
    background: var(--success-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

/* Logo Card */
.logo-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 8px 32px rgba(128, 0, 0, 0.15);
    border: 3px solid rgba(128, 0, 0, 0.2);
    transition: all var(--transition-normal);
    z-index: 1002;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    height: 60px;
    margin-top: 25px;
    justify-self: center;
    transform: scale(1);
}

.logo-card:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 12px 40px rgba(128, 0, 0, 0.25);
    border-color: rgba(128, 0, 0, 0.3);
}

.navbar-brand {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.navbar-brand img {
    height: 40px;
    transition: all var(--transition-normal);
}

/* Navigation Container - Bootstrap Compatible */
.navbar-collapse {
    transition: all var(--transition-normal);
    opacity: 1;
    visibility: visible;
}

.navbar-nav-container {
    transition: all var(--transition-normal);
    opacity: 1;
    visibility: visible;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
    gap: 2rem;
}

/* Desktop: Logo merkezde, menüler yanlarda */
@media (min-width: 992px) {
    /* Mobil menüyü desktop'ta gizle */
    .mobile-menu {
        display: none !important;
    }
    
    /* Desktop menüyü mobilde gizle - desktop'ta göster */
    .desktop-menu {
        display: flex !important;
        align-items: center;
        gap: 0.5rem;
        margin: 0;
        padding: 0;
        order: 3;
        flex: 1;
    }
    
    /* Mobil logoyu gizle */
    .mobile-logo {
        display: none;
    }
    
    /* Desktop logoyu göster */
    .desktop-logo {
        display: flex;
    }
    
    /* Desktop login dropdown göster, mobil linkleri gizle */
    .desktop-login {
        display: block;
    }
    
    .mobile-login,
    .mobile-register {
        display: none;
    }
    
    .navbar-nav-container {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
    }
    
    /* Tüm menü gruplarını gizle */
    .navbar-nav-left,
    .navbar-nav-right,
    .navbar-nav-right-left,
    .navbar-nav-right-right {
        display: none;
    }
    
    /* Logo card - sol tarafta */
    .logo-card {
        flex-shrink: 0;
        background: var(--white-color);
        border-radius: 12px;
        padding: 0.8rem 1.2rem;
        box-shadow: 0 4px 16px rgba(128, 0, 0, 0.15);
        border: 2px solid rgba(128, 0, 0, 0.2);
        transition: all var(--transition-normal);
        order: 1;
    }
    
    .logo-card:hover {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(128, 0, 0, 0.25);
        border-color: rgba(128, 0, 0, 0.3);
    }
    
    .logo-card .navbar-brand {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .logo-card .navbar-brand img {
        height: 40px;
        width: auto;
        transition: all var(--transition-normal);
    }
    
    /* Desktop menü - tek kolon */
    .navbar-nav-container::after {
        content: '';
        display: block;
        width: 100%;
        height: 1px;
        background: rgba(128, 0, 0, 0.1);
        margin: 0 1rem;
        order: 2;
    }
    
    
    .desktop-menu .nav-link {
        color: var(--secondary-color) !important;
        font-weight: 500;
        padding: 0.75rem 1rem !important;
        border-radius: 8px;
        transition: all var(--transition-normal);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        white-space: nowrap;
    }
    
    .desktop-menu .nav-link:hover {
        background: rgba(128, 0, 0, 0.1);
        color: var(--primary-color) !important;
        transform: translateY(-2px);
    }
    
    .desktop-menu .nav-link i {
        font-size: 0.9rem;
        color: var(--white-color);
    }
    
    /* Login dropdown stilleri */
    .desktop-menu .login-dropdown {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
        color: white !important;
        border: none !important;
    }
    
    .desktop-menu .login-dropdown:hover {
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
        color: white !important;
    }
    
    .desktop-menu .login-dropdown-menu {
        border: none;
        box-shadow: var(--shadow-lg);
        border-radius: 12px;
        padding: 0.5rem;
        margin-top: 0.5rem;
    }
    
    .desktop-menu .login-dropdown-menu .dropdown-item {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all var(--transition-normal);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .desktop-menu .login-dropdown-menu .dropdown-item:hover {
        background: rgba(128, 0, 0, 0.1);
        color: var(--primary-color);
    }
    
    .desktop-menu .login-dropdown-menu .dropdown-divider {
        margin: 0.5rem 0;
        border-color: rgba(128, 0, 0, 0.1);
    }
}

/* Standart Section Container - Tüm sayfalar için tutarlı genişlik */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Genel Menü Stilleri - Desktop ve Mobil için ortak */
.navbar-nav-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.navbar-nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

.navbar-nav-right-left {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.navbar-nav-right-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbar-nav {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--white-color) !important;
    margin: 0;
    padding: 0.4rem 1rem !important;
    border-radius: 25px;
    transition: all var(--transition-normal);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    font-size: 0.85rem;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    min-width: 120px;
    width: 120px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-nav .nav-link:hover {
    color: var(--white-color) !important;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Ücretsiz Danışmanlık menüsü - inherits from main .navbar-nav .nav-link */

/* Dropdown Menü Stilleri */



/* Mobile Navigation - Bootstrap Compatible */
@media (max-width: 991px) {
    /* Mobil logoyu göster, desktop logoyu gizle */
    .mobile-logo {
        display: flex;
        position: absolute;
        left: 1rem;
        top: 20%;
        transform: translateY(-50%);
        z-index: 1001;
        background: var(--white-color);
        border-radius: 12px;
        padding: 0.8rem 1rem;
        box-shadow: 0 4px 16px rgba(128, 0, 0, 0.15);
        border: 2px solid rgba(128, 0, 0, 0.2);
        min-height: 50px;
        height: 50px;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-logo .navbar-brand {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
    
    .mobile-logo .navbar-brand img {
        height: 30px;
        width: auto;
        transition: all var(--transition-normal);
    }
    
    .mobile-logo:hover {
        transform: translateY(-50%) scale(1.05);
        box-shadow: 0 6px 20px rgba(128, 0, 0, 0.25);
        border-color: rgba(128, 0, 0, 0.3);
    }
    
    /* Mobilde scroll animasyonlarını tamamen devre dışı bırak */
    .navbar-scrolled .mobile-logo {
        transform: translateY(-50%) scale(1) !important;
        opacity: 1 !important;
    }
    
    /* Mobil menü açıkken scroll animasyonlarını devre dışı bırak */
    .navbar-collapse.show ~ .mobile-logo,
    .navbar-collapse.show .mobile-logo,
    .navbar-collapse.collapsing ~ .mobile-logo,
    .navbar-collapse.collapsing .mobile-logo {
        transform: translateY(-50%) scale(1) !important;
        opacity: 1 !important;
    }
    
    .desktop-logo {
        display: none;
    }
    
    /* Desktop menüyü mobilde gizle */
    .desktop-menu {
        display: none !important;
    }
    
    /* Mobilde dropdown gizle, direkt linkleri göster */
    .desktop-login {
        display: none;
    }
    
    .mobile-login,
    .mobile-register {
        display: block;
    }
    
    /* Toggle button'ı sağ üstte konumlandır */
    .navbar-toggler {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        border: none;
        background: rgba(128, 0, 0, 0.1);
        border-radius: 8px;
        padding: 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28128, 0, 0, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-radius: 0 0 16px 16px;
        box-shadow: var(--shadow-lg);
        padding: 1rem;
    }
    
    /* Mobil menü container'ı basitleştir */
    .navbar-nav-container {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        flex-direction: column;
        gap: 0;
        padding: 0;
        align-items: stretch;
    }
    
    /* Desktop menü gruplarını gizle */
    .navbar-nav-left,
    .navbar-nav-right,
    .navbar-nav-right-left,
    .navbar-nav-right-right {
        display: none;
    }
    
    /* Mobil menü - sadece mobilde görünür */
    .mobile-menu {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        width: 100%;
        padding: 1rem;
        margin: 0;
        list-style: none;
    }
    
    .mobile-menu .nav-item {
        width: 100%;
        margin: 0;
    }
    
    .mobile-menu .nav-link {
        color: var(--secondary-color) !important;
        background: rgba(128, 0, 0, 0.05);
        border: 1px solid rgba(128, 0, 0, 0.1);
        margin: 0;
        text-align: center;
        width: 100%;
        padding: 1rem 0.5rem !important;
        border-radius: 12px;
        transition: all var(--transition-normal);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.85rem;
        font-weight: 500;
        min-height: 80px;
        text-decoration: none;
    }
    
    .mobile-menu .nav-link i {
        font-size: 1.3rem;
        color: var(--primary-color);
    }
    
    .mobile-menu .nav-link:hover {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
        color: white !important;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(128, 0, 0, 0.3);
        border-color: var(--primary-color);
    }
    
    .mobile-menu .nav-link:hover i {
        color: white;
    }
    
    /* Login dropdown mobilde düzgün görünsün */
    .navbar-nav-right-right .dropdown-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none;
        border: 1px solid rgba(128, 0, 0, 0.1);
        border-radius: 8px;
        margin-top: 0.5rem;
    }
    
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    height: 90vh; /* Viewport height - Desktop */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 2rem 3rem;
    border: 2px solid rgba(128, 0, 0, 0.1);
    border-radius: 20px;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(128, 0, 0, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 70% 30%, rgba(128, 0, 0, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(248, 250, 252, 0.1) 100%),
        url('../images/backgrounds/city-of-london-4481399_1280.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
    /* min-height: 100%; */
    padding: 1.5rem 2rem;
    width: 100%;
    max-width: 100%;
}

.hero-section .row {
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(128, 0, 0, 0.12) 1px, transparent 0);
    background-size: 22px 22px;
    opacity: 0.7;
    pointer-events: none;
    border-radius: 20px;
}

/* Hero video styles removed - now using background image */

/* Hero overlay removed - now using background image with CSS gradients */

.hero-content {
    color: var(--secondary-color);
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    background: rgba(255, 255, 255, 0.35);
    padding: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 15px;
    /* backdrop-filter: blur(10px); */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 3rem;
    line-height: 1.1;
}

.hero-title .text-primary {
    color: var(--primary-color) !important;
    display: block;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.hero-stats {
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--secondary-color);
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* ===== HERO FORM ===== */
.hero-form {
    display: flex;
    justify-content: center;
    align-items: center;
}


.form-container {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(128, 0, 0, 0.2);
    /* backdrop-filter: blur(10px); */
}

.form-container h3 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-control, .form-select {
    border: 2px solid rgba(128, 0, 0, 0.3);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    background: #f9fafb;
    color: #374151;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
}

.form-label {
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* ===== STATISTICS SECTION ===== */
.stat-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(128, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 16px 16px 0 0;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white-color);
    font-size: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin: 0;
    font-weight: 500;
}

/* ===== UPDATES BANNER ===== */
.updates-banner {
    padding: 1rem 0;
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    color: var(--secondary-color);
}

.updates-banner h4 {
    margin: 0;
    font-weight: 600;
}

.updates-banner p {
    margin: 0;
    font-size: 0.95rem;
}

/* ===== SERVICE CARDS ===== */
.service-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
    border: 1px solid #f1f5f9;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white-color);
    font-size: 2rem;
}

.service-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.service-features i {
    color: var(--success-color);
    font-size: 0.8rem;
}

/* ===== PROCESS STEPS ===== */
.process-step {
    text-align: center;
    padding: 2rem 1rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-md);
}

.process-step h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.process-step p {
    color: #666;
    margin-bottom: 1rem;
}

.step-duration {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
}

/* ===== PRICING CARDS ===== */
.pricing-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
    border: 2px solid #f1f5f9;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white-color);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: #666;
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--success-color);
    font-size: 0.9rem;
}

/* ===== CONTACT CARDS ===== */
.contact-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    height: 100%;
    border: 1px solid #f1f5f9;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white-color);
    font-size: 2rem;
}

.contact-card h4 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--secondary-color) !important;
}

footer h5 {
    color: var(--white-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

footer ul li {
    margin-bottom: 0.5rem;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all var(--transition-normal);
}

footer ul li a:hover {
    color: var(--white-color);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transition: all var(--transition-normal);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.newsletter-form .input-group {
    border-radius: 8px;
    overflow: hidden;
}

.newsletter-form .form-control {
    border: none;
    background: rgba(255, 255, 255, 0.35);
    color: var(--white-color);
}

.newsletter-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form .btn {
    background: var(--primary-color);
    border: none;
    color: var(--white-color);
}

.newsletter-form .btn:hover {
    background: var(--primary-light);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding: 0.35rem 0.7rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.4rem;
        padding: 0.3rem 0.6rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        padding: 0.25rem 0.5rem;
    }
    
    .section-subtitle.special {
        font-size: 1.2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

/* Blog Kartları Stilleri */
.blog-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-image .image-placeholder {
    color: white;
    opacity: 0.8;
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #6c757d;
}

.blog-meta .date {
    font-weight: 500;
}

.blog-meta .read-time {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
}

.blog-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-excerpt {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.blog-tags .tag {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.blog-card .btn {
    align-self: flex-start;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.blog-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

/* Haber Kartları Stilleri */
.news-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.news-image .image-placeholder {
    color: white;
    opacity: 0.8;
}

.news-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(220, 53, 69, 0.95);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.news-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.news-meta .date {
    color: #6c757d;
    font-weight: 500;
}

.news-meta .category {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.news-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.news-tags .tag {
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
}

.news-card .btn {
    align-self: flex-start;
    border-radius: 25px;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.news-card .btn:hover {
    background: #ff6b6b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

@media (max-width: 768px) {
    body {
        padding-top: 80px; /* Tablet için sticky header padding */
    }
    
    /* Mobilde section padding'lerini azalt */
    .py-5 {
        padding: 2rem 0 !important;
    }
    
    /* Section genel margin ve padding'lerini mobilde azalt */
    section {
        margin: 1rem 0 !important;
        padding: 1.5rem 1rem !important;
    }
    
    .hero-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-section .row {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-section .col-lg-6:first-child,
    .hero-section .col-lg-6:last-child {
        flex: none;
        text-align: center;
    }
    
    .hero-content {
        margin-bottom: 0;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-section {
        height: 85vh; /* Viewport height - Tablet */
        margin: 1.5rem 1rem;
        margin-top: 60px; /* Tablet için daha az margin */
    }
    
    .hero-section .container {
        padding: 2.5rem 1.5rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        padding: 0.25rem 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0.2rem 0.4rem;
    }
    
    .section-subtitle.special {
        font-size: 1.1rem;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-card,
    .pricing-card,
    .contact-card {
        margin-bottom: 2rem;
    }
    
    .navbar-nav .btn {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }
    
    /* Section responsive */
    section {
        margin: 2rem 1.5rem;
        padding: 2rem 1rem;
    }
    
    .hero-section {
        margin: 1.5rem 1rem;
        margin-top: 60px; /* Tablet için daha az margin */
        min-height: 35vh;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 70px; /* Mobil için sticky header padding */
    }
    
    /* Küçük mobilde section padding'lerini daha da azalt */
    section.py-5 {
        padding: 1.5rem 0 !important;
    }
    
    /* Küçük mobilde section margin ve padding'lerini daha da azalt */
    section {
        margin: 0.5rem 0 !important;
        padding: 1rem 0.5rem !important;
    }
    
    .hero-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        margin-bottom: 0;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .hero-section .row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-section .col-lg-6:first-child,
    .hero-section .col-lg-6:last-child {
        flex: none;
        text-align: center;
    }
    
    .hero-section .container {
        padding: 1.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.1rem;
        padding: 0.2rem 0.4rem;
    }
    
    .section-subtitle {
        font-size: 0.85rem;
        padding: 0.15rem 0.3rem;
    }
    
    .section-subtitle.special {
        font-size: 1rem;
    }
    
    .price {
        font-size: 2.5rem;
    }
    
    .form-container {
        padding: 1rem;
    }
    
    .stat-card {
        padding: 1.2rem 0.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-icon {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .updates-banner .row {
        text-align: center;
    }
    
    .updates-banner .col-md-4 {
        margin-top: 1rem;
    }
    
    /* Blog Kartları Mobil */
    .blog-card {
        margin-bottom: 20px;
    }
    
    .blog-image {
        height: 180px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .blog-title {
        font-size: 1rem;
    }
    
    .blog-excerpt {
        font-size: 0.85rem;
    }
    
    /* Haber Kartları Mobil */
    .news-card {
        margin-bottom: 20px;
    }
    
    .news-image {
        height: 160px;
    }
    
    .news-content {
        padding: 20px;
    }
    
    .news-title {
        font-size: 1rem;
    }
    
    .news-excerpt {
        font-size: 0.85rem;
    }
    
    .news-badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    /* Section responsive - small mobile */
    section {
        margin: 1rem 0.8rem;
        padding: 1.5rem 0.8rem;
    }
    
    .hero-section {
        height: 80vh; /* Viewport height - Mobil */
        margin: 1rem 0.5rem;
        margin-top: 50px; /* Mobil için daha az margin */
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.shadow-custom {
    box-shadow: var(--shadow-lg);
}

.rounded-custom {
    border-radius: 16px;
}

/* ===== LOADING STATES ===== */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-color);
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== PROFESSIONAL TITLE STYLING ===== */
.hero-title {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #000000;
    transition: all 0.3s ease;
}

.hero-title .text-primary {
    color: var(--primary-color);
    position: relative;
    font-weight: 800;
}

.hero-title .text-primary::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), rgba(128, 0, 0, 0.3));
    border-radius: 2px;
    opacity: 0.8;
}

/* Subtle hover effect */
.hero-title:hover .text-primary {
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.hero-title:hover .text-primary::after {
    height: 4px;
    opacity: 1;
    transition: all 0.3s ease;
}

/* Hero subtitle styling */
.hero-subtitle {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-weight: 600;
    font-size: 1.2rem;
    color: #000000;
    margin-bottom: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0.7rem 1rem;
    }
}

/* ===== MIGRATION STEPS STYLING ===== */
.migration-step {
    background: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(128, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.migration-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), rgba(128, 0, 0, 0.3));
}

.migration-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), rgba(128, 0, 0, 0.8));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(128, 0, 0, 0.3);
}

.step-content h4 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.6rem;
    font-size: 1.1rem;
}

.step-content p {
    color: #6c757d;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    padding: 0.2rem 0;
    color: #495057;
    font-weight: 500;
    font-size: 0.85rem;
}

.step-features i {
    margin-right: 0.4rem;
    font-size: 0.85rem;
}

.migration-cta {
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.05), rgba(255, 255, 255, 0.9));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(128, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.migration-cta h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
}

.migration-cta p {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive adjustments for migration steps */
@media (max-width: 768px) {
    .migration-step {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .migration-cta {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .migration-step {
        padding: 0.8rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .migration-cta {
        padding: 1.5rem;
    }
}

/* ===== SELF SPONSORSHIP STYLING ===== */
.sponsorship-content h3 {
    color: #2c3e50;
    font-weight: 700;
    font-size: 1.8rem;
}

.sponsorship-content .lead {
    color: #6c757d;
    font-size: 1.1rem;
    line-height: 1.6;
}

.sponsorship-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefit-item h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.benefit-item p {
    color: #6c757d;
    margin: 0;
    font-size: 0.95rem;
}

.sponsorship-visual {
    position: relative;
}

.visual-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(128, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 2rem;
}

.card-header {
    background: linear-gradient(135deg, var(--primary-color), rgba(128, 0, 0, 0.8));
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.card-header h4 {
    margin: 0;
    font-weight: 600;
    font-size: 1.3rem;
}

.card-body {
    padding: 2rem;
}

.advantage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.advantage-item {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.advantage-item:last-child {
    border-bottom: none;
}

.advantage-number {
    width: 30px;
    height: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.advantage-text {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
}

.sponsorship-stats {
    display: flex;
    justify-content: space-around;
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(128, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6c757d;
    font-weight: 500;
    margin: 0;
    font-size: 0.9rem;
}

.sponsorship-cta {
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.05), rgba(255, 255, 255, 0.9));
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(128, 0, 0, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.sponsorship-cta h4 {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 1rem;
}

.sponsorship-cta p {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Responsive adjustments for self sponsorship */
@media (max-width: 768px) {
    .sponsorship-content h3 {
        font-size: 1.5rem;
    }
    
    .benefit-item {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .benefit-item i {
        font-size: 1.3rem;
        margin-right: 0.8rem;
    }
    
    .sponsorship-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .sponsorship-cta {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .sponsorship-content h3 {
        font-size: 1.3rem;
    }
    
    .benefit-item {
        padding: 0.7rem;
    }
    
    .benefit-item i {
        font-size: 1.2rem;
        margin-right: 0.7rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    .advantage-item {
        padding: 0.8rem 0;
    }
    
    .advantage-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .sponsorship-cta {
        padding: 1.5rem;
    }
}

/* ===== SIMPLE SELF SPONSORSHIP STYLES ===== */
.section-title-small {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.section-subtitle-small {
    font-size: 1rem;
    color: var(--text-color);
    margin-bottom: 0;
    opacity: 0.8;
}

/* ===== SIMPLE SELF SPONSORSHIP STYLES ===== */
.sponsorship-explanation {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.explanation-details {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.explanation-details p {
    color: var(--text-color);
    line-height: 1.6;
}

.key-benefits {
    margin-top: 2rem;
}

.benefit-highlight {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
}

.benefit-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.benefit-highlight i {
    font-size: 2rem;
}

.benefit-highlight h6 {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.benefit-highlight p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* ===== REQUIREMENT CARDS ===== */
.requirement-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(128, 0, 0, 0.1);
    transition: all var(--transition-normal);
    height: 100%;
}

.requirement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(128, 0, 0, 0.15);
    border-color: rgba(128, 0, 0, 0.2);
}

.requirement-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: var(--text-color);
}

/* ===== REQUIREMENTS SECTION ===== */
.requirements-section {
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.05), rgba(128, 0, 0, 0.02));
    border-radius: 20px;
    padding: 2.5rem;
    margin-top: 2rem;
    border: 2px solid rgba(128, 0, 0, 0.1);
}

.requirement-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--white-color);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    height: 100%;
    border: 2px solid transparent;
}

.requirement-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(128, 0, 0, 0.12);
    border-color: rgba(128, 0, 0, 0.2);
}

.requirement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white-color);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(128, 0, 0, 0.2);
}

.requirement-item h6 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.requirement-item p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

.section-subtitle.special {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== SUMMARY SECTION ===== */
.summary-section {
    margin-top: 2rem;
}

.summary-card {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    padding: 2rem;
    color: var(--white-color);
    text-align: center;
    box-shadow: 0 10px 40px rgba(128, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.summary-title {
    color: var(--white-color);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-text {
    color: var(--white-color);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.summary-text strong {
    color: var(--white-color);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.summary-requirements {
    margin-top: 1.5rem;
}

.summary-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.summary-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-item i {
    color: var(--white-color);
    font-size: 1.2rem;
    margin-right: 1rem;
    width: 20px;
    text-align: center;
}

.summary-item span {
    color: var(--white-color);
    font-size: 1rem;
    line-height: 1.4;
}

.summary-item strong {
    color: var(--white-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .sponsorship-explanation {
        padding: 2rem 1.5rem;
    }
    
    .explanation-details {
        padding: 1.5rem;
    }
    
    .requirements-section {
        padding: 1.5rem;
    }
    
    .requirement-card {
        padding: 1.5rem;
    }
    
    .requirement-item {
        padding: 1rem 0.5rem;
    }
    
    .requirement-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .summary-card {
        padding: 1.5rem;
    }
    
    .summary-title {
        font-size: 1.1rem;
    }
    
    .summary-text {
        font-size: 1rem;
    }
    
    .summary-item {
        padding: 0.8rem;
        margin-bottom: 0.6rem;
    }
    
    .summary-item i {
        font-size: 1rem;
        margin-right: 0.8rem;
        width: 16px;
    }
    
    .summary-item span {
        font-size: 0.9rem;
    }
}

/* ===== ENGLISH REQUIREMENTS SECTION ===== */
.english-requirements-content {
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.overview-card {
    background: linear-gradient(135deg, rgba(128, 0, 0, 0.05), rgba(128, 0, 0, 0.02));
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid rgba(128, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.overview-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.5rem;
    box-shadow: 0 6px 20px rgba(128, 0, 0, 0.2);
    flex-shrink: 0;
}

.overview-content h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.overview-content p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.methods-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.4rem;
}

.method-card {
    background: var(--white-color);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(128, 0, 0, 0.1);
    transition: all var(--transition-normal);
    height: 100%;
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(128, 0, 0, 0.15);
    border-color: rgba(128, 0, 0, 0.2);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(128, 0, 0, 0.2);
}

.method-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.method-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.method-list li {
    padding: 0.3rem 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.method-list li:before {
    content: "✓";
    color: var(--success-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

.method-note {
    background: rgba(128, 0, 0, 0.05);
    border-radius: 8px;
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    font-size: 0.9rem;
}

.method-note i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.exemption-card {
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.05), rgba(5, 150, 105, 0.02));
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid rgba(5, 150, 105, 0.1);
}

.exemption-title {
    color: var(--success-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.exemption-text {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.exemption-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.exemption-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(5, 150, 105, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(5, 150, 105, 0.1);
}

.exemption-item i {
    color: var(--success-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.exemption-item span {
    color: var(--text-color);
    line-height: 1.5;
}

.notes-card {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.05), rgba(217, 119, 6, 0.02));
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid rgba(217, 119, 6, 0.1);
}

.notes-title {
    color: var(--warning-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.notes-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(217, 119, 6, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(217, 119, 6, 0.1);
}

.note-item i {
    color: var(--warning-color);
    font-size: 1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.note-item div {
    color: var(--text-color);
    line-height: 1.5;
}

.note-item strong {
    color: var(--warning-color);
}

@media (max-width: 768px) {
    .english-requirements-content {
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .overview-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .overview-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .method-card {
        padding: 1.5rem;
    }
    
    .exemption-card,
    .notes-card {
        padding: 1.5rem;
    }
    
    .exemption-item,
    .note-item {
        padding: 0.8rem;
    }
}

/* ===== BLOG PAGE STYLES ===== */
.blog-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Blog Hero Section - Ana sayfa ile aynı stil kullanılıyor */

/* Blog Search Container */
.blog-search-container {
    max-width: 600px;
    margin: 0 auto;
}

.blog-search-form {
    position: relative;
}

.search-input-group {
    display: flex;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-normal);
}

.search-input-group:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    background: transparent;
    color: var(--text-color);
}

.search-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.search-button {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.search-button:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: scale(1.05);
}

/* Blog Content Section */
.blog-content-section {
    padding: 3rem 0;
    background: white;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

/* Blog Main Content */
.blog-main-content {
    min-height: 500px;
}

.blog-filter-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.filter-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-value {
    color: var(--primary-color);
    font-weight: 600;
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-post-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    border: 1px solid #e2e8f0;
    position: relative;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.post-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.blog-post-card:hover .post-image {
    transform: scale(1.05);
}

.post-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 3rem;
}

.post-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
}

.category-link {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.category-link:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.post-author,
.post-date,
.post-views {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-size: 0.9rem;
    font-weight: 500;
}

.post-author i,
.post-date i,
.post-views i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.post-title {
    margin-bottom: 1rem;
}

.post-title-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color var(--transition-normal);
}

.post-title-link:hover {
    color: var(--primary-color);
}

.post-excerpt {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.read-more-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    transform: translateX(5px);
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.pagination-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}

.pagination-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
    transform: scale(1.05);
}

.pagination-btn:disabled {
    background: #e2e8f0;
    color: #94a3b8;
    cursor: not-allowed;
    transform: none;
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
    margin: 0 1rem;
}

.pagination-number {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    color: #64748b;
    text-decoration: none;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.pagination-number:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.pagination-number.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-dark);
    transform: scale(1.1);
}

/* No Posts Message */
.no-posts-message {
    text-align: center;
    padding: 4rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.no-posts-icon {
    font-size: 4rem;
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.no-posts-message h3 {
    color: var(--text-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.no-posts-message p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all var(--transition-normal);
}

.sidebar-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.widget-title i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.widget-content {
    color: var(--text-color);
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    margin-bottom: 0.5rem;
}

.category-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: #f8fafc;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.category-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.category-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-dark);
}

.category-name {
    font-weight: 600;
}

.category-count {
    background: rgba(255, 255, 255, 0.2);
    color: inherit;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-link {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    display: inline-block;
}

.tag-link:hover {
    transform: scale(1.05);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.no-tags {
    color: #94a3b8;
    font-style: italic;
    text-align: center;
    margin: 0;
}

/* Recent Posts Widget */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}

.recent-post-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.recent-post-image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 1.2rem;
}

.recent-post-content {
    flex: 1;
    min-width: 0;
}

.recent-post-title {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.recent-post-title a {
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.recent-post-item:hover .recent-post-title a {
    color: white;
}

.recent-post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.recent-post-date {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.recent-post-item:hover .recent-post-date {
    color: rgba(255, 255, 255, 0.8);
}

.recent-post-date i {
    font-size: 0.7rem;
}

.no-posts {
    color: #94a3b8;
    font-style: italic;
    text-align: center;
    margin: 0;
}

/* Newsletter Widget */
.newsletter-description {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-input-group {
    display: flex;
    background: #f8fafc;
    border-radius: 12px;
    padding: 4px;
    border: 1px solid #e2e8f0;
    transition: all var(--transition-normal);
}

.newsletter-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
}

.newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.8rem 1rem;
    background: transparent;
    color: var(--text-color);
    font-size: 0.9rem;
}

.newsletter-input::placeholder {
    color: #94a3b8;
}

.newsletter-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.2rem;
    color: white;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .blog-layout {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
    }
}

@media (max-width: 992px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-sidebar {
        position: static;
        order: -1;
    }
    
    .blog-posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .search-input-group {
        flex-direction: column;
        border-radius: 12px;
        padding: 0;
        background: transparent;
    }
    
    .search-input {
        background: white;
        border-radius: 12px;
        margin-bottom: 0.5rem;
    }
    
    .search-button {
        border-radius: 12px;
        justify-content: center;
    }
    
    .post-meta-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-breadcrumb {
        font-size: 0.8rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-post-card {
        border-radius: 15px;
    }
    
    .post-content {
        padding: 1.2rem;
    }
    
    .post-meta {
        gap: 0.8rem;
    }
    
    .pagination-nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .pagination-numbers {
        margin: 0;
        justify-content: center;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .recent-post-item {
        padding: 0.8rem;
    }
    
    .recent-post-image {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .blog-content-section {
        padding: 2rem 0;
    }
    
    .filter-title {
        font-size: 1.5rem;
    }
    
    .post-content {
        padding: 1rem;
    }
    
    .post-title-link {
        font-size: 1.1rem;
    }
    
    .sidebar-widget {
        padding: 1.2rem;
    }
    
    .post-breadcrumb {
        font-size: 0.75rem;
    }
    
    .meta-item {
        font-size: 0.85rem;
    }
}

/* ===== BLOG POST PAGE STYLES ===== */
.blog-post-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Blog Post Hero Section - Ana sayfa ile aynı stil kullanılıyor */

/* Blog Post Breadcrumb ve Meta Bilgileri */
.post-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    justify-content: center;
    flex-wrap: wrap;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.breadcrumb-link:hover {
    color: white;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
}

.breadcrumb-current {
    color: white;
    font-weight: 600;
}

.post-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.meta-item i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.meta-label {
    font-weight: 600;
}

.meta-value {
    font-weight: 500;
}

.post-featured-image {
    margin-top: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Blog Post Content Section */
.blog-post-content-section {
    padding: 3rem 0;
    background: white;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    align-items: start;
}

.blog-post-main {
    min-height: 500px;
}

/* Blog Post Sidebar */
.blog-post-sidebar {
    position: sticky;
    top: 2rem;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.widget-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 1rem;
}

.widget-title i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Sidebar Related Posts */
.sidebar-related-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-post-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.sidebar-post-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.sidebar-post-image {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-placeholder {
    width: 100%;
    height: 100%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.sidebar-post-content {
    flex: 1;
}

.sidebar-post-title {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.sidebar-post-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.sidebar-post-title a:hover {
    color: var(--primary-color);
}

.sidebar-post-meta {
    font-size: 0.8rem;
    color: #64748b;
}

.sidebar-post-date {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Sidebar Popular Posts */
.sidebar-popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-popular-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.sidebar-popular-item:hover {
    background: #f1f5f9;
    transform: translateX(5px);
}

.sidebar-popular-image {
    width: 60px;
    height: 45px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-popular-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-popular-placeholder {
    width: 100%;
    height: 100%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 0.8rem;
}

.sidebar-popular-content {
    flex: 1;
}

.sidebar-popular-title {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.sidebar-popular-title a {
    color: var(--text-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.sidebar-popular-title a:hover {
    color: var(--primary-color);
}

.sidebar-popular-meta {
    font-size: 0.75rem;
    color: #64748b;
}

.sidebar-popular-views {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Sidebar Categories */
.sidebar-categories {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: #f8fafc;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all var(--transition-normal);
}

.sidebar-category-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.category-name {
    font-weight: 500;
}

.category-count {
    font-size: 0.8rem;
    color: #64748b;
    background: white;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
}

.sidebar-category-item:hover .category-count {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Sidebar Tags */
.sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.sidebar-tag {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition-normal);
}

.sidebar-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.no-sidebar-posts,
.no-sidebar-posts {
    color: #64748b;
    font-style: italic;
    text-align: center;
    padding: 1rem;
}

.post-content-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.post-content-body h1,
.post-content-body h2,
.post-content-body h3,
.post-content-body h4,
.post-content-body h5,
.post-content-body h6 {
    color: var(--text-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.post-content-body h1 {
    font-size: 2.2rem;
}

.post-content-body h2 {
    font-size: 1.8rem;
}

.post-content-body h3 {
    font-size: 1.5rem;
}

.post-content-body p {
    margin-bottom: 1.5rem;
}

.post-content-body ul,
.post-content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-content-body li {
    margin-bottom: 0.5rem;
}

.post-content-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #64748b;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 0 8px 8px 0;
}

.post-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.post-content-body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-normal);
}

.post-content-body a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Post Tags Section */
.post-tags-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.tags-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tags-title i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.post-tag {
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-normal);
    display: inline-block;
}

.post-tag:hover {
    transform: scale(1.05);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.no-tags {
    color: #94a3b8;
    font-style: italic;
}

/* Author Section */
.author-section {
    margin-bottom: 3rem;
}

.author-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.author-avatar {
    flex-shrink: 0;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.author-bio {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.author-social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 1.1rem;
    transition: all var(--transition-normal);
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.website {
    background: var(--primary-color);
}

.social-link:hover {
    transform: scale(1.1);
    color: white;
}

/* Related Posts Section */
.related-posts-section {
    margin-bottom: 3rem;
}

.related-posts-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-posts-title i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.related-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-normal);
    border: 1px solid #e2e8f0;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.related-post-image {
    height: 180px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 2rem;
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-title {
    margin-bottom: 1rem;
}

.related-post-title a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color var(--transition-normal);
}

.related-post-title a:hover {
    color: var(--primary-color);
}

.related-post-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.related-post-date {
    color: #64748b;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.related-post-date i {
    font-size: 0.8rem;
}

.no-related-posts {
    color: #94a3b8;
    font-style: italic;
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

/* Comments Section */
.comments-section {
    margin-bottom: 3rem;
}

.comments-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comments-title i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.comment-item {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    gap: 1rem;
}

.comment-avatar {
    flex-shrink: 0;
}

.comment-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
}

.comment-author {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 0;
}

.comment-date {
    color: #64748b;
    font-size: 0.85rem;
}

.comment-text {
    color: var(--text-color);
    line-height: 1.6;
}

.no-comments {
    color: #94a3b8;
    font-style: italic;
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

/* Comment Form Section */
.comment-form-section {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.comment-form-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-color);
    font-size: 0.95rem;
}

.required {
    color: #ef4444;
}

.form-input,
.form-textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    background: white;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
}

.form-help {
    color: #64748b;
    font-size: 0.85rem;
}

.comment-submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.comment-submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(128, 0, 0, 0.3);
}

/* Responsive Design for Blog Post */
@media (max-width: 1200px) {
    .blog-post-layout {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
    }
    
    .sidebar-widget {
        padding: 1.5rem;
    }
}

@media (max-width: 992px) {
    .blog-post-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .blog-post-sidebar {
        position: static;
        order: -1;
    }
    
    .sidebar-widget {
        margin-bottom: 1.5rem;
    }
    
    .blog-post-title {
        font-size: 2.5rem;
    }
    
    .post-meta-info {
        gap: 1.5rem;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.2rem;
    }
}

@media (max-width: 768px) {
    .post-meta-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .post-breadcrumb {
        font-size: 0.8rem;
    }
    
    .post-content-body {
        font-size: 1rem;
    }
    
    .post-content-body h1 {
        font-size: 1.8rem;
    }
    
    .post-content-body h2 {
        font-size: 1.5rem;
    }
    
    .post-content-body h3 {
        font-size: 1.3rem;
    }
    
    .author-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .author-avatar {
        align-self: center;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comment-item {
        flex-direction: column;
        text-align: center;
    }
    
    .comment-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .sidebar-widget {
        padding: 1.2rem;
    }
    
    .sidebar-post-item,
    .sidebar-popular-item {
        padding: 0.8rem;
    }
    
    .sidebar-post-image {
        width: 60px;
        height: 45px;
    }
    
    .sidebar-popular-image {
        width: 50px;
        height: 35px;
    }
    
    .sidebar-post-title,
    .sidebar-popular-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .sidebar-widget {
        padding: 1rem;
    }
    
    .widget-title {
        font-size: 1.1rem;
    }
    
    .sidebar-post-item,
    .sidebar-popular-item {
        padding: 0.6rem;
        gap: 0.8rem;
    }
    
    .sidebar-post-image {
        width: 50px;
        height: 35px;
    }
    
    .sidebar-popular-image {
        width: 40px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .post-breadcrumb {
        font-size: 0.75rem;
    }
    
    .post-content-body {
        font-size: 0.95rem;
    }
    
    .post-tags-section,
    .author-card,
    .comment-form-section {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .tags-container {
        gap: 0.5rem;
    }
    
    .post-tag {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .meta-item {
        font-size: 0.85rem;
    }
}

