/* CV Oluşturucu - Ana Stil Dosyası */

/* CSS Değişkenleri */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --danger-color: #ef4444;
    --dark-bg: #1e293b;
    --light-bg: #f8fafc;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #94a3b8;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Butonlar */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

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

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-success {
    background: var(--secondary-color);
    color: var(--white);
}

.btn-danger {
    background: var(--danger-color);
    color: var(--white);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

/* CV Showcase Slider */
.cv-showcase {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.cv-slider {
    position: relative;
    width: 100%;
    height: 520px;
    perspective: 1000px;
}

.cv-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 480px;
    opacity: 0;
    transform: translateX(100px) rotateY(-15deg) scale(0.9);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.cv-slide.active {
    opacity: 1;
    transform: translateX(0) rotateY(0) scale(1);
    pointer-events: auto;
}

.cv-slide.prev {
    opacity: 0;
    transform: translateX(-100px) rotateY(15deg) scale(0.9);
}

/* CV Preview Card Base */
.cv-preview-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    height: 450px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

/* Template Label */
.template-label {
    text-align: center;
    height: 30px;
    line-height: 30px;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: transparent;
}

/* Slider Navigation Dots */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    position: relative;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(37, 99, 235, 0.3);
}

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Template Counter */
.template-counter {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* ========================================
   TEMPLATE 1: Modern Klasik Preview
   ======================================== */
.template-preview-1 {
    padding: 24px;
}

.template-preview-1 .cv-preview-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 3px solid #2c3e50;
    margin-bottom: 16px;
}

.template-preview-1 .cv-preview-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border: 3px solid #2c3e50;
    flex-shrink: 0;
}

.template-preview-1 .cv-preview-name .name-line {
    width: 140px;
    height: 14px;
    background: #2c3e50;
    border-radius: 4px;
    margin-bottom: 6px;
}

.template-preview-1 .cv-preview-name .title-line {
    width: 100px;
    height: 8px;
    background: #94a3b8;
    border-radius: 4px;
}

.template-preview-1 .cv-preview-contact {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.template-preview-1 .cv-preview-contact span {
    width: 70px;
    height: 6px;
    background: #cbd5e1;
    border-radius: 3px;
}

.template-preview-1 .cv-preview-section {
    margin-bottom: 14px;
}

.template-preview-1 .section-title {
    width: 80px;
    height: 10px;
    background: #2c3e50;
    border-radius: 4px;
    margin-bottom: 10px;
}

.template-preview-1 .section-content .content-line {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 6px;
}

.template-preview-1 .content-line:not(.short) {
    width: 100%;
}

.template-preview-1 .content-line.short {
    width: 70%;
}

.template-preview-1 .cv-preview-skills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.template-preview-1 .cv-preview-skills span {
    width: 60px;
    height: 22px;
    background: #f0f0f0;
    border-radius: 4px;
}

/* ========================================
   TEMPLATE 2: Profesyonel Mavi Preview
   ======================================== */
.template-preview-2 {
    display: grid;
    grid-template-columns: 38% 62%;
    height: 100%;
}

.template-preview-2 .cv-preview-sidebar {
    background: linear-gradient(180deg, #2c3e50 0%, #1a252f 100%);
    padding: 20px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.template-preview-2 .cv-preview-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.template-preview-2 .sidebar-section {
    width: 100%;
    margin-bottom: 16px;
}

.template-preview-2 .sidebar-title {
    width: 70%;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    margin-bottom: 12px;
}

.template-preview-2 .sidebar-item {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 3px;
    margin-bottom: 8px;
}

.template-preview-2 .skill-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    margin-bottom: 10px;
    overflow: hidden;
}

.template-preview-2 .skill-fill {
    height: 100%;
    background: #3498db;
    border-radius: 3px;
}

.template-preview-2 .cv-preview-main {
    padding: 20px;
    background: #f8f9fa;
}

.template-preview-2 .main-name {
    width: 70%;
    height: 16px;
    background: #2c3e50;
    border-radius: 4px;
    margin-bottom: 20px;
}

.template-preview-2 .main-section {
    margin-bottom: 16px;
}

.template-preview-2 .main-section .section-title {
    width: 60%;
    height: 10px;
    background: #2c3e50;
    border-radius: 4px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 8px;
}

.template-preview-2 .main-section .section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #3498db;
    border-radius: 2px;
}

.template-preview-2 .main-section .content-line {
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    margin-bottom: 6px;
}

.template-preview-2 .main-section .content-line:not(.short) {
    width: 100%;
}

.template-preview-2 .main-section .content-line.short {
    width: 60%;
}

/* ========================================
   TEMPLATE 3: Minimalist Preview
   ======================================== */
.template-preview-3 {
    padding: 30px 24px;
    font-family: 'Georgia', serif;
}

.template-preview-3 .cv-preview-header.centered {
    text-align: center;
    margin-bottom: 24px;
}

.template-preview-3 .cv-preview-name.large .name-line {
    width: 180px;
    height: 16px;
    background: #333;
    border-radius: 0;
    margin: 0 auto 12px;
    letter-spacing: 3px;
}

.template-preview-3 .divider-line {
    width: 80px;
    height: 1px;
    background: #333;
    margin: 0 auto 12px;
}

.template-preview-3 .cv-preview-contact.minimal {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.template-preview-3 .cv-preview-contact.minimal span {
    width: 60px;
    height: 5px;
    background: #999;
    border-radius: 2px;
}

.template-preview-3 .cv-preview-section.minimal {
    margin-bottom: 20px;
}

.template-preview-3 .section-title.small {
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 0;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.template-preview-3 .cv-preview-section.minimal .content-line {
    height: 5px;
    background: #e5e5e5;
    border-radius: 2px;
    margin-bottom: 8px;
}

.template-preview-3 .cv-preview-section.minimal .content-line:not(.short) {
    width: 100%;
}

.template-preview-3 .cv-preview-section.minimal .content-line.short {
    width: 65%;
}

/* ========================================
   TEMPLATE 5: Elegant Gold Preview
   ======================================== */
.template-preview-5 {
    padding: 24px;
}

.template-preview-5 .cv-preview-header.gold {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.template-preview-5 .header-left {
    flex: 1;
}

.template-preview-5 .name-line.gold {
    width: 160px;
    height: 18px;
    background: #1a1a2e;
    border-radius: 0;
    margin-bottom: 8px;
}

.template-preview-5 .location-line {
    width: 100px;
    height: 6px;
    background: #999;
    border-radius: 3px;
}

.template-preview-5 .cv-preview-photo.gold {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border: 3px solid #d4af37;
}

.template-preview-5 .gold-divider {
    height: 4px;
    background: #d4af37;
    margin-bottom: 12px;
}

.template-preview-5 .gold-contact {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.template-preview-5 .gold-contact span {
    width: 60px;
    height: 5px;
    background: #ddd;
    border-radius: 2px;
}

.template-preview-5 .gold-section {
    margin-bottom: 16px;
}

.template-preview-5 .gold-title {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
    height: 24px;
    margin-bottom: 10px;
    position: relative;
}

.template-preview-5 .gold-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: #d4af37;
}

.template-preview-5 .gold-section .content-line {
    height: 6px;
    background: #e8e8e8;
    border-radius: 3px;
    margin-bottom: 6px;
}

.template-preview-5 .gold-section .content-line:not(.short) {
    width: 100%;
}

.template-preview-5 .gold-section .content-line.short {
    width: 55%;
}

/* Slider Animation Keyframes */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px) rotateY(-15deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateY(0) scale(1);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0) rotateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(-100px) rotateY(15deg) scale(0.9);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }
    50% {
        box-shadow: 0 30px 60px -12px rgba(37, 99, 235, 0.35);
    }
}

.cv-slide.active .cv-preview-card {
    animation: pulse 3s ease-in-out infinite;
}

/* Progress Bar for Auto-slide */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: progress 3s linear infinite;
}

@keyframes progress {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Progress Bar Container */
.slider-progress-container {
    position: relative;
    width: 80%;
    height: 3px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 2px;
    overflow: hidden;
    margin: 12px auto 0;
}

.slider-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
    animation: progressBar 3s linear;
}

@keyframes progressBar {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Hover Effect on Cards */
.cv-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.3);
}

/* Shimmer Effect for Loading Feel */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.cv-slide.active .content-line,
.cv-slide.active .name-line,
.cv-slide.active .title-line {
    background-size: 200% 100%;
    animation: shimmer 2s linear infinite;
}

.template-preview-1 .content-line {
    background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
    background-size: 200% 100%;
}

.template-preview-2 .main-section .content-line {
    background: linear-gradient(90deg, #e2e8f0 25%, #f1f5f9 50%, #e2e8f0 75%);
    background-size: 200% 100%;
}

.template-preview-3 .cv-preview-section.minimal .content-line {
    background: linear-gradient(90deg, #e5e5e5 25%, #f0f0f0 50%, #e5e5e5 75%);
    background-size: 200% 100%;
}

.template-preview-5 .gold-section .content-line {
    background: linear-gradient(90deg, #e8e8e8 25%, #f5f5f5 50%, #e8e8e8 75%);
    background-size: 200% 100%;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .cv-showcase {
        max-width: 320px;
    }
    
    .cv-slider {
        height: 460px;
    }
    
    .cv-slide {
        height: 420px;
    }
    
    .cv-preview-card {
        height: 390px;
    }
}

@media (max-width: 768px) {
    .cv-showcase {
        max-width: 280px;
        margin-top: 2rem;
    }
    
    .cv-slider {
        height: 400px;
    }
    
    .cv-slide {
        height: 360px;
    }
    
    .cv-preview-card {
        height: 330px;
    }
    
    .template-counter {
        display: none;
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title p {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    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(--primary-light));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.3);
    border-color: transparent;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

.feature-card h3 {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: var(--light-bg);
}

.steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: var(--border-color);
    z-index: 0;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 1rem;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    width: 100%;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem 2.5rem;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 0.4rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    flex-wrap: nowrap;
}

.pricing-price span {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-medium);
    white-space: nowrap;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 1rem;
    line-height: 1.5;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--secondary-color);
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 3rem 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-light);
}

.footer-links h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-text h1 {
        font-size: 2.25rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        flex-direction: column;
        gap: 2rem;
    }

    .steps::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* Form Stilleri */
.form-container {
    max-width: 500px;
    margin: 3rem auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-container-lg {
    max-width: 800px;
}

.form-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: var(--danger-color);
}

.error-message {
    display: block;
    color: var(--danger-color);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-check input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.form-check label {
    margin: 0;
    cursor: pointer;
    font-weight: 400;
}

.form-divider {
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
}

.form-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border-color);
}

.form-divider span {
    background: var(--white);
    padding: 0 1rem;
    position: relative;
    color: var(--text-medium);
    font-size: 0.875rem;
}

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

.social-login .btn {
    flex: 1;
}

/* Auth Pages - Modern Professional Design */
.auth-page {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: stretch;
    background: var(--white);
}

.auth-container {
    display: flex;
    width: 100%;
    min-height: calc(100vh - 80px);
}

/* Sol Panel - Branding & İllüstrasyon */
.auth-brand-panel {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.auth-brand-panel::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.auth-brand-panel::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.auth-brand-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    max-width: 400px;
}

.auth-brand-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    margin: 0 auto 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.auth-brand-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.auth-brand-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.auth-brand-features {
    list-style: none;
    text-align: left;
}

.auth-brand-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1rem;
    opacity: 0.95;
}

.auth-brand-features li 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: 0.75rem;
}

/* Sağ Panel - Form */
.auth-form-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background: var(--light-bg);
}

.auth-form-wrapper {
    width: 100%;
    max-width: 440px;
}

.auth-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-form-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.auth-form-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.auth-form-subtitle {
    font-size: 1rem;
    color: var(--text-medium);
}

/* Modern Form Stili */
.auth-form .form-group {
    margin-bottom: 1.25rem;
}

.auth-form .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9375rem;
}

.auth-form .input-wrapper {
    position: relative;
}

.auth-form .input-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.auth-form .input-wrapper input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s ease;
}

.auth-form .input-wrapper input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.auth-form .input-wrapper input:focus + i,
.auth-form .input-wrapper:focus-within i {
    color: var(--primary-color);
}

.auth-form .input-wrapper input::placeholder {
    color: var(--text-light);
}

/* Form Row - İki Sütun */
.auth-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* Form Actions */
.auth-form .form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.auth-form .form-check {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.auth-form .form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.auth-form .form-check label {
    margin: 0;
    font-weight: 400;
    color: var(--text-medium);
    cursor: pointer;
    font-size: 0.9375rem;
}

.auth-form .forgot-password {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.auth-form .forgot-password:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Submit Button */
.auth-form .btn-auth {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.auth-form .btn-auth:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.auth-form .btn-auth:active {
    transform: translateY(0);
}

/* Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 1.75rem 0;
    gap: 1rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Social Login */
.auth-social {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.auth-social .btn-social {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.auth-social .btn-social:hover {
    border-color: var(--text-light);
    background: var(--light-bg);
}

.auth-social .btn-social i {
    font-size: 1.25rem;
}

.auth-social .btn-google i {
    color: #EA4335;
}

/* Auth Links */
.auth-links {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.auth-links p {
    color: var(--text-medium);
    font-size: 0.9375rem;
}

.auth-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.auth-links a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Error Alert */
.auth-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-lg);
    margin-bottom: 1.5rem;
}

.auth-alert.error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.auth-alert.success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.auth-alert i {
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.auth-alert-content {
    flex: 1;
}

.auth-alert-title {
    font-weight: 600;
    margin-bottom: 2px;
}

.auth-alert-message {
    font-size: 0.9375rem;
}

/* Terms Checkbox */
.auth-form .terms-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.auth-form .terms-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary-color);
    cursor: pointer;
    flex-shrink: 0;
}

.auth-form .terms-check label {
    font-size: 0.875rem;
    color: var(--text-medium);
    line-height: 1.5;
    cursor: pointer;
}

.auth-form .terms-check label a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.auth-form .terms-check label a:hover {
    text-decoration: underline;
}

/* Responsive - Auth Pages */
@media (max-width: 992px) {
    .auth-container {
        flex-direction: column;
    }
    
    .auth-brand-panel {
        display: none;
    }
    
    .auth-form-panel {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .auth-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .auth-form-panel {
        padding: 1.5rem 1rem;
    }
    
    .auth-form-wrapper {
        max-width: 100%;
    }
    
    .auth-form-title {
        font-size: 1.75rem;
    }
    
    .auth-form .form-actions {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* Toast Notifications */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateX(calc(100% + 2rem));
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 9999;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-success {
    border-left: 4px solid var(--secondary-color);
}

.toast-success i {
    color: var(--secondary-color);
}

.toast-error {
    border-left: 4px solid var(--danger-color);
}

.toast-error i {
    color: var(--danger-color);
}

/* Loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Dashboard */
.dashboard {
    padding: 2rem 0;
    min-height: calc(100vh - 200px);
}

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

.dashboard-header h1 {
    font-size: 2rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.stat-card h3 {
    font-size: 0.875rem;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.stat-card .value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.cv-list {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.cv-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

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

.cv-item:hover {
    background: var(--light-bg);
}

.cv-info h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.cv-info p {
    color: var(--text-medium);
    font-size: 0.875rem;
}

.cv-actions {
    display: flex;
    gap: 0.5rem;
}

.empty-state {
    text-align: center;
    padding: 3rem;
}

.empty-state i {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .cv-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .cv-actions {
        width: 100%;
        justify-content: flex-end;
    }
}
