/* Meet2Talk Inspired LMS Design */

/* Instructor Dashboard Styles */
.instructor-dashboard {
    background-color: #f8f9fa;
    min-height: 100vh;
}
.modal-dialog{

    padding-top:12%!important;
}
.modal-backdrop{
    z-index:-1!important;
    background-color:white!important;
}
.dashboard-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.dashboard-title {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
}

.sidebar {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.profile-card {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.profile-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.profile-info h5 {
    margin: 1rem 0 0.5rem 0;
    font-weight: 600;
}

.sidebar-nav .nav-link {
    color: #6c757d;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.sidebar-nav .nav-link:hover,
.sidebar-nav .nav-link.active {
    background-color: #007bff;
    color: white;
}

.main-content {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.section {
    margin-bottom: 3rem;
}

.section-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #007bff;
}

.group-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.group-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.group-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.group-header h5 {
    margin: 0;
    font-weight: 600;
    color: #333;
}

.group-info p {
    margin: 0.5rem 0;
    color: #6c757d;
}

.group-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.activity-list {
    background: white;
    border-radius: 10px;
    overflow: hidden;
}

.activity-item {
    display: flex;
    align-items: flex-start;
    padding: 1.5rem;
    border-bottom: 1px solid #f1f3f4;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.activity-content h6 {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
    color: #333;
}

.activity-content p {
    margin: 0 0 0.5rem 0;
    color: #6c757d;
}

/* Root Variables - Meet2Talk Color Scheme */
:root {
    /* Primary Colors - ARAPÇA Logo Colors */
    --primary-color: #a855a3;  /* Logo mor/pembe rengi */
    --primary-dark: #92459e;   /* Koyu mor */
    --primary-light: #c084c5;  /* Açık mor */
    
    /* Secondary Colors - Logo yeşil tonları */
    --secondary-color: #c084c5;  /* Logo yeşili */
    --secondary-light: #6b8e23;  /* Açık yeşil */
    --secondary-dark: #3a4a1a;   /* Koyu yeşil */
    

    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-card: #ffffff;
    
    /* Text Colors */
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --text-white: #ffffff;
    
    /* Border Colors */
    --border-light: #e2e8f0;
    --border-medium: #cbd5e1;
    --border-dark: #94a3b8;
    
    /* Status Colors */
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --info-color: #3b82f6;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 140px; /* Navbar height */
    max-width: 100vw;
    overflow-x: hidden;
}

/* Scroll'u geçici olarak devre dışı bırak - sadece overflow hidden kullan */
body.animating {
    overflow: hidden !important;
}

/* Global page wrapper for consistent margins */
.page-wrapper {
    max-width: 100vw;
    margin: 0 auto;
    background-color: var(--bg-secondary);
}

/* Ensure all sections have consistent max-width */
section, .section, .hero-section, .features-section, .footer {
    max-width: 100vw;
    margin: 0 auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.75rem; font-weight: 600; }
h4 { font-size: 1.5rem; font-weight: 600; }
h5 { font-size: 1.25rem; font-weight: 500; }
h6 { font-size: 1.125rem; font-weight: 500; }

p {
    margin-bottom: var(--spacing-sm);
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: none;
}

/* Container and Layout - Meet2Talk Style */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Specific containers for different sections */
.container-narrow {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.container-fluid {
    max-width: 100%;
    padding: 30px var(--spacing-sm);
}

/* Specific page containers */
.container-sm {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.container-md {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Header and Navigation */
.navbar,
.navbar.navbar-expand-lg,
.navbar.navbar-light {
    background-color: var(--bg-primary) !important;
    border-bottom: 1px solid var(--border-light) !important;
   
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: var(--shadow-sm) !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: center !important;

}

.navbar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-toggler {
    background: none;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-sm);
    padding: 0.375rem 0.75rem;
    cursor: pointer;
    display: none;
}

/* Modern Hamburger Menu */
.modern-hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    width: 48px;
    height: 48px;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10002;
}

.modern-hamburger:hover {
    background-color: var(--bg-tertiary);
}

.modern-hamburger:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
    margin: 4px 0;
    opacity: 1;
}

.modern-hamburger.active .hamburger-line:nth-child(1) {
    opacity: 0 !important;
    transform: translateY(10px) !important;
}

.modern-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
}

.modern-hamburger.active .hamburger-line:nth-child(3) {
    opacity: 0 !important;
    transform: translateY(-10px) !important;
}

.modern-hamburger:not(.active) .hamburger-line {
    opacity: 1 !important;
    transform: none !important;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Close Button */
.mobile-menu-close {
    display: none;
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border: none;
    background-color: var(--bg-tertiary);
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 20px;
    transition: all 0.3s ease;
    z-index: 10002;
}

.mobile-menu-close:hover {
    background-color: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.mobile-menu-close:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.3);
}

.navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    height: 135px;
    max-height: 135px;
}

.navbar-brand:hover {
    color: var(--primary-dark);
    transform: none;
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 135px;
    max-height: 135px;
}

.logo-container img {
    max-height: 135px;
    width: auto;
    object-fit: contain;
    transition: none;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text .fw-bold {
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

.navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background-color: var(--bg-tertiary);
}




/* Desktop Dropdown - Normal Behavior */
@media (min-width: 992px) {
    .dropdown-menu {
        display: none;
    }
    
    .dropdown.show .dropdown-menu,
    .nav-item.dropdown.show .dropdown-menu {
        display: block;
    }
}

/* Mobile Navigation */
@media (max-width: 991.98px) {
    .modern-hamburger {
        display: flex;
    }
    
    .mobile-menu-close {
        display: flex;
    }
    
    .navbar-toggler {
        display: block;
    }
    
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background-color: var(--bg-primary);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        padding: 80px 24px 24px;
        z-index: 10001;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
    }
    
    .navbar-collapse.show {
        right: 0;
        display: flex;
    }
    
    /* Animated Menu Items on Open */
    .navbar-collapse.show .nav-item {
        animation: slideInFromRight 0.3s ease forwards;
        opacity: 0;
    }
    
    .navbar-collapse.show .nav-item:nth-child(1) { animation-delay: 0.05s; }
    .navbar-collapse.show .nav-item:nth-child(2) { animation-delay: 0.1s; }
    .navbar-collapse.show .nav-item:nth-child(3) { animation-delay: 0.15s; }
    .navbar-collapse.show .nav-item:nth-child(4) { animation-delay: 0.2s; }
    .navbar-collapse.show .nav-item:nth-child(5) { animation-delay: 0.25s; }
    .navbar-collapse.show .nav-item:nth-child(6) { animation-delay: 0.3s; }
    .navbar-collapse.show .nav-item:nth-child(7) { animation-delay: 0.35s; }
    .navbar-collapse.show .nav-item:nth-child(8) { animation-delay: 0.4s; }
    
    @keyframes slideInFromRight {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 2px;
        align-items: stretch;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .navbar-nav > .nav-item {
        width: 100%;
        position: relative;
    }
    
    .navbar-nav > .nav-item > .nav-link {
        padding: 12px 16px;
        width: 100%;
        border-radius: var(--radius-md);
        font-size: 15px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        min-height: 44px;
        color: var(--text-primary);
        transition: all 0.2s ease;
        text-decoration: none;
        border: none;
        background: transparent;
    }
    
    .navbar-nav > .nav-item > .nav-link:hover {
        background-color: var(--bg-tertiary);
        color: var(--primary-color);
        transform: translateX(4px);
    }
    
    .navbar-nav > .nav-item > .nav-link.active {
        background-color: var(--bg-tertiary);
        color: var(--primary-color);
        font-weight: 600;
    }
    
    /* Mobile Dropdown Styles */
    .nav-item.dropdown {
        margin-bottom: 4px;
        position: relative;
        z-index: 10; /* Ensure dropdown is above other nav items */
    }
    
    .nav-item.dropdown.show {
        z-index: 20; /* Higher z-index when open */
    }
    
    .nav-item.dropdown .dropdown-toggle {
        position: relative;
        padding-right: 40px !important;
    }
    
    .nav-item.dropdown .dropdown-toggle::after {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%) rotate(0deg);
        transition: transform 0.3s ease;
        border: none !important;
        content: "\f107";
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        font-size: 16px;
        margin: 0;
        vertical-align: 0;
    }
    
    .nav-item.dropdown.show .dropdown-toggle::after {
        transform: translateY(-50%) rotate(180deg);
    }
    
    .navbar-collapse .dropdown-menu {
        position: relative !important; /* Changed from static to relative */
        transform: none !important;
        border: none !important;
        box-shadow: none !important;
        background-color: transparent !important;
        width: 100% !important;
        float: none !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
        z-index: 1 !important; /* Ensure it's above other elements */
        
        /* Hidden by default */
        max-height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important; /* Added visibility */
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, visibility 0s 0.3s !important;
    }
    
    .navbar-collapse .nav-item.dropdown.show > .dropdown-menu {
        max-height: 800px !important;
        opacity: 1 !important;
        visibility: visible !important; /* Added visibility */
        padding: 4px 0 !important;
        margin-top: 4px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease, visibility 0s 0s !important;
    }
    
    .navbar-collapse .dropdown-item {
        padding: 10px 12px 10px 24px !important;
        border-radius: var(--radius-md);
        font-size: 14px;
        color: var(--text-secondary) !important;
        transition: all 0.2s ease;
        display: none !important; /* Hidden by default */
        align-items: center;
        gap: 8px;
        min-height: 40px;
        margin: 2px 8px !important;
        background-color: var(--bg-secondary) !important;
        text-decoration: none !important;
        white-space: nowrap;
        border: none !important;
        width: calc(100% - 16px) !important;
        box-sizing: border-box !important;
    }
    
    /* Show dropdown items when parent has .show class */
    .navbar-collapse .nav-item.dropdown.show .dropdown-item {
        display: flex !important; /* Show when dropdown is open */
    }
    
    .navbar-collapse .dropdown-item:hover,
    .navbar-collapse .dropdown-item:focus {
        background-color: var(--bg-tertiary) !important;
        color: var(--primary-color) !important;
        transform: translateX(4px);
    }
    
    .navbar-collapse .dropdown-item i {
        width: 18px;
        text-align: center;
        opacity: 0.7;
        flex-shrink: 0;
    }
    
    /* Mobile Auth Buttons */
    .navbar-nav .btn {
        width: 100%;
        margin-top: 8px;
        padding: 14px;
        font-size: 16px;
        font-weight: 600;
        border-radius: var(--radius-md);
        justify-content: center;
    }
    
    .navbar-nav .btn-primary {
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        border: none;
        color: white;
        box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
    }
    
    .navbar-nav .btn-outline-primary {
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        background-color: transparent;
    }
    
    .navbar-nav .btn-outline-primary:hover {
        background-color: var(--primary-color);
        color: white;
    }
    
    /* Scrollbar for mobile menu */
    .navbar-collapse::-webkit-scrollbar {
        width: 6px;
    }
    
    .navbar-collapse::-webkit-scrollbar-track {
        background: var(--bg-secondary);
        border-radius: 3px;
    }
    
    .navbar-collapse::-webkit-scrollbar-thumb {
        background: var(--border-medium);
        border-radius: 3px;
    }
    
    .navbar-collapse::-webkit-scrollbar-thumb:hover {
        background: var(--text-tertiary);
    }
    
    /* Mobile Cart Icon */
    #cartNav {
        order: -1;
        width: 100%;
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--border-light);
    }
    
    #cartNav .nav-link {
        background-color: var(--bg-tertiary);
        color: var(--primary-color);
        font-weight: 600;
        justify-content: center;
        gap: 12px;
    }
    
    #cartNav .nav-link i {
        font-size: 20px;
    }
    
    #cartNav .cart-item-count {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        margin-left: 8px;
        font-size: 0.8rem;
    }
    
    /* Mobile User Dropdown */
    #userDropdown {
        width: 100%;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid var(--border-light);
    }
    
    #userDropdown > .dropdown-toggle {
        background-color: var(--bg-tertiary);
        color: var(--primary-color);
        font-weight: 600;
    }
    
    #userDropdown .dropdown-menu {
        background-color: transparent !important;
        max-height: 0 !important;
        overflow: hidden !important;
        padding: 0 !important;
        margin: 0 !important;
        opacity: 0 !important;
    }
    
    #userDropdown.show > .dropdown-menu {
        max-height: 800px !important;
        opacity: 1 !important;
        padding: 4px 0 !important;
        margin-top: 4px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
    }
    
    #userDropdown .dropdown-item {
        background-color: var(--bg-secondary) !important;
    }
    
    /* Active touch feedback */
    .nav-link:active,
    .dropdown-item:active,
    .btn:active {
        transform: scale(0.98);
    }
    
    /* Better spacing for language selector on mobile */
    .navbar-nav > li:has(.fa-globe) {
        margin-bottom: 8px;
    }
    
    /* Language dropdown items */
    .navbar-collapse .nav-item:has(.fa-globe) .dropdown-item {
        background-color: var(--bg-secondary) !important;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: 1px solid ;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 44px;
    gap: 0.5rem;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8125rem;
    min-height: 36px;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
    min-height: 52px;
}

/* Primary Button */
.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--text-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Outline Primary Button */
.btn-outline-primary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Secondary Button */
.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-white);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    border-color: var(--secondary-dark);
    color: var(--text-white);
}

/* Success Button */
.btn-success {
    background-color: var(--success-color);
    color: var(--text-white);
    border-color: var(--success-color);
}

.btn-success:hover {
    background-color: #16a34a;
    border-color: #16a34a;
    color: var(--text-white);
}

/* Card Components */
.card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-header {
    padding: var(--spacing-md);
    border-bottom: 1px solid var(--border-light);
    background-color: var(--bg-secondary);
}

.card-body {
    padding: var(--spacing-md);
}

.card-footer {
    padding: var(--spacing-md);
    border-top: 1px solid var(--border-light);
    background-color: var(--bg-secondary);
}

/* Hero Section */

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    padding: 4rem 0;
    overflow: hidden;
}
.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: white;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: white;
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* Package Cards */
.package-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    padding: var(--spacing-lg);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.package-level {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.level-1 {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.level-2 {
    background-color: #fef3c7;
    color: #d97706;
}

.level-3 {
    background-color: #fecaca;
    color: #dc2626;
}

.package-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.package-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.package-price {
    margin-bottom: var(--spacing-md);
}

.current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: var(--spacing-xs);
}

.discount-badge {
    display: inline-block;
    background-color: var(--success-color);
    color: var(--text-white);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: var(--spacing-xs);
}

.package-features {
    list-style: none;
    text-align: left;
    margin-bottom: var(--spacing-lg);
}

.package-features li {
    display: flex;
    align-items: center;
    padding: var(--spacing-xs) 0;
    color: var(--text-secondary);
}

.package-features li i {
    margin-right: var(--spacing-xs);
    width: 16px;
    color: var(--success-color);
}

.package-features li.not-included i {
    color: var(--error-color);
}

.package-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

/* Forms */
.form-group {
    margin-bottom: var(--spacing-md);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--text-primary);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--bg-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Alerts */
.alert {
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.alert-success {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
    color: #166534;
}

.alert-warning {
    background-color: #fffbeb;
    border-color: #fed7aa;
    color: #c2410c;
}

.alert-danger {
    background-color: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}

.alert-info {
    background-color: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

/* Modern Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
}

.toast {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    margin-bottom: var(--spacing-sm);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-md);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}

.toast-body {
    padding: var(--spacing-md);
}

.toast-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.toast-close:hover {
    color: var(--text-primary);
}

/* Loading Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-light);
    border-top: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Utilities */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.mb-4 { margin-bottom: var(--spacing-lg); }
.mb-5 { margin-bottom: var(--spacing-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mt-4 { margin-top: var(--spacing-lg); }
.mt-5 { margin-top: var(--spacing-xl); }

.p-0 { padding: 0; }
.p-1 { padding: var(--spacing-xs); }
.p-2 { padding: var(--spacing-sm); }
.p-3 { padding: var(--spacing-md); }
.p-4 { padding: var(--spacing-lg); }
.p-5 { padding: var(--spacing-xl); }

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col,
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6,
.col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
.col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-xl, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6,
.col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    position: relative;
    width: 100%;
    padding: 0 15px;
}

.col { flex: 1 0 0%; }
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

/* Layout Fixes */
body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.container {
    max-width: 100%;
    overflow-x: hidden;
}

.row {
    margin-left: -15px;
    margin-right: -15px;
}

.row > * {
    padding-left: 15px;
    padding-right: 15px;
}

/* Card Improvements */
.card {
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    margin-bottom: var(--spacing-md);
}

.card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.card-body {
    padding: var(--spacing-md);
}

/* Form Improvements */
.form-control {
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    padding: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--bg-primary);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(168, 85, 163, 0.1);
}

.form-control-lg {
    padding: 1rem;
    font-size: 1.125rem;
}

/* Responsive Design - Meet2Talk Style */
@media (max-width: 1400px) {
    .container {
        max-width: 1000px;
        padding: 0 20px;
    }
    
    .features-container {
        max-width: 900px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 900px;
        padding: 0 20px;
    }
    
    .features-container {
        max-width: 800px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: var(--spacing-md);
        max-width: 800px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 750px;
        padding: 0 20px;
    }
    
    .features-container {
        max-width: 700px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--spacing-md);
        max-width: 700px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-content {
        max-width: 600px;
    }
    
    .features-title {
        font-size: 2rem;
        max-width: 600px;
    }
    }
    






/* SweetAlert2 Custom Styles for Login Error */
.swal-popup-custom {
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    font-family: 'Inter', sans-serif !important;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9)) !important;
    backdrop-filter: blur(20px) !important;
}

.swal-title-custom {
    color: #dc3545 !important;
    font-weight: 700 !important;
    font-size: 1.75rem !important;
    margin-bottom: 1.5rem !important;
    text-align: center !important;
}

.swal-content-custom {
    color: #495057 !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
    text-align: center !important;
}

.swal-content-custom .alert {
    border-radius: 12px !important;
    border: none !important;
    background: linear-gradient(135deg, #fff3cd, #ffeaa7) !important;
    color: #856404 !important;
    font-size: 0.9rem !important;
    padding: 1rem !important;
    margin-top: 1rem !important;
    box-shadow: 0 2px 10px rgba(255, 193, 7, 0.2) !important;
}

.swal-content-custom .alert i {
    color: #f39c12 !important;
}

/* SweetAlert2 Custom Styles */
.swal-custom-popup {
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
    border: none !important;
    font-family: 'Inter', sans-serif !important;
}

.swal-custom-title {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    font-size: 1.5rem !important;
    margin-bottom: 1rem !important;
}

.swal-custom-content {
    color: var(--text-secondary) !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
}

.swal-custom-confirm {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light)) !important;
    border: none !important;
    border-radius: 12px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(168, 85, 163, 0.3) !important;
}

.swal-custom-confirm:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(168, 85, 163, 0.4) !important;
}

.swal-custom-cancel {
    background: transparent !important;
    border: 2px solid #6c757d !important;
    color: #6c757d !important;
    border-radius: 12px !important;
    padding: 12px 30px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
}

.swal-custom-cancel:hover {
    background: #6c757d !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

/* RTL Support for Arabic */
[dir="rtl"] {
    text-align: right;
}

[dir="rtl"] .navbar-nav {
    flex-direction: row-reverse;
}

/* RTL Mobile Menu Support */
@media (max-width: 991.98px) {
    [dir="rtl"] .navbar-collapse {
        right: auto;
        left: -100%;
    }
    
    [dir="rtl"] .navbar-collapse.show {
        left: 0;
        right: auto;
    }
    
    [dir="rtl"] .navbar-collapse {
        box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
    }
    
    [dir="rtl"] .nav-link:hover,
    [dir="rtl"] .dropdown-item:hover {
        transform: translateX(-4px);
    }
    
    [dir="rtl"] .nav-item.dropdown .dropdown-toggle {
        padding-right: 16px;
        padding-left: 40px;
    }
    
    [dir="rtl"] .nav-item.dropdown .dropdown-toggle::after {
        right: auto;
        left: 16px;
    }
    
    [dir="rtl"] .mobile-menu-close {
        right: auto;
        left: 24px;
    }
    
    /* RTL Menu Animation */
    [dir="rtl"] .navbar-collapse.show .nav-item {
        animation: slideInFromLeft 0.3s ease forwards;
    }
    
    @keyframes slideInFromLeft {
        from {
            opacity: 0;
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

[dir="rtl"] .dropdown-menu {
    right: auto !important;
    left: 0 !important;
}

[dir="rtl"] .dropdown-menu-end {
    right: 0 !important;
    left: auto !important;
}

/* Dropdown Menu Z-Index Fix - Main content üzerine çıkması için */
.dropdown-menu {
    z-index: 999999 !important;
    position: absolute !important;
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    min-width: 200px !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    /* Navbar'ın overflow'unu aşmak için */
    overflow: visible !important;
}

.dropdown-menu.show {
    z-index: 999999 !important;
    position: absolute !important;
    display: block !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    overflow: visible !important;
}

/* Navbar dropdown container için relative positioning */
.navbar .nav-item.dropdown {
    position: relative !important;
    overflow: visible !important;
}

/* Navbar'ın overflow'unu kaldır */
.navbar,
.navbar.navbar-expand-lg,
.navbar.navbar-light {
    overflow: visible !important;
}

/* Navbar container'ın overflow'unu kaldır */
.navbar .container {
    overflow: visible !important;
}

/* Navbar nav'in overflow'unu kaldır */
.navbar-nav {
    overflow: visible !important;
}

/* Dropdown menü navbar dışında açılması için */
.navbar .dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
    z-index: 999999 !important;
    transform: none !important;
    margin-top: 0 !important;
    overflow: visible !important;
}

/* Main content'in üzerine çıkması için ekstra z-index */
.navbar .dropdown-menu {
    z-index: 999999 !important;
    position: absolute !important;
}

/* Navbar'ın height'ını aşmak için */
.navbar {
    overflow: visible !important;
}

/* Navbar collapse'in overflow'unu kaldır - Sadece desktop için */
@media (min-width: 992px) {
    .navbar-collapse {
        overflow: visible !important;
    }
}

/* Navbar nav'in overflow'unu kaldır */
.navbar-nav {
    overflow: visible !important;
}

/* Navbar brand'in overflow'unu kaldır */
.navbar-brand {
    overflow: visible !important;
}

/* Main content'in z-index'ini düşük tut */
main {
    position: relative;
    z-index: 1;
}

/* Dropdown'ın main content'in üzerine çıkması için */
.navbar .dropdown-menu {
    z-index: 999999 !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: auto !important;
}

.dropdown-item {
    padding: 0.5rem 1rem !important;
    color: #374151 !important;
    text-decoration: none !important;
    display: block !important;
    width: 100% !important;
    clear: both !important;
    font-weight: 400 !important;
    text-align: inherit !important;
    white-space: nowrap !important;
    background-color: transparent !important;
    border: 0 !important;
    transition: all 0.3s ease !important;
}

.dropdown-item:hover,
.dropdown-item:focus {
    color: #1f2937 !important;
    background-color: #f3f4f6 !important;
    text-decoration: none !important;
}

.dropdown-item:active {
    color: white !important;
    background-color: var(--primary-color) !important;
    text-decoration: none !important;
}

.dropdown-divider {
    height: 0 !important;
    margin: 0.5rem 0 !important;
    overflow: hidden !important;
    border-top: 1px solid #e5e7eb !important;
}

[dir="rtl"] .me-auto {
    margin-left: auto !important;
    margin-right: 0 !important;
}

[dir="rtl"] .me-2 {
    margin-left: 0.5rem !important;
    margin-right: 0 !important;
}

[dir="rtl"] .me-3 {
    margin-left: 1rem !important;
    margin-right: 0 !important;
}

[dir="rtl"] .ms-2 {
    margin-right: 0.5rem !important;
    margin-left: 0 !important;
}

[dir="rtl"] .ms-3 {
    margin-right: 1rem !important;
    margin-left: 0 !important;
}

[dir="rtl"] .text-start {
    text-align: right !important;
}

[dir="rtl"] .text-end {
    text-align: left !important;
}

[dir="rtl"] .justify-content-start {
    justify-content: flex-end !important;
}

[dir="rtl"] .justify-content-end {
    justify-content: flex-start !important;
}

[dir="rtl"] .flex-row {
    flex-direction: row-reverse !important;
}

[dir="rtl"] .flex-row-reverse {
    flex-direction: row !important;
}

/* SweetAlert2 Icon Colors */
.swal2-icon.swal2-question {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.swal2-icon.swal2-success {
    border-color: #28a745 !important;
    color: #28a745 !important;
}

.swal2-icon.swal2-error {
    border-color: #dc3545 !important;
    color: #dc3545 !important;
}

.swal2-icon.swal2-warning {
    border-color: #ffc107 !important;
    color: #ffc107 !important;
}

.swal2-icon.swal2-info {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

/* Modern Button Responsive */
@media (max-width: 768px) {
    .btn-modern {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .btn-modern {
        padding: 8px 16px;
        font-size: 13px;
    }

}

/* Extra Mobile Menu Styles for Small Screens */
@media (max-width: 768px) {
    .navbar-collapse {
        width: 90%;
        max-width: 100%;
        padding: 70px 20px 24px;
    }
    
    .modern-hamburger {
        width: 44px;
        height: 44px;
    }
    
    .hamburger-line {
        width: 22px;
    }
    
    .mobile-menu-close {
        top: 20px;
        right: 20px;
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .navbar-nav > .nav-item > .nav-link {
        font-size: 14px;
        padding: 11px 14px;
    }
    
    .nav-item.dropdown .dropdown-toggle {
        padding-right: 38px !important;
    }
    
    .navbar-collapse .dropdown-item {
        font-size: 13px !important;
        padding: 9px 10px 9px 20px !important;
        margin: 2px 6px !important;
        min-height: 38px;
    }
    
    .navbar-nav .btn {
        padding: 12px;
        font-size: 15px;
    }
}

/* Very Small Screens */
@media (max-width: 480px) {
    .navbar-collapse {
        width: 100%;
        padding: 60px 16px 20px;
    }
    
    .mobile-menu-close {
        top: 16px;
        right: 16px;
    }
    
    .navbar-nav > .nav-item > .nav-link {
        font-size: 14px;
        padding: 10px 12px;
        min-height: 42px;
    }
    
    .nav-item.dropdown .dropdown-toggle {
        padding-right: 36px !important;
    }
    
    .navbar-collapse .dropdown-item {
        font-size: 13px !important;
        padding: 8px 10px 8px 18px !important;
        margin: 2px 4px !important;
        min-height: 36px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 110px; /* Navbar height on mobile */
    }
    
    .navbar,
    .navbar.navbar-expand-lg,
    .navbar.navbar-light {
        min-height: 130px !important;
        padding: 20px 0 !important;
    }
    
    .logo-container {
        height: 125px;
        max-height: 125px;
    }
    
    .logo-container img {
        max-height: 125px;
    }
    
    .navbar-brand {
        height: 125px;
        max-height: 125px;
    }
    
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .navbar .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-section .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .features-section .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .footer .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .features-container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        max-width: 100%;
    }
    
    .feature-card {
        padding: var(--spacing-md);
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .package-card {
        margin-bottom: var(--spacing-md);
    }
    
    .card-body {
        padding: var(--spacing-md);
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .btn-lg {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }
    
    .features-title {
        font-size: 1.75rem;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 100px; /* Smaller navbar height on small mobile */
    }
    
    .navbar,
    .navbar.navbar-expand-lg,
    .navbar.navbar-light {
        min-height: 100px !important;
        padding: 15px 0 !important;
    }
    
    .logo-container {
        height: 115px;
        max-height: 115px;
    }
    
    .logo-container img {
        max-height: 115px;
    }
    
    .navbar-brand {
        height: 115px;
        max-height: 115px;
        font-size: 1.25rem;
    }
    
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .navbar .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .hero-section .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .features-section .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .footer .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .features-container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
        max-width: 100%;
    }
    
    .feature-card {
        padding: var(--spacing-sm);
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    .feature-title {
        font-size: 1.25rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .card {
        margin-bottom: var(--spacing-sm);
    }
    
    .card-body {
        padding: var(--spacing-sm);
    }
    
    .row {
        margin-left: -10px;
        margin-right: -10px;
    }
    
    .row > * {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .navbar-brand .brand-text .fw-bold {
        font-size: 1rem;
    }
    
    .navbar-brand svg {
        width: 30px;
        height: 30px;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .features-title {
        font-size: 1.5rem;
        max-width: 100%;
    }
}

@media (min-width: 576px) {
    .col-sm { flex: 1 0 0%; }
    .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
    .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-sm-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
    .col-sm-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-sm-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
    .col-md { flex: 1 0 0%; }
    .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-md-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
    .col-lg { flex: 1 0 0%; }
    .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-lg-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 1200px) {
    .col-xl { flex: 1 0 0%; }
    .col-xl-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-xl-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-xl-3 { flex: 0 0 25%; max-width: 25%; }
    .col-xl-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-xl-5 { flex: 0 0 41.666667%; max-width: 41.666667%; }
    .col-xl-6 { flex: 0 0 50%; max-width: 50%; }
    .col-xl-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
    .col-xl-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-xl-9 { flex: 0 0 75%; max-width: 75%; }
    .col-xl-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-xl-11 { flex: 0 0 91.666667%; max-width: 91.666667%; }
    .col-xl-12 { flex: 0 0 100%; max-width: 100%; }
}

/* Modern Clean Footer */
.footer {
    background: #ffffff;
    border-top: 1px solid #e9ecef;
    padding: 3rem 0 0;
    margin-top: auto;
}

.footer .container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.footer .container > .footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Footer Content */
.footer-main {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

/* Brand Section */
.footer-brand {
    flex: 0 0 280px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
}

/* Social Media */
.social-media {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.social-icon.facebook { background: #1877f2; }
.social-icon.twitter { background: #000000; }
.social-icon.linkedin { background: #0077b5; }
.social-icon.instagram { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-icon.youtube { background: #ff0000; }

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Links Section */
.footer-links {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: #343a40;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
    width: fit-content;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-list a {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.footer-list a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #e9ecef;
    padding: 1.5rem 0;
    background: #f8f9fa;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.copyright {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.powered-by {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0;
}

.powered-by a {
    color: var(--primary-color);
    text-decoration: none;
    margin-left: 8px;
    display: inline-block;
    transition: all 0.3s ease;
}

.powered-by a:hover {
    color: #0077b5;
    transform: scale(1.2);
}

.powered-by a i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-main {
        gap: 3rem;
    }
    
    .footer-brand {
        flex: 0 0 250px;
    }
    
    .footer-links {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-brand {
        flex: none;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 0;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
    }
}

@media (max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-title {
        margin: 0 auto 1rem;
    }
    
    .social-media {
        justify-content: center;
    }
    
    .footer-bottom-content {
        padding: 0 15px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-medium);
    border-radius: var(--radius-md);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--border-dark);
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Force navbar to be fixed - Override Bootstrap */
body .navbar,
body .navbar.navbar-expand-lg,
body .navbar.navbar-light {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 10000 !important;
}

/* Register button visibility controlled by JavaScript */


/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    visibility: visible;
    transition: all 0.5s ease-out;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.loader-logo {
    width: 180px;
    height: 180px;
    margin-bottom: 30px;
    animation: logoFloat 2s ease-in-out infinite;
    background-image: url('../images/bookloader.gif');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.loader-text {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    animation: textFade 2s ease-in-out infinite;
}

.loader-progress {
    width: 200px;
    height: 4px;
    background-color: var(--border-light);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    width: 0%;
    animation: progressLoad 3s ease-out forwards;
}

/* Loader Animations */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes textFade {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes progressLoad {
    0% { width: 0%; }
    25% { width: 25%; }
    50% { width: 50%; }
    75% { width: 75%; }
    100% { width: 100%; }
}

/* Mobile Loader Adjustments */
@media (max-width: 768px) {
    .loader-logo {
        width: 270px;
        height: 270px;
        margin-bottom: 25px;
    }
    
    .loader-text {
        font-size: 1.1rem;
    }
    
    .loader-progress {
        width: 150px;
    }
}

@media (max-width: 576px) {
    .loader-logo {
        width: 220px;
        height: 220px;
        margin-bottom: 20px;
    }
    
    .loader-text {
        font-size: 1rem;
    }
    
    .loader-progress {
        width: 120px;
    }
}

/* Modern Button Styles */
.btn-modern {
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
}

.btn-primary-modern:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: white;
}

.btn-outline-modern {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-modern:hover {
    background: var(--primary-color);
    color: white;
}






.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--border-light);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
}

.step-number.active {
    background-color: var(--primary-color);
    color: white;
}

.step-number.completed {
    background-color: var(--success-color);
    color: white;
}

.step-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    max-width: 120px;
}

.step-label.active {
    color: var(--primary-color);
    font-weight: 600;
}

.step-connector {
    position: absolute;
    top: 25px;
    left: 25px;
    right: 25px;
    height: 2px;
    background-color: var(--border-light);
    z-index: 1;
}

.step-connector.active {
    background-color: var(--primary-color);
}



@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   COURSES PAGE STYLES
======================================== */

/* Courses Hero Section */

.courses-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    padding: 4rem 0;
    overflow: hidden;
}

.courses-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23a855a3" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%234a5d23" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: var(--spacing-xs) var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.stat-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c50da3;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: #b3b4b5;
    margin-top: 0.25rem;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.decoration-circle-1 {
    width: 200px;
    height: 200px;
    background: var(--primary-color);
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.decoration-circle-2 {
    width: 150px;
    height: 150px;
    background: var(--secondary-color);
    bottom: 20%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

.decoration-circle-3 {
    width: 100px;
    height: 100px;
    background: var(--accent-color);
    top: 50%;
    left: 20%;
    animation: float 10s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Course Discovery Section */
.course-discovery-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Search & Filters */
.search-filters-container {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
}

.search-bar-wrapper {
    margin-bottom: var(--spacing-lg);
}

.search-input-group {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-icon {
    position: absolute;
    left: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 1.125rem;
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-md) 3rem;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-primary);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(168, 85, 163, 0.1);
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 10;
    margin-top: 0.5rem;
}

.filters-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    align-items: end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.filter-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.filter-select {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    background: var(--bg-primary);
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(168, 85, 163, 0.1);
}

.filter-reset-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    background: transparent;
    border: 2px solid var(--border-medium);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    height: fit-content;
}

.filter-reset-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(168, 85, 163, 0.05);
}

.active-filters {
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--border-light);
}

.active-filters-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-right: var(--spacing-sm);
}

.active-filters-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-xs);
}

/* Courses Grid Section */
.courses-grid-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
}

.results-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-md);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.results-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.results-count {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

.results-text {
    font-size: 1rem;
    color: var(--text-secondary);
}

.view-toggle {
    display: flex;
    gap: var(--spacing-xs);
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-light);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover,
.view-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
}

.courses-container {
    position: relative;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

/* Modern Course Cards */
.course-card-wrapper {
    position: relative;
}

.modern-course-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.course-card-header {
    position: relative;
    overflow: hidden;
}

.course-image-container {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modern-course-card:hover .course-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-course-card:hover .image-overlay {
    opacity: 1;
}

.preview-btn {
    width: 60px;
    height: 60px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(0.8);
}

.modern-course-card:hover .preview-btn {
    transform: scale(1);
}

.preview-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.course-badges {
    position: absolute;
    top: var(--spacing-sm);
    left: var(--spacing-sm);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.level-badge,
.rating-badge,
.new-badge,
.bestseller-badge {
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
}

.level-beginner {
    background: rgba(34, 197, 94, 0.9);
    color: white;
}

.level-intermediate {
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

.level-advanced {
    background: rgba(239, 68, 68, 0.9);
    color: white;
}

.rating-badge {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.new-badge {
    background: rgba(168, 85, 163, 0.9);
    color: white;
}

.bestseller-badge {
    background: rgba(245, 158, 11, 0.9);
    color: white;
}

.wishlist-btn {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.wishlist-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.wishlist-btn.active {
    background: var(--primary-color);
    color: white;
}

.course-card-content {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.course-info {
    flex: 1;
}

.course-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: var(--spacing-xs);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-description {
    color: var(--text-secondary);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-meta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.instructor-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.instructor-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.instructor-details {
    display: flex;
    flex-direction: column;
}

.instructor-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1;
}

.instructor-title {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1;
}

.course-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.stat-item i {
    font-size: 0.875rem;
    color: var(--primary-color);
}

.progress-section {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: var(--spacing-sm);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xs);
}

.progress-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
}

.progress-percentage {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color);
}

.progress-bar {
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.course-features {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
}

.feature-item i {
    font-size: 1rem;
    color: var(--primary-color);
}

.course-card-footer {
    padding: var(--spacing-lg);
    border-top: 1px solid var(--border-light);
    background: var(--bg-secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
}

.price-section {
    display: flex;
    flex-direction: column;
}

.price-free {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--success-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 0.25rem;
}

.discount-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--success-color);
    background: rgba(34, 197, 94, 0.1);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-sm);
}

.action-buttons {
    display: flex;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.btn-outline,
.btn-primary {
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    white-space: nowrap;
}

.btn-outline {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Success Button for Cart Actions */
.btn-success {
    background: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.btn-success:hover {
    background: #16a34a;
    border-color: #16a34a;
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Info Button for Cart Actions */
.btn-info {
    background: var(--info-color);
    border-color: var(--info-color);
    color: white;
}

.btn-info:hover {
    background: #2563eb;
    border-color: #2563eb;
    color: white;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Cart Button Specific Styles */
.btn-add-to-cart {
    position: relative;
    overflow: hidden;
}

.btn-add-to-cart:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-add-to-cart .fa-spinner {
    animation: spin 1s linear infinite;
}

/* Loading & Empty States */
.loading-state,
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl);
    text-align: center;
}

.loading-spinner {
    margin-bottom: var(--spacing-md);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-light);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-title,
.empty-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.loading-text,
.empty-text {
    color: var(--text-secondary);
    max-width: 400px;
    margin-bottom: var(--spacing-lg);
}

.empty-icon {
    width: 80px;
    height: 80px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.empty-icon i {
    font-size: 2rem;
    color: var(--text-muted);
}

/* Load More Section */
.load-more-section {
    text-align: center;
    margin-top: var(--spacing-2xl);
}

.load-more-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: var(--spacing-md) var(--spacing-xl);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.load-more-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.btn-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.load-more-info {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: var(--spacing-sm);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: var(--spacing-lg);
    }
}

@media (max-width: 768px) {
    .courses-hero-section {
        padding: var(--spacing-xl) 0;
        min-height: 50vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-sm);
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-xs);
        padding: var(--spacing-sm);
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        padding: 0 var(--spacing-md);
    }
    
    .search-filters-container {
        padding: var(--spacing-md);
        margin: 0 var(--spacing-sm);
    }
    
    .search-input {
        font-size: 1rem;
        padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-sm) 2.5rem;
    }
    
    .search-icon {
        left: var(--spacing-sm);
        font-size: 1rem;
    }
    
    .filters-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }
    
    .filter-select {
        padding: var(--spacing-sm);
        font-size: 0.875rem;
    }
    
    .filter-reset-btn {
        padding: var(--spacing-sm);
        font-size: 0.875rem;
        width: 100%;
        justify-content: center;
    }
    
    .results-summary {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
        margin: 0 var(--spacing-sm);
        padding: var(--spacing-sm);
    }
    
    .view-toggle {
        justify-content: center;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        padding: 0 var(--spacing-sm);
    }
    
    /* Modern Course Card Mobile Optimizations */
    .modern-course-card {
        margin-bottom: var(--spacing-md);
        box-shadow: var(--shadow-md);
    }
    
    .course-image-container {
        aspect-ratio: 16/10;
    }
    
    .course-badges {
        top: var(--spacing-xs);
        left: var(--spacing-xs);
        gap: 0.25rem;
    }
    
    .level-badge,
    .rating-badge,
    .new-badge,
    .bestseller-badge {
        padding: 0.125rem 0.375rem;
        font-size: 0.625rem;
    }
    
    .wishlist-btn {
        top: var(--spacing-xs);
        right: var(--spacing-xs);
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }
    
    .course-card-content {
        padding: var(--spacing-md);
    }
    
    .course-title {
        font-size: 1.125rem;
        line-height: 1.4;
    }
    
    .course-description {
        font-size: 0.875rem;
        -webkit-line-clamp: 2;
    }
    
    .course-stats {
        flex-direction: column;
        gap: var(--spacing-xs);
        align-items: flex-start;
    }
    
    .stat-item {
        font-size: 0.75rem;
    }
    
    .instructor-info {
        flex-direction: row;
        gap: var(--spacing-xs);
    }
    
    .instructor-avatar {
        width: 28px;
        height: 28px;
    }
    
    .instructor-name {
        font-size: 0.75rem;
    }
    
    .instructor-title {
        font-size: 0.625rem;
    }
    
    .course-features {
        flex-direction: row;
        justify-content: space-around;
        gap: var(--spacing-xs);
    }
    
    .feature-item {
        font-size: 0.625rem;
    }
    
    .feature-item i {
        font-size: 0.875rem;
    }
    
    .course-card-footer {
        flex-direction: column;
        align-items: stretch;
        gap: var(--spacing-sm);
        padding: var(--spacing-md);
    }
    
    .price-section {
        text-align: center;
    }
    
    .current-price {
        font-size: 1.125rem;
    }
    
    .price-free {
        font-size: 1rem;
    }
    
    .action-buttons {
        flex-direction: row;
        justify-content: space-between;
        gap: var(--spacing-xs);
    }
    
    .btn-outline,
    .btn-primary {
        flex: 1;
        padding: var(--spacing-sm);
        font-size: 0.75rem;
        min-height: 40px;
        justify-content: center;
    }
    
    /* Loading and Empty States Mobile */
    .loading-state,
    .empty-state {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .loading-title,
    .empty-title {
        font-size: 1.25rem;
    }
    
    .loading-text,
    .empty-text {
        font-size: 0.875rem;
    }
    
    .empty-icon {
        width: 60px;
        height: 60px;
    }
    
    .empty-icon i {
        font-size: 1.5rem;
    }
    
    /* Load More Section Mobile */
    .load-more-section {
        margin-top: var(--spacing-xl);
        padding: 0 var(--spacing-md);
    }
    
    .load-more-btn {
        width: 100%;
        padding: var(--spacing-md);
        font-size: 0.875rem;
    }
    
    .load-more-info {
        font-size: 0.75rem;
    }
    
    .decoration-circle-1,
    .decoration-circle-2,
    .decoration-circle-3 {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 var(--spacing-sm);
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-xs);
    }
    
    .stat-card {
        padding: var(--spacing-sm);
        flex-direction: row;
        text-align: left;
        justify-content: flex-start;
    }
    
    .stat-icon {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
        flex-shrink: 0;
    }
    
    .stat-content {
        flex: 1;
    }
    
    .stat-number {
        font-size: 1.125rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding: 0 var(--spacing-sm);
    }
    
    .section-subtitle {
        font-size: 0.875rem;
        padding: 0 var(--spacing-sm);
    }
    
    .search-filters-container {
        margin: 0;
        border-radius: var(--radius-md);
    }
    
    .search-input {
        padding: var(--spacing-sm) var(--spacing-sm) var(--spacing-sm) 2.25rem;
        font-size: 0.875rem;
    }
    
    .search-icon {
        left: var(--spacing-xs);
        font-size: 0.875rem;
    }
    
    .filter-label {
        font-size: 0.75rem;
    }
    
    .filter-select {
        font-size: 0.75rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .filter-reset-btn {
        font-size: 0.75rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }
    
    .results-summary {
        margin: 0;
        border-radius: var(--radius-md);
    }
    
    .results-count {
        font-size: 1rem;
    }
    
    .results-text {
        font-size: 0.875rem;
    }
    
    .view-btn {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .courses-grid {
        padding: 0;
        gap: var(--spacing-sm);
    }
    
    /* Ultra Mobile Course Card Optimizations */
    .modern-course-card {
        margin-bottom: var(--spacing-sm);
        border-radius: var(--radius-md);
    }
    
    .course-image-container {
        aspect-ratio: 16/9;
    }
    
    .course-badges {
        gap: 0.125rem;
    }
    
    .level-badge,
    .rating-badge,
    .new-badge,
    .bestseller-badge {
        padding: 0.125rem 0.25rem;
        font-size: 0.5rem;
        letter-spacing: 0.25px;
    }
    
    .wishlist-btn {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }
    
    .course-card-content {
        padding: var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    .course-title {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 0.25rem;
    }
    
    .course-description {
        font-size: 0.75rem;
        line-height: 1.4;
        -webkit-line-clamp: 2;
    }
    
    .course-meta {
        gap: var(--spacing-xs);
    }
    
    .course-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
        justify-content: space-between;
    }
    
    .stat-item {
        font-size: 0.625rem;
        flex: 1;
        min-width: fit-content;
    }
    
    .stat-item i {
        font-size: 0.75rem;
    }
    
    .instructor-info {
        gap: var(--spacing-xs);
    }
    
    .instructor-avatar {
        width: 24px;
        height: 24px;
    }
    
    .instructor-name {
        font-size: 0.75rem;
        line-height: 1;
    }
    
    .instructor-title {
        font-size: 0.625rem;
        line-height: 1;
    }
    
    .course-features {
        justify-content: space-between;
        gap: var(--spacing-xs);
    }
    
    .feature-item {
        font-size: 0.5rem;
        text-align: center;
        flex: 1;
    }
    
    .feature-item i {
        font-size: 0.75rem;
        margin-bottom: 0.125rem;
    }
    
    .course-card-footer {
        padding: var(--spacing-sm);
        gap: var(--spacing-xs);
    }
    
    .price-section {
        margin-bottom: var(--spacing-xs);
    }
    
    .current-price {
        font-size: 1rem;
    }
    
    .original-price {
        font-size: 0.75rem;
    }
    
    .discount-badge {
        font-size: 0.625rem;
        padding: 0.125rem 0.375rem;
    }
    
    .price-free {
        font-size: 0.875rem;
    }
    
    .action-buttons {
        gap: 0.5rem;
    }
    
    .btn-outline,
    .btn-primary {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.75rem;
        min-height: 36px;
        border-radius: var(--radius-sm);
    }
    
    /* Ultra Mobile Loading and Empty States */
    .loading-state,
    .empty-state {
        padding: var(--spacing-lg) var(--spacing-sm);
    }
    
    .loading-title,
    .empty-title {
        font-size: 1.125rem;
    }
    
    .loading-text,
    .empty-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    
    .empty-icon {
        width: 48px;
        height: 48px;
        margin-bottom: var(--spacing-sm);
    }
    
    .empty-icon i {
        font-size: 1.25rem;
    }
    
    /* Ultra Mobile Load More */
    .load-more-section {
        padding: 0 var(--spacing-sm);
        margin-top: var(--spacing-lg);
    }
    
    .load-more-btn {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.75rem;
        min-height: 44px;
    }
    
    .load-more-info {
        font-size: 0.625rem;
        margin-top: var(--spacing-xs);
    }
    
    /* Hero Badge Mobile */
    .hero-badge {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 0.75rem;
        margin-bottom: var(--spacing-sm);
    }
    
    /* Container adjustments for ultra mobile */
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .courses-grid-section .container {
        padding: 0;
    }
    
    .course-discovery-section .container {
        padding: 0 var(--spacing-sm);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   SWEETALERT CUSTOM STYLES
======================================== */

.swal-custom-popup {
    border-radius: var(--radius-xl) !important;
    box-shadow: var(--shadow-xl) !important;
    border: 1px solid var(--border-light) !important;
}

.swal-custom-title {
    color: var(--text-primary) !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 600 !important;
    font-size: 1.5rem !important;
}

.swal-custom-content {
    color: var(--text-secondary) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 1rem !important;
    line-height: 1.6 !important;
}

.swal2-confirm {
    background: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    border-radius: var(--radius-md) !important;
    font-weight: 500 !important;
    padding: var(--spacing-sm) var(--spacing-lg) !important;
    font-size: 0.875rem !important;
    transition: all 0.3s ease !important;
}

.swal2-confirm:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-1px) !important;
    box-shadow: var(--shadow-md) !important;
}

.swal2-cancel {
    background: transparent !important;
    border: 2px solid var(--border-medium) !important;
    color: var(--text-secondary) !important;
    border-radius: var(--radius-md) !important;
    font-weight: 500 !important;
    padding: var(--spacing-sm) var(--spacing-lg) !important;
    font-size: 0.875rem !important;
    transition: all 0.3s ease !important;
}

.swal2-cancel:hover {
    background: var(--bg-secondary) !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.swal2-icon.swal2-warning {
    border-color: var(--warning-color) !important;
    color: var(--warning-color) !important;
}

.swal2-icon.swal2-error {
    border-color: var(--error-color) !important;
    color: var(--error-color) !important;
}

.swal2-icon.swal2-success {
    border-color: var(--success-color) !important;
    color: var(--success-color) !important;
}

.swal2-icon.swal2-info {
    border-color: var(--info-color) !important;
    color: var(--info-color) !important;
}

/* ========================================
   CART PAGE STYLES
======================================== */

/* Cart Hero Section */

.cart-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    padding: 4rem 0;
    overflow: hidden;
}
.cart-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cart-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23a855a3" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%234a5d23" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23cart-grain)"/></svg>');
    pointer-events: none;
}

.cart-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--spacing-xl);
    gap: var(--spacing-md);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}


.step-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
}

.progress-step.active .step-label {
    color: white;
    font-weight: 600;
}

.progress-connector {
    width: 60px;
    height: 2px;
    background: var(--border-light);
    margin: 0 var(--spacing-sm);
}

.progress-step.active + .progress-connector {
    background: var(--primary-color);
}

/* Cart Content Section */
.cart-content-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--spacing-xl);
    align-items: start;
}

.cart-items-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.cart-summary-section {
    position: relative;
}

.summary-sticky {
    position: sticky;
    top: 120px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-lg);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    margin: 0;
}

.items-count {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
}

.count-number {
    font-weight: 700;
}

/* Cart Items Container */
.cart-items-container {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.cart-item {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item:hover {
    background: var(--bg-secondary);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-sm);
}

.cart-item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.cart-item-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-xs);
}

.cart-item-badge {
    padding: 0.25rem 0.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
}

.cart-item-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.cart-item-description {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.4;
    margin: 0;
}

.cart-item-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.75rem;
    color: var(--text-muted);
}

.cart-item-price {
    text-align: center;
    padding: var(--spacing-sm);
}

.price-display {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    align-items: center;
}

.remove-btn {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid var(--error-color);
    color: var(--error-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
}

.remove-btn:hover {
    background: var(--error-color);
    color: white;
    transform: scale(1.1);
}

/* Cart Summary Container */
.cart-summary-container {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-xl);
}

.summary-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: white;
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.summary-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.summary-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.summary-subtitle {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
}

.summary-row.total {
    padding-top: var(--spacing-sm);
    border-top: 2px solid var(--border-light);
    margin-top: var(--spacing-sm);
}

.summary-label {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.summary-value {
    font-weight: 600;
    color: var(--text-primary);
}

.summary-row.total .summary-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.summary-row.total .summary-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.summary-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.checkout-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    box-shadow: var(--shadow-sm);
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.clear-cart-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--border-medium);
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-lg);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
}

.clear-cart-btn:hover {
    border-color: var(--error-color);
    color: var(--error-color);
    background: rgba(239, 68, 68, 0.05);
}

/* Empty Cart State */
.empty-cart-state {
    padding: var(--spacing-2xl) 0;
}

.empty-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.empty-icon {
    width: 120px;
    height: 120px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xl);
    color: var(--text-muted);
    font-size: 3rem;
}

.empty-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.empty-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

.empty-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-2xl);
}

.suggestions-section {
    margin-top: var(--spacing-2xl);
}

.suggestions-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

/* Continue Shopping Section */
.continue-shopping-section {
    margin-top: var(--spacing-2xl);
}

.continue-shopping-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    padding: var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.continue-shopping-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.card-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.card-text {
    flex: 1;
}



.card-description {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* Loading States */
.loading-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-2xl);
    text-align: center;
}

.loading-spinner {
    margin-bottom: var(--spacing-md);
}

.loading-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.loading-text {
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cart-layout {
        grid-template-columns: 1fr 350px;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 992px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .summary-sticky {
        position: static;
    }
    
    .cart-progress {
        gap: var(--spacing-sm);
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .progress-connector {
        width: 40px;
    }
}

@media (max-width: 768px) {
    .cart-hero-section {
        padding: var(--spacing-xl) 0;
        min-height: 40vh;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cart-progress {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .progress-connector {
        width: 2px;
        height: 30px;
        margin: var(--spacing-xs) 0;
    }
    
    .section-header {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
    
    .cart-item {
        padding: var(--spacing-md);
    }
    
    .continue-shopping-card {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
    }
    
    .empty-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .suggestions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .empty-title {
        font-size: 1.5rem;
    }
    
    .empty-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ========================================
   PACKAGES PAGE STYLES
======================================== */

/* Packages Hero Section */
.packages-hero-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.packages-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="packages-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23b8860b" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%234a5d23" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23packages-grain)"/></svg>');
    pointer-events: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.benefit-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-light);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.benefit-text {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
    font-size: 0.875rem;
}

/* Packages Hero Responsive */
@media (max-width: 768px) {
    .packages-hero-section {
        padding: var(--spacing-xl) 0;
        min-height: 50vh;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .benefit-card {
        padding: var(--spacing-md);
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        gap: var(--spacing-sm);
    }
    
    .benefit-card {
        padding: var(--spacing-sm);
    }
    
    .benefit-title {
        font-size: 1rem;
    }
    
    .benefit-text {
        font-size: 0.75rem;
    }
}

/* ========================================
   PAYMENT PAGE STYLES
======================================== */

/* Payment Hero Section */
.payment-hero-section {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    padding: 4rem 0;
    overflow: hidden;
}
.payment-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="payment-grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2322c55e" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23a855a3" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23payment-grain)"/></svg>');
    pointer-events: none;
}

.payment-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--spacing-xl);
    gap: var(--spacing-md);
}

.payment-progress .progress-step.completed .step-icon {
    background: var(--success-color);
    border-color: var(--success-color);
    color: white;
}

.payment-progress .progress-step.completed .step-label {
    color: var(--success-color);
    font-weight: 600;
}

.payment-progress .progress-connector.completed {
    background: var(--success-color);
}

/* Payment Content Section */
.payment-content-section {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
}

.payment-layout {
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: var(--spacing-xl);
    align-items: start;
}

.payment-form-section {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.payment-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    position: sticky;
    top: 120px;
}

.security-badge {
    display: flex;
    align-items: center;
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--success-color);
    color: white;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Payment Form Container */
.payment-form-container {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    padding: var(--spacing-xl);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.form-input {
    width: 100%;
    padding: var(--spacing-md);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-primary);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(168, 85, 163, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

/* Payment Methods */
.payment-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.payment-method-card {
    position: relative;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    overflow: hidden;
}

.payment-method-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.payment-method-card.selected {
    border-color: var(--primary-color);
    background: rgba(168, 85, 163, 0.05);
}

.payment-method-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-method-label {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg);
    cursor: pointer;
    width: 100%;
    margin: 0;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.payment-method-card.selected .method-icon {
    background: var(--primary-color);
    color: white;
}

.method-content {
    flex: 1;
}

.method-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.method-description {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Checkbox Container */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.checkbox-container input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-medium);
    border-radius: var(--radius-sm);
    appearance: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-container input[type="checkbox"]:checked {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-container input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
    margin: 0;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

/* Payment Sidebar Cards */
.bank-info-card,
.order-summary-card,
.security-info-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.card-header {
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-secondary);
}

.card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.card-content {
    padding: var(--spacing-lg);
}

/* Bank Details */
.bank-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.bank-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
}

.bank-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.bank-value {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
}

.copy-info {
    margin-top: var(--spacing-md);
    text-align: center;
}

.copy-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: var(--spacing-sm) var(--spacing-lg);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-btn:hover {
    background: var(--secondary-dark);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Order Items */
.order-items {
    margin-bottom: var(--spacing-lg);
}

.items-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.items-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm);
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
}

.item-info {
    flex: 1;
}

.item-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.item-type {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.item-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Price Breakdown */
.price-breakdown {
    border-top: 1px solid var(--border-light);
    padding-top: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-xs) 0;
}

.price-row.total-row {
    border-top: 1px solid var(--border-light);
    padding-top: var(--spacing-sm);
    margin-top: var(--spacing-sm);
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.price-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.total-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Payment Summary */
.payment-summary {
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
}

.summary-info {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-xs);
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* Security Features */
.security-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.security-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .payment-layout {
        grid-template-columns: 1fr 400px;
        gap: var(--spacing-lg);
    }
}

@media (max-width: 992px) {
    .payment-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .payment-sidebar {
        position: static;
    }
    
    .payment-progress {
        gap: var(--spacing-sm);
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .progress-connector {
        width: 40px;
    }
}

@media (max-width: 768px) {
    .payment-hero-section {
        padding: var(--spacing-xl) 0;
        min-height: 40vh;
    }
    
    .payment-progress {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .progress-connector {
        width: 2px;
        height: 30px;
        margin: var(--spacing-xs) 0;
    }
    
    .payment-methods-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .payment-form-container {
        padding: var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .payment-method-label {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-sm);
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .bank-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .bank-value {
        text-align: left;
        font-size: 0.75rem;
    }
}

.step-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.step-description {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.option-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.option-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 15px;
    padding: var(--spacing-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.option-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(0, 123, 255, 0.1) 100%);
}

.option-card.selected::before {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.option-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.option-icon i {
    font-size: 1.5rem;
    color: white;
}

.option-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.option-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

.option-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.option-features li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.option-features li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 8px;
}





.package-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.summary-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-light);
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.summary-label {
    color: var(--text-secondary);
}

.summary-value {
    color: var(--text-primary);
    font-weight: 500;
}

/* Profile Menu Fix */
.list-group-item.active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
}

.list-group-item.active:hover {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

.list-group-item:not(.active) {
    background-color: white !important;
    border-color: var(--border-light) !important;
    color: var(--text-primary) !important;
}

.list-group-item:not(.active):hover {
    background-color: var(--bg-light) !important;
    color: var(--primary-color) !important;
}

/* Feature Cards Section - Centered Layout */
.features-section {
    padding: var(--spacing-2xl) 0;
    background-color: var(--bg-primary);
}

.features-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.features-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xl);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    padding: var(--spacing-xl);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* ========================================
   PACKAGES LEVEL GROUPS STYLES
======================================== */

/* Package Description */
.package-description {
    margin: var(--spacing-xl) 0;
    text-align: center;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

/* Level Groups */
.level-groups {
    margin: var(--spacing-2xl) 0;
}

.start-point, .end-point {
    text-align: center;
    margin: var(--spacing-lg) 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--success-color);
}

.level-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    margin: var(--spacing-xl) 0;
}

.level-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    padding: var(--spacing-xl);
    width: 100%;
    max-width: 600px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.level-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--border-light);
}

.level-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.level-duration {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
}

.level-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.level-details p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.level-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin: var(--spacing-sm) 0;
}

/* Hero Subtitle 2 */
.hero-subtitle-2 {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .level-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-sm);
    }
    
    .level-duration {
        align-self: flex-end;
    }
    
    .level-card {
        padding: var(--spacing-lg);
    }
    
    .description-text {
        font-size: 1rem;
        padding: 0 var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .level-card {
        padding: var(--spacing-md);
    }
    
    .level-header h3 {
        font-size: 1.2rem;
    }
    
    .level-details p {
        font-size: 0.9rem;
    }
}



/* Card Hover Effects */
.education-card,
.level-card,
.duration-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.education-card:hover,
.level-card:hover,
.duration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: var(--primary-light);
}

.education-card.selected,
.level-card.selected,
.duration-card.selected {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(168, 85, 163, 0.25);
    transform: translateY(-3px);
}

/* Summary Features */
.summary-features ul {
    list-style: none;
    padding: 1rem;
    background: var(--bg-tertiary);
    border-radius: var(--radius-md);
    margin: 1rem 0;
}

.summary-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-primary);
}

.summary-features li:last-child {
    border-bottom: none;
}

.summary-features li i {
    color: var(--success-color);
    margin-right: 0.5rem;
}





/* Modern Duration Cards */
.duration-cards-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.duration-card-modern {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 3px solid var(--border-light);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.duration-card-modern.featured {
    border-color: var(--accent-color);
    position: relative;
}

.duration-card-modern.featured::before {
    content: 'Popüler';
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    color: var(--text-white);
    padding: 8px 20px;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.duration-card-modern:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.duration-card-modern.selected {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.4rem rgba(168, 85, 163, 0.2);
    transform: translateY(-6px) scale(1.02);
}

.duration-header-modern {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.duration-name-modern {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.duration-program-modern {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.duration-price-modern {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.duration-features-modern {
    padding: 0 2rem 2rem;
}

.duration-features-modern ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.duration-features-modern li {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.duration-features-modern li i {
    color: var(--success-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Modern Package Summary */
.package-summary-modern {
    max-width: 600px;
    margin: 0 auto;
}

.summary-card-modern {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 3px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.summary-header-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    padding: 2rem;
    text-align: center;
}

.summary-header-modern h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.summary-price-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
}

.summary-details-modern {
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.detail-item-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.detail-item-modern:last-child {
    border-bottom: none;
}

.detail-label-modern {
    font-weight: 600;
    color: var(--text-primary);
}

.detail-value-modern {
    font-weight: 700;
    color: var(--primary-color);
}

.summary-features-modern {
    padding: 0 2rem;
    margin-bottom: 2rem;
}

.summary-features-modern ul {
    list-style: none;
    padding: 1.5rem;
    margin: 0;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
}

.summary-features-modern li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
}

.summary-features-modern li:last-child {
    border-bottom: none;
}

.summary-features-modern li i {
    color: var(--success-color);
    margin-right: 0.75rem;
    font-size: 1.2rem;
}


.btn-prev-modern,
.btn-next-modern,
.btn-add-to-cart-modern {
    padding: 1rem 2.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-prev-modern {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 2px solid var(--border-medium);
}

.btn-prev-modern:hover {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

.btn-next-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
}

.btn-next-modern:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-add-to-cart-modern {
    background: linear-gradient(135deg, var(--success-color) 0%, #16a34a 100%);
    color: var(--text-white);
    box-shadow: var(--shadow-md);
    width: 100%;
    justify-content: center;
    margin: 2rem;
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
}

.btn-add-to-cart-modern:hover {
    background: linear-gradient(135deg, #16a34a 0%, var(--success-color) 100%);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Custom Button Styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    border-radius: var(--radius-md);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-success {
    background: linear-gradient(135deg, var(--success-color) 0%, #16a34a 100%);
    border: none;
    border-radius: var(--radius-md);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-success:hover {
    background: linear-gradient(135deg, #16a34a 0%, var(--success-color) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-secondary {
    border: 2px solid var(--border-medium);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--text-secondary);
    color: var(--text-primary);
    transform: translateY(-2px);
}


@media (max-width: 768px) {
    .packages-hero-modern {
        padding: 80px 0 60px;
    }
    
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .hero-description-modern {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    
    
    .progress-step-modern {
        flex-direction: row;
        max-width: 100%;
        padding: 1rem;
        background: var(--bg-tertiary);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-light);
    }
    
    .step-number-modern {
        margin-bottom: 0;
        margin-right: 1rem;
        width: 50px;
        height: 50px;
    }
    
    .step-title-modern,
    .step-description-modern {
        text-align: left;
    }
    
    .step-title-modern {
        font-size: 1rem;
    }
    
    .step-description-modern {
        font-size: 0.85rem;
    }
    
    .step-title-modern {
        font-size: 2rem;
    }
    
    .step-description-modern {
        font-size: 1rem;
    }
    
    .education-type-cards-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .level-cards-modern {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
    
    .level-card-modern {
        padding: 1.5rem;
    }
    
    .duration-cards-modern {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .summary-details-modern {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }
    
    
    
    .btn-prev-modern,
    .btn-next-modern {
        width: 100%;
        justify-content: center;
    }
    
    .btn-add-to-cart-modern {
        margin: 1rem;
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title-modern {
        font-size: 2rem;
    }
    
    .hero-badge-modern {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
 
    .step-title-modern {
        font-size: 1.8rem;
    }
    
    .step-description-modern {
        font-size: 0.95rem;
    }
    
    .card-header-modern {
        padding: 1.5rem 1.5rem 0.5rem;
    }
    
    .card-body-modern {
        padding: 0.5rem 1.5rem 1.5rem;
    }
    
    .card-icon-modern {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .card-title-modern {
        font-size: 1.3rem;
    }
    
    .level-cards-modern {
        grid-template-columns: 1fr;
    }
    
    .level-card-modern {
        padding: 1.25rem;
    }
    
    .level-header-modern h3 {
        font-size: 1.5rem;
    }
    
    .summary-price-modern {
        font-size: 2rem;
    }
    
    .btn-add-to-cart-modern {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}


/* Education Type Cards */
.education-type-cards-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-top: 32px;
}

.education-card-modern {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.education-card-modern:hover {
    border-color: #667eea;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
}

.education-card-modern.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.card-header-modern {
    position: relative;
    padding: 32px 32px 0;
}

.card-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.education-card-modern:hover .card-icon-modern {
    transform: scale(1.1);
}

.card-icon-modern i {
    font-size: 2rem;
    color: white;
}

.card-badge-modern {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #10b981;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-badge-modern.premium {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.card-body-modern {
    padding: 0 32px 24px;
}

.card-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.card-description-modern {
    color: #64748b;
    margin-bottom: 24px;
    line-height: 1.6;
}

.card-features-modern {
    margin-bottom: 24px;
}

.feature-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #475569;
}

.feature-modern i {
    color: #10b981;
    font-size: 1rem;
}

.card-footer-modern {
    padding: 24px 32px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-top: 1px solid #e2e8f0;
}

.card-price-modern {
    font-size: 1.1rem;
    font-weight: 600;
    color: #667eea;
    text-align: center;
}

.education-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.education-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.education-card.selected {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    transition: all 0.3s ease;
}

.education-card.selected .card-icon {
    background: var(--primary-color);
    color: white;
}

.card-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.education-card.selected .card-icon i {
    color: white;
}

.education-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.education-card p {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.card-features {
    text-align: left;
}

.feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature i {
    color: var(--success-color);
    font-size: 1rem;
}

/* Level Cards */
.level-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.level-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.level-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.level-card.selected {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.level-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.level-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.level-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 500;
}

.level-description p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Duration Cards */
.duration-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.duration-card {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.duration-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.duration-card.selected {
    border-color: var(--primary-color);
    background: var(--primary-light);
}

.duration-card.featured {
    border-color: var(--success-color);
    background: var(--success-light);
}

.duration-card.featured::before {
    content: 'Popüler';
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
}

.duration-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.duration-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.duration-features {
    text-align: left;
}

.duration-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xs);
    padding-left: var(--spacing-sm);
}

/* Package Summary */
.package-summary {
    max-width: 600px;
    margin: 0 auto;
}

.summary-card {
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    text-align: center;
}

.summary-header {
    margin-bottom: var(--spacing-xl);
}

.summary-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.summary-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.summary-details {
    margin-bottom: var(--spacing-xl);
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--border-light);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: var(--text-secondary);
}

.detail-value {
    font-weight: 600;
    color: var(--text-primary);
}

.summary-features {
    margin-bottom: var(--spacing-xl);
}

.summary-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-features li {
    padding: var(--spacing-xs) 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: var(--spacing-lg);
}

.summary-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.add-to-cart-btn {
    width: 100%;
    padding: var(--spacing-lg);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}



/* ========================================
   PACKAGE CARDS STYLES
======================================== */

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}


.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Package Categories */
.package-category {
    margin-bottom: var(--spacing-3xl);
}

.category-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

.category-description {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

/* Package Cards */
.package-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    padding: var(--spacing-xl);
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.package-card.featured {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.package-card.featured::before {
    background: linear-gradient(90deg, var(--success-color), var(--primary-color));
}

/* Package Badge */
.package-badge {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--success-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

/* Package Header */
.package-header {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.package-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Package Program (for individual packages) */
.package-program {
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.package-program p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.package-program p:not(:last-child) {
    margin-bottom: var(--spacing-xs);
}

/* Package Features */
.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-lg) 0;
}

.package-features li {
    padding: var(--spacing-xs) 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: var(--spacing-lg);
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Package Button */
.package-btn {
    width: 100%;
    padding: var(--spacing-md);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.package-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Individual Features */
.individual-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.feature-item i {
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background: var(--bg-light);
    border-radius: var(--radius-xl);
}

.cta-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .package-card {
        padding: var(--spacing-lg);
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .individual-features {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .feature-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .package-card {
        padding: var(--spacing-md);
    }
    
    .package-name {
        font-size: 1.1rem;
    }
    
    .package-price {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   PACKAGES WIZARD STYLES - Professional Design
======================================== */

/* Wizard Container */
.wizard-container {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.98) 100%);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
}

.wizard-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(168, 85, 163, 0.3) 50%, transparent 100%);
}

/* Wizard Progress */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(248,250,252,0.8) 0%, rgba(241,245,249,0.9) 100%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.wizard-progress::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 3px;
    background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e0 50%, #e2e8f0 100%);
    border-radius: 2px;
    z-index: 1;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    background: transparent;
    padding: 0 1.5rem;
    flex: 1;
}

.step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.step-number:hover::before {
    opacity: 1;
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.step-number .step-icon {
    font-size: 1.2rem;
    display: none;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 48%;
    transform: translate(-50%, -50%);
    width: 1em;
    height: 1em;
    line-height: 1;
    text-align: center;
}

.step-number .step-icon::before {
    display: block;
    width: 100%;
    height: 100%;
    line-height: 1;
    text-align: center;
}

.step-number .step-num {
    font-weight: 800;
    font-size: 1.1rem;
    z-index: 2;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1em;
    height: 1em;
    line-height: 1;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-step.active .step-number {
    
    color: var(--text-white);
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(168, 85, 163, 0.4), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.progress-step.active .step-number .step-icon {
    display: block;
}

.progress-step.active .step-number .step-num {
    display: none;
}

.progress-step.completed .step-number {
    color: var(--text-white);
    border-color: var(--success-color);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.3), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.progress-step.completed .step-number .step-icon {
    display: block;
}

.progress-step.completed .step-number .step-num {
    display: none;
}

.step-content {
    text-align: center;
    max-width: 150px;
}

.step-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.3;
}

.step-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.progress-step.active .step-title {
    color: var(--primary-color);
    font-weight: 800;
}

.progress-step.completed .step-title {
    color: var(--success-color);
    font-weight: 700;
}

/* Wizard Steps */
.wizard-step {
    display: none;
    padding: 2rem;
    animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-step.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Professional Card Effects */
.education-card,
.level-card,
.duration-card {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(248,250,252,0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.03);
}

.education-card::before,
.level-card::before,
.duration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(168, 85, 163, 0.1) 50%, transparent 100%);
    transition: left 0.6s ease;
    z-index: 1;
}

.education-card:hover::before,
.level-card:hover::before,
.duration-card:hover::before {
    left: 100%;
}

.education-card:hover,
.level-card:hover,
.duration-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(168, 85, 163, 0.1);
    border-color: rgba(168, 85, 163, 0.3);
}

.education-card.selected,
.level-card.selected,
.duration-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(168, 85, 163, 0.05) 0%, rgba(248,250,252,0.98) 100%);
    box-shadow: 0 20px 40px rgba(168, 85, 163, 0.2), 0 8px 20px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateY(-5px) scale(1.02);
}

.education-card.selected::after,
.level-card.selected::after,
.duration-card.selected::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #7c3aed 100%);
    z-index: 2;
}

/* Enhanced Card Bodies */
.card-body {
    position: relative;
    z-index: 2;
}

.card-body .fas {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.badge {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Professional Summary Features */
.summary-features ul {
    list-style: none;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(248,250,252,0.8) 0%, rgba(241,245,249,0.9) 100%);
    border-radius: 16px;
    margin: 1.5rem 0;
    border: 1px solid rgba(226, 232, 240, 0.5);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.summary-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(226, 232, 240, 0.3);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    font-weight: 500;
    transition: all 0.3s ease;
}

.summary-features li:last-child {
    border-bottom: none;
}

.summary-features li:hover {
    transform: translateX(4px);
    color: var(--primary-color);
}

.summary-features li i {
    color: var(--success-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;
    filter: drop-shadow(0 2px 4px rgba(34, 197, 94, 0.2));
}

/* Professional Responsive Design */
@media (max-width: 768px) {
    .wizard-container {
        margin: 1rem;
        border-radius: 20px;
    }
    
    .wizard-progress {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .wizard-progress::before {
        display: none;
    }
    
    .progress-step {
        flex-direction: row;
        width: 100%;
        justify-content: flex-start;
        padding: 1.5rem;
        background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.98) 100%);
        border-radius: 16px;
        border: 1px solid rgba(226, 232, 240, 0.5);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        backdrop-filter: blur(10px);
    }
    
    .step-number {
        margin-bottom: 0;
        margin-right: 1.5rem;
        width: 60px;
        height: 60px;
        flex-shrink: 0;
    }
    
    .step-content {
        text-align: left;
        max-width: none;
    }
    
    .step-title {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 0.25rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .wizard-step {
        padding: 1.5rem 1rem;
    }
    
    .education-card:hover,
    .level-card:hover,
    .duration-card:hover {
        transform: translateY(-4px) scale(1.01);
    }
    
    .education-card.selected,
    .level-card.selected,
    .duration-card.selected {
        transform: translateY(-2px) scale(1.01);
    }
}

@media (max-width: 480px) {
    .wizard-container {
        margin: 0.5rem;
        border-radius: 16px;
    }
    
    .wizard-progress {
        padding: 1rem 0.5rem;
    }
    
    .progress-step {
        padding: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        margin-right: 1rem;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-description {
        font-size: 0.8rem;
    }
    
    .wizard-step {
        padding: 1rem 0.5rem;
    }
}

/* ============ PREMIUM CALL BACK FORM STYLES ============ */

/* Background Elements */
.call-back-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(168, 85, 163, 0.1), rgba(192, 132, 197, 0.05));
    animation: float 6s ease-in-out infinite;
}

.bg-circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.bg-circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -5%;
    animation-delay: 2s;
}

.bg-circle-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Main Badge */
.call-back-badge-main {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 8px 32px rgba(168, 85, 163, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Main Title */
.call-back-main-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.call-back-main-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Premium Container */
.premium-call-back-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Premium Image Section */
.premium-image-section {
    position: relative;
    height: 100%;
    min-height: 600px;
}

.image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.premium-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(168, 85, 163, 0.8) 0%,
        rgba(192, 132, 197, 0.6) 50%,
        rgba(184, 134, 11, 0.4) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}


/* Premium Form Section */
.premium-form-section {
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.8));
    backdrop-filter: blur(20px);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-icon-wrapper {
    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;
    box-shadow: 0 10px 30px rgba(168, 85, 163, 0.3);
    position: relative;
}

.form-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.1; }
}

.form-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group {
    position: relative;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.form-label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Premium Inputs */
.premium-input,
.premium-select,
.premium-textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.premium-input:focus,
.premium-select:focus,
.premium-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(168, 85, 163, 0.15);
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.premium-input:focus + .input-border,
.premium-select:focus + .input-border,
.premium-textarea:focus + .input-border {
    transform: scaleX(1);
}

.premium-textarea {
    resize: vertical;
    min-height: 120px;
}

.call-back-form .form-control,
.call-back-form .form-select {
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--bg-primary);
    font-weight: 500;
}

.call-back-form .form-control:focus,
.call-back-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(168, 85, 163, 0.15);
    background-color: var(--bg-primary);
    transform: translateY(-1px);
}

.call-back-form .form-control::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.call-back-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.call-back-checkbox {
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-top: 1rem;
}

.call-back-checkbox .form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.1rem;
    border: 2px solid var(--border-medium);
    border-radius: var(--radius-sm);
}

.call-back-checkbox .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.call-back-checkbox .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(168, 85, 163, 0.25);
}

.call-back-checkbox .form-check-label {
    font-weight: 500;
    color: var(--text-primary);
    margin-left: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.call-back-checkbox .form-check-label i {
    color: var(--primary-color);
}

.call-back-submit-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border: none;
    border-radius: var(--radius-lg);
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.call-back-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.call-back-submit-btn:hover::before {
    left: 100%;
}

.call-back-submit-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.call-back-submit-btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.call-back-submit-btn:disabled {
    background: var(--text-muted);
    transform: none;
    box-shadow: var(--shadow-sm);
    cursor: not-allowed;
}

.call-back-submit-btn.loading .btn-text {
    display: none;
}

.call-back-submit-btn.loading .btn-loading {
    display: inline-flex !important;
    align-items: center;
}

.call-back-features {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.feature-item {
    padding: 0.75rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--bg-tertiary);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.feature-item small {
    font-weight: 600;
    color: var(--text-secondary);
}

/* Form Validation Styles */
.call-back-form .form-control.is-invalid {
    border-color: var(--error-color);
    box-shadow: 0 0 0 0.2rem rgba(239, 68, 68, 0.15);
}

.call-back-form .form-control.is-valid {
    border-color: var(--success-color);
    box-shadow: 0 0 0 0.2rem rgba(34, 197, 94, 0.15);
}

.invalid-feedback {
    color: var(--error-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.invalid-feedback::before {
    content: '⚠';
    font-size: 0.8rem;
}

.valid-feedback {
    color: var(--success-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.valid-feedback::before {
    content: '✓';
    font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .call-back-form-container {
        padding: 2rem;
        margin-top: 2rem;
    }
    
    .call-back-image {
        height: 400px;
    }
    
    .call-back-form-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .call-back-form-container {
        padding: 1.5rem;
    }
    
    .call-back-form-title {
        font-size: 1.25rem;
    }
    
    .call-back-form-subtitle {
        font-size: 0.9rem;
    }
    
    .call-back-image {
        height: 300px;
    }
    
    .call-back-icon {
        width: 60px;
        height: 60px;
    }
    
    .call-back-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .call-back-form-container {
        padding: 1rem;
    }
    
    .call-back-form .form-control,
    .call-back-form .form-select {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }
    
    .call-back-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .call-back-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
}

/* Password Strength Indicator Styles */
.password-strength-indicator {
    display: none;
    width: 100%;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    clear: both;
    float: none;
}

.password-strength-indicator.weak,
.password-strength-indicator.medium,
.password-strength-indicator.strong {
    display: block !important;
    position: relative;
    z-index: 1;
}

.password-strength-indicator.weak {
    background-color: #fee;
    color: #dc3545;
    border: 1px solid #f5c6cb;
}

.password-strength-indicator.medium {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.password-strength-indicator.strong {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

/* Force password strength indicator to be below input group */
.input-group + .password-strength-indicator {
    display: none !important;
    width: 100% !important;
    margin-top: 0.5rem !important;
    clear: both !important;
    float: none !important;
}

.input-group + .password-strength-indicator.weak,
.input-group + .password-strength-indicator.medium,
.input-group + .password-strength-indicator.strong {
    display: block !important;
}

/* Hamburger Menu Override - En son eklenen kurallar */
button.modern-hamburger .hamburger-line {
    opacity: 1 !important;
    transform: none !important;
    margin: 4px 0 !important;
}

button.modern-hamburger.active .hamburger-line {
    opacity: 0 !important;
}

button.modern-hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(10px) !important;
}

button.modern-hamburger.active .hamburger-line:nth-child(2) {
    transform: scaleX(0) !important;
}

button.modern-hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-10px) !important;
}

/* ========================================
   BLOG STYLES
======================================== */

/* Blog Hero Section */
.blog-hero-section {
    position: relative;
    background: linear-gradient(135deg, #a855a3 0%, #8b4f87 100%);
    padding: 4rem 0;
    overflow: hidden;
}

.blog-hero-section .hero-content {
    text-align: center;
    color: white;
}

.blog-hero-section .hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.blog-hero-section .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.blog-hero-section .hero-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    color: white;
}

/* Blog Post Card */
.blog-post-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.blog-post-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

.blog-post-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-date {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.blog-post-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

.blog-post-date .month {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.blog-post-meta span {
    display: flex;
    align-items: center;
}

.blog-post-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.blog-post-title a {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: var(--primary-color);
}

.blog-post-excerpt {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Blog Sidebar */
.blog-sidebar-widget {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.widget-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-search-form .input-group {
    display: flex;
}

.blog-search-form input {
    border-radius: 0.5rem 0 0 0.5rem;
}

.blog-search-form button {
    border-radius: 0 0.5rem 0.5rem 0;
}

.blog-categories {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-categories li {
    margin-bottom: 0.5rem;
}

.blog-categories a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.blog-categories a:hover {
    color: var(--primary-color);
}

.recent-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recent-post-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 0.5rem;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h6 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.recent-post-content h6 a {
    color: var(--text-primary);
    transition: color 0.3s ease;
}

.recent-post-content h6 a:hover {
    color: var(--primary-color);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-tags .tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    border-radius: 0.25rem;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.blog-tags .tag:hover {
    background: var(--primary-color);
    color: white;
}

/* Blog Detail */
.blog-post-detail {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-post-detail .blog-post-image {
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-post-detail .blog-post-content {
    padding: 0;
}

.blog-post-detail .blog-post-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.blog-post-detail .blog-post-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-post-detail .blog-post-content ul,
.blog-post-detail .blog-post-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-post-detail .blog-post-content li {
    margin-bottom: 0.5rem;
}

.blog-post-tags {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero-section .hero-title {
        font-size: 2rem;
    }
    
    .blog-post-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-post-image {
        height: 200px;
    }
    
    .blog-post-content {
        padding: 1rem;
    }
    
    .blog-sidebar-widget {
        padding: 1rem;
    }
}

/* Notification Dropdown Styles */
.notification-dropdown {
    padding: 0;
    right: 0 !important;
    left: auto !important;
}

#notificationNav {
    margin-right: 0.5rem !important;
}

.notification-dropdown .dropdown-header {
    padding: 0.75rem 1rem;
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
}

.notification-dropdown .dropdown-divider {
    margin: 0;
}

.notification-item {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s ease;
    margin: 0 !important;
}

.notification-item .dropdown-item {
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 12px 16px !important;
}

.notification-card {
    padding: 16px !important;
    margin: 8px;
    border-radius: 12px !important;
    background: white;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.notification-card:hover {
    background: #f8f9fa !important;
    border-color: #1976d2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.notification-icon {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 12px;
}

.notification-icon.unread {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.notification-icon.unread i {
    color: #1976d2;
    font-size: 1.1rem;
}

.notification-icon.read {
    background: #f5f5f5;
}

.notification-icon.read i {
    color: #9e9e9e;
    font-size: 1rem;
}

.notification-content {
    flex-grow: 1;
    min-width: 0;
}

.notification-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #212529;
    margin: 0;
    line-height: 1.3;
}

.notification-text {
    font-size: 0.85rem;
    color: #6c757d;
    margin: 8px 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notification-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    color: #9e9e9e;
    margin-top: 8px;
}

.notification-meta i {
    font-size: 0.7rem;
}

.new-badge {
    background: #dc3545 !important;
    color: white !important;
    font-size: 0.65rem !important;
    padding: 3px 8px !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
}

.notification-item:hover {
    background-color: #f8f9fa;
}

.notification-item a:hover {
    background-color: #f0f4f8 !important;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item .dropdown-item {
    padding: 0.75rem 1rem;
    min-height: 60px;
}

.notification-item.border-primary {
    background-color: #e7f3ff;
}

.notification-item .fw-semibold {
    color: #212529;
}

.notification-count {
    animation: pulse 2s infinite;
    background-color: #dc3545 !important;
    color: white !important;
    font-weight: 700 !important;
    font-size: 0.7rem !important;
    min-width: 18px !important;
    height: 18px !important;
    padding: 0 5px !important;
    border: 2px solid white !important;
    box-shadow: 0 2px 6px rgba(220, 53, 69, 0.3) !important;
    z-index: 10001 !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Notification icon bell animation */
.fa-bell {
    animation: none;
}

.notification-count:not(:empty) ~ .fa-bell {
    animation: ring 2s infinite;
}

@keyframes ring {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-10deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(10deg);
    }
}

/* ========================================
   MOBİL CİHAZLAR İÇİN ANİMASYONLARI DEVRE DIŞI BIRAK
   ======================================== */
@media (max-width: 768px) {
    /* Tüm animasyonları mobilde devre dışı bırak */
    *,
    *::before,
    *::after {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }
    
    /* AOS animasyonlarını devre dışı bırak */
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    /* Özel animasyon sınıflarını devre dışı bırak */
    .fade-in,
    .slide-in-left,
    .slide-in-right,
    .float-element,
    .decoration-circle {
        animation: none !important;
        transform: none !important;
    }
    
    /* Notification bell animasyonunu koru (kullanıcı deneyimi için gerekli) */
    .fa-bell {
        animation: none !important;
    }
    
    /* Loading spinner animasyonlarını koru (işlevsel) */
    .spinner-border,
    .spinner-grow {
        animation: spin 1s linear infinite !important;
    }
}