/* ============================================
   KARIYER SINAV - MODERN HOMEPAGE STYLES
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #0ea5e9;
    --accent-gradient: linear-gradient(135deg, #6366f1 0%, #0ea5e9 100%);
    --accent-gradient-hover: linear-gradient(135deg, #4f46e5 0%, #0284c7 100%);
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --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);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ============================================
   MODERN NAVBAR STYLES
   ============================================ */

/* Diğer sayfalar için lacivert navbar arka planı (footer ile uyumlu) */
.navbar.bg-dark {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%) !important;
}

/* Ana sayfa için şeffaf navbar (hero ile uyumlu) */
body.page-home .navbar.bg-dark {
    background: transparent !important;
}

/* Navbar link stilleri */
.navbar .nav-link,
.navbar.navbar-dark .nav-link,
.navbar.bg-dark .nav-link,
.navbar .navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 16px !important;
    letter-spacing: 0.3px;
}

.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.navbar .nav-link:hover {
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
}

.navbar .nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Modern Auth Butonları */
.nanright {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nanright a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Üye Girişi butonu */
.nanright a:first-child {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nanright a:first-child:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Üye Ol butonu */
.nanright a:last-child {
    color: #fff;
    background: var(--accent-gradient);
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.nanright a:last-child:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-modern {
    min-height: 90vh;
    background: var(--accent-gradient);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Floating shapes */
.hero-modern .floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

.hero-modern .shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-modern .shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    animation-delay: 2s;
}

.hero-modern .shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    color: #fbbf24;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title span {
    display: block;
    background: linear-gradient(90deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: #fff;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--primary-dark);
    text-decoration: none;
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    animation: bounce 2s infinite;
    z-index: 2;
}

.scroll-indicator i {
    font-size: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ============================================
   HERO SLIDER
   ============================================ */
.hero-slider {
    position: relative;
    width: 100%;
}

.hero-slides {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    display: none;
    animation: fadeIn 0.8s ease;
}

.hero-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Slider dots */
.hero-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.hero-dot.active {
    background: #fff;
    transform: scale(1.2);
}

/* Slider arrows */
.hero-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.hero-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    backdrop-filter: blur(10px);
}

.hero-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.hero-arrow i {
    font-size: 18px;
}

@media (max-width: 768px) {
    .hero-arrows {
        display: none;
    }
    
    .hero-dots {
        margin-top: 24px;
    }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-modern {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

.stats-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--accent-gradient);
    clip-path: ellipse(70% 100% at 50% 0%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
}

.stat-icon.users {
    background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
    color: #7c3aed;
}

.stat-icon.questions {
    background: linear-gradient(135deg, #bfdbfe 0%, #93c5fd 100%);
    color: #2563eb;
}

.stat-icon.solved {
    background: linear-gradient(135deg, #bbf7d0 0%, #86efac 100%);
    color: #16a34a;
}

.stat-icon.topics {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    color: #ea580c;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Number counter animation */
.stat-number[data-target] {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stat-number.animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   SECTION TITLES
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ede9fe 0%, #ddd6fe 100%);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
    background: var(--bg-white);
    padding: 24px 0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-items {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 14px;
}

.trust-item i {
    color: #10b981;
    font-size: 16px;
}

/* ============================================
   ANIMATIONS (AOS Alternative - Pure CSS)
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up:nth-child(1) { transition-delay: 0.1s; }
.fade-up:nth-child(2) { transition-delay: 0.2s; }
.fade-up:nth-child(3) { transition-delay: 0.3s; }
.fade-up:nth-child(4) { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 768px) {
    .hero-modern {
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        padding: 0 40px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .stats-modern {
        padding: 60px 0;
    }
    
    .stat-card {
        padding: 24px 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .trust-items {
        gap: 24px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gradient {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient {
    background: var(--accent-gradient);
}

/* Override old styles for homepage */
body.homepage-modern {
    background: var(--bg-light);
}

body.homepage-modern .main-page-baner,
body.homepage-modern #myCarousel,
body.homepage-modern .anasayfaistatistikdis {
    display: none !important;
}

/* ============================================
   NAVBAR ADJUSTMENTS FOR HERO
   ============================================ */
.hero-modern + .trust-bar {
    margin-top: -1px;
}

/* Hide unnecessary toggler on homepage when logged in */
body:has(.hero-modern) .navbar-toggler.mobilde-gizlenecek {
    display: none !important;
}

/* Make navbar transparent on homepage */
body:has(.hero-modern) .navbar {
    background: transparent !important;
    position: absolute;
    width: 100%;
    z-index: 1000;
    border: none !important;
    box-shadow: none !important;
}

body:has(.hero-modern) .navbar .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
}

body:has(.hero-modern) .navbar .nav-link:hover {
    color: #fff !important;
}

/* Modern Auth Buttons */
body:has(.hero-modern) .nanright {
    display: flex;
    gap: 12px;
    align-items: center;
}

body:has(.hero-modern) .nanright a {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Üye Girişi - Outline style */
body:has(.hero-modern) .nanright a:first-child {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

body:has(.hero-modern) .nanright a:first-child:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Üye Ol - Solid style */
body:has(.hero-modern) .nanright a:last-child {
    color: var(--primary-color) !important;
    background: #fff;
    border: 1px solid #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

body:has(.hero-modern) .nanright a:last-child:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Fallback for browsers without :has() support */
@supports not selector(:has(*)) {
    .navbar-homepage-transparent {
        background: transparent !important;
        position: absolute;
        width: 100%;
        z-index: 1000;
    }
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 767px) {
    /* Hide navbar auth buttons on mobile */
    body:has(.hero-modern) .nanright {
        display: none !important;
    }
    
    /* Also hide without :has() support */
    .nanright {
        display: none !important;
    }
    
    /* Mobile menu solid background */
    body:has(.hero-modern) .navbar-collapse,
    .navbar-collapse {
        background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e3a5f 100%);
        border-radius: 12px;
        padding: 15px;
        margin-top: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    body:has(.hero-modern) .navbar-collapse .nav-link,
    .navbar-collapse .nav-link {
        color: #fff !important;
        padding: 10px 15px !important;
        border-radius: 8px;
        margin: 2px 0;
    }
    
    body:has(.hero-modern) .navbar-collapse .nav-link:hover,
    .navbar-collapse .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
    }
}

@media (min-width: 768px) {
    /* Show navbar auth buttons on desktop */
    .nanright {
        display: flex !important;
    }
}

@media (max-width: 991px) {
    /* Hero section adjustments for mobile */
    .hero-modern .hero-title {
        font-size: 2rem;
    }
    
    .hero-modern .hero-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-modern .hero-title {
        font-size: 1.75rem;
    }
}

/* ============================================
   FONT FAMILY OVERRIDE
   ============================================ */
.hero-modern,
.stats-modern,
.trust-bar,
.section-header {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-modern {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 32px;
    transition: all 0.3s ease;
}

.feature-icon.purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(139, 92, 246, 0.05));
    color: var(--primary-color);
}

.feature-icon.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.05));
    color: var(--secondary-color);
}

.feature-icon.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05));
    color: #10b981;
}

.feature-icon.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(249, 115, 22, 0.05));
    color: #f97316;
}

.feature-icon.pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(236, 72, 153, 0.05));
    color: #ec4899;
}

.feature-icon.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(6, 182, 212, 0.05));
    color: #06b6d4;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ============================================
   MOBILE APP SECTION
   ============================================ */
.app-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.app-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.app-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.app-text {
    flex: 1;
    color: #fff;
}

.app-text .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.app-text .section-title {
    color: #fff;
}

.app-text .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.app-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.app-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.app-feature-item i {
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.app-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--text-dark);
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.app-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: var(--text-dark);
}

.app-btn i {
    font-size: 24px;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.app-btn-text small {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
}

.app-btn-text span {
    font-size: 16px;
    font-weight: 600;
}

.app-mockup {
    flex: 0 0 300px;
    position: relative;
}

/* Phone Frame */
.phone-frame {
    width: 280px;
    height: 560px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 12px;
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.3),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
}

.phone-notch {
    width: 120px;
    height: 28px;
    background: #1a1a2e;
    border-radius: 0 0 20px 20px;
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

/* Simulated App UI */
.app-ui {
    padding: 40px 16px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.app-ui-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.app-ui-title {
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.app-ui-progress {
    font-size: 12px;
    font-weight: 600;
    color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
    padding: 4px 10px;
    border-radius: 20px;
}

.app-ui-question {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.app-ui-q-badge {
    font-size: 10px;
    font-weight: 600;
    color: #8b5cf6;
    margin-bottom: 8px;
}

.app-ui-q-text {
    font-size: 11px;
    color: #334155;
    line-height: 1.5;
}

.app-ui-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.app-ui-option {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    font-size: 11px;
    color: #475569;
    transition: all 0.3s ease;
    position: relative;
    animation: optionFadeIn 0.5s ease forwards;
    opacity: 0;
}

.app-ui-option:nth-child(1) { animation-delay: 0.1s; }
.app-ui-option:nth-child(2) { animation-delay: 0.2s; }
.app-ui-option:nth-child(3) { animation-delay: 0.3s; }
.app-ui-option:nth-child(4) { animation-delay: 0.4s; }
.app-ui-option:nth-child(5) { animation-delay: 0.5s; }

@keyframes optionFadeIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.option-letter {
    width: 22px;
    height: 22px;
    background: #f1f5f9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 9px;
    color: #64748b;
    transition: all 0.3s ease;
}

.option-text {
    flex: 1;
}

.option-check {
    opacity: 0;
    transform: scale(0);
    color: #10b981;
    font-size: 12px;
    transition: all 0.3s ease;
}

/* Clicked state - before showing correct */
.app-ui-option.clicked {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    transform: scale(0.98);
}

.app-ui-option.clicked .option-letter {
    background: #8b5cf6;
    color: #fff;
}

/* Wrong answer state */
.app-ui-option.wrong {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.app-ui-option.wrong .option-letter {
    background: #ef4444;
    color: #fff;
}

.app-ui-option.wrong .option-check {
    opacity: 1;
    transform: scale(1);
    color: #ef4444;
}

.app-ui-option.wrong .option-check::before {
    content: "\f00d"; /* X icon */
}

/* Correct answer state */
.app-ui-option.correct {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(16, 185, 129, 0.05)) !important;
    border: 1px solid rgba(16, 185, 129, 0.4) !important;
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.app-ui-option.correct .option-letter {
    background: #10b981 !important;
    color: #fff !important;
}

.app-ui-option.correct .option-check {
    opacity: 1 !important;
    transform: scale(1) !important;
    color: #10b981;
}

@keyframes checkPop {
    from { opacity: 0; transform: scale(0); }
    to { opacity: 1; transform: scale(1); }
}

.app-ui-stats {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.app-ui-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: #10b981;
}

.app-ui-stat.wrong {
    color: #ef4444;
}

.app-ui-stat i {
    font-size: 14px;
}

@media (max-width: 992px) {
    .app-content {
        flex-direction: column;
        text-align: center;
    }
    
    .app-features {
        align-items: center;
    }
    
    .app-buttons {
        justify-content: center;
    }
    
    .app-mockup {
        display: none;
    }
}

/* ============================================
   MODERN EXAMS SECTION
   ============================================ */
.exams-modern {
    padding: 100px 0;
    background: var(--bg-light);
}

.exams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.exam-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.exam-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.exam-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
}

.exam-image img {
    max-width: 150px;
    max-height: 150px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.exam-card:hover .exam-image img {
    transform: scale(1.1);
}

.exam-content {
    padding: 30px;
    text-align: center;
}

.exam-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.exam-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.exam-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-exam-primary {
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-exam-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    color: #fff;
    text-decoration: none;
}

.btn-exam-secondary {
    padding: 12px 24px;
    background: transparent;
    color: var(--text-dark);
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-exam-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
}

/* ============================================
   MODERN "BİZİMLE KAZANIN" SECTION
   ============================================ */
.benefits-modern {
    padding: 100px 0;
    background: var(--bg-white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    display: flex;
    gap: 24px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.benefit-card:hover {
    background: var(--bg-white);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: var(--shadow-lg);
}

.benefit-number {
    flex: 0 0 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
}

.benefit-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.benefit-content h4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.benefit-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MODERN ABOUT SECTION
   ============================================ */
.about-modern {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.about-experience {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 24px 32px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
}

.about-content .section-badge {
    margin-bottom: 16px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
}

.about-feature i {
    font-size: 16px;
    color: #10b981;
    width: 20px;
}

.about-feature span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
}

.btn-about-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-about-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    color: #fff;
    text-decoration: none;
}

.btn-about-more i {
    transition: transform 0.3s ease;
}

.btn-about-more:hover i {
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-experience {
        right: 20px;
        bottom: -15px;
    }
    
    .about-title {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   MODERN TESTIMONIALS SECTION
   ============================================ */
.testimonials-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e3a5f 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.testimonials-modern .section-header {
    position: relative;
    z-index: 2;
}

.testimonials-modern .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.testimonials-modern .section-badge i {
    color: #fbbf24;
}

.testimonials-modern .section-title {
    color: #fff;
}

.testimonials-modern .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials-slider {
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.testimonials-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 32px;
    color: rgba(251, 191, 36, 0.6);
}

.testimonial-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px 0;
}

.author-title {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
}

.testimonial-rating i {
    font-size: 14px;
    color: #fbbf24;
}

@media (max-width: 768px) {
    .testimonials-track {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 24px;
    }
}

/* ============================================
   EXISTING SECTIONS STYLE UPDATES
   ============================================ */
.sinav-section {
    display: none !important; /* Eski sınav bölümünü gizle */
}

.bizimlekazanin {
    display: none !important; /* Eski bizimle kazanın bölümünü gizle */
}

.hakkimizdayorumlar {
    display: none !important; /* Eski hakkımızda/yorumlar bölümünü gizle */
}

/* Eski Ne Dediler carousel bölümünü gizle */
.owl-surmanset {
    display: none !important;
}

.container-fluid > .container > .col-md-12 > .h2-change:has(i.fa-commenting-o) {
    display: none !important;
}

/* Fallback - eski yorumlar bölümünü tamamen gizle */
.container-fluid:has(.owl-surmanset) {
    display: none !important;
}

/* Card hover effects for existing cards */
.sinav-section .card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: var(--shadow-md);
}

.sinav-section .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   MODERN FOOTER
   ============================================ */
.footer-modern {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Brand Column */
.footer-brand {
    padding-right: 40px;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Columns */

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

/* Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact li i {
    width: 20px;
    color: var(--primary-color);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #fff;
}

/* Payment Methods */
.footer-payments {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-payments img {
    height: 24px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-payments img:hover {
    opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Hide auth buttons on login/register pages */
body.page-giris .nanright,
body.page-uyeol .nanright {
    display: none !important;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 30px;
    }
    
    .footer-brand {
        grid-column: span 2;
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .footer-top {
        padding: 60px 0 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .footer-bottom-links {
        gap: 16px;
    }
}

/* ============================================
   MODERN PAGE STYLES (Sınavlar, Hakkımızda, vb.)
   ============================================ */

/* Page Hero Section */
.page-hero-modern {
    background: var(--accent-gradient);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Page Content Section */
.page-content-modern {
    padding: 60px 0;
    background: var(--bg-light);
    min-height: 50vh;
}

/* Exams Grid */
.exams-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.exam-card-modern {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}

.exam-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.exam-card-image {
    position: relative;
    height: 140px;
    overflow: hidden;
    flex-shrink: 0;
}

.exam-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    transition: transform 0.3s ease;
}

.exam-card-modern:hover .exam-card-image img {
    transform: scale(1.05);
}

.exam-card-overlay {
    display: none;
}

.exam-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.exam-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.exam-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
    flex: 1;
}

.exam-card-actions {
    display: flex;
    gap: 12px;
    margin-top: auto;
}

/* Modern Buttons */
.btn-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-modern-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    color: #fff;
}

.btn-modern-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-modern-outline:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Pagination Modern */
.pagination-modern {
    text-align: center;
    padding-top: 20px;
}

.pagination-info {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.pagination-modern .pagination {
    gap: 8px;
}

.pagination-modern .page-item .page-link {
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    color: var(--text-dark);
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.pagination-modern .page-item .page-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.pagination-modern .page-item.active .page-link {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Page Content for Text Pages */
.page-text-content {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.page-text-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.page-text-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Paket Table Wrapper */
.paket-table-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow-x: auto;
}

.paket-table-wrapper table {
    min-width: 600px;
}

.paket-table-wrapper a[href*="sinavlar"] {
    display: inline-block;
    padding: 12px 24px !important;
    background: var(--accent-gradient) !important;
    color: #fff !important;
    border-radius: 8px !important;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.paket-table-wrapper a[href*="sinavlar"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info-card,
.contact-support-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text .contact-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 4px;
}

.contact-text p {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
}

.contact-social {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
}

.contact-social .contact-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-gradient);
    color: #fff;
    transform: translateY(-3px);
}

.contact-support-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.support-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 24px;
}

.contact-support-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-support-card p {
    color: var(--text-muted);
    margin-bottom: 24px;
    max-width: 300px;
}

.login-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #f59e0b;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.login-warning i {
    font-size: 2rem;
    color: #f59e0b;
    margin-bottom: 10px;
}

.login-warning p {
    color: #92400e;
    font-weight: 500;
    margin: 0;
    max-width: 100%;
}

/* FAQ Styles */
.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question:focus {
    outline: none;
}

.faq-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-arrow {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] .faq-icon i::before {
    content: "\f068";
}

.faq-answer {
    border-top: 1px solid #e2e8f0;
}

.faq-answer-content {
    padding: 24px;
    color: var(--text-muted);
    line-height: 1.7;
}

.faq-answer-content p {
    margin-bottom: 12px;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

/* Exam Detail Styles */
.exam-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
    align-items: start;
}

.exam-detail-content .page-text-content {
    padding: 40px;
}

.countdown-modern {
    background: var(--accent-gradient);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    color: #fff;
}

.countdown-modern h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.countdown-boxes {
    display: flex;
    gap: 16px;
}

.countdown-box {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 16px 20px;
    text-align: center;
    min-width: 80px;
}

.countdown-box .number {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.countdown-box span {
    font-size: 0.85rem;
    opacity: 0.9;
}

.exam-description {
    color: var(--text-muted);
    line-height: 1.8;
}

.exam-description p {
    margin-bottom: 16px;
}

.exam-detail-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.exam-detail-image {
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    text-align: center;
}

.exam-detail-image img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.exam-detail-actions {
    padding: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-hero-modern {
        padding: 80px 0 40px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .exams-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .exam-card-actions {
        flex-direction: column;
    }
    
    .btn-modern {
        width: 100%;
    }
    
    /* Paket table mobile fix */
    .paket-table-wrapper {
        padding: 15px;
    }
    
    .paket-table-wrapper table th,
    .paket-table-wrapper table td {
        padding: 8px 5px !important;
        font-size: 0.85rem;
    }
    
    .paket-table-wrapper a[href*="sinavlar"] {
        padding: 10px 16px !important;
        font-size: 0.85rem;
    }
    
    /* Contact page mobile */
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card,
    .contact-support-card {
        padding: 30px;
    }
    
    /* Exam detail mobile */
    .exam-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .exam-detail-sidebar {
        order: -1;
    }
    
    .exam-detail-card {
        position: static;
    }
    
    .countdown-boxes {
        flex-wrap: wrap;
    }
}

/* ============================================
   LOGIN & REGISTER PAGE - MINIMAL ENHANCEMENTS
   ============================================ */

/* Sadece input kutularına dokunuş */
.register-form .form-control {
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.register-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.register-form .custom-select-ss {
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.register-form .custom-select-ss:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    outline: none;
}

/* Panelim butonu hover efektini kaldır (arka plan korunacak) */
.navbar .panel-btn a.nav-link:hover,
.navbar .nav-item.panel-btn .nav-link:hover {
    transform: none !important;
}

.navbar .panel-btn a.nav-link::after {
    display: none !important;
}

/* Masaüstünde navbar-toggler gizle (üye girişi yapılmışsa) */
@media (min-width: 768px) {
    .navbar-toggler.mobilde-gizlenecek {
        display: none !important;
    }
}
