/* Meslek Yönelim Sistemi - CSS */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #333;
    background: #fafafa;
    line-height: 1.6;
}

/* Colors */
:root {
    --primary-light: #E3F2FD;
    --primary: #90CAF9;
    --primary-dark: #64B5F6;
    --secondary-light: #E8F5E9;
    --secondary: #A5D6A7;
    --secondary-dark: #81C784;
    --neutral-light: #F5F5F5;
    --neutral: #E0E0E0;
    --neutral-dark: #BDBDBD;
}

.bg-primary { background-color: var(--primary); }
.bg-primary-light { background-color: var(--primary-light); }
.bg-primary-dark { background-color: var(--primary-dark); }
.bg-secondary { background-color: var(--secondary); }
.bg-secondary-light { background-color: var(--secondary-light); }
.bg-secondary-dark { background-color: var(--secondary-dark); }
.bg-neutral-light { background-color: var(--neutral-light); }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }

/* Layout */
.min-h-screen { min-height: 100vh; }
.flex { display: flex; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-shrink-0 { flex-shrink: 0; }

/* Spacing */
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mr-2 { margin-right: 0.5rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }

/* Typography */
.text-xs { font-size: 0.75rem; }
.text-sm { font-size: 0.875rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.text-4xl { font-size: 2.25rem; }
.text-5xl { font-size: 3rem; }
.text-6xl { font-size: 3.75rem; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-gray-600 { color: #4B5563; }
.text-gray-700 { color: #374151; }
.text-gray-800 { color: #1F2937; }
.text-gray-500 { color: #6B7280; }
.leading-relaxed { line-height: 1.75; }
.italic { font-style: italic; }

/* Backgrounds */
.bg-gradient {
    background: linear-gradient(135deg, #E3F2FD 0%, #E8F5E9 100%);
}
.bg-white-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}
.bg-gradient-primary {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
}
.bg-gradient-secondary {
    background: linear-gradient(to bottom right, var(--secondary-light), rgba(165, 214, 167, 0.3));
}

/* Borders */
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.border-l-4 { border-left-width: 4px; }
.border-primary { border-color: var(--primary); }
.border-t { border-top-width: 1px; }
.border-gray-200 { border-color: #E5E7EB; }

/* Shadows */
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1); }

/* Buttons */
.btn-primary, .btn-secondary, .btn-success {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    color: white;
}
.btn-primary:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}
.btn-secondary {
    background: white;
    color: #374151;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn-secondary:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
.btn-success {
    background: linear-gradient(to right, var(--secondary), var(--secondary-dark));
    color: white;
}
.btn-success:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}
.btn-success:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Answer Buttons */
.answer-btn {
    width: 100%;
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: left;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    background: var(--neutral-light);
    color: #374151;
}
.answer-btn:hover {
    background: var(--neutral);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.answer-btn.selected {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

/* Tabs */
.tab-btn {
    flex: 1;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
    background: transparent;
    color: #4B5563;
}
.tab-btn:hover {
    background: var(--neutral-light);
}
.tab-btn.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.tab-content {
    display: block;
}
.tab-content.hidden {
    display: none;
}

/* Progress Bar */
.w-full { width: 100%; }
.h-3 { height: 0.75rem; }
.overflow-hidden { overflow: hidden; }
.transition-all { transition: all 0.3s; }
.duration-300 { transition-duration: 300ms; }

/* Lists */
.list-disc { list-style-type: disc; }
.list-inside { list-style-position: inside; }

/* Grid */
.grid { display: grid; }
.md\:grid-cols-2 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
@media (min-width: 768px) {
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

/* Max Width */
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-6xl { max-width: 72rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }

/* Utilities */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }

/* Hover */
.hover\:underline:hover { text-decoration: underline; }

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Yellow/Info Colors */
.bg-yellow-50 { background-color: #FFFBEB; }
.border-yellow-400 { border-color: #FBBF24; }
.text-yellow-800 { color: #92400E; }

/* Flex Utilities */
.flex-1 { flex: 1 1 0%; }

/* ============================================
   LOGO STYLES
   ============================================ */

/* Hero Logo (Ana Sayfa) */
.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo .logo-link {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-logo .logo-link:hover {
    transform: scale(1.05);
}

.logo-image {
    max-height: 80px;
    width: auto;
    display: block;
    margin: 0 auto;
}

.logo-fallback {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    font-size: 2.5rem;
    line-height: 1;
    animation: logoPulse 2s ease-in-out infinite;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-sub {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Header Logo (Anket ve Sonuç Sayfaları) */
.logo-link-header {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-link-header:hover {
    transform: scale(1.05);
}

.logo-image-header {
    max-height: 50px;
    width: auto;
    display: block;
}

.logo-fallback-header {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-fallback-header .logo-icon {
    font-size: 2rem;
}

.logo-fallback-header .logo-main {
    font-size: 1.25rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-fallback-header .logo-sub {
    font-size: 0.65rem;
    color: #6b7280;
}

/* ============================================
   NEW LANDING PAGE STYLES
   ============================================ */

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    overflow: hidden;
    padding: 2rem 1rem;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-secondary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #667eea;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.cta-icon {
    font-size: 1.5rem;
}

.cta-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.hero-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    margin-top: 1rem;
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.feature-text {
    color: #6b7280;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 0;
    background: white;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.step-item {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.step-text {
    color: #6b7280;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: #667eea;
    font-weight: 700;
}

@media (max-width: 768px) {
    .step-arrow {
        transform: rotate(90deg);
    }
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: #667eea;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.cta-button-large:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.cta-button-large:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-note {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
}

/* Animations */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

.animate-bounce-in {
    animation: bounceIn 0.8s ease-out;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-up-delay {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.animate-fade-in-up-delay-2 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.animate-fade-in-up-delay-3 {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-icon {
        font-size: 2rem;
    }
    
    .logo-main {
        font-size: 1.25rem;
    }
    
    .logo-sub {
        font-size: 0.65rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 1rem 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-button-large {
        font-size: 1.2rem;
        padding: 1.25rem 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SURVEY PAGE STYLES
   ============================================ */

.survey-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Survey Header */
.survey-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 99;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
}

.back-link:hover {
    background: #f3f4f6;
    transform: translateX(-3px);
}

.survey-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Progress Section */
.progress-section {
    background: white;
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.progress-info {
    margin-bottom: 1.5rem;
}

.progress-stats {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

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

.stat-label {
    display: block;
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.25rem;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #667eea;
}

.progress-bar-container {
    max-width: 800px;
    margin: 0 auto;
}

.progress-bar-track {
    width: 100%;
    height: 12px;
    background: #e5e7eb;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 50px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-bar-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: progressGlow 2s infinite;
}

@keyframes progressGlow {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* Survey Content */
.survey-content {
    padding: 3rem 0;
}

.question-card {
    background: white;
    border-radius: 1.5rem;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.question-header {
    margin-bottom: 1.5rem;
}

.question-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-icon {
    font-size: 1rem;
}

.scenario-box {
    background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
    border-left: 4px solid #667eea;
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: start;
    gap: 1rem;
}

.scenario-box.hidden {
    display: none;
}

.scenario-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.scenario-text {
    color: #4b5563;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.question-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Answers */
.answers-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.answer-option {
    width: 100%;
    background: #f9fafb;
    border: 2px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.answer-option::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--option-color, #667eea);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.answer-option:hover {
    border-color: var(--option-color, #667eea);
    background: white;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.answer-option:hover::before {
    transform: scaleY(1);
}

.answer-option.selected {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-color: var(--option-color, #667eea);
    border-width: 3px;
    transform: translateX(10px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
}

.answer-option.selected::before {
    transform: scaleY(1);
    width: 6px;
}

.answer-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.answer-emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.answer-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.answer-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.answer-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--option-color, #667eea);
    background: rgba(102, 126, 234, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.answer-check {
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--option-color, #667eea);
    font-weight: 800;
}

/* Navigation */
.navigation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-btn-secondary {
    background: white;
    color: #4b5563;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-btn-secondary:hover:not(:disabled) {
    background: #f3f4f6;
    transform: translateX(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.nav-btn-primary:hover:not(:disabled) {
    transform: translateX(3px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.nav-btn-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.nav-btn-success:hover:not(:disabled) {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

.nav-icon {
    font-size: 1.25rem;
}

.nav-info {
    flex: 1;
    text-align: center;
}

.nav-text {
    color: #6b7280;
    font-size: 0.875rem;
}

/* Warning Box */
.warning-box {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-top: 1rem;
}

.warning-box.hidden {
    display: none;
}

.warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.warning-text {
    color: #92400e;
    margin: 0;
    line-height: 1.6;
}

.warning-text strong {
    color: #78350f;
}

/* Responsive Survey */
@media (max-width: 768px) {
    .hero-logo .logo-image {
        max-height: 60px;
    }
    
    .logo-image-header {
        max-height: 40px;
    }
    
    .logo-icon {
        font-size: 1.75rem;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-sub {
        font-size: 0.6rem;
    }
    
    /* Survey Header - Mobil */
    .survey-header {
        padding: 0.75rem 0;
    }
    
    .survey-header .header-content {
        justify-content: center;
    }
    
    .survey-header .header-right {
        display: none; /* Ana Sayfa / Meslek Yönelim Testi kısmını gizle */
    }
    
    .logo-link-header {
        margin: 0 auto;
    }
    
    .survey-title {
        font-size: 1.25rem;
    }
    
    /* Progress Section - Mobil (Küçültülmüş) */
    .progress-section {
        padding: 1rem 0;
    }
    
    .progress-info {
        margin-bottom: 0.75rem;
    }
    
    .progress-stats {
        gap: 0.75rem;
        flex-wrap: nowrap;
    }
    
    .stat-box {
        flex: 1;
        min-width: 0;
    }
    
    .stat-label {
        font-size: 0.7rem;
        margin-bottom: 0.15rem;
    }
    
    .stat-value {
        font-size: 1rem;
    }
    
    .progress-bar-track {
        height: 8px;
    }
    
    /* Question Card - Mobil */
    .question-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .question-header {
        margin-bottom: 1rem;
    }
    
    .question-badge {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
    }
    
    .badge-icon {
        font-size: 0.875rem;
    }
    
    .scenario-box {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .scenario-icon {
        font-size: 1.25rem;
    }
    
    .scenario-text {
        font-size: 0.875rem;
    }
    
    .question-text {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    /* Answers - Mobil (Kompakt) */
    .answers-container {
        gap: 0.75rem;
    }
    
    .answer-option {
        padding: 0.875rem 1rem;
        border-radius: 0.75rem;
    }
    
    .answer-content {
        gap: 0.75rem;
    }
    
    .answer-emoji {
        font-size: 1.5rem;
    }
    
    .answer-label {
        font-size: 0.95rem;
    }
    
    .answer-number {
        font-size: 1.25rem;
        width: 32px;
        height: 32px;
    }
    
    .answer-check {
        right: 1rem;
        font-size: 1.25rem;
    }
    
    /* Navigation - Mobil */
    .nav-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .navigation-container {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .nav-info {
        order: -1;
    }
    
    .nav-text {
        font-size: 0.8rem;
    }
    
    /* Survey Content - Mobil */
    .survey-content {
        padding: 1rem 0;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Warning Box - Mobil */
    .warning-box {
        padding: 1rem;
        margin-top: 0.75rem;
    }
    
    .warning-icon {
        font-size: 1.25rem;
    }
    
    .warning-text {
        font-size: 0.875rem;
    }
    
    /* Viewport optimizasyonu - ekran alanını maksimum kullan */
    .survey-container {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
    }
    
    .survey-content {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .question-card {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .answers-container {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
}

/* ============================================
   RESULTS PAGE STYLES
   ============================================ */

.results-container {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

/* Results Header */
.results-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 99;
}

.results-header .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.results-header .header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.results-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Results Hero */
.results-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.celebration-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Results Content */
.results-content {
    padding: 3rem 0;
}

/* Tabs */
.results-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    background: white;
    padding: 0.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.result-tab {
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: none;
    background: transparent;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

.result-tab:hover {
    background: #f3f4f6;
    color: #667eea;
}

.result-tab.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.tab-icon {
    font-size: 1.25rem;
}

.tab-content-wrapper {
    animation: fadeIn 0.5s ease;
}

.tab-content-wrapper.hidden {
    display: none;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.main-card {
    grid-column: 1 / -1;
}

/* Result Cards */
.result-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.card-icon {
    font-size: 2rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.card-text {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Strength Card */
.strength-card {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
}

/* Development Card */
.development-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

/* Lists */
.strength-list,
.development-list,
.alternatives-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.strength-item,
.development-item,
.alternative-item {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: #374151;
    line-height: 1.6;
}

.check-icon {
    color: #10b981;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.arrow-icon {
    color: #667eea;
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Careers Section */
.careers-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #6b7280;
    font-size: 1.1rem;
}

.careers-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.career-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.career-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.career-header {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.career-rank {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.career-title-section {
    flex: 1;
}

.career-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.match-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 100%);
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.match-icon {
    font-size: 1rem;
}

.career-description {
    color: #4b5563;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.career-explanation {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-left: 4px solid #667eea;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 1rem;
}

.explanation-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.explanation-text {
    color: #374151;
    line-height: 1.7;
    margin: 0;
    font-style: italic;
}

.career-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
}

.detail-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
}

.detail-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.detail-text {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.growth-areas li {
    color: #6b7280;
    padding: 0.25rem 0;
    line-height: 1.6;
    position: relative;
    padding-left: 1.25rem;
}

.growth-areas li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 800;
}

.alternatives-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

/* Charts Section */
.charts-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.chart-card {
    background: white;
}

.chart-wrapper {
    height: 300px;
    position: relative;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.secondary-btn {
    background: white;
    color: #4b5563;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.secondary-btn:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.primary-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: white;
    padding: 4rem 0;
    margin-top: 4rem;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.contact-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

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

.contact-item-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item-content {
    flex: 1;
}

.contact-item-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.contact-item-link {
    color: #90caf9;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item-link:hover {
    color: white;
    text-decoration: underline;
}

.contact-item-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Results */
@media (max-width: 768px) {
    .results-hero {
        padding: 3rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .main-card {
        grid-column: 1;
    }
    
    .career-card {
        padding: 1.5rem;
    }
    
    .career-name {
        font-size: 1.5rem;
    }
    
    .career-details {
        grid-template-columns: 1fr;
    }
    
    .charts-section {
        grid-template-columns: 1fr;
    }
    
    .chart-wrapper {
        height: 250px;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .results-tabs {
        flex-direction: column;
    }
    
    .result-tab {
        width: 100%;
    }
}

