/* =============================================
   XTURK PHP - Ana Stil Dosyası
   Next.js Tailwind CSS'den 1:1 aktarılmıştır
   ============================================= */

/* ===== CSS VARIABLES (Tailwind config'den) ===== */
:root {
    --primary: #2D3142;
    --primary-dark: #1A1D2B;
    --primary-light: #3D4259;
    --secondary: #C5A55A;
    --secondary-light: #D4BA79;
    --secondary-dark: #B08F3E;
    --accent: #4F8EF7;
    --accent-light: #7AADFF;
    --accent-dark: #2A6FE0;

    --background: #FFFFFF;
    --surface: #F8F9FC;
    --surface-2: #EFF1F5;
    --foreground: #1A1D2B;

    /* ===== STRICT COLOR PALETTE & THEME VARIABLES ===== */
    :root {
        /* Logo Colors (Official) */
        --primary: #2D3142;
        /* Deep Navy / Charcoal Blue */
        --primary-dark: #1F222E;
        --primary-light: #4F5D75;
        --secondary: #C5A55A;
        /* Gold / Brass */
        --secondary-light: #E5C57A;
        --secondary-dark: #A5853A;

        /* Neutrals */
        --surface: #FFFFFF;
        --surface-alt: #F8FAFC;
        --text-main: #2D3142;
        --text-muted: #64748B;
        --border: #E2E8F0;

        /* Effects */
        --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        --glass-bg: rgba(255, 255, 255, 0.7);
        --glass-border: rgba(255, 255, 255, 0.5);
    }



    /* ===== VISUAL EFFECTS (PHASE 3) ===== */

    /* 1. Magnetic Buttons & Glow */
    .btn-magnetic {
        position: relative;
        overflow: hidden;
        transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1;
    }

    .btn-glow-effect {
        position: absolute;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(197, 165, 90, 0.4) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: 0;
        opacity: 0;
        transition: opacity 0.3s, width 0.3s, height 0.3s;
    }

    .btn-magnetic:hover .btn-glow-effect {
        width: 200px;
        height: 200px;
        opacity: 1;
    }

    /* 2. Noise Texture (Glass Enhancement) */
    .glass-noise {
        position: relative;
        backdrop-filter: blur(16px);
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
    }

    .glass-noise::before {
        content: '';
        position: absolute;
        inset: 0;
        z-index: -1;
        opacity: 0.05;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        pointer-events: none;
        border-radius: inherit;
    }

    /* 3. Signature Preloader */
    #preloader {
        position: fixed;
        inset: 0;
        background: linear-gradient(135deg, var(--primary), var(--primary-light));
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity 0.8s ease-out, visibility 0.8s;
    }

    #preloader.loaded {
        opacity: 0;
        visibility: hidden;
    }

    .preloader-logo {
        width: 120px;
        height: 120px;
        position: relative;
    }

    .preloader-path {
        fill: none;
        stroke: var(--secondary);
        stroke-width: 4;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke-dasharray: 1000;
        stroke-dashoffset: 1000;
        animation: drawParams 2.5s ease-in-out forwards;
    }

    @keyframes drawParams {
        to {
            stroke-dashoffset: 0;
        }
    }

    /* Scrollytelling Path (Line Animation) */
    .scroll-path-container {
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--border);
        transform: translateX(-50%);
        z-index: -1;
    }

    .scroll-path-fill {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--secondary);
        height: 0%;
        /* JS ile kontrol edilecek */
        transition: height 0.1s linear;
    }

    --gray-50: #F8F9FC;
    --gray-100: #EFF1F5;
    --gray-200: #DDE0E8;
    --gray-300: #C4C8D4;
    --gray-400: #9DA3B3;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;

    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}

/* ===== TYPOGRAPHY ===== */
.heading-1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.heading-2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.heading-3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    line-height: 1.3;
}

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

/* ===== LAYOUT ===== */
.container-custom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* ===== ICON SIZES ===== */
.icon-xs {
    width: 14px;
    height: 14px;
}

.icon-sm {
    width: 18px;
    height: 18px;
}

.icon-md {
    width: 24px;
    height: 24px;
}

.accent-icon {
    color: var(--secondary);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
    justify-content: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 165, 90, 0.3);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    font-weight: 600;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    cursor: pointer;
    backdrop-filter: blur(4px);
}

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

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--primary);
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid var(--primary);
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(45, 49, 66, 0.3);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ===== TOPBAR ===== */
.topbar {
    background: var(--primary-dark);
    color: white;
    font-size: 13px;
    padding: 8px 0;
    display: none;
}

@media (min-width: 1024px) {
    .topbar {
        display: block;
    }
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left {
    display: flex;
    gap: 24px;
}

.topbar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.topbar-link:hover {
    color: var(--secondary);
}

.topbar-right {
    color: rgba(255, 255, 255, 0.6);
}

/* ===== HEADER ===== */
.main-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--primary);
    padding: 16px 0;
    transition: var(--transition);
}

.main-header.scrolled {
    background: rgba(45, 49, 66, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
}

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

.header-logo img {
    height: 48px;
    width: auto;
    transition: var(--transition);
}

.main-header.scrolled .header-logo img {
    height: 40px;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
    align-items: center;
    gap: 8px;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
    }
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 70%;
}

/* Dropdown */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    z-index: 100;
    animation: fadeDown 0.2s ease;
}

.nav-dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-item {
    display: block;
    padding: 10px 16px;
    color: var(--gray-700);
    font-size: 14px;
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--surface);
    color: var(--primary);
    padding-left: 24px;
}

/* Header Actions */
.header-actions {
    display: none;
    align-items: center;
    gap: 12px;
}

@media (min-width: 1024px) {
    .header-actions {
        display: flex;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: white;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.mobile-menu.open {
    pointer-events: all;
    opacity: 1;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 380px;
    height: 100%;
    background: var(--primary);
    padding: 80px 24px 32px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: var(--transition-slow);
    overflow-y: auto;
}

.mobile-menu.open .mobile-menu-content {
    transform: translateX(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: block;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition-fast);
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.mobile-sub-links {
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 4px;
}

.mobile-sub-links a {
    padding: 10px 16px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    display: block;
    border-radius: var(--radius);
}

.mobile-sub-links a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-footer {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-contact {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.mobile-contact a:hover {
    color: var(--secondary);
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #1A1D2B 0%, #2D3142 25%, #3D4259 50%, #2D3142 75%, #1A1D2B 100%);
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float-slow 20s ease-in-out infinite;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    top: -10%;
    right: -10%;
}

.hero-blob-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -5%;
    left: -5%;
    animation-delay: -7s;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: #8B5CF6;
    top: 30%;
    left: 20%;
    animation-delay: -14s;
    opacity: 0.1;
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 60px 0;
}

.hero-logo-wrapper {
    margin-bottom: 32px;
}

.hero-x-logo {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.hero-x-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.hero-x-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(197, 165, 90, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    animation: badge-pulse 2s ease-in-out infinite;
}

.hero-title {
    max-width: 900px;
    margin: 0 auto 24px;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hero-stat {
    text-align: center;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    animation: bounce 2s ease-in-out infinite;
    z-index: 10;
}

.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, var(--background), transparent);
    z-index: 5;
}

/* ===== HERO MODERN v2 ===== */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1d2b 0%, #2D3142 30%, #1F222E 70%, #0f1219 100%);
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-glow-conic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: conic-gradient(from 0deg,
            rgba(197, 165, 90, 0.15),
            rgba(79, 93, 117, 0.1),
            rgba(197, 165, 90, 0.05),
            rgba(79, 93, 117, 0.1),
            rgba(197, 165, 90, 0.15));
    border-radius: 50%;
    filter: blur(80px);
    animation: rotate-glow 20s linear infinite;
    z-index: 1;
}

@keyframes rotate-glow {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-modern-content {
    position: relative;
    z-index: 10;
    color: white;
    width: 100%;
}

/* Glass Pill Badge */
.glass-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

/* Hero Heading */
.heading-hero {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: white;
    letter-spacing: -0.02em;
}

/* Animated Text Gradient */
.text-gradient-animated {
    background: linear-gradient(-45deg, #C5A55A, #E5C57A, #ffffff, #C5A55A);
    background-size: 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s linear infinite;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Hero Subtitle */
.hero-subtitle-modern {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.65);
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Glowing Button */
.btn-glow {
    box-shadow: 0 0 20px rgba(197, 165, 90, 0.3), 0 0 60px rgba(197, 165, 90, 0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(197, 165, 90, 0.5), 0 0 80px rgba(197, 165, 90, 0.2);
    transform: translateY(-2px);
}

/* Hero Stats Grid (Modern) */
.hero-stats-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 48px auto 0;
}

@media (min-width: 640px) {
    .hero-stats-modern {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Glass Card for Hero Stats */
.glass-card-hero {
    padding: 24px 16px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.glass-card-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(197, 165, 90, 0.3);
    transform: translateY(-4px);
}

.glass-card-value {
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    display: block;
}

.glass-card-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ===== STATS SECTION ===== */
.section-stats {
    background: var(--surface);
    position: relative;
}

.stats-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(45, 49, 66, 0.04) 1px, transparent 0);
    background-size: 32px 32px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 60px;
    margin-bottom: 48px;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}



.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.stat-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(197, 165, 90, 0.1), rgba(197, 165, 90, 0.05));
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    color: var(--secondary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.stat-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.stat-desc {
    font-size: 14px;
    color: var(--gray-500);
}

.stat-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.stat-card:hover .stat-accent-line {
    transform: scaleX(1);
}

/* ===== ANIMATIONS & UTILITIES ===== */

/* Scroll Reveal Base Classes */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

.reveal {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal-scale {
    transform: scale(0.9);
}

/* Active States */
.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* Stagger Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* Keyframes */
@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(245, 184, 24, 0.3);
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 40px rgba(245, 184, 24, 0.6);
        opacity: 0.5;
        transform: scale(1.1);
    }
}

@keyframes badge-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes rotate-scale {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }

    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Specific Element Animations */
.hero-x-logo.animate {
    animation: rotate-scale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-blob {
    animation: float-slow 10s ease-in-out infinite;
}

.hero-blob-2 {
    animation-delay: -3s;
}

.hero-blob-3 {
    animation-delay: -6s;
}

/* Sticky Header Transition */
.main-header {
    transition: all 0.3s ease;
}

.main-header.scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
    background: rgba(45, 49, 66, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Stats Counter Animation Class */
.counter-anim {
    transition: none;
}

/* ===== MODERN HERO STYLES (v2) ===== */

.hero-modern {
    background: radial-gradient(circle at 50% 50%, #1A1D2B 0%, #0f1119 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    /* Header payı */
}

.hero-glow-conic {
    position: absolute;
    width: 150vmax;
    height: 150vmax;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 180deg at 50% 50%, rgba(79, 142, 247, 0) 0deg, rgba(79, 142, 247, 0.08) 180deg, rgba(79, 142, 247, 0) 360deg);
    animation: spin-slow 30s linear infinite;
    z-index: 1;
    pointer-events: none;
}

.hero-modern-content {
    position: relative;
    z-index: 10;
    width: 100%;
}

.heading-hero {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: white;
    margin-bottom: 24px;
    text-shadow: 0 0 40px rgba(79, 142, 247, 0.2);
}

.text-gradient-animated {
    background: linear-gradient(-45deg, #4F8EF7, #C5A55A, #ffffff, #4F8EF7);
    background-size: 300%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 6s linear infinite;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-subtitle-modern {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.6;
    font-weight: 400;
}

.glass-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-glow {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(79, 142, 247, 0.4);
    transition: all 0.3s ease;
}

.btn-glow:hover {
    box-shadow: 0 0 30px rgba(79, 142, 247, 0.6);
    transform: translateY(-2px);
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s, transform 0.3s;
}

.btn-glow:hover::after {
    opacity: 1;
    transform: scale(1);
    transition: 0s;
}

.hero-stats-modern {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 80px;
}

.glass-card-hero {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 24px 32px;
    min-width: 160px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card-hero:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.glass-card-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, white, rgba(255, 255, 255, 0.7));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
    display: block;
}

.glass-card-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 80% 40%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
}


.section-desc {
    color: var(--gray-500);
    font-size: 17px;
    margin-top: 16px;
    line-height: 1.6;
}

.accent-line-center {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    border-radius: 2px;
    margin: 20px auto 0;
}

.section-bottom-text {
    text-align: center;
    color: var(--gray-500);
    font-size: 15px;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

.section-cta p {
    color: var(--gray-500);
    margin-bottom: 16px;
}

/* ===== SERVICES SECTION ===== */
.section-services {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 60px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-card-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
}

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    color: white;
}

.service-icon-blue {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.service-icon-green {
    background: linear-gradient(135deg, #10B981, #059669);
}

.service-icon-purple {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.service-icon-orange {
    background: linear-gradient(135deg, #F59E0B, #D97706);
}

.service-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.service-desc {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 16px;
    flex: 1;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
}

.service-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
    margin-top: auto;
    transition: var(--transition-fast);
}

.service-link:hover {
    color: var(--secondary-dark);
    gap: 10px;
}

/* ===== SOLUTIONS SECTION ===== */
.section-solutions {
    background: var(--primary);
    color: white;
    position: relative;
}

.solutions-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.solutions-blob-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(197, 165, 90, 0.1);
    border-radius: 50%;
    filter: blur(100px);
    top: -20%;
    right: -10%;
}

.solutions-blob-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(79, 142, 247, 0.1);
    border-radius: 50%;
    filter: blur(100px);
    bottom: -15%;
    left: -5%;
}

.solutions-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 60px;
}

@media (min-width: 1024px) {
    .solutions-content {
        grid-template-columns: 1fr 1fr;
        gap: 48px;
    }
}

.solutions-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 640px) {
    .solutions-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

.solution-category-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.7);
}

.solution-category-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

.solution-category-btn.active {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--secondary);
    color: white;
}

.solution-cat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    margin-bottom: 8px;
}

.solution-category-btn h4 {
    font-size: 13px;
    font-weight: 600;
}

/* Solution Details */
.solutions-details {
    position: relative;
}

.solution-detail-panel {
    display: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 32px;
    animation: fadeIn 0.3s ease;
}

.solution-detail-panel.active {
    display: block;
}

.solution-detail-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.solution-detail-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
}

.solution-detail-header h3 {
    font-size: 22px;
    font-weight: 700;
}

.solution-detail-header p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.solution-modules-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.solution-modules-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 0;
}

.module-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== WHY US SECTION ===== */
.section-whyus {
    background: var(--surface);
    position: relative;
}

.whyus-bg-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(197, 165, 90, 0.03) 100%);
}

.whyus-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .whyus-layout {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.whyus-desc {
    font-size: 17px;
    color: var(--gray-500);
    margin: 20px 0 32px;
    line-height: 1.7;
}

.whyus-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.whyus-point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--gray-700);
}

.point-dot-wrap {
    width: 28px;
    height: 28px;
    background: rgba(197, 165, 90, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.point-dot {
    width: 10px;
    height: 10px;
    background: var(--secondary);
    border-radius: 50%;
}

.whyus-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .whyus-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

.whyus-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.whyus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.whyus-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(197, 165, 90, 0.1), rgba(197, 165, 90, 0.05));
    border-radius: var(--radius);
    color: var(--secondary);
    margin-bottom: 12px;
}

.whyus-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px;
}

.whyus-card p {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
}

/* ===== SECTORS SECTION ===== */
.section-sectors {
    background: white;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .sectors-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.sector-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.sector-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.sector-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    margin-bottom: 16px;
    transition: var(--transition);
}

.sector-card:hover .sector-icon {
    transform: scale(1.1);
}

.sector-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary);
}

.sector-card-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.4;
}

.sector-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    transition: var(--transition);
}

.sector-card:hover .sector-accent-line {
    transform: scaleX(1);
}

/* ===== TESTIMONIALS SECTION ===== */
.section-testimonials {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.testimonials-bg-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(197, 165, 90, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    top: 10%;
    left: -5%;
}

.testimonials-bg-2 {
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(79, 142, 247, 0.05);
    border-radius: 50%;
    filter: blur(80px);
    bottom: 10%;
    right: -5%;
}

.testimonial-carousel {
    position: relative;
    max-width: 700px;
    margin: 60px auto 0;
    min-height: 300px;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background: white;
    border-radius: var(--radius-2xl);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.testimonial-quote-icon {
    color: var(--secondary);
    margin-bottom: 16px;
    opacity: 0.3;
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 20px;
}

.star-filled {
    width: 18px;
    height: 18px;
    color: #FBBF24;
    fill: #FBBF24;
}

.testimonial-content blockquote {
    font-size: 18px;
    color: var(--gray-700);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-author p {
    font-size: 14px;
    color: var(--gray-500);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--secondary);
    color: white;
    box-shadow: var(--shadow-lg);
}

.carousel-prev {
    left: -24px;
}

.carousel-next {
    right: -24px;
}

@media (max-width: 768px) {
    .carousel-prev {
        left: 0;
    }

    .carousel-next {
        right: 0;
    }
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

.client-logos {
    text-align: center;
    margin-top: 64px;
}

.client-logos>p:first-child {
    font-size: 14px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.logos-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-bottom: 16px;
}

.logo-placeholder {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: var(--radius);
    font-size: 12px;
    color: var(--gray-400);
    border: 1px solid var(--gray-200);
}

.logos-note {
    font-size: 12px;
    color: var(--gray-400);
    font-style: italic;
}

/* ===== CTA SECTION ===== */
.section-cta-main {
    background: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-blob-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(197, 165, 90, 0.08);
    border-radius: 50%;
    filter: blur(100px);
    top: -20%;
    left: -10%;
}

.cta-blob-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(79, 142, 247, 0.08);
    border-radius: 50%;
    filter: blur(100px);
    bottom: -20%;
    right: -10%;
}

.cta-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.03) 1px, transparent 0);
    background-size: 40px 40px;
}

.cta-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .cta-layout {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
    }
}

.cta-desc {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0 32px;
    line-height: 1.7;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
}

.cta-contact-info {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-contact-info>p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.cta-contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cta-contact-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-fast);
}

.cta-contact-links a:hover {
    color: var(--secondary);
}

/* CTA Form */
.cta-form-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    padding: 36px;
}

.cta-form-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    color: white;
    transition: var(--transition-fast);
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.12);
}

textarea.form-input {
    resize: vertical;
    min-height: 100px;
}

.form-message {
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
}

.form-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6EE7B7;
}

.form-error {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #FCA5A5;
}

.form-note {
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 12px;
}

.form-note a {
    color: var(--secondary);
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--primary);
    color: white;
}

.footer-newsletter {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 48px 0;
    align-items: center;
}

@media (min-width: 768px) {
    .newsletter-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.newsletter-text h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 4px;
}

.newsletter-text p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    width: 100%;
    max-width: 420px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    color: white;
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--secondary);
}

.newsletter-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    background: var(--secondary);
    color: white;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: var(--secondary-light);
}

/* Footer Main */
.footer-main {
    padding: 64px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
    }
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-contact-info a:hover {
    color: var(--secondary);
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-links-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-col li a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition-fast);
}

.footer-links-col li a:hover {
    color: white;
    padding-left: 4px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    padding: 24px 0;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    transition: var(--transition-fast);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes float-slow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(20px, -20px);
    }

    50% {
        transform: translate(-10px, 20px);
    }

    75% {
        transform: translate(15px, 10px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.1);
    }
}

@keyframes badge-pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
    opacity: 1;
    transform: none;
}

/* Delay utilities */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}

/* ===== 404 PAGE ===== */
.page-404 {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px;
}

.page-404 h1 {
    font-size: 120px;
    font-weight: 800;
    color: var(--gray-200);
    line-height: 1;
    margin-bottom: 16px;
}

.page-404 h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.page-404 p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

/* ===== GENERAL PAGE STYLES ===== */
.page-hero {
    background: linear-gradient(135deg, #1a1d2b 0%, #2D3142 50%, #1F222E 100%);
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(197, 165, 90, 0.1), transparent 60%);
}

.page-hero .container-custom {
    position: relative;
    z-index: 1;
}

.page-content {
    padding: 80px 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .testimonial-content {
        padding: 24px;
    }

    .cta-form-card {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .container-custom {
        padding: 0 16px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }

    .hero-stats {
        gap: 12px;
    }

    .solutions-categories {
        grid-template-columns: 1fr;
    }
}

/* ===== STRICT COLOR PALETTE & THEME VARIABLES (PHASE 2) ===== */
:root {
    /* Logo Colors (Official) */
    --primary: #2D3142;
    /* Deep Navy / Charcoal Blue */
    --primary-dark: #1F222E;
    --primary-light: #4F5D75;
    --secondary: #C5A55A;
    /* Gold / Brass */
    --secondary-light: #E5C57A;
    --secondary-dark: #A5853A;

    /* Neutrals */
    --surface: #FFFFFF;
    --surface-alt: #F8FAFC;
    --text-main: #2D3142;
    --text-muted: #64748B;
    --border: #E2E8F0;

    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
}




/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: linear-gradient(135deg, var(--primary, #2D3142), var(--primary-light, #4A6FA5));
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-ring {
    position: absolute;
    inset: -10px;
    border: 3px solid rgba(197, 165, 90, 0.15);
    border-top-color: var(--secondary, #C5A55A);
    border-radius: 50%;
    animation: preloader-spin 1s linear infinite;
}

.preloader-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    animation: preloader-pulse 1.5s ease-in-out infinite;
}

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

@keyframes preloader-pulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* ===== THEME TOGGLE ===== */
#themeToggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary, #2D3142);
    border: 2px solid transparent;
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

#themeToggle:hover {
    background: var(--primary-dark, #1F222E);
    transform: rotate(20deg) scale(1.05);
    box-shadow: 0 0 16px rgba(197, 165, 90, 0.3);
}



/* Fix Hero Stats Layout (Side-by-Side) */
@media (min-width: 1024px) {
    .hero-stats-modern {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 20px;
    }
}

/* ===== VISUAL EFFECTS (PHASE 3) ===== */

/* 1. Magnetic Buttons & Glow */
.btn-magnetic {
    position: relative;
    overflow: hidden;
    transition: transform 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.btn-glow-effect {
    position: absolute;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(197, 165, 90, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.3s, width 0.3s, height 0.3s;
}

.btn-magnetic:hover .btn-glow-effect {
    width: 200px;
    height: 200px;
    opacity: 1;
}

/* 2. Noise Texture (Glass Enhancement) */
.glass-noise {
    position: relative;
    backdrop-filter: blur(16px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.glass-noise::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
    border-radius: inherit;
}

/* 3. Signature Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--surface);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    width: 120px;
    height: 120px;
    position: relative;
}

.preloader-path {
    fill: none;
    stroke: var(--secondary);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawParams 2.5s ease-in-out forwards;
}

@keyframes drawParams {
    to {
        stroke-dashoffset: 0;
    }
}

/* Scrollytelling Path (Line Animation) */
.scroll-path-container {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
    z-index: -1;
}

.scroll-path-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--secondary);
    height: 0%;
    /* JS ile kontrol edilecek */
    transition: height 0.1s linear;
}

/* =============================================
   DANIŞMANLIK PORTAL — UI COMPONENT SİSTEMİ
   ============================================= */

/* --- Stat Kartları --- */
.stat-card {
    text-align: center;
    padding: 28px 24px;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-light));
    opacity: 0;
    transition: opacity 0.25s ease;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.stat-card:hover::before { opacity: 1; }
.stat-card-icon {
    width: 52px; height: 52px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    transition: transform 0.25s ease;
}
.stat-card:hover .stat-card-icon { transform: scale(1.1); }
.stat-card-value {
    font-size: 2.25rem; font-weight: 800; color: var(--primary);
    line-height: 1.1; margin-bottom: 6px;
}
.stat-card-label {
    font-size: 13px; color: var(--gray-500, #6B7280); font-weight: 500;
    letter-spacing: 0.02em;
}

/* --- Counter Animasyon --- */
@keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.stat-card-value { animation: countUp 0.6s ease-out both; }
.stat-card:nth-child(2) .stat-card-value { animation-delay: 0.1s; }
.stat-card:nth-child(3) .stat-card-value { animation-delay: 0.2s; }
.stat-card:nth-child(4) .stat-card-value { animation-delay: 0.3s; }

/* --- Admin Card Hover --- */
.admin-card {
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.admin-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* --- Detay Sayfası Label/Value --- */
.detail-label {
    font-size: 12px; color: var(--gray-400, #9CA3AF);
    text-transform: uppercase; letter-spacing: 0.5px;
    margin-bottom: 4px; font-weight: 500;
}
.detail-value {
    font-size: 15px; font-weight: 600; color: var(--primary);
}
.detail-value-lg {
    font-size: 20px; font-weight: 700; color: var(--primary);
}

/* --- Status Badge'leri --- */
.status-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 14px; border-radius: 8px;
    font-size: 13px; font-weight: 500;
}
.status-badge-success { background: #ECFDF5; border: 1px solid #A7F3D0; color: #059669; }
.status-badge-warning { background: #FFF7ED; border: 1px solid #FED7AA; color: #C2410C; }
.status-badge-error { background: #FEF2F2; border: 1px solid #FECACA; color: #DC2626; }
.status-badge-info { background: #EFF6FF; border: 1px solid #BFDBFE; color: #2563EB; }

/* --- Section Header --- */
.section-header {
    display: flex; align-items: center; gap: 10px;
    padding-bottom: 16px; margin-bottom: 20px;
    border-bottom: 2px solid var(--surface, #F8F9FC);
    font-size: 16px; font-weight: 600; color: var(--primary);
}
.section-header i { color: var(--secondary); }

/* --- Page Header --- */
.page-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.page-header-subtitle {
    color: var(--gray-500, #6B7280); font-size: 14px;
}

/* --- Form Section --- */
.form-section {
    padding-top: 20px; margin-top: 20px;
    border-top: 1px solid var(--gray-100, #F3F4F6);
}
.form-section-title {
    display: flex; align-items: center; gap: 8px;
    font-size: 15px; font-weight: 600; color: var(--primary);
    margin-bottom: 16px;
}
.form-section-title i { width: 18px; height: 18px; color: var(--secondary); }

/* --- Hoş Geldin Kartı --- */
.welcome-card {
    padding: 28px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff; border-radius: 16px;
    margin-bottom: 28px; position: relative; overflow: hidden;
}
.welcome-card::after {
    content: '';
    position: absolute; right: -20px; top: -20px;
    width: 160px; height: 160px;
    background: rgba(197,165,90,0.12);
    border-radius: 50%;
}
.welcome-card h2 {
    font-size: 1.5rem; font-weight: 700; margin-bottom: 4px;
}
.welcome-card p {
    font-size: 14px; opacity: 0.7;
}

/* --- Toast Bildirim Sistemi --- */
.toast-container {
    position: fixed; top: 20px; right: 20px; z-index: 99999;
    display: flex; flex-direction: column; gap: 8px;
    pointer-events: none;
}
.toast {
    display: flex; align-items: center; gap: 10px;
    padding: 14px 20px; border-radius: 12px;
    background: #fff; box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    font-size: 14px; font-weight: 500; color: var(--primary);
    min-width: 280px; max-width: 420px;
    pointer-events: auto;
    animation: toastSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    border-left: 4px solid var(--gray-300);
}
.toast-success { border-left-color: #10B981; }
.toast-success .toast-icon { color: #10B981; }
.toast-error { border-left-color: #EF4444; }
.toast-error .toast-icon { color: #EF4444; }
.toast-info { border-left-color: #3B82F6; }
.toast-info .toast-icon { color: #3B82F6; }
.toast-icon { flex-shrink: 0; width: 20px; height: 20px; }
.toast-close {
    margin-left: auto; background: none; border: none;
    color: var(--gray-400); cursor: pointer; padding: 2px;
    opacity: 0.5; transition: opacity 0.2s;
}
.toast-close:hover { opacity: 1; }
.toast.removing {
    animation: toastSlideOut 0.3s ease forwards;
}
@keyframes toastSlideIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes toastSlideOut {
    from { opacity: 1; transform: translateX(0); }
    to { opacity: 0; transform: translateX(40px); }
}

/* --- Breadcrumb --- */
.breadcrumb {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--gray-400, #9CA3AF);
    margin-bottom: 20px;
}
.breadcrumb a { color: var(--gray-500); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--secondary); }
.breadcrumb-sep { font-size: 11px; }
.breadcrumb-current { color: var(--primary); font-weight: 500; }

/* --- Şifre Güçlülük Göstergesi --- */
.password-strength {
    height: 4px; border-radius: 2px; background: var(--gray-200);
    margin-top: 8px; overflow: hidden;
}
.password-strength-bar {
    height: 100%; border-radius: 2px;
    transition: width 0.3s ease, background 0.3s ease;
    width: 0;
}
.password-strength-weak .password-strength-bar { width: 33%; background: #EF4444; }
.password-strength-medium .password-strength-bar { width: 66%; background: #F59E0B; }
.password-strength-strong .password-strength-bar { width: 100%; background: #10B981; }
.password-strength-label {
    font-size: 11px; margin-top: 4px; font-weight: 500;
}

/* --- Avatar --- */
.avatar {
    border-radius: 50%; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: #fff; flex-shrink: 0;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
}
.avatar-sm { width: 32px; height: 32px; font-size: 14px; }
.avatar-md { width: 48px; height: 48px; font-size: 20px; }
.avatar-lg { width: 80px; height: 80px; font-size: 2rem; }
.avatar img { width: 100%; height: 100%; object-fit: cover; }
.avatar-upload {
    position: relative; cursor: pointer;
}
.avatar-upload-overlay {
    position: absolute; inset: 0; border-radius: 50%;
    background: rgba(0,0,0,0.5); display: flex;
    align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.2s;
    color: #fff;
}
.avatar-upload:hover .avatar-upload-overlay { opacity: 1; }

/* --- Preset Duration Buttons --- */
.duration-presets {
    display: flex; gap: 6px; margin-top: 8px;
}
.duration-preset {
    padding: 4px 12px; border-radius: 6px;
    border: 1px solid var(--gray-200); background: #fff;
    font-size: 12px; font-weight: 500; color: var(--gray-600);
    cursor: pointer; transition: all 0.2s;
}
.duration-preset:hover {
    border-color: var(--secondary); color: var(--secondary);
    background: rgba(197,165,90,0.05);
}
.duration-preset.active {
    border-color: var(--secondary); background: var(--secondary);
    color: #fff;
}

/* --- Collapsible Filter Panel --- */
.filter-toggle {
    display: none; padding: 8px 16px; font-size: 13px;
    font-weight: 600; color: var(--gray-600); background: var(--gray-100);
    border: none; border-radius: 8px; cursor: pointer;
    align-items: center; gap: 6px;
}
.filter-toggle i { transition: transform 0.2s; width: 16px; height: 16px; }
.filter-toggle.open i { transform: rotate(180deg); }
@media (max-width: 768px) {
    .filter-toggle { display: inline-flex; }
    .filter-content { display: none; }
    .filter-content.open { display: flex; }
}

/* --- AG Grid Faturalanmış Satır --- */
.ag-row-invoiced {
    background-color: rgba(16, 185, 129, 0.04) !important;
}

/* --- Boş Durum --- */
.empty-state {
    text-align: center; padding: 60px 24px;
}
.empty-state-icon {
    width: 64px; height: 64px; color: var(--gray-300);
    margin: 0 auto 20px; display: block;
}
.empty-state-title {
    font-size: 16px; font-weight: 600; color: var(--gray-500);
    margin-bottom: 8px;
}
.empty-state-text {
    font-size: 14px; color: var(--gray-400);
    margin-bottom: 20px;
}

/* --- Hızlı Aksiyon Bar --- */
.action-bar {
    display: flex; gap: 12px; padding: 16px 24px;
    background: #fff; border-top: 1px solid var(--gray-100);
    border-radius: 0 0 12px 12px;
    position: sticky; bottom: 0;
}

/* --- Floating Label --- */
.float-label-group {
    position: relative;
}
.float-label-group label {
    position: absolute; left: 44px; top: 50%;
    transform: translateY(-50%);
    font-size: 15px; color: var(--gray-400);
    pointer-events: none;
    transition: all 0.2s ease;
}
.float-label-group input:focus ~ label,
.float-label-group input:not(:placeholder-shown) ~ label {
    top: 6px; font-size: 11px; color: var(--secondary);
    transform: translateY(0);
}

/* --- Spin Animation (global) --- */
.spin { animation: spin 1s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }