/* ==========================================================================
   MİZAÇ REHBERİ LANDING PAGE STYLESHEET
   ========================================================================== */

/* --- 1. DESIGN TOKENS & VARIABLES --- */
:root {
    /* Color Palette */
    --bg-dark: #09090e;
    --bg-surface: #12121c;
    --bg-card: rgba(22, 22, 34, 0.6);
    --border-color: rgba(255, 255, 255, 0.08);
    
    --primary: #6366f1; /* Indigo */
    --primary-glow: rgba(99, 102, 241, 0.3);
    --secondary: #8b5cf6; /* Violet */
    --accent: #f59e0b; /* Amber */
    
    /* Mizaç Specific Colors */
    --safravi: #ff9100;
    --safravi-dark: #e65100;
    --safravi-glow: rgba(255, 111, 0, 0.25);
    
    --balgami: #26a69a;
    --balgami-dark: #00695c;
    --balgami-glow: rgba(0, 137, 123, 0.25);
    
    --demevi: #42a5f5;
    --demevi-dark: #1565c0;
    --demevi-glow: rgba(30, 136, 229, 0.25);
    
    --sevdavi: #ec407a;
    --sevdavi-dark: #880e4f;
    --sevdavi-glow: rgba(216, 27, 96, 0.25);
    
    --partner: #ab47bc;
    --partner-dark: #4a148c;
    --partner-glow: rgba(142, 36, 170, 0.25);
    
    /* Text Colors */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

/* --- 2. BASE RESET & GLOBALS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #ffffff;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    margin-bottom: 24px;
}

.text-amber { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.color-orange { color: var(--safravi); }
.color-teal { color: var(--balgami); }
.color-pink { color: var(--sevdavi); }
.color-purple { color: var(--partner); }

/* --- 3. HEADER & NAVIGATION --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    background: rgba(9, 9, 14, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.45rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.logo-text span {
    color: var(--primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--text-primary);
}

.btn-header {
    padding: 10px 20px;
    font-size: 0.85rem;
    border-radius: 12px;
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

/* Drawer & Mobile Navigation */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--bg-surface);
    z-index: 200;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

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

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.close-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.drawer-link:hover {
    color: var(--text-primary);
}

.drawer-btn {
    width: 100%;
    margin-top: 10px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* --- 4. HERO SECTION --- */
.hero {
    position: relative;
    padding: 160px 0 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg-blur {
    position: absolute;
    top: 10%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(0,0,0,0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--text-primary);
}

.stat-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* --- 5. INTERACTIVE PHONE SIMULATOR --- */
.hero-simulator-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 320px;
    height: 640px;
    background: #0f0f15;
    border-radius: 44px;
    border: 10px solid #27273a;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8), 
                inset 0 0 10px rgba(255,255,255,0.1),
                0 0 0 3px rgba(99, 102, 241, 0.15);
    position: relative;
    overflow: hidden;
    animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.phone-speaker {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: #27273a;
    border-radius: 10px;
    z-index: 50;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    flex-direction: column;
    position: relative;
    padding-top: 24px; /* Space for status bar */
}

/* Simulated App Header */
.app-header {
    height: 52px;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    background: rgba(22, 22, 34, 0.8);
}

.app-title-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-logo-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.app-logo-icon .material-symbols-rounded {
    font-size: 14px;
}

.app-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
}

/* Simulated App Body & Screens */
.app-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px;
    position: relative;
}

.app-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(20px);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-screen.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

/* Screen 1 Dashboard Elements */
.app-banner {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border-radius: 16px;
    padding: 14px;
    border: 1px solid rgba(99, 102, 241, 0.25);
    margin-bottom: 16px;
}

.app-banner h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.app-banner p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

.app-accordion-section {
    background: rgba(22, 22, 34, 0.5);
    border-radius: 18px;
    border: 1px solid var(--border-color);
    padding: 12px;
    margin-bottom: 16px;
}

.app-section-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-tabs {
    display: flex;
    background: rgba(0,0,0,0.3);
    border-radius: 10px;
    padding: 2px;
    margin-bottom: 12px;
}

.app-tab {
    flex: 1;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.app-tab.active {
    background: var(--bg-surface);
    color: var(--text-primary);
}

.app-accordion-card {
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.04);
}

.accordion-card-content strong {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.accordion-card-content p {
    font-size: 0.7rem;
    color: var(--text-secondary);
    line-height: 1.35;
}

.app-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 16px;
}

.app-mini-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 700;
}

.app-mini-card .material-symbols-rounded {
    font-size: 18px;
}

.app-cta-btn {
    width: 100%;
    background: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    box-shadow: 0 4px 12px var(--primary-glow);
    transition: all 0.2s ease;
}

.app-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px var(--primary-glow);
}

.app-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    box-shadow: none;
    margin-top: 14px;
}

/* Screen 2: Simulator Quiz */
.quiz-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
}

.quiz-progress-fill {
    height: 100%;
    background: var(--primary);
    transition: width 0.3s ease;
}

.quiz-question-card {
    background: rgba(22, 22, 34, 0.8);
    border-radius: 18px;
    border: 1px solid var(--border-color);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-question-number {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
}

.quiz-question-card h4 {
    font-size: 0.95rem;
    line-height: 1.35;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.quiz-option {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 10px;
    text-align: left;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quiz-option:hover {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
    color: var(--text-primary);
}

/* Screen 3: Result Card */
.result-card {
    background: rgba(22, 22, 34, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 8px;
    animation: pulseIcon 2s infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.result-badge {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.15rem;
    color: var(--safravi);
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.result-description {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 16px;
}

.result-elements {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.element-mini {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.65rem;
    font-weight: 700;
}

.elem-bar {
    width: 120px;
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 10px;
    overflow: hidden;
}

.elem-fill {
    height: 100%;
}

/* App Nav Bar (Bottom) */
.app-nav {
    height: 52px;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: rgba(22, 22, 34, 0.85);
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.app-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-muted);
    cursor: pointer;
}

.app-nav-item .material-symbols-rounded {
    font-size: 18px;
}

.app-nav-item span:last-child {
    font-size: 0.6rem;
    font-weight: 700;
    margin-top: 2px;
}

.app-nav-item.active {
    color: var(--primary);
}

.phone-home-btn {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: #27273a;
    border-radius: 10px;
}


/* --- 6. CORE PHILOSOPHY SECTION --- */
.mizaclar {
    position: relative;
    padding: 100px 0;
    background: #0b0b12;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 18px;
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.elements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.element-card {
    background: var(--bg-surface);
    border-radius: 24px;
    padding: 30px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.element-card:hover {
    transform: translateY(-6px);
}

.element-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.04;
    background-size: cover;
    background-position: center;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.element-card:hover .element-card-bg {
    opacity: 0.12;
}

/* Fallback placeholders and backgrounds for card elements */
.card-bg-fire { background-image: url('assets/images/fire.jpg'); background-color: var(--safravi-dark); }
.card-bg-water { background-image: url('assets/images/water.jpg'); background-color: var(--balgami-dark); }
.card-bg-air { background-image: url('assets/images/air.jpg'); background-color: var(--demevi-dark); }
.card-bg-earth { background-image: url('assets/images/earth.jpg'); background-color: var(--sevdavi-dark); }

.element-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.element-card h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.badge-element {
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.element-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.element-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}

/* Element Themes */
.border-safravi { border-color: rgba(255, 111, 0, 0.15); }
.border-safravi:hover { border-color: var(--safravi); box-shadow: 0 10px 30px var(--safravi-glow); }
.bg-safravi { background: var(--safravi); }

.border-balgami { border-color: rgba(0, 137, 123, 0.15); }
.border-balgami:hover { border-color: var(--balgami); box-shadow: 0 10px 30px var(--balgami-glow); }
.bg-balgami { background: var(--balgami); }

.border-demevi { border-color: rgba(30, 136, 229, 0.15); }
.border-demevi:hover { border-color: var(--demevi); box-shadow: 0 10px 30px var(--demevi-glow); }
.bg-demevi { background: var(--demevi); }

.border-sevdavi { border-color: rgba(216, 27, 96, 0.15); }
.border-sevdavi:hover { border-color: var(--sevdavi); box-shadow: 0 10px 30px var(--sevdavi-glow); }
.bg-sevdavi { background: var(--sevdavi); }


/* --- 7. DETAILED ANALYSES SECTION --- */
.analizler {
    padding: 100px 0;
    background: #09090e;
}

.analyses-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.analysis-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.analysis-card:hover {
    transform: scale(1.02);
}

.analysis-icon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.analysis-icon .material-symbols-rounded {
    font-size: 28px;
}

.analysis-body h3 {
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.analysis-tag {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.analysis-text {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Glowing colors for Analysis Cards */
.bg-orange { background: linear-gradient(135deg, var(--safravi), var(--safravi-dark)); }
.glow-orange:hover { border-color: var(--safravi); box-shadow: 0 10px 30px var(--safravi-glow); }

.bg-teal { background: linear-gradient(135deg, var(--balgami), var(--balgami-dark)); }
.glow-teal:hover { border-color: var(--balgami); box-shadow: 0 10px 30px var(--balgami-glow); }

.bg-pink { background: linear-gradient(135deg, var(--sevdavi), var(--sevdavi-dark)); }
.glow-pink:hover { border-color: var(--sevdavi); box-shadow: 0 10px 30px var(--sevdavi-glow); }

.bg-blue { background: linear-gradient(135deg, var(--demevi), var(--demevi-dark)); }
.glow-blue:hover { border-color: var(--demevi); box-shadow: 0 10px 30px var(--demevi-glow); }

.bg-purple { background: linear-gradient(135deg, var(--partner), var(--partner-dark)); }
.glow-purple:hover { border-color: var(--partner); box-shadow: 0 10px 30px var(--partner-glow); }


/* --- 8. MİZAÇ EĞİTİMİ (PREMIUM) --- */
.egitim {
    padding: 100px 0;
    background: #0c0c16;
    position: relative;
    overflow: hidden;
}

.egitim-bg-art {
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, rgba(99, 102, 241, 0.03) 60%, rgba(0,0,0,0) 80%);
    filter: blur(80px);
    pointer-events: none;
}

.egitim-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.egitim-content h2 {
    font-size: 2.5rem;
    margin: 14px 0 20px 0;
}

.egitim-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 28px;
}

.egitim-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.egitim-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.egitim-feature-item .material-symbols-rounded {
    color: var(--accent);
}

.color-amber { color: var(--accent); }

/* Premium Course Preview Card */
.egitim-preview-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), 
                0 0 0 1px rgba(255, 255, 255, 0.05);
}

.ep-header {
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border-color);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ep-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ep-icon .material-symbols-rounded {
    font-size: 24px;
}

.ep-header h4 {
    font-size: 1.15rem;
}

.ep-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.ep-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ep-lesson {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.ep-lesson.active {
    background: rgba(99, 102, 241, 0.05);
    border-color: rgba(99, 102, 241, 0.2);
}

.ep-lesson:hover {
    border-color: rgba(255,255,255,0.1);
}

.lesson-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.ep-lesson.active .lesson-num {
    background: var(--primary);
    color: #ffffff;
}

.lesson-info {
    flex: 1;
}

.lesson-info h5 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.lesson-info p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.35;
}


/* --- 9. ADDITIONAL FEATURES --- */
.ek-ozellikler {
    padding: 100px 0;
    background: #09090e;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.feature-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-box:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
}

.fb-icon {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}


/* --- 10. DOWNLOAD SECTION --- */
.indir {
    padding: 80px 0;
    background: #0f0f18;
}

.indir-container {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 40px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.indir-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    line-height: 1.25;
}

.indir-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 520px;
    margin-bottom: 32px;
}

.app-buttons {
    display: flex;
    gap: 16px;
}

.app-btn {
    background: #09090e;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.app-btn:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    background: #12121c;
}

.app-btn-icon {
    font-size: 28px;
    color: var(--text-primary);
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.app-btn-text span {
    font-size: 0.65rem;
    color: var(--text-secondary);
    text-transform: uppercase;
}

.app-btn-text strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
}

.qr-code-box {
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 24px;
    width: 220px;
    text-align: center;
}

.qr-code {
    width: 150px;
    height: 150px;
    background: #ffffff;
    border-radius: 16px;
    margin: 0 auto 16px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-box {
    width: 130px;
    height: 130px;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #09090e;
}

.qr-icon {
    font-size: 110px;
}

.qr-code-box p {
    font-size: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.35;
}


/* --- 11. FOOTER --- */
.footer {
    background: #06060a;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links h4, .footer-contact h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-contact p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.contact-email {
    color: var(--primary) !important;
    font-weight: 700;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}


/* --- 12. RESPONSIVE DESIGN --- */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 80px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-desc {
        max-width: 600px;
    }
    
    .egitim-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .indir-container {
        flex-direction: column;
        gap: 40px;
        padding: 40px;
        text-align: center;
    }
    
    .indir-content p {
        max-width: 100%;
    }
    
    .app-buttons {
        justify-content: center;
    }
}

/* Mobile Header & Grid */
@media (max-width: 768px) {
    .nav, .btn-header {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        gap: 20px;
        width: 100%;
        justify-content: center;
    }
    
    .analyses-list {
        max-width: 100%;
    }
    
    .analysis-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

/* Small Screens (480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.15rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .app-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .app-btn {
        width: 100%;
        justify-content: center;
    }
    
    .indir-container {
        border-radius: 24px;
        padding: 30px 20px;
    }
}

/* --- 13. TELEGRAM COMMUNITY BANNER --- */
.telegram-banner {
    padding: 60px 0;
    background: #09090e;
    position: relative;
    z-index: 1;
}

.telegram-box {
    background: linear-gradient(135deg, rgba(34, 158, 217, 0.12) 0%, rgba(99, 102, 241, 0.08) 100%);
    border: 1px solid rgba(34, 158, 217, 0.22);
    border-radius: 32px;
    padding: 40px 50px;
    display: flex;
    align-items: center;
    gap: 36px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.telegram-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: #229ed9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(34, 158, 217, 0.35);
}

.telegram-icon-main {
    font-size: 32px;
}

.telegram-content {
    flex: 1;
}

.badge-telegram {
    background: rgba(34, 158, 217, 0.1) !important;
    color: #229ed9 !important;
    border: 1px solid rgba(34, 158, 217, 0.2) !important;
    margin-bottom: 12px !important;
}

.telegram-content h2 {
    font-size: 2rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.telegram-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.55;
}

.btn-telegram {
    background: #229ed9;
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(34, 158, 217, 0.3);
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-telegram:hover {
    background: #2cb3f2;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(34, 158, 217, 0.5);
    color: #ffffff;
}

@media (max-width: 900px) {
    .telegram-box {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
        gap: 24px;
    }
    
    .telegram-icon-wrapper {
        margin: 0 auto;
    }
    
    .btn-telegram {
        width: 100%;
        justify-content: center;
    }
}

/* --- 14. TESTIMONIALS (YORUMLAR) SECTION --- */
.yorumlar {
    padding: 100px 0;
    background: #0b0b12;
    position: relative;
    overflow: hidden;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.1);
}

.test-rating {
    color: var(--accent);
    font-size: 1.25rem;
    letter-spacing: 2px;
}

.test-text {
    font-size: 0.98rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
    font-style: italic;
}

.test-user {
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.test-user-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.test-user-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* --- 15. FAQ (SIKÇA SORULAN SORULAR) SECTION --- */
.faq {
    padding: 100px 0;
    background: #09090e;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(22, 22, 34, 0.8);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.05);
}

.faq-question {
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    gap: 16px;
}

.faq-arrow {
    font-size: 24px;
    color: var(--text-secondary);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

/* Modern CSS Grid transition for smooth height animation without JS height calculation */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-answer {
    grid-template-rows: 1fr;
}

.faq-answer-inner {
    overflow: hidden;
}

.faq-answer-inner p {
    padding: 0 24px 24px 24px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- 16. SCROLL REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered load delays for grid items and blocks */
.elements-grid .element-card:nth-child(1).revealed { transition-delay: 0.1s; }
.elements-grid .element-card:nth-child(2).revealed { transition-delay: 0.2s; }
.elements-grid .element-card:nth-child(3).revealed { transition-delay: 0.3s; }
.elements-grid .element-card:nth-child(4).revealed { transition-delay: 0.4s; }

.features-grid .feature-box:nth-child(1).revealed { transition-delay: 0.1s; }
.features-grid .feature-box:nth-child(2).revealed { transition-delay: 0.2s; }
.features-grid .feature-box:nth-child(3).revealed { transition-delay: 0.3s; }
.features-grid .feature-box:nth-child(4).revealed { transition-delay: 0.4s; }
.features-grid .feature-box:nth-child(5).revealed { transition-delay: 0.5s; }
.features-grid .feature-box:nth-child(6).revealed { transition-delay: 0.6s; }

.testimonials-grid .testimonial-card:nth-child(1).revealed { transition-delay: 0.1s; }
.testimonials-grid .testimonial-card:nth-child(2).revealed { transition-delay: 0.2s; }
.testimonials-grid .testimonial-card:nth-child(3).revealed { transition-delay: 0.3s; }
.testimonials-grid .testimonial-card:nth-child(4).revealed { transition-delay: 0.4s; }
.testimonials-grid .testimonial-card:nth-child(5).revealed { transition-delay: 0.5s; }
.testimonials-grid .testimonial-card:nth-child(6).revealed { transition-delay: 0.6s; }

/* --- 17. BLOG SECTION & READ MODAL --- */
.blog {
    padding: 100px 0;
    background: #0b0b12;
}

.blog-controls {
    max-width: 600px;
    margin: 0 auto 40px auto;
    display: flex;
    justify-content: center;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box input {
    width: 100%;
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 16px 20px 16px 52px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    font-size: 22px;
    pointer-events: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px var(--primary-glow);
}

.blog-card-image {
    height: 180px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--bg-surface), #1e1e2f);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.45;
    transition: transform 0.5s ease;
}

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

.blog-card-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 100px;
}

.blog-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-grow: 1;
}

.blog-card-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
}

.blog-card h3 {
    font-size: 1.25rem;
    line-height: 1.35;
    color: var(--text-primary);
}

.blog-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    flex-grow: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    margin-top: 8px;
}

.blog-more-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* Modal Reader Styles */
.blog-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 24px;
}

.blog-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.blog-modal-content {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    width: 100%;
    max-width: 780px;
    height: 90%;
    max-height: 850px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 510;
    box-shadow: 0 25px 60px rgba(0,0,0,0.8);
    transform: translateY(20px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-modal.active .blog-modal-content {
    transform: translateY(0);
}

.blog-modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(22, 22, 34, 0.3);
}

.blog-modal-meta {
    display: flex;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.blog-modal-close {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s ease;
}

.blog-modal-close:hover {
    background: rgba(255,255,255,0.1);
    color: var(--primary);
}

.blog-modal-body {
    padding: 32px;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.blog-modal-title {
    font-size: 2.2rem;
    line-height: 1.25;
    color: #ffffff;
}

.blog-modal-divider {
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 10px;
}

.blog-modal-text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.blog-modal-text h2 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-top: 32px;
    margin-bottom: 12px;
}

.blog-modal-text h3 {
    font-size: 1.25rem;
    color: #ffffff;
    margin-top: 24px;
    margin-bottom: 12px;
}

.blog-modal-text p {
    margin-bottom: 18px;
}

.blog-modal-text ul {
    margin: 12px 0 20px 24px;
}

.blog-modal-text li {
    margin-bottom: 8px;
}

.blog-modal-text strong {
    color: #ffffff;
}

.blog-modal-text em {
    color: var(--primary);
    font-style: italic;
}

.blog-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 500;
}

/* Staggered delays for blog cards */
.blog-grid .blog-card:nth-child(1).revealed { transition-delay: 0.1s; }
.blog-grid .blog-card:nth-child(2).revealed { transition-delay: 0.2s; }
.blog-grid .blog-card:nth-child(3).revealed { transition-delay: 0.3s; }

@media (max-width: 768px) {
    .blog-modal {
        padding: 12px;
    }
    
    .blog-modal-content {
        border-radius: 20px;
        height: 95%;
    }
    
    .blog-modal-header {
        padding: 16px 20px;
    }
    
    .blog-modal-body {
        padding: 20px;
    }
    
    .blog-modal-title {
        font-size: 1.6rem;
    }
}




