/* PoliceTakip.com - Premium Insurance Management System */
/* Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* CSS Custom Properties - Premium Insurance Theme */
:root {
    /* Primary Colors - Original Purple/Blue Gradient */
    --primary: #667eea;
    --primary-light: #667eea;
    --primary-dark: #764ba2;
    
    /* Secondary Colors */
    --secondary: #764ba2;
    --secondary-light: #667eea;
    --secondary-dark: #1e3c72;
    
    /* Accent Colors */
    --accent: #667eea;
    --success: #22c55e;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #06b6d4;
    
    /* Neutral Colors */
    --white: #ffffff;
    --light: #f8fafc;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --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-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Original Theme Colors */
    --insurance-blue: #667eea;
    --insurance-gold: #764ba2;
    --trust-green: #22c55e;
    --security-shield: #667eea;
}

/* Container System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
}

/* Logo Styles */
.header-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.logo-link:hover .logo-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.logo-icon i {
    font-size: 1.3rem;
    color: white;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.logo-main {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Navigation Styles */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
	    min-width: 130px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.nav-link i {
    font-size: 0.9rem;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.nav-link:hover i,
.nav-link.active i {
    opacity: 1;
    transform: scale(1.1);
}

/* Action Buttons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.action-btn:hover::before {
    left: 100%;
}

.login-btn {
    color: #64748b;
    background: rgba(100, 116, 139, 0.08);
    border: 1px solid rgba(100, 116, 139, 0.2);
}

.login-btn:hover {
    color: #475569;
    background: rgba(100, 116, 139, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(100, 116, 139, 0.2);
}

.demo-btn {
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.demo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.action-btn i {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.action-btn:hover i {
    opacity: 1;
    transform: scale(1.1);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 4px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-toggle:hover {
    background: rgba(102, 126, 234, 0.08);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #667eea;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: white;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #667eea;
}

.mobile-logo i {
    font-size: 1.2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(100, 116, 139, 0.1);
    color: #475569;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: #64748b;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.08);
    transform: translateX(5px);
}

.mobile-nav-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-action-btn.login-btn {
    color: #64748b;
    background: rgba(100, 116, 139, 0.08);
    border: 1px solid rgba(100, 116, 139, 0.2);
}

.mobile-action-btn.demo-btn {
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .action-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 768px) {
    .header-nav,
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-main {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.65rem;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    
    .logo-icon i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 1rem;
    }
    
    .mobile-menu-content {
        width: 100%;
    }
    
    .logo-text {
        gap: 0;
    }
    
    .logo-main {
        font-size: 1.1rem;
    }
    
    .logo-tagline {
        font-size: 0.6rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

/* Hero Background Circles - Static Decorative */
.hero::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 15%;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: 10%;
    width: 150px;
    height: 150px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Animated Background Lines */
.hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0.6;
}

.line-horizontal {
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.6) 80%, transparent 100%);
    animation: lineHorizontalMove 8s ease-in-out infinite;
}

.line-vertical {
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.6) 20%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.6) 80%, transparent 100%);
    animation: lineVerticalMove 8s ease-in-out infinite;
}

.line-1 { top: 20%; animation-delay: 0s; }
.line-2 { top: 50%; animation-delay: 4s; }
.line-3 { top: 80%; animation-delay: 8s; }
.line-4 { left: 15%; animation-delay: 2s; }
.line-5 { left: 50%; animation-delay: 6s; }
.line-6 { left: 85%; animation-delay: 10s; }

@keyframes lineHorizontalMove {
    0% { transform: translateX(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

@keyframes lineVerticalMove {
    0% { transform: translateY(-100%); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(100%); opacity: 0; }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: slideInUp 1s ease-out;
}

.gradient-text {
    background: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content .subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideInUp 1s ease-out 0.2s both;
}

.pilot-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 6rem;
    animation: glow 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

@keyframes glow {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
        transform: scale(1.02);
    }
}

.pilot-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.cta-button {
    background: white;
    color: #667eea;
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    animation: slideInUp 1s ease-out 0.4s both;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    background: #f8f9ff;
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Modern Dashboard Styles */
/* Dashboard Container ve Body DÃ¼zeltmeleri */
.dashboard-container {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    box-shadow: 0 25px 50px rgba(30, 41, 59, 0.8);
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    height: 355px; /* Sabit yÃ¼kseklik */
    position: relative;
    transform: perspective(1000px) rotateY(-10deg);
    transition: all 0.5s ease;
    animation: dashboardFloat 6s ease-in-out infinite;
    border: 1px solid rgba(102, 126, 234, 0.3);
    cursor: pointer;
}

/* Dashboard Body - Carousel iÃ§in */
.dashboard-body {
    padding: 20px;
    background: rgba(15, 23, 42, 0.98);
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
    height: 255px; /* Header hariÃ§ kalan alan */
}

/* Dashboard Section - Carousel Items */
.dashboard-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    z-index: 1;
    pointer-events: none;
}

/* Aktif section */
.dashboard-section.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 10;
    pointer-events: all;
}

/* Section iÃ§eriÄŸi iÃ§in padding */
.dashboard-section > *:first-child {
    margin-top: 0;
}

/* Widget grid dÃ¼zeni */
.dashboard-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

/* Section baÅŸlÄ±klarÄ± */
.section-title {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid #667eea;
}

/* Typing number animasyonu */
.typing-number {
    display: inline-block;
    min-width: 40px;
    font-variant-numeric: tabular-nums;
    font-weight: 800;
    color: #22c55e;
}

.dashboard-container:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(30, 41, 59, 0.9);
}

@keyframes dashboardFloat {
    0%, 100% { transform: perspective(1000px) rotateY(-10deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-10deg) translateY(-15px); }
}

.dashboard-header {
    background: linear-gradient(135deg, #ffffff, #ffffff);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(102, 126, 234, 0.2);
}

.dashboard-controls {
    display: flex;
    gap: 8px;
}

.dashboard-control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dashboard-control.close { background: #ff5f56; }
.dashboard-control.minimize { background: #ffbd2e; }
.dashboard-control.maximize { background: #27ca3f; }

.dashboard-control:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px currentColor;
}

.dashboard-title {
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dashboard-status {
    color: #22c55e;
    font-size: 11px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.dashboard-section

/* Widget'larÄ±n baÅŸlangÄ±Ã§ durumu */
.dashboard-widget {
	background: rgb(60 74 94);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 12px;
    opacity: 1;
    transition: all 0.3s ease;
    /* slideInUp animasyonunu kaldÄ±rÄ±yoruz */
}

.dashboard-widgets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.dashboard-widget:nth-child(1) { animation-delay: 0.2s; }
.dashboard-widget:nth-child(2) { animation-delay: 0.4s; }
.dashboard-widget:nth-child(3) { animation-delay: 0.6s; }
.dashboard-widget:nth-child(4) { animation-delay: 0.8s; }

.dashboard-widget:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Dashboard Icon Animations */

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

/* Typing Text Animation */

@keyframes typing {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 100%; }
}

.widget-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.widget-title {
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.widget-value {
    font-size: 20px;
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 2px;
}

.widget-trend {
    font-size: 10px;
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 4px;
}

@keyframes chartPulse {
    0%, 100% { opacity: 0.6; transform: translateY(-50%) scaleX(0.8); }
    50% { opacity: 1; transform: translateY(-50%) scaleX(1.1); }
}

/* Stats Section */
.stats {
    padding: 6rem 0;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    background: white;
    transform: scale(1.1) rotate(5deg);
}

.stat-icon i {
    font-size: 1.8rem;
    color: white;
}

.stat-item:hover .stat-icon i {
    color: #667eea;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item:hover .stat-number {
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray-600);
    font-weight: 600;
}

.stat-item:hover .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.text-primary {
    color: var(--insurance-blue);
}

/* Features Section */
        .features {
            padding: 8rem 0;
            background: #f8f9ff;
            position: relative;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(30, 58, 138, 0.15);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 138, 0.05), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1rem;
}

/* Security Section */
.security {
    padding: 8rem 0; 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #1e3c72 100%);
    color: white; 
    position: relative; 
    overflow: hidden;
}

.security::before {
    content: ''; 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 40% 80%, rgba(30, 60, 114, 0.3) 0%, transparent 50%);
    animation: securityBg 20s ease-in-out infinite;
}

@keyframes securityBg {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

.security-header {
    text-align: center; 
    margin-bottom: 4rem; 
    position: relative; 
    z-index: 5;
}

.security-main-title {
    font-size: 3rem; 
    font-weight: 800; 
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    background-clip: text; 
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)); }
    50% { filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6)); }
}

.security-subtitle {
    font-size: 1.2rem; 
    opacity: 0.9; 
    max-width: 600px; 
    margin: 0 auto;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.security-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem; 
    margin-bottom: 4rem; 
    position: relative; 
    z-index: 2;
}

.security-card {
    background: rgba(255, 255, 255, 0.25); 
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.3); 
    border-radius: 20px;
    padding: 2rem; 
    text-align: center; 
    transition: all 0.3s ease; 
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.security-card:hover {
    transform: translateY(-15px) scale(1.02); 
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 16px 64px rgba(0, 0, 0, 0.15);
}

.security-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.security-card p {
    opacity: 1;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    transition: opacity 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.security-card:hover h3 {
    transform: scale(1.05);
    color: #ffffff;
}

.security-card:hover p {
    opacity: 1;
    color: #ffffff;
}

.security-icon {
    width: 80px; 
    height: 80px; 
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    margin: 0 auto 1.5rem; 
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.security-card:hover .security-icon { 
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #ffffff 0%, #f0f4ff 100%);
}

.security-icon i { 
    font-size: 2rem; 
    color: #667eea;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
}

.security-center {
    display: flex; 
    justify-content: center; 
    align-items: center; 
    position: relative; 
    z-index: 2; 
    margin-top: 2rem;
}

.security-shield-container { 
    text-align: center; 
}

.security-shield {
    position: relative; 
    display: inline-block; 
    margin-bottom: 0;
    animation: shieldFloat 4s ease-in-out infinite;
}

@keyframes shieldFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.security-shield i {
    font-size: 6rem; 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ffffff 100%);
    -webkit-background-clip: text; 
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.5));
    animation: shieldGlow 3s ease-in-out infinite;
}

@keyframes shieldGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 30px rgba(102, 126, 234, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 50px rgba(102, 126, 234, 0.8)) 
               drop-shadow(0 0 80px rgba(118, 75, 162, 0.6));
    }
}

.security-pulse {
    position: absolute; 
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px; 
    height: 100px;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%; 
    animation: securityPulse 3s infinite;
}

.security-pulse:nth-child(2) { 
    animation-delay: 1s; 
    width: 120px; 
    height: 120px; 
}

.security-pulse:nth-child(3) { 
    animation-delay: 2s; 
    width: 140px; 
    height: 140px; 
}

@keyframes securityPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1; 
        border-color: rgba(102, 126, 234, 0.5);
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0; 
        border-color: rgba(102, 126, 234, 0.1);
    }
}

        /* ROI Section */
        .roi-section {
            padding: 8rem 0;
            /* background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);*/
            position: relative;
            overflow: hidden;
        }
        
        .roi-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 25% 75%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 75% 25%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
            animation: roiBg 15s ease-in-out infinite;
        }
        
        @keyframes roiBg {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.1) rotate(1deg); }
        }
        
        .roi-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 6rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .roi-text h2 {
            font-size: 3.2rem;
            font-weight: 900;
            color: #6f63c4;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            /*text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);*/
        }
        
        .roi-subtitle {
            font-size: 1.3rem;
            
            margin-bottom: 4rem;
            line-height: 1.6;
        }
        
        .roi-metrics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        
        .roi-metric {
			background: rgb(248 250 252);
			backdrop-filter: blur(20px);
			border: 1px solid rgba(255, 255, 255, 0.12);
			border-radius: 20px;
			padding: 2.5rem;
			text-align: center;
			transition: all 0.4s ease;
			cursor: pointer;
			position: relative;
			overflow: hidden;
        }
        
        .roi-metric:hover {
            transform: translateY(-10px) scale(1.05);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 25px 50px rgba(102, 126, 234, 0.2);
        }
        
        .roi-metric::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transition: left 0.6s ease;
        }
        
        .roi-metric:hover::before {
            left: 100%;
        }

.metric-value {
            font-size: 3.5rem;
            font-weight: 900;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.5rem;
            display: block;
        }
        
        .metric-label {
            color: rgba(100 116 139);
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

.analytics-dashboard {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 40px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.5s ease;
}

.analytics-dashboard:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-15px);
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}
.a-dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.dashboard-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-900);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.status-indicator {
    width: 12px;
    height: 12px;
    background: var(--trust-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.performance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.performance-item {
    background: #f8fafc;
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.performance-item:hover {
    background: #e2e8f0;
    transform: scale(1.02);
}

.performance-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 0.3rem;
}

.performance-label {
    font-size: 0.9rem;
    color: var(--gray-600);
    font-weight: 600;
}

.revenue-chart {
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.chart-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path d="M0,60 Q25,40 50,50 T100,30" stroke="rgba(255,255,255,0.3)" stroke-width="2" fill="none"/><path d="M0,60 Q25,40 50,50 T100,30 L100,100 L0,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: cover;
    animation: chartFlow 4s ease-in-out infinite;
}

@keyframes chartFlow {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

.chart-info {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    color: white;
}

.chart-value {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.chart-trend {
    font-size: 0.9rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Contact Section Styles */
.contact-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #764ba2 0%, #6d67c9 50%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 60%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}
.grl-content {
    
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-info > p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-benefits {
    display: grid;
    gap: 1.2rem;
}

.contact-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 15px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 100px;
}

.contact-benefit:hover {
    transform: translateX(15px) scale(1.02);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.contact-benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-benefit:hover::before {
    left: 100%;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.contact-benefit:hover .benefit-icon {
    transform: scale(1.1) rotate(10deg);
}

.benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.5s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-height: fit-content;
}

.contact-form-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.4);
}

/* Contact Form Düzenlemeleri */
.contact-form {
    padding: 2.5rem;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
}

.form-header p {
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Form Row - 2 Sütun Düzeni */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Form Group Stilleri */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f9fafb;
    font-family: 'Inter', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

/* Tam Genişlik Alanlar */
.form-group.full-width {
    grid-column: 1 / -1;
}

/* Submit Butonu */
.form-submit {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
}

/* Privacy Checkbox */
.privacy-checkbox {
    margin-bottom: 1.5rem;
}

.privacy-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.5;
}

.privacy-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
    accent-color: #667eea;
}

.privacy-checkbox a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.privacy-checkbox a:hover {
    text-decoration: underline;
}

.privacy-note {
    text-align: center;
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
    padding: 0.8rem;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

.contact-form {
padding: 2.5rem;
}

/* Responsive adjustments for contact section */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form {
padding: 2.5rem;
}
    
    .contact-info h2 {
        font-size: 2.2rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Footer Styles */
.footer-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr;
    gap: 4rem;
    padding: 4rem 0 3rem;
    position: relative;
    z-index: 2;
}

/* Footer Brand Section */
.footer-brand {
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.footer-logo-icon i {
    font-size: 1.5rem;
    color: white;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo-main {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
}

.footer-logo-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    font-size: 1rem;
    color: white;
    font-weight: 600;
}

/* Footer Badges */
.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
}

.badge-icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon i {
    color: white;
    font-size: 0.9rem;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-size: 0.9rem;
    color: white;
    font-weight: 600;
}

.badge-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Footer Navigation */
.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-nav-section {
    display: flex;
    flex-direction: column;
}

.footer-nav-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-nav-title i {
    color: #667eea;
    font-size: 1rem;
}

.footer-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav-list li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
    display: block;
}

.footer-nav-list li a:hover {
    color: white;
    transform: translateX(8px);
    border-bottom-color: rgba(102, 126, 234, 0.3);
}

/* Footer CTA Section */
.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Newsletter Section */
.newsletter-section {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.newsletter-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-title i {
    color: #ffffff;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
}

.newsletter-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: #667eea;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.newsletter-button {
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

/* Social Section */
.social-section {
    text-align: center;
}

.social-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link.linkedin {
    background: rgba(0, 119, 181, 0.1);
    color: #0077b5;
    border-color: rgba(0, 119, 181, 0.2);
}

.social-link.linkedin::before {
    background: linear-gradient(90deg, transparent, rgba(0, 119, 181, 0.1), transparent);
}

.social-link.linkedin:hover {
    background: rgba(0, 119, 181, 0.2);
    transform: translateY(-3px);
}

.social-link.twitter {
    background: rgba(29, 161, 242, 0.1);
    color: #1da1f2;
    border-color: rgba(29, 161, 242, 0.2);
}

.social-link.twitter::before {
    background: linear-gradient(90deg, transparent, rgba(29, 161, 242, 0.1), transparent);
}

.social-link.twitter:hover {
    background: rgba(29, 161, 242, 0.2);
    transform: translateY(-3px);
}

.social-link.youtube {
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border-color: rgba(255, 0, 0, 0.2);
}

.social-link.youtube::before {
    background: linear-gradient(90deg, transparent, rgba(255, 0, 0, 0.1), transparent);
}

.social-link.youtube:hover {
    background: rgba(255, 0, 0, 0.2);
    transform: translateY(-3px);
}

.social-link.instagram {
    background: rgba(225, 48, 108, 0.1);
    color: #e1306c;
    border-color: rgba(225, 48, 108, 0.2);
}

.social-link.instagram::before {
    background: linear-gradient(90deg, transparent, rgba(225, 48, 108, 0.1), transparent);
}

.social-link.instagram:hover {
    background: rgba(225, 48, 108, 0.2);
    transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 1px solid transparent;
}

.legal-link:hover {
    color: white;
    border-bottom-color: rgba(102, 126, 234, 0.5);
}

.footer-back-to-top {
    display: flex;
    align-items: center;
}

.back-to-top-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.back-to-top-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .footer-cta {
        grid-column: 1 / -1;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem 0 2rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-contact {
        gap: 1rem;
    }
    
    .contact-item {
        padding: 0.8rem;
    }
    
    .footer-badges {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .footer-badge {
        flex: 1;
        min-width: 150px;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .social-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-legal {
        justify-content: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .social-links {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}




/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .roi-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .analytics-dashboard {
        transform: none;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-container {
        position: relative;
    }
    
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        color: #667eea;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        background: rgba(102, 126, 234, 0.1);
        transform: scale(1.1);
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-radius: 0 0 10px 10px;
        z-index: 1000;
    }
    
    .nav-links.mobile-open {
        display: flex;
    }
    
    .nav-links a {
        padding: 1rem;
        border-bottom: 1px solid #f3f4f6;
        text-align: center;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: none;
    }
}

/* Floating Circles */

@keyframes floatCircle1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -20px) scale(1.1); }
}
@keyframes floatCircle2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10px, 15px) scale(0.9); }
}
@keyframes floatCircle3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -15px) scale(1.2); }
}
@keyframes floatCircle4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-15px, -10px) scale(0.8); }
}
@keyframes floatCircle5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, 25px) scale(1.1); }
}
@keyframes floatCircle6 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, 10px) scale(0.9); }
}
@keyframes floatCircle7 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(25px, -20px) scale(1.3); }
}
@keyframes floatCircle8 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10px, 15px) scale(0.85); }
}

/* Mouse hover etkisi */
.hero:hover 

.hero:hover 
.hero:hover 
.hero:hover 
.hero:hover 
.hero:hover 
.hero:hover 
.hero:hover 
.hero:hover 

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .security-main-title,
    .roi-text h2,
    .contact-info h2 {
        font-size: 2.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .social-links {
        justify-content: center;
    }

    .cta-section h2 {
        font-size: 2.2rem;
    }

}

/* =========================
   MOBILE MENU FIX - CRITICAL UPDATES
   ========================= */

/* Mobile Menu Toggle - Z-index ve Display Düzeltmeleri */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 4px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle:hover {
    background: rgba(102, 126, 234, 0.08);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #667eea;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu Overlay - Düzeltilmiş Versiyon */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #667eea;
}

.mobile-logo i {
    font-size: 1.2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(100, 116, 139, 0.1);
    color: #475569;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: #64748b;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.08);
    transform: translateX(5px);
}

.mobile-nav-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-action-btn.login-btn {
    color: #64748b;
    background: rgba(100, 116, 139, 0.08);
    border: 1px solid rgba(100, 116, 139, 0.2);
}

.mobile-action-btn.demo-btn {
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* =========================
   RESPONSIVE BREAKPOINTS - DÜZELTİLMİŞ
   ========================= */

/* Desktop Navigation - 769px ve üstü için varsayılan */
@media (min-width: 769px) {
    .header-nav,
    .header-actions {
        display: flex !important;
    }

    .mobile-menu-toggle {
        display: none !important;
    }
}

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .header-container {
        padding: 1rem 1.5rem;
    }

    .nav-menu {
        gap: 0.25rem;
    }

    .nav-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .action-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

/* Mobile - 768px ve altı */
@media (max-width: 768px) {
    /* Desktop navigation'ı gizle */
    .header-nav,
    .header-actions {
        display: none !important;
    }

    /* Mobile menu toggle'ı göster */
    .mobile-menu-toggle {
        display: flex !important;
    }

    /* Logo boyutlarını ayarla */
    .logo-main {
        font-size: 1.2rem;
    }

    .logo-tagline {
        font-size: 0.65rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon i {
        font-size: 1.1rem;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .header-container {
        padding: 1rem;
    }

    .mobile-menu-content {
        width: 100%;
        padding: 1.5rem;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
    }
}



/* =========================
   SCROLL ANIMATION FIX - INTERSECTION OBSERVER
   ========================= */












/* Staggered Animation Delays */






/* Mobile Performance Optimizations */
@media (max-width: 768px) {
    .scroll-animation {
        transform: translateY(30px);
        transition: all 0.6s ease-out;
    }

    .scroll-animation:nth-child(n) { 
        transition-delay: 0.05s; 
    }
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    .scroll-animation {
        transition: none;
        opacity: 1;
        transform: none;
    }
}


/* =========================
   MOBILE MENU - COMPLETE FIX
   ========================= */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 4px;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle:hover {
    background: rgba(102, 126, 234, 0.08);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: #667eea;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
}

.mobile-menu-overlay.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: #667eea;
}

.mobile-logo i {
    font-size: 1.2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #64748b;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(100, 116, 139, 0.1);
    color: #475569;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    color: #64748b;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: #667eea;
    background: rgba(102, 126, 234, 0.08);
    transform: translateX(5px);
}

.mobile-nav-link i {
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-action-btn.login-btn {
    color: #64748b;
    background: rgba(100, 116, 139, 0.08);
    border: 1px solid rgba(100, 116, 139, 0.2);
}

.mobile-action-btn.demo-btn {
    color: white;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Responsive Breakpoints */
@media (min-width: 769px) {
    .header-nav,
    .header-actions {
        display: flex !important;
    }

    .mobile-menu-toggle {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .header-nav,
    .header-actions {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
    }

    .logo-main {
        font-size: 1.2rem;
    }

    .logo-tagline {
        font-size: 0.65rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .logo-icon i {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 1rem;
    }

    .mobile-menu-content {
        width: 100%;
        padding: 1.5rem;
    }

    .logo-main {
        font-size: 1.1rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
    }
}



/* =========================
   SCROLL ANIMATION FIX - IMPROVED VERSION
   ========================= */

/* Base Scroll Animation Styles */
.scroll-animation {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: opacity, transform;
}

.scroll-animation.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Variants */
.scroll-animation.fade-up {
    opacity: 0;
    transform: translateY(40px);
}

.scroll-animation.fade-up.animated {
    opacity: 1;
    transform: translateY(0);
}

.scroll-animation.fade-left {
    opacity: 0;
    transform: translateX(-40px);
}

.scroll-animation.fade-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animation.fade-right {
    opacity: 0;
    transform: translateX(40px);
}

.scroll-animation.fade-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.scroll-animation.fade-scale {
    opacity: 0;
    transform: scale(0.85);
}

.scroll-animation.fade-scale.animated {
    opacity: 1;
    transform: scale(1);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .scroll-animation {
        transform: translateY(30px);
        transition: all 0.8s ease-out;
    }

    .scroll-animation.fade-left {
        transform: translateX(-20px);
    }

    .scroll-animation.fade-right {
        transform: translateX(20px);
    }
}

/* Reduce Motion Support */
@media (prefers-reduced-motion: reduce) {
    .scroll-animation {
        transition: none;
        opacity: 1;
        transform: none;
    }
}
/* =========================
   ROI-CONTENT RESPONSIVE FIX - CRITICAL
   ========================= */

/* ROI Content Grid - Desktop Default */
.roi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* ROI Text ve Visual Base Styles */
.roi-text,
.roi-visual {
    width: 100%;
    max-width: 100%;
}

/* Mobile Responsive - 768px ve altı */
@media (max-width: 768px) {
    .roi-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
        align-items: flex-start !important;
    }

    .roi-text,
    .roi-visual {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Analytics dashboard mobile düzenlemesi */
    .analytics-dashboard {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto;
    }

    /* Performance grid mobile */
    .performance-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
    }

    /* Contact benefits mobile */
    .contact-benefits {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .roi-content {
        gap: 2rem !important;
        padding: 0 1rem;
    }

    .performance-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    .analytics-dashboard {
        font-size: 0.9rem;
    }

    .dashboard-title {
        font-size: 1rem !important;
    }

    .performance-value {
        font-size: 1.5rem !important;
    }
}

/* Override any conflicting styles */
.features .roi-content {
    display: grid !important;
}

@media (max-width: 768px) {
    .features .roi-content {
        grid-template-columns: 1fr !important;
    }
}

/* Specific fixes for each section */
.features .roi-text h2 {
    font-size: 2.5rem;
}

@media (max-width: 768px) {
    .features .roi-text h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .features .roi-text h2 {
        font-size: 1.8rem !important;
    }
            .roi-metrics {
            display: grid;
            grid-template-columns: 1fr;
            gap: 2rem;
        }
}

/* Contact benefit responsive */
.contact-benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .contact-benefit {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .benefit-icon {
        width: 40px !important;
        height: 40px !important;
        flex-shrink: 0;
    }

    .benefit-content h4 {
        font-size: 0.9rem;
    }

    .benefit-content p {
        font-size: 0.8rem;
    }
}