/* =======================================================
   SaaS CV MASTER CSS (Front-end & Admin Panel Ortak)
======================================================= */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Renk Paleti */
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --primary-light: #eff6ff;
    --dark: #0f172a;
    --dark-hover: #1e293b;
    --text-main: #334155;
    --text-light: #64748b;
    --border: #e2e8f0;
    --bg-body: #f8fafc;
    --bg-white: #ffffff;
    --danger: #ef4444;
    --success: #10b981;
    --warning: #f59e0b;
    
    /* GÃ¶lgeler (Glassmorphism & Depth) */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-glass: 0 20px 40px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

/* ================= UTILITIES ================= */

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

/* Flexbox utilities */
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.align-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }

/* Margins */
.mt-4 { margin-top: 16px; }
.mb-4 { margin-bottom: 16px; }

/* Text */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }

/* Buton ve Girdiler */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,0.3); }

/* Glassmorphism Kartlar */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    box-shadow: var(--shadow-glass);
    padding: 24px;
}

/* ================= MODERN CLEAN UI & ACCENT BORDER CARDS ================= */
.accent-card {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
    padding: 32px 28px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.accent-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.accent-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: var(--primary);
}

.accent-success::before { background: var(--success); }
.accent-warning::before { background: var(--warning); }
.accent-danger::before { background: var(--danger); }
.accent-dark::before { background: var(--dark); }


/* Form ElemanlarÄ± */
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* ================= MOBÄ°L MÃœKEMMELLÄ°K (380px ve AltÄ±) ================= */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .btn { width: 100%; padding: 12px; }
    
    .glass-card { 
        padding: 20px 16px; 
        border-radius: 12px; 
    }
}

@media (max-width: 380px) {
    /* 380px altÄ± ekstrem mobil Ã§Ã¶zÃ¼nÃ¼rlÃ¼klerde text veya kutu taÅŸmalarÄ±nÄ± engellemek iÃ§in */
    body { font-size: 14px; }
    h1 { font-size: 22px; }
    .container { padding: 0 12px; }
    .form-control { font-size: 14px; padding: 10px 12px; }
    .btn { font-size: 14px; }
}

/* --- ANA SAYFA EKLENTILERI MIMARISI --- */

        

        

        body {
            background-color: var(--bg);
            color: var(--text-main);
            overflow-x: hidden;
            /* Modern Soyut Gradient Arka Plan */
            background-image:
                radial-gradient(circle at 15% 50%, rgba(239, 68, 68, 0.08), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(37, 99, 235, 0.08), transparent 25%);
            background-attachment: fixed;
        }

        /* ===== HEADER ===== */
        header {
            width: 100%;
            padding: 20px 0;
            display: flex;
            justify-content: center;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            width: 100%;
            max-width: 1200px;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 800;
            color: var(--dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo i {
            color: var(--primary);
        }

        .nav-btn {
            padding: 10px 24px;
            background: var(--dark);
            color: white;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s;
        }

        .nav-btn:hover {
            background: var(--primary);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 24px 60px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        /* Glassmorphism Box */
        .glass-box {
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.8);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
            border-radius: 24px;
            padding: 60px 40px;
            max-width: 900px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        /* Iþýk yansýmasý detayý */
        .glass-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.8), transparent);
            transform: skewX(-25deg);
            animation: shine 6s infinite;
        }

        @keyframes shine {
            0% {
                left: -100%;
            }

            20% {
                left: 200%;
            }

            100% {
                left: 200%;
            }
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            color: var(--dark);
            line-height: 1.15;
            margin-bottom: 24px;
            letter-spacing: -1px;
        }

        .hero h1 span {
            color: var(--primary);
        }

        .hero p {
            font-size: 18px;
            color: var(--text-light);
            max-width: 650px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        /* Dev Kýrmýzý Buton */
        .cta-group {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: var(--primary);
            color: white;
            font-size: 20px;
            font-weight: 700;
            text-decoration: none;
            padding: 18px 48px;
            border-radius: 50px;
            box-shadow: 0 10px 25px rgba(239, 68, 68, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .cta-btn:hover {
            background: var(--primary-hover);
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 35px rgba(239, 68, 68, 0.5);
        }

        .cta-btn i {
            font-size: 22px;
            transition: transform 0.3s;
        }

        .cta-btn:hover i {
            transform: translateX(5px) translateY(-5px);
        }

        .cta-btn-alt {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: var(--dark);
            color: white;
            font-size: 20px;
            font-weight: 700;
            text-decoration: none;
            padding: 18px 48px;
            border-radius: 50px;
            box-shadow: 0 10px 25px rgba(15, 23, 42, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .cta-btn-alt:hover {
            background: #000;
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        }

        .cta-btn-alt i {
            font-size: 22px;
            transition: transform 0.3s;
        }

        .cta-btn-alt:hover i {
            transform: translateX(5px) translateY(-5px);
        }

        .trusted-by {
            margin-top: 30px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-light);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .trusted-by i {
            color: #f59e0b;
            /* Altýn Yýldýz */
        }

        /* ===== FEATURES (LEFT ACCENT BORDER) ===== */
        .features {
            width: 100%;
            max-width: 1200px;
            margin: 20px auto 80px;
            padding: 0 24px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: white;
            border-radius: 12px;
            padding: 32px 28px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        }

        /* Left Accent Border (Sol Vurgu) */
        .feature-card::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 6px;
        }

        .fc-red::before {
            background: var(--primary);
        }

        .fc-blue::before {
            background: #2563eb;
        }

        .fc-green::before {
            background: #10b981;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 8px;
        }

        .fc-red .feature-icon {
            background: #fef2f2;
            color: var(--primary);
        }

        .fc-blue .feature-icon {
            background: #eff6ff;
            color: #2563eb;
        }

        .fc-green .feature-icon {
            background: #ecfdf5;
            color: #10b981;
        }

        .feature-title {
            font-size: 20px;
            font-weight: 700;
            color: var(--dark);
        }

        .feature-desc {
            font-size: 15px;
            color: var(--text-light);
            line-height: 1.6;
        }

        /* ===== TESTIMONIALS (Yorumlar / Marquee) ===== */
        .testimonials {
            width: 100%;
            padding: 60px 0 80px;
            overflow: hidden;
            background: white;
            border-top: 1px solid var(--border);
        }

        .testi-header {
            text-align: center;
            margin-bottom: 40px;
            padding: 0 20px;
        }

        .testi-header h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 12px;
        }

        .testi-header p {
            font-size: 16px;
            color: var(--text-light);
        }

        .marquee-wrapper {
            position: relative;
            width: 100%;
            display: flex;
            /* Ekran kenarlarýný sönümleyip orta kýsmý net býrakmak için Mask-Image (Fade Efekti) */
            mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        }

        .marquee-container {
            display: flex;
            gap: 24px;
            padding: 10px 0;
            width: max-content;
            animation: scroll-left 50s linear infinite;
        }

        .marquee-container:hover {
            animation-play-state: paused;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(calc(-50% - 12px));
            }

            /* Yarýda basa saracak sekilde 2 katý koyduk */
        }

        .review-card {
            width: 360px;
            background: var(--bg);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
            display: flex;
            flex-direction: column;
            gap: 16px;
            flex-shrink: 0;
            transition: transform 0.3s;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .reviewer-img {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid white;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .reviewer-details h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 2px;
        }

        .reviewer-details span {
            font-size: 13px;
            color: var(--text-light);
        }

        .stars {
            color: #f59e0b;
            font-size: 12px;
            margin-bottom: 4px;
            display: flex;
            gap: 2px;
        }

        .review-text {
            font-size: 14.5px;
            color: var(--text-main);
            line-height: 1.6;
            font-style: italic;
        }

        .review-text::before {
            content: '"';
            font-size: 20px;
            color: var(--text-light);
            opacity: 0.5;
            margin-right: 4px;
        }

        .review-text::after {
            content: '"';
            font-size: 20px;
            color: var(--text-light);
            opacity: 0.5;
            margin-left: 4px;
        }

        /* ===== RECENT BLOGS (Vitrin) ===== */
        .recent-blogs {
            width: 100%;
            padding: 80px 24px;
            background: white;
            border-top: 1px solid var(--border);
        }

        .rb-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .rb-header h2 {
            font-size: 32px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 12px;
            letter-spacing: -1px;
        }

        .rb-header p {
            font-size: 16px;
            color: var(--text-light);
        }

        .rb-grid {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .rb-card {
            background: var(--bg);
            border-radius: 12px;
            border: 1px solid var(--border);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: transform 0.3s, box-shadow 0.3s;
            text-decoration: none;
            color: inherit;
        }

        .rb-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
        }

        .rb-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-bottom: 1px solid var(--border);
            filter: brightness(0.95);
        }

        .rb-body {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .rb-meta {
            font-size: 12px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 8px;
            text-transform: uppercase;
        }

        .rb-title {
            font-size: 19px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 10px;
            line-height: 1.3;
        }

        .rb-card:hover .rb-title {
            color: var(--primary);
            transition: 0.2s;
        }

        .rb-desc {
            font-size: 14.5px;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 16px;
            flex: 1;
        }

        .rb-link {
            font-size: 14px;
            font-weight: 700;
            color: var(--dark);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .rb-card:hover .rb-link {
            color: var(--primary);
        }

        .rb-center {
            display: flex;
            justify-content: center;
            margin-top: 10px;
        }

        .rb-btn-all {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            color: var(--dark);
            border: 2px solid var(--border);
            padding: 14px 36px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: 0.3s;
        }

        .rb-btn-all:hover {
            border-color: var(--dark);
            background: #f8fafc;
            transform: scale(1.02);
        }

        /* ===== FOOTER ===== */
        footer {
            width: 100%;
            text-align: center;
            padding: 40px 24px;
            border-top: 1px solid var(--border);
            color: var(--text-light);
            font-size: 14px;
        }

        /* ===== SCROLL REVEAL ANIMATIONS (Sýfýr Yük, GPU Destekli) ===== */
        .reveal {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 34px;
                margin-top: 10px;
            }

            .hero {
                padding: 20px 20px 30px;
            }

            .glass-box {
                padding: 40px 20px;
            }

            .cta-btn,
            .cta-btn-alt {
                font-size: 17px;
                padding: 14px 10px;
                width: 100%;
                min-height: 64px;
            }

            .nav-link-desktop {
                display: none;
            }

            .nav-container .logo {
                font-size: 20px;
            }

            .nav-container .nav-btn {
                font-size: 14px;
                padding: 8px 16px;
            }
        }

        /* ===== DUYURU BANNER ===== */
        #duyuru-bar {
            width: 100%;
            padding: 11px 0;
            display: flex;
            align-items: center;
            background: linear-gradient(90deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
            position: relative;
            overflow: hidden;
            font-size: 14px;
            font-weight: 600;
            border-bottom: 1px solid rgba(239, 68, 68, 0.3);
            z-index: 200;
            height: 42px;
        }

        #duyuru-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 60%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }

            100% {
                left: 200%;
            }
        }

        /* Kayan metin sarmalayýcý */
        #duyuru-track {
            display: flex;
            align-items: center;
            gap: 60px;
            white-space: nowrap;
            animation: ticker 18s linear infinite;
            will-change: transform;
        }

        #duyuru-track:hover {
            animation-play-state: paused;
        }

        @keyframes ticker {
            0% {
                transform: translateX(100vw);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        #duyuru-bar span {
            background: linear-gradient(90deg, #f87171, #fbbf24, #f87171);
            background-size: 200%;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 4s ease infinite;
            white-space: nowrap;
        }

        @keyframes gradientShift {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }

        #duyuru-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: linear-gradient(90deg, #ef4444, #f97316);
            color: white;
            padding: 5px 14px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            text-decoration: none;
            transition: 0.3s;
            white-space: nowrap;
            animation: pulse-btn 2s infinite;
        }

        @keyframes pulse-btn {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
            }

            50% {
                box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
            }
        }

        #duyuru-btn:hover {
            transform: scale(1.05);
            filter: brightness(1.1);
        }

        #duyuru-kapat {
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            font-size: 16px;
            line-height: 1;
            padding: 4px;
            transition: color 0.2s;
        }

        #duyuru-kapat:hover {
            color: white;
        }
    
