/*
* Creodive Clone - Özel CSS Dosyası
* Bu dosya sitenin tüm özel stillerini ve animasyonlarını içerir
*/

/* ========== MODERN DESIGN RESET & BASE STYLES ========== */

/* Import Modern Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* Modern CSS Variables */
:root {
    /* Primary Colors */
    --primary-color: #4f46e5;
    --primary-dark: #3730a3;
    --primary-light: #6366f1;
    --secondary-color: #06b6d4;
    --accent-color: #8b5cf6;
    
    /* Status Colors */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --info-color: #3b82f6;
    
    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --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;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-success: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    
    /* Modern Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', Consolas, monospace;
    
    /* Spacing Scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal: 1040;
    --z-popover: 1050;
    --z-tooltip: 1060;
}

/* Modern Body */
.modern-body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    background: var(--white);
    color: var(--gray-900);
    overflow-x: hidden;
}

/* ========== HEADER ========== */
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 80px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
}

.header-main.scrolled {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.4);
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 2rem;
}

/* Logo */
.header-logo a {
    display: block;
}

.header-logo img {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

/* Desktop Navigation */
.header-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu > li > a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-menu > li > a:hover {
    color: #fbbf24;
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.dropdown-toggle i {
    font-size: 12px;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i,
.dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 9999;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    color: #1e3a8a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.3);
}

.dropdown-menu i {
    width: 16px;
    color: #1e3a8a;
}

.dropdown-menu a:hover i {
    color: #ffffff;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-outline {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-outline::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;
}

.btn-outline:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 100%);
    color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    border-color: #ffffff;
}

.btn-outline:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e3a8a;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #1e3a8a;
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: white !important;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu-content {
    padding: 2rem;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 0;
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    border-bottom: 1px solid #e5e7eb;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: #4f46e5;
}

.mobile-dropdown-menu {
    background: #f9fafb;
    border-radius: 6px;
    margin-top: 0.5rem;
    padding: 0.5rem 0;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    opacity: 1;
    max-height: 200px;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.mobile-dropdown-menu a:hover {
    color: #4f46e5;
}

.mobile-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.mobile-menu-actions .btn {
    justify-content: center;
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Body scroll lock */
body.menu-open {
    overflow: hidden;
}

/* Responsive */
@media (max-width: 1024px) {
    .header-nav,
    .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .header-wrapper {
        gap: 1rem;
    }
    
    .header-logo img {
        height: 40px;
    }
    
    .mobile-menu-btn {
        display: flex !important;
    }
    
    .nav-menu {
        display: none !important;
    }
    
    .header-actions {
        display: none !important;
    }
    
    .mobile-menu-content {
        padding: 1.5rem;
    }
}



@media (max-width: 576px) {
    .brand-text {
        display: none;
    }
    
    .brand-logo {
        height: 40px;
    }
    
    .hero-main-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-feature-tags {
    justify-content: center;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Modern Brand */












.title-line-1,
.title-line-2,
.title-line-3 {
    display: block;
}

.gradient-text {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}



/* ESKI HERO CSS'LER SİLİNDİ */

/* ESKİ BUTTON CSS'LER SİLİNDİ */

/* ESKI BTN SHINE VE SECONDARY BTN CSS'LER SİLİNDİ */

/* ESKİ HERO GHOST BTN CSS SİLİNDİ */
.hero-ghost-btn {
    display: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.hero-ghost-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.hero-ghost-btn:hover {
    color: white;
}

.hero-ghost-btn:hover::before {
    width: 100%;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 140px;
    max-width: 180px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Background Effects */
.hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

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

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

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

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

.shape-4 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 40%;
    animation-delay: 15s;
}

.shape-5 {
    width: 90px;
    height: 90px;
    bottom: 20%;
    right: 10%;
    animation-delay: 7s;
}

.gradient-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #8b5cf6 0%, transparent 70%);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #06b6d4 0%, transparent 70%);
    bottom: 10%;
    right: 10%;
    animation-delay: 8s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #10b981 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 4s;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
        transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.scroll-arrow i {
    font-size: 1.5rem;
}

/* ========== HERO VISUAL SECTION ========== */

.hero-visual-section {
    background: var(--gray-50);
}

.modern-code-editor {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gray-900);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.editor-window {
    background: var(--gray-900);
}

.editor-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: var(--gray-800);
    border-bottom: 1px solid var(--gray-700);
}

.editor-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
}

.control.red { background: #ff5f56; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #27ca3f; }

.editor-title {
    color: var(--gray-400);
    font-family: var(--font-mono);
    font-size: 0.875rem;
    font-weight: 500;
}

.editor-tabs {
    display: flex;
    gap: 0.5rem;
}

.tab {
    padding: 0.25rem 0.75rem;
    background: var(--gray-700);
    color: var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    cursor: pointer;
}

.tab.active {
    background: var(--gray-600);
    color: white;
}

.editor-content {
    display: flex;
    padding: 1.5rem;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    line-height: 1.8;
}

.line-numbers {
    display: flex;
    flex-direction: column;
    color: var(--gray-500);
    padding-right: 1rem;
    border-right: 1px solid var(--gray-700);
    margin-right: 1rem;
    text-align: right;
    min-width: 2rem;
}

.code-lines {
    flex: 1;
}

.code-line {
    display: flex;
    align-items: center;
    min-height: 1.8em;
}

.keyword { color: #569cd6; }
.variable { color: #9cdcfe; }
.function { color: #dcdcaa; }
.string { color: #ce9178; }
.operator { color: #d4d4d4; }
.brackets { color: #ffd700; }
.semicolon { color: #d4d4d4; }
.comment { color: #6a9955; }

.typing-cursor {
    width: 2px;
    height: 1em;
    background: white;
    margin-left: 2px;
    animation: cursorBlink 1s infinite;
}

/* ========== ANIMATIONS ========== */

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

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

@keyframes descriptionFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

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

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

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

/* ========== ABOUT PAGE TEAM ANIMATION ========== */
.about-animation {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-animation-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ana Ekip Merkezi */
.team-core {
    position: absolute;
    z-index: 10;
}

.core-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    animation: corePulse 3s ease-in-out infinite;
}

.core-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: pulseExpand 2s ease-in-out infinite;
}

.core-icon {
    color: white;
    font-size: 2.5rem;
    animation: iconFloat 2s ease-in-out infinite;
}

/* Ekip Üyeleri */
.team-member {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 12px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: memberFloat 4s ease-in-out infinite;
}

.team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.member-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: avatarGlow 2s ease-in-out infinite;
}

.member-info {
    display: flex;
    flex-direction: column;
}

.member-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: #333;
    line-height: 1.2;
}

.member-role {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.2;
}

/* Ekip Üyelerinin Pozisyonları */
.member-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.member-2 {
    top: 15%;
    right: 15%;
    animation-delay: 0.5s;
}

.member-3 {
    top: 50%;
    left: 5%;
    animation-delay: 1s;
}

.member-4 {
    top: 45%;
    right: 5%;
    animation-delay: 1.5s;
}

.member-5 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.member-6 {
    bottom: 15%;
    right: 20%;
    animation-delay: 2.5s;
}

/* Bağlantı Çizgileri */
.connection-line {
    position: absolute;
    background: linear-gradient(90deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
    height: 2px;
    border-radius: 1px;
    animation: lineFlow 3s ease-in-out infinite;
}

.line-1 {
    top: 25%;
    left: 25%;
    width: 80px;
    transform: rotate(45deg);
    animation-delay: 0s;
}

.line-2 {
    top: 30%;
    right: 25%;
    width: 80px;
    transform: rotate(-45deg);
    animation-delay: 0.5s;
}

.line-3 {
    top: 50%;
    left: 15%;
    width: 60px;
    transform: rotate(30deg);
    animation-delay: 1s;
}

.line-4 {
    top: 50%;
    right: 15%;
    width: 60px;
    transform: rotate(-30deg);
    animation-delay: 1.5s;
}

.line-5 {
    bottom: 30%;
    left: 30%;
    width: 70px;
    transform: rotate(60deg);
    animation-delay: 2s;
}

.line-6 {
    bottom: 25%;
    right: 30%;
    width: 70px;
    transform: rotate(-60deg);
    animation-delay: 2.5s;
}

/* Parçacık Efektleri */
.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.particle-2 {
    top: 30%;
    right: 25%;
    animation-delay: 0.8s;
}

.particle-3 {
    top: 60%;
    left: 20%;
    animation-delay: 1.6s;
}

.particle-4 {
    top: 55%;
    right: 20%;
    animation-delay: 2.4s;
}

.particle-5 {
    bottom: 25%;
    left: 35%;
    animation-delay: 3.2s;
}

.particle-6 {
    bottom: 20%;
    right: 35%;
    animation-delay: 4s;
}

/* Animasyonlar */
@keyframes corePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulseExpand {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

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

@keyframes memberFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

@keyframes avatarGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(102, 126, 234, 0.5); }
    50% { box-shadow: 0 0 20px rgba(102, 126, 234, 0.8); }
}

@keyframes lineFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .about-animation {
        height: 400px;
    }
    
    .core-circle {
        width: 100px;
        height: 100px;
    }
    
    .core-icon {
        font-size: 2rem;
    }
    
    .team-member {
        padding: 8px 15px;
    }
    
    .member-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .member-name {
        font-size: 0.8rem;
    }
    
    .member-role {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .about-animation {
        height: 350px;
    }
    
    .core-circle {
        width: 80px;
        height: 80px;
    }
    
    .core-icon {
        font-size: 1.5rem;
    }
    
    .team-member {
        padding: 6px 12px;
    }
    
    .member-avatar {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
    
    .member-name {
        font-size: 0.7rem;
    }
    
    .member-role {
        font-size: 0.6rem;
    }
}

/* ========== AWARD CEREMONY ANIMATION ========== */
.award-animation {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.award-ceremony-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ana Ödül Animasyonu */
.award-trophy {
    position: absolute;
    z-index: 20;
    animation: trophyFloat 4s ease-in-out infinite;
}

.trophy-base {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.trophy-cup {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
    animation: trophyGlow 3s ease-in-out infinite;
}

.trophy-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: inherit;
    animation: glowPulse 2s ease-in-out infinite;
}

.trophy-cup i {
    color: #fff;
    font-size: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: iconShine 2s ease-in-out infinite;
}

.trophy-stand {
    width: 20px;
    height: 60px;
    background: linear-gradient(135deg, #c0c0c0 0%, #e0e0e0 50%, #c0c0c0 100%);
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Konfeti Efektleri */
.confetti {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: confettiFall 3s linear infinite;
}

.confetti-1 {
    background: #ff6b6b;
    top: -10px;
    left: 20%;
    animation-delay: 0s;
}

.confetti-2 {
    background: #4ecdc4;
    top: -10px;
    left: 30%;
    animation-delay: 0.5s;
}

.confetti-3 {
    background: #45b7d1;
    top: -10px;
    left: 40%;
    animation-delay: 1s;
}

.confetti-4 {
    background: #96ceb4;
    top: -10px;
    left: 50%;
    animation-delay: 1.5s;
}

.confetti-5 {
    background: #feca57;
    top: -10px;
    left: 60%;
    animation-delay: 2s;
}

.confetti-6 {
    background: #ff9ff3;
    top: -10px;
    left: 70%;
    animation-delay: 2.5s;
}

.confetti-7 {
    background: #54a0ff;
    top: -10px;
    left: 80%;
    animation-delay: 3s;
}

.confetti-8 {
    background: #5f27cd;
    top: -10px;
    left: 90%;
    animation-delay: 3.5s;
}

/* Spot Işıkları */
.spotlight {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: spotlightMove 4s ease-in-out infinite;
}

.spotlight-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.spotlight-2 {
    top: 20%;
    right: 15%;
    animation-delay: 1.5s;
}

.spotlight-3 {
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3s;
}

/* Sahne Efektleri */
.stage-curtains {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: 5;
}

.curtain {
    position: absolute;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(139, 69, 19, 0.8) 0%, rgba(160, 82, 45, 0.6) 100%);
    animation: curtainWave 3s ease-in-out infinite;
}

.curtain-left {
    left: 0;
    transform-origin: left;
}

.curtain-right {
    right: 0;
    transform-origin: right;
}

/* Ödül Yazısı */
.award-text {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 25;
    animation: textGlow 2s ease-in-out infinite;
}

.award-title {
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    margin-bottom: 5px;
    animation: titlePulse 2s ease-in-out infinite;
}

.award-subtitle {
    font-size: 1.2rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
}

.award-category {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Parçacık Efektleri */
.award-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    animation: particleFloat 4s ease-in-out infinite;
}

.award-particle.particle-1 {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.award-particle.particle-2 {
    top: 40%;
    right: 25%;
    animation-delay: 0.8s;
}

.award-particle.particle-3 {
    top: 60%;
    left: 30%;
    animation-delay: 1.6s;
}

.award-particle.particle-4 {
    top: 50%;
    right: 30%;
    animation-delay: 2.4s;
}

.award-particle.particle-5 {
    bottom: 40%;
    left: 40%;
    animation-delay: 3.2s;
}

.award-particle.particle-6 {
    bottom: 30%;
    right: 40%;
    animation-delay: 4s;
}

/* Animasyonlar */
@keyframes trophyFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes trophyGlow {
    0%, 100% { box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 15px 40px rgba(255, 215, 0, 0.8); }
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

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

@keyframes confettiFall {
    0% {
        transform: translateY(-10px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(500px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes spotlightMove {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

@keyframes curtainWave {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.05); }
}

@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 20px rgba(255, 215, 0, 0.8); }
    50% { text-shadow: 0 0 30px rgba(255, 215, 0, 1); }
}

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

/* Responsive Tasarım */
@media (max-width: 768px) {
    .award-animation {
        height: 400px;
    }
    
    .trophy-cup {
        width: 60px;
        height: 60px;
    }
    
    .trophy-cup i {
        font-size: 2rem;
    }
    
    .award-title {
        font-size: 2.5rem;
    }
    
    .award-subtitle {
        font-size: 1rem;
    }
    
    .award-category {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .award-animation {
        height: 350px;
    }
    
    .trophy-cup {
        width: 50px;
        height: 50px;
    }
    
    .trophy-cup i {
        font-size: 1.5rem;
    }
    
    .award-title {
        font-size: 2rem;
    }
    
    .award-subtitle {
        font-size: 0.9rem;
    }
    
    .award-category {
        font-size: 1rem;
    }
}

/* ========== BLOG HERO COMPACT FLASH ========== */
.blog-hero-compact {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 80px 0;
}

.hero-flash-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.flash-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0.8;
}

.flash-1 {
    animation: flashPulse 3s ease-in-out infinite;
}

.flash-2 {
    animation: flashPulse 3s ease-in-out infinite 1s;
    background: linear-gradient(135deg, #764ba2 0%, #f093fb 50%, #667eea 100%);
}

.flash-3 {
    animation: flashPulse 3s ease-in-out infinite 2s;
    background: linear-gradient(135deg, #f093fb 0%, #667eea 50%, #764ba2 100%);
}

.hero-gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 50%, rgba(240, 147, 251, 0.9) 100%);
}

.hero-content-compact {
    position: relative;
    z-index: 10;
    color: white;
}

.hero-badge-flash {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 25px;
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    animation: badgeFlash 2s ease-in-out infinite;
}

.badge-flash {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    border-radius: 50px;
    animation: badgeShine 2s ease-in-out infinite;
}

.hero-badge-flash i {
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.hero-badge-flash span {
    position: relative;
    z-index: 2;
}

.hero-title-compact {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-flash-1 {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    animation: titleFlashIn 1s ease-out;
}

.title-flash-2 {
    display: block;
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleFlashIn 1s ease-out 0.2s both;
}

.title-flash-3 {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8em;
    animation: titleFlashIn 1s ease-out 0.4s both;
}

.hero-description-compact {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: descriptionFlashIn 1s ease-out 0.6s both;
}

.hero-stats-compact {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    animation: statsFlashIn 1s ease-out 0.8s both;
}

.stat-item-flash {
    text-align: center;
    position: relative;
}

.stat-item-flash::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    border-radius: 10px;
    animation: statGlow 2s ease-in-out infinite;
}

.stat-number-flash {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.stat-label-flash {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    position: relative;
    z-index: 2;
}

.hero-categories-compact {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    animation: categoriesFlashIn 1s ease-out 1s both;
}

.category-tag-flash {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
}

.category-tag-flash::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.category-tag-flash:hover::before {
    left: 100%;
}

.category-tag-flash:hover,
.category-tag-flash.active {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.category-tag-flash i {
    font-size: 0.7rem;
    position: relative;
    z-index: 2;
}

.category-count-flash {
    font-size: 0.7rem;
    opacity: 0.8;
    position: relative;
    z-index: 2;
}

.hero-scroll-flash {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: scrollFlashBounce 2s ease-in-out infinite;
}

.scroll-arrow-flash {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.scroll-arrow-flash::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: arrowPulse 2s ease-in-out infinite;
}

.scroll-arrow-flash:hover {
    color: white;
    transform: translateY(3px);
}

/* Flash Animations */
@keyframes flashPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.6; }
}

@keyframes badgeFlash {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-3px) scale(1.05); }
}

@keyframes badgeShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes titleFlashIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

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

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

@keyframes statGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

@keyframes scrollFlashBounce {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes arrowPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* Blog Card Updates */
.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    opacity: 0.8;
}

.featured-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ffd700;
    color: #333;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    animation: starPulse 2s ease-in-out infinite;
}

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

.no-posts {
    padding: 60px 20px;
    color: #666;
}

.no-posts i {
    color: #ddd;
    margin-bottom: 20px;
}

.no-posts h3 {
    color: #333;
    margin-bottom: 10px;
}

/* Featured Post Updates */
.featured-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.featured-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    opacity: 0.9;
}

.featured-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.featured-title a:hover {
    color: #667eea;
}

.meta-category {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Blog Hero */
@media (max-width: 768px) {
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-categories {
        gap: 10px;
    }
    
    .category-tag {
        padding: 10px 15px;
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-categories {
        flex-direction: column;
        align-items: center;
    }
    
    .category-tag {
        width: 200px;
        justify-content: center;
    }
}

@keyframes badgeGlow {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

@keyframes floatingShapes {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(90deg); }
    50% { transform: translateY(0px) rotate(180deg); }
    75% { transform: translateY(-15px) rotate(270deg); }
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    33% { transform: translateY(-20px) scale(1.05); }
    66% { transform: translateY(10px) scale(0.95); }
}

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

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 1024px) {
    .hero-content-column {
        min-height: auto;
        padding: 1rem;
    }
    
    /* ESKİ HERO MAIN TITLE CSS SİLİNDİ */
}

@media (max-width: 768px) {
    .old-modern-hero-section {
        padding-top: 100px;
        text-align: center;
    }
    
    .hero-content-column {
        order: 1;
        text-align: center;
        padding: 1rem;
        justify-content: center;
    }
    
    .hero-content-wrapper {
        max-width: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
    }
    
    /* ESKİ HERO CTA BUTTONS CSS SİLİNDİ */
    
    .hero-stats {
        gap: 1rem;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 100px;
        max-width: 120px;
    }
    
    .header-cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .customer-panel-btn,
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .brand-text {
        display: none;
    }
    
    .brand-logo {
        height: 40px;
    }
    
    .hero-main-title {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-feature-tags {
    justify-content: center;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .ultra-modern-header {
        background: rgba(17, 24, 39, 0.85);
        border-bottom-color: rgba(55, 65, 81, 0.3);
    }
    
    .ultra-modern-header.scrolled {
        background: rgba(17, 24, 39, 0.95);
    }
    
    .modern-nav-link {
        color: var(--gray-300) !important;
    }
    
    .modern-nav-link:hover,
    .modern-nav-link.active {
        color: var(--primary-light) !important;
    }
    
    .brand-name {
        color: white;
    }
    
    .customer-panel-btn {
        color: var(--gray-300);
        border-color: var(--gray-600);
    }
    
    .customer-panel-btn:hover {
        color: var(--primary-light);
        border-color: var(--primary-light);
    }
}

/* ========== MODERN FOOTER STYLES ========== */

.compact-footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 45px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1); /* Beyaz logo için */
}

.footer-logo:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.footer-brand h5 {
    color: white;
    font-weight: 700;
    margin: 0;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.875rem;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    color: var(--gray-400);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.footer-title {
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.6;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 0.125rem;
    min-width: 16px;
}

.contact-info a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom p {
    color: var(--gray-500);
    font-size: 0.875rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 1rem;
    justify-content: end;
}

.footer-legal a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* ========== FLOATING BUTTONS ========== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--z-sticky);
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: var(--shadow-xl);
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
    color: white;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: var(--z-sticky);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ========== UTILITY CLASSES ========== */

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-gradient {
    background: var(--gradient-primary);
        border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    background: var(--gradient-secondary);
        transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.card-modern {
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.card-modern:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

/* SSS bölümü için beyaz renk ve koyu arkaplan */
.faq-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
}

.faq-section .section-title {
    color: white !important;
}

.faq-section .section-description {
    color: rgba(255, 255, 255, 0.9) !important;
}

.faq-section .faq-question h5 {
    color: white !important;
}

.faq-section .faq-answer p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    line-height: 1.6;
}

/* ========== LOADING ANIMATIONS ========== */

.loading-spinner {
        width: 40px;
        height: 40px;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

/* ========== FORM STYLES ========== */

.form-modern {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-xl);
}

.form-control-modern {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control-modern:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.1);
}

.form-label-modern {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

/* ========== ALERT STYLES ========== */

.alert-modern {
    border: none;
    border-radius: var(--radius-lg);
    padding: 1rem 1.5rem;
    font-weight: 500;
    border-left: 4px solid;
}

.alert-modern.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    border-left-color: var(--success-color);
}

.alert-modern.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger-color);
    border-left-color: var(--danger-color);
}

.alert-modern.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning-color);
    border-left-color: var(--warning-color);
}

.alert-modern.alert-info {
    background: rgba(59, 130, 246, 0.1);
    color: var(--info-color);
    border-left-color: var(--info-color);
}

/* ========== ANIMATIONS ========== */

@keyframes whatsappPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

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

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@media (max-width: 768px) {
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 90px;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .compact-footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-brand,
    .footer-title {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .hero-stats {
        gap: 0.5rem;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-item {
        min-width: 80px;
        max-width: 100px;
    }
    
    /* ESKİ HERO FEATURE TAGS CSS SİLİNDİ */
}

/* ========== PRINT STYLES ========== */

@media print {
    .ultra-modern-header,
    .whatsapp-float,
    .back-to-top,
    .hero-bg-effects,
    .scroll-indicator {
        display: none !important;
    }
    
    .old-hero-section {
        background: white !important;
        color: black !important;
    }
    
    .hero-main-title,
    .hero-description {
        color: black !important;
    }
}

/* ========== ACCESSIBILITY IMPROVEMENTS ========== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus states for keyboard navigation */
.modern-nav-link:focus,
.customer-panel-btn:focus,
.cta-btn:focus,
.hero-primary-btn:focus,
.hero-secondary-btn:focus,
.hero-ghost-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0000ff;
        --gray-900: #000000;
        --gray-100: #ffffff;
    }
    
    .modern-nav-link,
    .hero-description,
    .footer-links a {
        color: #000000 !important;
    }
    
    .old-modern-hero-section {
        background: linear-gradient(135deg, #000080 0%, #000040 100%) !important;
    }
}

/* ========== EXISTING STYLES CONTINUE BELOW ========== */

/* ========== HERO SECTION'DAN SONRAKI BÖLÜMLER ========== */

/* Hero Visual Section */
.hero-visual-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-visual-section::before {
    content: '';
    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"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.visual-content {
    position: relative;
    z-index: 2;
}

/* References Section */
.references-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.references-section::before {
    content: '';
    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"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.references-section .container {
    position: relative;
    z-index: 2;
}

.services-showcase {
    padding: 3rem 0;
}

.services-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 2rem 0;
}

.services-slider::-webkit-scrollbar {
    height: 8px;
}

.services-slider::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.services-slider::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.service-showcase-item {
    min-width: 250px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-showcase-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-animation {
    margin-bottom: 1rem;
}

.service-showcase-item h4 {
    color: white;
    font-weight: 600;
    margin-top: 1rem;
}

/* About Section */
.about-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(79, 70, 229, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.tech-innovation-animation {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.animation-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.ai-brain-animation,
.blockchain-animation,
.cloud-computing-animation,
.iot-network-animation {
    position: absolute;
    animation: techFloat 6s ease-in-out infinite;
}

.ai-brain-animation {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.blockchain-animation {
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.cloud-computing-animation {
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.iot-network-animation {
    top: 60%;
    right: 25%;
    animation-delay: 6s;
}

.tech-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 1rem;
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: iconFloat 4s ease-in-out infinite;
}

.tech-icon:nth-child(1) { animation-delay: 0s; }
.tech-icon:nth-child(2) { animation-delay: 0.8s; }
.tech-icon:nth-child(3) { animation-delay: 1.6s; }
.tech-icon:nth-child(4) { animation-delay: 2.4s; }
.tech-icon:nth-child(5) { animation-delay: 3.2s; }

/* Client References Section */
.client-references-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.client-slider-wrapper {
    overflow: hidden;
    position: relative;
}

.client-slider {
    display: flex;
    gap: 3rem;
    animation: clientSlide 20s linear infinite;
}

.client-logo-item {
    min-width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 1rem;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.client-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.client-logo-item:hover .client-logo {
    filter: grayscale(0);
}

/* Modern Services Showcase */
.modern-services-showcase {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.services-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.services-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: -25px;
}

.carousel-nav.next {
    right: -25px;
}

.services-slider-wrapper {
    overflow: hidden;
    border-radius: 1rem;
}

.services-slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.service-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
}

.service-mockup {
    flex: 1;
    text-align: center;
}

.monitor-frame {
    position: relative;
    background: linear-gradient(145deg, #2d3748, #4a5568);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.monitor-screen {
    background: #1a202c;
    border-radius: 0.5rem;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-details {
    flex: 1;
    color: white;
    padding: 2rem;
}

.service-details h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.service-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.service-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: white;
    transform: scale(1.2);
}

/* Services Section */
.services-section {
    padding: 5rem 0;
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::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;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 48px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.service-card:hover::before {
    left: 100%;
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.8s ease;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: iconPulse 2s ease-in-out infinite;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
}

.service-card:hover .service-icon::before {
    transform: translateX(100%);
}

.service-card:hover .service-icon::after {
    opacity: 1;
}

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

.service-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #1f2937;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 2;
}

.service-description {
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Innovation Achievement Section */
.innovation-achievement-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.innovation-achievement-section::before {
    content: '';
    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"><polygon points="50,0 100,50 50,100 0,50" fill="rgba(255,255,255,0.05)"/></svg>');
    animation: patternMove 20s linear infinite;
}

.achievement-content {
    position: relative;
    z-index: 2;
}

.achievement-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: achievementPulse 2s ease-in-out infinite;
}

.awards-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.awards-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.achievement-stats {
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item p {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Vision Section */
.vision-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.vision-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.vision-subtitle {
    font-size: 1.5rem;
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 3rem;
}

.vision-tech-stack {
    margin-top: 3rem;
}

    .tech-stack-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
    }
    
    .tech-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Payment Security Section */
.payment-security-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.payment-cards h3 {
    color: var(--gray-800);
    font-weight: 700;
    margin-bottom: 2rem;
}

.card-logos {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.card-logo {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.card-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.card-logo img {
    height: 40px;
    width: auto;
}

.payment-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
}

.feature-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.security-badges h3 {
    color: var(--gray-800);
    font-weight: 700;
    margin-bottom: 2rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

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

.security-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.security-badge i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.security-badge h5 {
    color: var(--gray-800);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.security-badge p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.payment-info-card {
    background: white;
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.payment-info-card h4 {
    color: var(--gray-800);
    font-weight: 700;
    margin-bottom: 1rem;
}

.payment-info-card p {
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.payment-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust & Legal Section */
.trust-legal-section {
    background: #f8fafc;
    padding: 5rem 0;
}

.trust-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(79, 70, 229, 0.1);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.15);
    border-color: var(--primary-color);
}

.trust-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.trust-card h4 {
    color: var(--gray-800);
    font-weight: 700;
    margin-bottom: 1rem;
}

.trust-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Animasyonlar */
@keyframes techFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
}

@keyframes clientSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes patternMove {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(100px); }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .service-slide {
        flex-direction: column;
        text-align: center;
    }
    
    .services-carousel {
        padding: 1rem;
    }
    
    .carousel-nav {
        display: none;
    }
    
    .awards-title {
        font-size: 2rem;
    }
    
    .vision-title {
        font-size: 2rem;
    }
    
    .tech-stack-grid {
        gap: 0.5rem;
    }
    
    .payment-buttons {
        flex-direction: column;
    align-items: center;
    }
    
    .card-logos {
        justify-content: center;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .references-section,
    .about-section,
    .modern-services-showcase,
    .innovation-achievement-section,
    .vision-section {
        padding: 3rem 0;
    }
    
    .tech-innovation-animation {
        height: 300px;
    }
    
    .achievement-stats {
        text-align: center;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .payment-info-card {
        padding: 2rem;
    }
}

/* ========== MODERN TESTIMONIALS SECTION ========== */





/* ========== FAQ SECTION ========== */

/* ========== MODERN FAQ SECTION ========== */

.modern-faq-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.modern-faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
}

.faq-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.faq-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* gradient-text css silindi */
}

.faq-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.modern-faq-container {
    position: relative;
    z-index: 2;
}

.faq-card {
    background: white;
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.faq-header-item {
    display: flex;
    align-items: center;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-header-item:hover {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.faq-question-title {
    flex: 1;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.faq-card:hover .faq-question-title {
    color: #667eea;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 10px;
    transition: all 0.3s ease;
    margin-left: 20px;
}

.faq-toggle i {
    color: #64748b;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.faq-card.active .faq-toggle {
    background: #667eea;
}

.faq-card.active .faq-toggle i {
    color: white;
}

.faq-content {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-card.active .faq-content {
    max-height: 300px;
    padding: 0 30px 30px;
    opacity: 1;
}

.faq-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

.faq-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 15px;
}

.tag {
    background: linear-gradient(45deg, #e2e8f0, #f1f5f9);
    color: #475569;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.tag:hover {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    transform: translateY(-2px);
}

.faq-cta {
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.cta-content {
    background: white;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-buttons .btn-outline-primary {
    border: 2px solid #667eea;
    color: #667eea;
    background: transparent;
}

.cta-buttons .btn-outline-primary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modern-faq-section {
        padding: 60px 0;
    }
    
    .faq-header-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .faq-number {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .faq-question-title {
        font-size: 1.1rem;
    }
    
    .faq-content {
        padding: 0 20px;
    }
    
    .faq-card.active .faq-content {
        padding: 0 20px 20px;
    }
    
    .cta-content {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 250px;
    }
}

/* ========== SECTION SEPARATOR ========== */



/* ========== NEWSLETTER SECTION ========== */

.newsletter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    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"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: newsletterPattern 20s linear infinite;
    z-index: 1;
}

.newsletter-section .container {
    position: relative;
    z-index: 2;
}

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

.newsletter-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.newsletter-form-wrapper {
    position: relative;
}

.newsletter-form {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.newsletter-form:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.newsletter-form .form-group {
    position: relative;
    margin-bottom: 1rem;
}

.newsletter-input {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.newsletter-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.btn-newsletter {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
}

.btn-newsletter:hover {
    background: linear-gradient(135deg, #ee5a24 0%, #c23616 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(238, 90, 36, 0.4);
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.newsletter-disclaimer i {
    color: #10b981;
    font-size: 1rem;
}

/* ========== ANIMASYONLAR ========== */



@keyframes newsletterPattern {
    0% { transform: translateX(-50px) translateY(-50px); }
    100% { transform: translateX(50px) translateY(50px); }
}

/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 768px) {
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonials-section .section-title {
        font-size: 2.5rem;
    }
    
    .testimonials-carousel {
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .testimonial-item {
        min-width: 320px;
    }
    
    .testimonial-content {
        padding: 2.5rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .testimonial-stars {
        font-size: 1.2rem;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
    
    .newsletter-title {
        font-size: 2rem;
    }
    
    .newsletter-subtitle {
        font-size: 1.1rem;
    }
    
    .newsletter-form {
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1rem 1.5rem;
    }
    
    .faq-question h5 {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .testimonials-section,
    .faq-section,
    .newsletter-section {
        padding: 3rem 0;
    }
    
    .testimonials-section .section-title {
        font-size: 2rem;
    }
    
    .testimonials-section .section-description {
        font-size: 1rem;
    }
    
    .testimonials-carousel {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .testimonial-item {
        min-width: 280px;
    }
    
    .testimonial-content {
        padding: 2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-text::before {
        font-size: 3rem;
        top: -1rem;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .testimonial-stars {
        font-size: 1.1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
    
    .author-position {
        font-size: 0.9rem;
    }
    
    .newsletter-title {
        font-size: 1.8rem;
    }
    
    .newsletter-form {
        padding: 1rem;
    }
    
    .newsletter-input {
        padding: 0.875rem 1rem;
    }
    
    .btn-newsletter {
        padding: 0.875rem 1.5rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1rem 1rem;
    }
}

/* ========== DARK MODE SUPPORT ========== */

@media (prefers-color-scheme: dark) {
    .faq-section {
        background: #1a202c;
    }
    
    .faq-item {
        background: #2d3748;
        border: 1px solid #4a5568;
    }
    
    .faq-question {
        background: #2d3748;
        color: white;
    }
    
    .faq-question:hover {
        background: #4a5568;
    }
    
    .faq-question h5 {
        color: white;
    }
    
    .faq-answer p {
        color: #e2e8f0;
    }
}

/* ========== ACCESSIBILITY ========== */

.faq-question:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.newsletter-input:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 2px;
}

.btn-newsletter:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

/* ========== PRINT STYLES ========== */

@media print {
    .testimonials-section,
    .newsletter-section {
        background: white !important;
        color: black !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .testimonial-content {
        border: 1px solid #ccc;
        background: white;
    }
    
    .testimonial-text,
    .author-name,
    .author-position {
        color: black !important;
    }
    
    .testimonial-stars i {
        color: #333 !important;
    }
}

/* ========== MINI CODE EDITOR (Hero Section) ========== */

.hero-code-editor {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.mini-code-editor {
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.3s ease;
}

.mini-code-editor:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.editor-window-mini {
    background: linear-gradient(145deg, #1e1e1e, #2d2d2d);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.editor-window-mini::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 50%, rgba(255, 255, 255, 0.05) 100%);
    pointer-events: none;
    z-index: 1;
}

.editor-header-mini {
    background: linear-gradient(135deg, #3a3a3a, #2d2d2d);
    padding: 8px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.editor-controls-mini {
    display: flex;
    gap: 6px;
}

.control-mini {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: block;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.control-mini.red { 
    background: linear-gradient(135deg, #ff5f57, #ff3b30);
}

.control-mini.yellow { 
    background: linear-gradient(135deg, #ffbd2e, #ff9500);
}

.control-mini.green { 
    background: linear-gradient(135deg, #28ca42, #30d158);
}

.editor-title-mini {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    font-family: var(--font-mono);
    letter-spacing: 0.5px;
}

.editor-tabs-mini {
    display: flex;
    gap: 4px;
}

.tab-mini {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    padding: 3px 6px;
    border-radius: 4px;
    font-family: var(--font-mono);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
}

.tab-mini.active {
    background: rgba(79, 70, 229, 0.3);
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(79, 70, 229, 0.5);
}

.editor-content-mini {
    display: flex;
    background: #1a1a1a;
    min-height: 180px;
    position: relative;
    z-index: 2;
}

.line-numbers-mini {
    background: #0d1117;
    padding: 12px 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 24px;
    text-align: right;
    user-select: none;
}

.line-numbers-mini span {
    display: block;
    height: 18px;
    line-height: 18px;
}

.code-lines-mini {
    flex: 1;
    padding: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    line-height: 1.5;
    color: #e1e4e8;
    overflow: hidden;
}

.code-line-mini {
    height: 18px;
    line-height: 18px;
    white-space: nowrap;
    position: relative;
}

/* Code Syntax Highlighting - Mini */
.code-lines-mini .keyword { 
    color: #79c0ff; 
    font-weight: 600;
}

.code-lines-mini .variable { 
    color: #ffa657; 
}

.code-lines-mini .function { 
    color: #d2a8ff; 
    font-weight: 500;
}

.code-lines-mini .string { 
    color: #a5d6ff; 
}

.code-lines-mini .operator { 
    color: #ff7b72; 
}

.code-lines-mini .brackets { 
    color: #f0883e; 
}

.code-lines-mini .semicolon { 
    color: #8b949e; 
}

.code-lines-mini .comment { 
    color: #7c3aed; 
    font-style: italic;
}

.code-lines-mini .indent {
    color: transparent;
}

.typing-cursor-mini {
    display: inline-block;
    width: 2px;
    height: 14px;
    background: #79c0ff;
    margin-left: 2px;
    animation: cursorBlinkMini 1s infinite;
    vertical-align: text-top;
}

@keyframes cursorBlinkMini {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Hover Effects */
.mini-code-editor:hover .editor-window-mini {
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(79, 70, 229, 0.3);
}

.mini-code-editor:hover .typing-cursor-mini {
    background: #00d9ff;
    box-shadow: 0 0 8px rgba(0, 217, 255, 0.6);
}

/* Animation Effects */
.mini-code-editor {
    animation: floatMini 6s ease-in-out infinite;
}

@keyframes floatMini {
    0%, 100% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(0px); }
    50% { transform: perspective(1000px) rotateY(-5deg) rotateX(5deg) translateY(-5px); }
}

/* Responsive Design for Mini Editor */
@media (max-width: 1199px) {
    .hero-code-editor {
        display: none !important;
    }
}

@media (min-width: 1400px) {
    .mini-code-editor {
        max-width: 380px;
    }
    
    .editor-header-mini {
        padding: 10px 15px;
    }
    
    .editor-title-mini {
        font-size: 12px;
    }
    
    .tab-mini {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .code-lines-mini {
        font-size: 12px;
        padding: 15px;
    }
    
    .line-numbers-mini {
        font-size: 12px;
        padding: 15px 10px;
        min-width: 28px;
    }
    
    .code-line-mini {
        height: 20px;
        line-height: 20px;
    }
    
    .line-numbers-mini span {
        height: 20px;
        line-height: 20px;
    }
    
    .editor-content-mini {
        min-height: 200px;
    }
}

/* Glass Effect Enhancement */
.mini-code-editor::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(79, 70, 229, 0.1) 0%, 
        rgba(139, 92, 246, 0.1) 25%, 
        rgba(59, 130, 246, 0.1) 50%, 
        rgba(139, 92, 246, 0.1) 75%, 
        rgba(79, 70, 229, 0.1) 100%);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mini-code-editor:hover::before {
    opacity: 1;
}

/* Additional Effects */
.editor-window-mini::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(79, 70, 229, 0.5), transparent);
    z-index: 3;
}

/* Smooth Typing Animation */
.code-line-mini:nth-child(6) .typing-cursor-mini {
    animation: cursorBlinkMini 1s infinite, 
               typingGlow 2s ease-in-out infinite alternate;
}

@keyframes typingGlow {
    0% { 
        background: #79c0ff; 
        box-shadow: 0 0 5px rgba(121, 192, 255, 0.3);
    }
    100% { 
        background: #00d9ff; 
        box-shadow: 0 0 10px rgba(0, 217, 255, 0.6);
    }
}

/* ========== ABOUT SECTION ADVANCED ANIMATIONS ========== */

/* AI Brain Animation */
.ai-brain-animation {
    position: absolute;
    top: 10%;
    left: 15%;
    width: 120px;
    height: 120px;
    animation: brainPulse 4s ease-in-out infinite;
}

.brain-core {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 30px rgba(102, 126, 234, 0.4);
}

.neural-network {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
}

.neuron {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    animation: neuronPulse 2s ease-in-out infinite;
}

.neuron-1 { top: 10px; left: 10px; animation-delay: 0s; }
.neuron-2 { top: 10px; right: 10px; animation-delay: 0.5s; }
.neuron-3 { bottom: 10px; left: 10px; animation-delay: 1s; }
.neuron-4 { bottom: 10px; right: 10px; animation-delay: 1.5s; }

.connection {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    animation: connectionFlow 3s ease-in-out infinite;
}

.connection-1 {
    top: 16px;
    left: 22px;
    width: 36px;
    transform: rotate(0deg);
}

.connection-2 {
    top: 39px;
    left: 16px;
    width: 48px;
    transform: rotate(45deg);
}

.connection-3 {
    bottom: 16px;
    left: 22px;
    width: 36px;
    transform: rotate(0deg);
}

/* Blockchain Animation */
.blockchain-animation {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 160px;
    height: 80px;
    animation: blockchainSlide 6s ease-in-out infinite;
}

.block {
    position: absolute;
    width: 40px;
    height: 60px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(240, 147, 251, 0.3);
    animation: blockMove 3s ease-in-out infinite;
}

.block-1 { left: 0; animation-delay: 0s; }
.block-2 { left: 60px; animation-delay: 0.5s; }
.block-3 { left: 120px; animation-delay: 1s; }

.block-header {
    height: 15px;
    background: rgba(255, 255, 255, 0.9);
    margin: 8px 6px 4px;
    border-radius: 4px;
    animation: dataFlow 2s ease-in-out infinite;
}

.block-data {
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    margin: 4px 6px;
    border-radius: 2px;
    animation: dataFlow 2s ease-in-out infinite 0.3s;
}

.chain-link {
    position: absolute;
    top: 50%;
    height: 4px;
    background: linear-gradient(90deg, #f093fb, #f5576c);
    border-radius: 2px;
    animation: chainPulse 2s ease-in-out infinite;
}

.chain-1 { left: 40px; width: 20px; animation-delay: 0s; }
.chain-2 { left: 100px; width: 20px; animation-delay: 1s; }

/* Cloud Computing Animation */
.cloud-computing-animation {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 100px;
    animation: cloudFloat 8s ease-in-out infinite;
}

.cloud-server {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.server-rack {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    animation: serverBlink 3s ease-in-out infinite;
}

.data-flow {
    position: absolute;
    width: 3px;
    height: 20px;
    background: linear-gradient(0deg, transparent, #fff, transparent);
    border-radius: 2px;
    animation: dataUpload 2s ease-in-out infinite;
}

.data-1 { bottom: 40px; left: 30%; animation-delay: 0s; }
.data-2 { bottom: 40px; left: 50%; animation-delay: 0.7s; }
.data-3 { bottom: 40px; right: 30%; animation-delay: 1.4s; }

.cloud-shape {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 40px;
    animation: cloudGlow 4s ease-in-out infinite;
}

.cloud-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #4facfe;
    border-radius: 50%;
    animation: particleMove 3s ease-in-out infinite;
}

.particle-1 { top: 8px; left: 20px; animation-delay: 0s; }
.particle-2 { top: 20px; left: 40px; animation-delay: 1s; }
.particle-3 { top: 8px; right: 20px; animation-delay: 2s; }

/* IoT Network Animation */
.iot-network-animation {
    position: absolute;
    top: 25%;
    right: 25%;
    width: 120px;
    height: 120px;
    animation: iotRotate 10s linear infinite;
}

.iot-device {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(17, 153, 142, 0.5);
    animation: devicePulse 3s ease-in-out infinite;
}

.device-1 { top: 0; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.device-2 { bottom: 0; left: 0; animation-delay: 1s; }
.device-3 { bottom: 0; right: 0; animation-delay: 2s; }

.device-signal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid rgba(56, 239, 125, 0.6);
    border-radius: 50%;
    animation: signalPulse 2s ease-in-out infinite;
}

.network-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.6);
}

.hub-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border: 3px solid rgba(102, 126, 234, 0.4);
    border-radius: 50%;
    animation: hubExpand 3s ease-in-out infinite;
}

/* Innovation Badges */
.innovation-badges {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.animated-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #2d3748;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    animation: badgeFloat 6s ease-in-out infinite;
}

.badge-1 { top: 5%; left: 5%; animation-delay: 0s; }
.badge-2 { top: 10%; right: 10%; animation-delay: 1.5s; }
.badge-3 { bottom: 15%; left: 8%; animation-delay: 3s; }
.badge-4 { bottom: 8%; right: 15%; animation-delay: 4.5s; }

/* Quantum Rings */
.quantum-rings {
    position: absolute;
    top: 35%;
    left: 5%;
    width: 100px;
    height: 100px;
    animation: quantumSpin 12s linear infinite;
}

.quantum-ring {
    position: absolute;
    border: 2px solid;
    border-radius: 50%;
    animation: ringRotate 8s linear infinite;
}

.ring-1 {
    width: 80px;
    height: 80px;
    border-color: rgba(102, 126, 234, 0.6);
    animation-delay: 0s;
}

.ring-2 {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-color: rgba(240, 147, 251, 0.6);
    animation-delay: 2s;
    animation-direction: reverse;
}

.ring-3 {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-color: rgba(79, 172, 254, 0.6);
    animation-delay: 4s;
}

/* ========== MODERN SERVICES SHOWCASE MONITOR MOCKUPS ========== */

/* Monitor Stand */
.monitor-stand {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.monitor-stand::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 15px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    border-radius: 4px;
}

/* Website Preview Styles */
.website-preview {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

/* Web Design Preview */
.website-preview.web-design {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.preview-header {
    height: 40px;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.preview-nav {
    display: flex;
    gap: 15px;
}

.nav-item {
    width: 40px;
    height: 6px;
    background: rgba(102, 126, 234, 0.6);
    border-radius: 3px;
    animation: navPulse 3s ease-in-out infinite;
}

.nav-item:nth-child(1) { animation-delay: 0s; }
.nav-item:nth-child(2) { animation-delay: 0.5s; }
.nav-item:nth-child(3) { animation-delay: 1s; }
.nav-item:nth-child(4) { animation-delay: 1.5s; }

.preview-hero {
    padding: 20px;
    text-align: center;
}

.hero-title {
    width: 120px;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    margin: 0 auto 10px;
    animation: contentPulse 2s ease-in-out infinite;
}

.hero-subtitle {
    width: 80px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 4px;
    margin: 0 auto 15px;
    animation: contentPulse 2s ease-in-out infinite 0.3s;
}

.hero-button {
    width: 60px;
    height: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    margin: 0 auto;
    animation: buttonHover 3s ease-in-out infinite;
}

.preview-features {
    display: flex;
    justify-content: space-around;
    padding: 15px;
    gap: 8px;
}

.feature-card {
    width: 30px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    animation: cardFloat 4s ease-in-out infinite;
}

.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 1s; }
.feature-card:nth-child(3) { animation-delay: 2s; }

/* E-Commerce Preview */
.website-preview.e-commerce {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.logo-area {
    width: 40px;
    height: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    margin: 10px;
    animation: logoSpin 4s ease-in-out infinite;
}

.search-bar {
    flex: 1;
    height: 20px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    margin: 10px;
    position: relative;
    animation: searchPulse 3s ease-in-out infinite;
}

.cart-icon {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    margin: 5px 10px;
    position: relative;
    animation: cartBounce 2s ease-in-out infinite;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 15px;
    height: 15px;
    background: #ff4757;
    border-radius: 50%;
    color: white;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    animation: countPulse 1s ease-in-out infinite;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 15px;
}

.product-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    padding: 6px;
    text-align: center;
    animation: productHover 3s ease-in-out infinite;
}

.product-image {
    width: 100%;
    height: 25px;
    background: rgba(240, 147, 251, 0.3);
    border-radius: 4px;
    margin-bottom: 4px;
    animation: imageShimmer 2s ease-in-out infinite;
}

.product-price {
    font-size: 8px;
    font-weight: bold;
    color: #f5576c;
    animation: priceGlow 2s ease-in-out infinite;
}

.product-item:nth-child(1) { animation-delay: 0s; }
.product-item:nth-child(2) { animation-delay: 0.5s; }
.product-item:nth-child(3) { animation-delay: 1s; }

/* Social Media Preview */
.website-preview.social-media {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.social-dashboard {
    padding: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.platform-tabs {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.tab {
    width: 25px;
    height: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6px;
    font-weight: bold;
    color: #4facfe;
    animation: tabSwitch 4s ease-in-out infinite;
}

.tab.facebook { animation-delay: 0s; }
.tab.instagram { animation-delay: 1s; }
.tab.twitter { animation-delay: 2s; }
.tab.linkedin { animation-delay: 3s; }

.post-composer {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    padding: 6px;
    flex: 1;
}

.composer-text {
    width: 100%;
    height: 25px;
    background: rgba(79, 172, 254, 0.1);
    border-radius: 4px;
    margin-bottom: 6px;
    animation: textTyping 3s ease-in-out infinite;
}

.composer-buttons {
    display: flex;
    gap: 4px;
}

.btn-media,
.btn-schedule,
.btn-post {
    width: 20px;
    height: 15px;
    border-radius: 3px;
    animation: buttonPulse 2s ease-in-out infinite;
}

.btn-media { 
    background: #ff6b6b; 
    animation-delay: 0s; 
}
.btn-schedule { 
    background: #4ecdc4; 
    animation-delay: 0.5s; 
}
.btn-post { 
    background: #45b7d1; 
    animation-delay: 1s; 
}

.analytics-charts {
    display: flex;
    gap: 4px;
    height: 30px;
}

.chart-bar,
.chart-circle,
.chart-line {
    flex: 1;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 3px;
    animation: chartUpdate 3s ease-in-out infinite;
}

.chart-bar { animation-delay: 0s; }
.chart-circle { animation-delay: 1s; }
.chart-line { animation-delay: 2s; }

/* Mobile App Preview */
.website-preview.mobile-app {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup {
    width: 80px;
    height: 140px;
    background: #2c3e50;
    border-radius: 12px;
    padding: 6px;
    position: relative;
    animation: phoneTilt 4s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.status-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4px;
    font-size: 4px;
    color: #2c3e50;
}

.time,
.battery {
    font-weight: bold;
    animation: statusBlink 2s ease-in-out infinite;
}

.app-title {
    text-align: center;
    color: white;
    font-size: 6px;
    font-weight: bold;
    padding: 4px 0;
    background: rgba(255, 255, 255, 0.1);
    animation: titleGlow 3s ease-in-out infinite;
}

.app-content {
    padding: 8px;
    height: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.app-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
    flex: 1;
}

.app-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    height: 20px;
    animation: cardSlide 3s ease-in-out infinite;
}

.app-card:nth-child(1) { animation-delay: 0s; }
.app-card:nth-child(2) { animation-delay: 0.5s; }
.app-card:nth-child(3) { animation-delay: 1s; }

.app-navigation {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-top: 6px;
}

.nav-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    animation: dotPulse 2s ease-in-out infinite;
}

.nav-dot.active {
    background: rgba(255, 255, 255, 0.9);
}

.nav-dot:nth-child(1) { animation-delay: 0s; }
.nav-dot:nth-child(2) { animation-delay: 0.5s; }
.nav-dot:nth-child(3) { animation-delay: 1s; }
.nav-dot:nth-child(4) { animation-delay: 1.5s; }

/* Software Preview */
.website-preview.software {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
}

.software-interface {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.window-header {
    height: 25px;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.window-controls {
    display: flex;
    gap: 3px;
}

.control {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    animation: controlPulse 2s ease-in-out infinite;
}

.control.close { 
    background: #ff5f56; 
    animation-delay: 0s; 
}
.control.minimize { 
    background: #ffbd2e; 
    animation-delay: 0.5s; 
}
.control.maximize { 
    background: #27ca3f; 
    animation-delay: 1s; 
}

.window-title {
    font-size: 6px;
    font-weight: bold;
    color: #2c3e50;
    animation: titleFade 3s ease-in-out infinite;
}

.software-main {
    flex: 1;
    display: flex;
}

.software-sidebar {
    width: 30px;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.menu-item {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    animation: menuHighlight 4s ease-in-out infinite;
}

.menu-item.active {
    background: rgba(255, 255, 255, 0.8);
}

.menu-item:nth-child(1) { animation-delay: 0s; }
.menu-item:nth-child(2) { animation-delay: 1s; }
.menu-item:nth-child(3) { animation-delay: 2s; }
.menu-item:nth-child(4) { animation-delay: 3s; }

.data-table {
    flex: 1;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.table-row {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: dataLoad 3s ease-in-out infinite;
}

.table-row.header {
    background: rgba(255, 255, 255, 0.9);
    animation: headerGlow 2s ease-in-out infinite;
}

.table-row:nth-child(1) { animation-delay: 0s; }
.table-row:nth-child(2) { animation-delay: 0.5s; }
.table-row:nth-child(3) { animation-delay: 1s; }
.table-row:nth-child(4) { animation-delay: 1.5s; }

/* Ready Designs Preview */
.website-preview.ready-designs {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.template-gallery {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 6px;
}

.gallery-header {
    margin-bottom: 6px;
}

.search-box {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 6px;
    margin-bottom: 4px;
    animation: searchActive 3s ease-in-out infinite;
}

.filter-tags {
    display: flex;
    gap: 3px;
    justify-content: center;
}

.tag {
    padding: 2px 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    font-size: 4px;
    font-weight: bold;
    color: #fcb69f;
    animation: tagActive 4s ease-in-out infinite;
}

.tag.active {
    background: rgba(255, 255, 255, 0.9);
    color: #fc7f5f;
}

.tag:nth-child(1) { animation-delay: 0s; }
.tag:nth-child(2) { animation-delay: 1s; }
.tag:nth-child(3) { animation-delay: 2s; }
.tag:nth-child(4) { animation-delay: 3s; }

.template-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    flex: 1;
}

.template-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 4px;
    padding: 3px;
    animation: templateHover 3s ease-in-out infinite;
}

.template-preview {
    width: 100%;
    height: 20px;
    background: linear-gradient(135deg, #fc7f5f 0%, #fcb69f 100%);
    border-radius: 2px;
    margin-bottom: 3px;
    animation: previewShimmer 2s ease-in-out infinite;
}

.template-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.template-name {
    width: 15px;
    height: 4px;
    background: rgba(252, 127, 95, 0.6);
    border-radius: 2px;
    animation: nameGlow 2s ease-in-out infinite;
}

.template-price {
    font-size: 4px;
    font-weight: bold;
    color: #fc7f5f;
    animation: priceChange 3s ease-in-out infinite;
}

.template-card:nth-child(1) { animation-delay: 0s; }
.template-card:nth-child(2) { animation-delay: 0.5s; }
.template-card:nth-child(3) { animation-delay: 1s; }

/* ========== KEYFRAMES FOR ANIMATIONS ========== */

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

@keyframes neuronPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

@keyframes connectionFlow {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

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

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

@keyframes dataFlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

@keyframes chainPulse {
    0%, 100% { transform: scaleX(1); }
    50% { transform: scaleX(1.2); }
}

@keyframes cloudFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-15px); }
}

@keyframes serverBlink {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes dataUpload {
    0% { transform: translateY(0); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(-20px); opacity: 0; }
}

@keyframes cloudGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(79, 172, 254, 0.3); }
    50% { box-shadow: 0 0 20px rgba(79, 172, 254, 0.6); }
}

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

@keyframes iotRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

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

@keyframes signalPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

@keyframes hubExpand {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

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

@keyframes quantumSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes navPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes contentPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

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

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

@keyframes logoSpin {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

@keyframes searchPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

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

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

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

@keyframes imageShimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes priceGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes tabSwitch {
    0%, 100% { background: rgba(255, 255, 255, 0.9); }
    50% { background: rgba(79, 172, 254, 0.9); color: white; }
}

@keyframes textTyping {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

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

@keyframes chartUpdate {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes phoneTilt {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(2deg); }
}

@keyframes statusBlink {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes titleGlow {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes cardSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(2px); }
}

@keyframes dotPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes controlPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes titleFade {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes menuHighlight {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes dataLoad {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes headerGlow {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

@keyframes searchActive {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes tagActive {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

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

@keyframes previewShimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

@keyframes nameGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes priceChange {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* ========== RESPONSIVE DESIGN FOR NEW ANIMATIONS ========== */

@media (max-width: 768px) {
    .tech-innovation-animation {
        display: none;
    }
    
    .ai-brain-animation,
    .blockchain-animation,
    .cloud-computing-animation,
    .iot-network-animation,
    .quantum-rings {
        display: none;
    }
    
    .innovation-badges {
        display: none;
    }
    
    .monitor-frame {
        transform: scale(0.8);
    }
    
    .website-preview {
        transform: scale(0.9);
    }
}

@media (max-width: 576px) {
    .floating-elements {
        display: none;
    }
    
    .tech-icons {
        display: none;
    }
    
    .monitor-frame {
        transform: scale(0.7);
    }
}

/* ========== PERFORMANCE OPTIMIZATIONS ========== */

@media (prefers-reduced-motion: reduce) {
    .ai-brain-animation,
    .blockchain-animation,
    .cloud-computing-animation,
    .iot-network-animation,
    .quantum-rings,
    .innovation-badges,
    .animated-badge,
    .website-preview * {
        animation: none !important;
    }
}

/* ========== PRINT STYLES ========== */

@media print {
    .tech-innovation-animation,
    .floating-elements,
    .monitor-frame,
    .website-preview {
        display: none;
    }
}

/* Flash Animations for Missing Images */
.flash-animation {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    animation: flashPulse 2s ease-in-out infinite;
}

.flash-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: flashSlide 3s ease-in-out infinite;
}

.flash-animation::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: flashBounce 1.5s ease-in-out infinite;
}

/* Team Member Flash Animation */
.team-flash {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: teamPulse 2.5s ease-in-out infinite;
}

.team-flash::before {
    content: '👤';
    font-size: 3rem;
    color: rgba(255,255,255,0.9);
    animation: teamIcon 2s ease-in-out infinite;
}

.team-flash::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: teamSlide 3s ease-in-out infinite;
}

/* Service Flash Animation */
.service-flash {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: servicePulse 2s ease-in-out infinite;
}

.service-flash.design::before {
    content: '🎨';
    font-size: 3rem;
    animation: serviceIcon 2s ease-in-out infinite;
}

.service-flash.marketing::before {
    content: '📈';
    font-size: 3rem;
    animation: serviceIcon 2s ease-in-out infinite;
}

.service-flash.ads::before {
    content: '🎯';
    font-size: 3rem;
    animation: serviceIcon 2s ease-in-out infinite;
}

.service-flash::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: serviceSlide 2.5s ease-in-out infinite;
}

/* Reference Flash Animation */
.reference-flash {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: referencePulse 2s ease-in-out infinite;
}

.reference-flash::before {
    content: '💼';
    font-size: 2.5rem;
    color: white;
    animation: referenceIcon 2s ease-in-out infinite;
}

.reference-flash::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: referenceSlide 3s ease-in-out infinite;
}

/* Blog Flash Animation */
.blog-flash {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: blogPulse 2s ease-in-out infinite;
}

.blog-flash::before {
    content: '📝';
    font-size: 2.5rem;
    color: white;
    animation: blogIcon 2s ease-in-out infinite;
}

.blog-flash::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: blogSlide 2.5s ease-in-out infinite;
}

/* Blog Thumbnail Flash Animation */
.blog-thumb-flash {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: thumbPulse 1.5s ease-in-out infinite;
}

.blog-thumb-flash::before {
    content: '📄';
    font-size: 1.5rem;
    color: #666;
    animation: thumbIcon 1.5s ease-in-out infinite;
}

.blog-thumb-flash::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    animation: thumbSlide 2s ease-in-out infinite;
}

/* Keyframes for Flash Animations */
@keyframes flashPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

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

@keyframes flashBounce {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes teamPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(102, 126, 234, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 0 30px rgba(102, 126, 234, 0.5); }
}

@keyframes teamIcon {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

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

@keyframes servicePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(240, 147, 251, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 0 30px rgba(240, 147, 251, 0.5); }
}

@keyframes serviceIcon {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(10deg); }
}

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

@keyframes referencePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(79, 172, 254, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 0 30px rgba(79, 172, 254, 0.5); }
}

@keyframes referenceIcon {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(-5deg); }
}

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

@keyframes blogPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(250, 112, 154, 0.3); }
    50% { transform: scale(1.02); box-shadow: 0 0 30px rgba(250, 112, 154, 0.5); }
}

@keyframes blogIcon {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(5deg); }
}

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

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

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

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

/* Responsive Flash Animations */
@media (max-width: 768px) {
    .flash-animation,
    .team-flash,
    .service-flash,
    .reference-flash,
    .blog-flash {
        min-height: 150px;
    }
    
    .team-flash::before,
    .service-flash::before,
    .reference-flash::before,
    .blog-flash::before {
        font-size: 2rem;
    }
    
    .blog-thumb-flash {
        min-height: 60px;
    }
    
    .blog-thumb-flash::before {
        font-size: 1.2rem;
    }
}

/* ========== ENHANCED FORM STYLES ========== */

/* Enhanced Form Validation Styles */
.form-control.is-valid {
    border-color: #28a745;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.8-.77-.1-.1-1.05.01-.32-.37.63-.63.69-.5 1.5-.5.37.78-.99.98-.28.28-.83-.66-.33-.82-.19-.75-1.52.01-.36.37.18.74zm1.88-1.22c0 .6.42 1.12 1.02 1.12s1.02-.52 1.02-1.12-.42-1.12-1.02-1.12-1.02.52-1.02 1.12z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.1-.89.87m0 0-.89.87m.89-.87-.89-.87m.89.87.89.87'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Loading Overlay for Forms */
.form-loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    border-radius: inherit;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Enhanced Button Loading States */
.btn .spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.15em;
}

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

/* Contact and Quote Form Enhancements */
.contact-form-wrapper,
.quote-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

/* Enhanced Submit Buttons */
.btn-submit {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-submit:disabled {
    transform: none;
    box-shadow: none;
}

/* Responsive Form Improvements */
@media (max-width: 768px) {
    .contact-form-wrapper,
    .quote-form-wrapper {
        padding: 1rem;
    }
    
    .loading-spinner {
        width: 30px;
        height: 30px;
    }
    
    .btn-submit {
        width: 100%;
        padding: 1rem;
    }
}

/* ========== SERVICE HERO SECTION - MODERN WHITE TEXT ========== */

.service-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.service-hero::before {
    content: '';
    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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.service-hero-content {
    position: relative;
    z-index: 2;
}

.service-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    animation: badgeFloat 3s ease-in-out infinite;
}

.service-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
    animation: titleSlideIn 1s ease-out;
}

.service-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: descriptionFadeIn 1.2s ease-out 0.3s both;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    animation: featuresSlideIn 1.5s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-item i {
    color: #00ff88;
    font-size: 16px;
    animation: iconPulse 2s ease-in-out infinite;
}

.service-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: ctaSlideIn 1.8s ease-out 0.9s both;
}

.service-cta .btn {
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-cta .btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #4f46e5;
    border: none;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.service-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
    color: #3730a3;
}

.service-cta .btn-outline-primary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.service-cta .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Service Animation Styles */
.service-animation {
    position: relative;
    z-index: 2;
}

.web-design-animation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.browser-mockup {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 500px;
    width: 100%;
}

.browser-header {
    background: #f1f5f9;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.browser-buttons {
    display: flex;
    gap: 8px;
}

.btn-close, .btn-minimize, .btn-maximize {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.btn-close { background: #ef4444; }
.btn-minimize { background: #f59e0b; }
.btn-maximize { background: #10b981; }

.url-bar {
    flex: 1;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #64748b;
    text-align: center;
}

.browser-content {
    padding: 20px;
    background: #ffffff;
}

.content-blocks {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.content-block {
    background: #f8fafc;
    border-radius: 8px;
    padding: 12px;
}

.header-block {
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.nav-block {
    height: 30px;
}

.nav-items {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.nav-item {
    width: 60px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 2px;
}

.hero-block {
    height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

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

.text-line {
    background: #e2e8f0;
    border-radius: 2px;
}

.text-line.long { width: 200px; height: 6px; }
.text-line.medium { width: 150px; height: 4px; }
.text-line.short { width: 100px; height: 3px; }

.hero-button {
    width: 80px;
    height: 8px;
    background: #667eea;
    border-radius: 4px;
    margin-top: 8px;
}

.cards-block {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.card-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.card-icon {
    width: 24px;
    height: 24px;
    background: #667eea;
    border-radius: 4px;
}

.card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}

.card-text .text-line {
    background: #cbd5e1;
}

.card-text .text-line.short { width: 40px; height: 3px; }
.card-text .text-line.medium { width: 60px; height: 2px; }

/* Responsive Design */
@media (max-width: 768px) {
    .service-hero {
        padding: 80px 0 60px;
    }
    
    .service-title {
        font-size: 2.5rem;
    }
    
    .service-description {
        font-size: 1.1rem;
    }
    
    .service-features {
        flex-direction: column;
        gap: 12px;
    }
    
    .service-cta {
        flex-direction: column;
    }
    
    .service-cta .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .service-title {
        font-size: 2rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .browser-mockup {
        max-width: 100%;
    }
}

/* ========== PACKAGES SECTION - MODERN DESIGN ========== */

.packages-section {
    padding: 80px 0;
    background: #f8fafc;
    position: relative;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    color: #1f2937;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.section-description {
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.package-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.popular {
    border: 2px solid #667eea;
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.2);
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: -8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
    z-index: 1;
}

.package-header {
    text-align: center;
    margin-bottom: 24px;
}

.package-name {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.package-price {
    margin-bottom: 16px;
}

.price-amount {
    color: #667eea;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}

.price-currency {
    color: #667eea;
    font-size: 1.25rem;
    font-weight: 600;
    margin-left: 4px;
}

.package-description {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

.package-features {
    flex: 1;
    margin-bottom: 24px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: #374151;
    font-size: 0.95rem;
    line-height: 1.5;
}

.feature-item i {
    color: #10b981;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.package-footer {
    text-align: center;
}

.btn-package {
    width: 100%;
    padding: 16px 24px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: #ffffff;
    text-decoration: none;
}

/* Responsive Design for Packages */
@media (max-width: 768px) {
    .packages-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .package-card {
        padding: 24px;
        margin-bottom: 24px;
    }
    
    .package-name {
        font-size: 1.25rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .package-card {
        padding: 20px;
    }
    
    .feature-item {
        font-size: 0.9rem;
    }
}

/* ========== SCRIPTS SECTION - MODERN DESIGN ========== */

.scripts-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.scripts-section::before {
    content: '';
    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"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(102,126,234,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.script-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.script-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.script-card::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;
    z-index: 1;
}

.script-card:hover::before {
    left: 100%;
}

.script-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.script-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    border-radius: 15px;
}

.script-card:hover .script-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.script-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.script-card:hover .script-overlay {
    opacity: 1;
}

.script-badge {
    background: rgba(255, 255, 255, 0.9);
    color: #667eea;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.script-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.script-title {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Inter', sans-serif;
}

.script-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 0.95rem;
    flex: 1;
}

.script-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.script-price {
    margin-bottom: 20px;
    text-align: center;
}

.price-amount {
    color: #667eea;
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.price-currency {
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 500;
}

.btn-detail {
    width: 100%;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-detail::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;
}

.btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.btn-detail:hover::before {
    left: 100%;
}

/* Responsive Design for Scripts */
@media (max-width: 768px) {
    .scripts-section {
        padding: 60px 0;
    }
    
    .script-card {
        margin-bottom: 24px;
    }
    
    .script-title {
        font-size: 1.25rem;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
    
    .script-features {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .script-content {
        padding: 20px;
    }
    
    .script-title {
        font-size: 1.1rem;
    }
    
    .script-description {
        font-size: 0.9rem;
    }
    
    .feature-tag {
        font-size: 10px;
        padding: 3px 10px;
    }
}

/* ========== SCRIPT DETAIL PAGE - MODERN DESIGN ========== */

.script-detail-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.script-detail-hero::before {
    content: '';
    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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.script-detail-content {
    position: relative;
    z-index: 2;
}

.script-category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.script-detail-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-family: 'Inter', sans-serif;
}

.script-detail-description {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.script-detail-price {
    margin-bottom: 32px;
}

.price-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin-right: 12px;
}

.price-amount {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
}

.script-detail-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.script-detail-actions .btn {
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.script-detail-actions .btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #4f46e5;
    border: none;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.script-detail-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
    color: #3730a3;
}

.script-detail-actions .btn-outline-primary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.script-detail-actions .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.script-detail-info {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.info-item i {
    color: #10b981;
    font-size: 16px;
}

.script-detail-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.script-detail-image img {
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    height: auto;
}

/* Script Features Section */
.script-features-section {
    background: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
}

.feature-text {
    color: #374151;
    font-weight: 500;
    font-size: 1rem;
}

/* Admin Panel Section */
.admin-panel-section {
    background: #f8fafc;
}

.admin-panel-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.card-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 24px;
    text-align: center;
}

.card-title {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.card-body {
    padding: 32px;
}

.info-group {
    margin-bottom: 20px;
}

.info-group label {
    display: block;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    display: block;
    color: #1f2937;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    background: #f3f4f6;
    padding: 12px 16px;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
}

/* Purchase Section */
.purchase-section {
    background: #ffffff;
}

.purchase-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
}

.purchase-header {
    margin-bottom: 32px;
}

.purchase-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.purchase-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.purchase-price .price-amount {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
}

.purchase-price .price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    opacity: 0.9;
}

.purchase-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.purchase-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.purchase-features .feature-item i {
    color: #10b981;
    font-size: 16px;
}

.purchase-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.purchase-actions .btn {
    padding: 16px 32px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.purchase-actions .btn-primary {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #4f46e5;
    border: none;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.purchase-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
    color: #3730a3;
}

.purchase-actions .btn-success {
    background: #10b981;
    color: #ffffff;
    border: none;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.purchase-actions .btn-success:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    color: #ffffff;
}

/* Responsive Design for Script Detail */
@media (max-width: 768px) {
    .script-detail-hero {
        padding: 80px 0 60px;
    }
    
    .script-detail-title {
        font-size: 2.5rem;
    }
    
    .script-detail-description {
        font-size: 1.1rem;
    }
    
    .script-detail-actions {
        flex-direction: column;
    }
    
    .script-detail-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .script-detail-info {
        flex-direction: column;
        gap: 16px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .purchase-features {
        grid-template-columns: 1fr;
    }
    
    .purchase-actions {
        flex-direction: column;
    }
    
    .purchase-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .script-detail-title {
        font-size: 2rem;
    }
    
    .script-detail-description {
        font-size: 1rem;
    }
    
    .purchase-card {
        padding: 24px;
    }
    
    .purchase-title {
        font-size: 1.5rem;
    }
    
    .purchase-price .price-amount {
        font-size: 2.5rem;
    }
}

/* ========== MODERN SCRIPT DETAIL PAGE - ULTRA PROFESSIONAL ========== */

/* Script Detail Hero Section */
.script-detail-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0a;
}

/* ESKİ HERO BACKGROUND CSS'LER SİLİNDİ */

/* ESKİ HERO KEYFRAMES VE CONTENT CSS'LER SİLİNDİ */

.script-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.badge-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #667eea;
    z-index: 2;
    position: relative;
}

.badge-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.3), transparent);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

.hero-title {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.title-line {
    display: block;
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #667eea 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    animation: titleGlow 2s ease-in-out infinite alternate;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.title-subtitle {
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

@keyframes titleGlow {
    0% { filter: drop-shadow(0 0 20px rgba(102, 126, 234, 0.5)); }
    100% { filter: drop-shadow(0 0 30px rgba(118, 75, 162, 0.8)); }
}

/* ESKİ HERO DESCRIPTION CSS SİLİNDİ */

/* ESKİ HERO STATS CSS'LER SİLİNDİ */

.stat-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-hero {
    position: relative;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

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

.btn-primary.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.4);
    color: #ffffff;
}

.btn-outline.btn-hero {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline.btn-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.btn-glow {
    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;
}

.btn-hero:hover .btn-glow {
    left: 100%;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 3;
}

.script-preview {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: previewFloat 6s ease-in-out infinite;
    max-width: 100%;
    height: auto;
}

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

.preview-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.preview-dots {
    display: flex;
    gap: 6px;
}

.preview-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.preview-dots span:nth-child(1) { background: #ff5f56; }
.preview-dots span:nth-child(2) { background: #ffbd2e; }
.preview-dots span:nth-child(3) { background: #27ca3f; }

.preview-title {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.preview-content {
    position: relative;
    overflow: hidden;
}

.preview-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    object-fit: cover;
    min-height: 200px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.script-preview:hover .preview-overlay {
    opacity: 1;
}

.script-preview:hover .preview-image {
    transform: scale(1.05);
}

.overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.overlay-content i {
    font-size: 2rem;
    color: #667eea;
}

.overlay-content span {
    font-size: 14px;
    font-weight: 500;
}

/* Script Info Section */
.script-info-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.info-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::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;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.card-content h3 {
    color: #1f2937;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.card-content p {
    color: #6b7280;
    font-size: 1rem;
    font-weight: 500;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.feature-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: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.feature-content h3 {
    color: #1f2937;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
}

.feature-glow {
    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;
}

.feature-card:hover .feature-glow {
    left: 100%;
}

/* Admin Panel Section */
.admin-panel-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.admin-panel-section::before {
    content: '';
    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"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.admin-panel-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    color: #ffffff;
}

.panel-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    backdrop-filter: blur(10px);
}

.panel-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.panel-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin: 0;
}

.panel-body {
    color: #ffffff;
}

.login-info {
    margin-bottom: 32px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 500;
    opacity: 0.9;
}

.info-value {
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.panel-actions {
    text-align: center;
}

.panel-actions .btn {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.panel-actions .btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: #ffffff;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
    background: #ffffff;
}

.pricing-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 24px;
    padding: 48px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.pricing-header {
    margin-bottom: 32px;
    position: relative;
    z-index: 2;
}

.pricing-header h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.pricing-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.price-amount {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Inter', sans-serif;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    opacity: 0.9;
}

.pricing-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.pricing-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.pricing-features .feature-item i {
    color: #10b981;
    font-size: 18px;
}

.pricing-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary.btn-large {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-primary.btn-large:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-success.btn-large {
    background: #10b981;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.btn-success.btn-large:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .title-line {
        font-size: 2.5rem;
    }
    
    .title-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-features {
        grid-template-columns: 1fr;
    }
    
    .pricing-actions {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .script-preview {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .title-line {
        font-size: 2rem;
    }
    
    .title-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .stat-item {
        min-width: 120px;
        padding: 10px 12px;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
}

/* ========== MODERN PRODUCT DETAIL PAGE - CLEAN DESIGN ========== */

/* Product Detail Section */
.product-detail-section {
    padding: 120px 0 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 100vh;
}

/* Product Visual */
.product-visual {
    text-align: center;
    padding: 30px;
    max-width: 900px;
    margin: 0;
    margin-left: -50px;
}

.responsive-mockup {
    margin-bottom: 50px;
    position: relative;
}

.device-mockup {
    position: relative;
    display: inline-block;
    filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.1));
}

.desktop-mockup {
    width: 640px;
    height: 400px;
    background: linear-gradient(145deg, #2c3e50, #34495e);
    border-radius: 16px 16px 0 0;
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.desktop-mockup::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 20px;
    background: linear-gradient(145deg, #1a252f, #2c3e50);
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.08);
}

.mockup-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: transform 0.3s ease;
}

.mockup-image:hover {
    transform: scale(1.03);
}

.demo-button-container {
    margin-top: 50px;
}

.btn-demo {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 24px 56px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    border: none;
    font-size: 28px;
    box-shadow: 0 10px 36px rgba(255, 107, 53, 0.25);
    position: relative;
    overflow: hidden;
}

.btn-demo::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;
}

.btn-demo:hover::before {
    left: 100%;
}

.btn-demo:hover {
    background: linear-gradient(135deg, #e55a2b 0%, #e67e22 100%);
    color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 14px 44px rgba(255, 107, 53, 0.3);
}

/* Product Info */
.product-info {
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    max-width: 450px;
    margin: 0 auto;
}

.product-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, #f7931e, #28a745);
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(220, 53, 69, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pricing Block */
.pricing-block {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.pricing-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #17a2b8, #20c997);
}

.price-guarantee {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1565c0;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(21, 101, 192, 0.15);
    border: 1px solid #90caf9;
}

.price-display {
    text-align: center;
}

.price-main {
    margin-bottom: 12px;
}

.price-label {
    font-size: 16px;
    color: #6c757d;
    margin-right: 10px;
    font-weight: 600;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.25);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.price-subtitle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #6c757d;
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
}

/* Product Features Grid */
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.feature-box {
    border: 2px dashed #dee2e6;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.feature-box:hover::before {
    left: 100%;
}

.feature-box:hover {
    border-color: #ff6b35;
    background: linear-gradient(135deg, #fff5f2 0%, #ffffff 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.feature-label {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 4px;
    font-weight: 500;
}

.feature-value {
    display: block;
    font-weight: 700;
    color: #2c3e50;
    font-size: 13px;
}

/* Product Description */
.product-description {
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 8px;
    border-left: 3px solid #ff6b35;
}

.product-description p {
    color: #495057;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-favorite, .btn-share {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #6c757d;
    border: 2px solid #dee2e6;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    flex: 1;
    justify-content: center;
}

.btn-favorite:hover, .btn-share:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    color: #495057;
    border-color: #adb5bd;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* Purchase Button */
.purchase-button {
    margin-top: 20px;
}

.btn-purchase {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 800;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.25);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.btn-purchase::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;
}

.btn-purchase:hover::before {
    left: 100%;
}

.btn-purchase:hover {
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

/* Tabs Section */
.tabs-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tabs-container {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 1px solid #e9ecef;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid #e9ecef;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tab-button {
    flex: 1;
    padding: 25px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 700;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 118, 210, 0.1), transparent);
    transition: left 0.3s ease;
}

.tab-button:hover::before {
    left: 100%;
}

.tab-button.active {
    color: #1976d2;
    border-bottom-color: #1976d2;
    background: #ffffff;
    box-shadow: 0 -2px 10px rgba(25, 118, 210, 0.1);
}

.tab-button:hover {
    color: #1976d2;
    background: rgba(25, 118, 210, 0.05);
}

.tab-content {
    padding: 50px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

/* Features Table */
.features-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-table th {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    text-align: left;
    font-weight: 700;
    color: #2c3e50;
    border-bottom: 2px solid #dee2e6;
    font-size: 16px;
}

.features-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #f1f3f4;
    color: #495057;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.features-table tr:hover td {
    background-color: #f8f9fa;
}

.features-table td:last-child {
    text-align: center;
    color: #28a745;
    font-size: 20px;
    font-weight: 700;
}

/* Admin Panel Info */
.admin-panel-info {
    text-align: center;
    padding: 20px;
}

.admin-panel-info h3 {
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-credentials {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.credential-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    border: 2px solid #dee2e6;
    transition: all 0.3s ease;
}

.credential-item:hover {
    border-color: #1976d2;
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.15);
    transform: translateY(-2px);
}

.credential-item .label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

.credential-item .value {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-admin {
    background: linear-gradient(135deg, #1976d2 0%, #1565c0 100%);
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(25, 118, 210, 0.3);
    font-size: 16px;
}

.btn-admin:hover {
    background: linear-gradient(135deg, #1565c0 0%, #0d47a1 100%);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(25, 118, 210, 0.4);
}

/* FAQ Content */
.faq-content h3 {
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.faq-item:hover {
    border-color: #ff6b35;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 700;
}

.faq-item p {
    color: #495057;
    line-height: 1.7;
    font-size: 16px;
    font-weight: 500;
}

/* Payment Methods */
.payment-content h3 {
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 28px;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    min-width: 150px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.payment-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(25, 118, 210, 0.1), transparent);
    transition: left 0.5s ease;
}

.payment-method:hover::before {
    left: 100%;
}

.payment-method:hover {
    border-color: #1976d2;
    box-shadow: 0 10px 30px rgba(25, 118, 210, 0.2);
    transform: translateY(-3px);
}

.payment-method i {
    font-size: 40px;
    color: #1976d2;
    transition: all 0.3s ease;
}

.payment-method:hover i {
    transform: scale(1.1);
}

.payment-method span {
    font-size: 16px;
    color: #495057;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-title {
        font-size: 2.2rem;
    }
    
    .price-amount {
        font-size: 2.5rem;
    }
    
    .product-features-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-button {
        text-align: center;
        border-bottom: 1px solid #e9ecef;
        border-right: none;
    }
    
    .tab-button.active {
        border-bottom-color: #1976d2;
        border-right: none;
    }
    
    .admin-credentials {
        flex-direction: column;
        gap: 25px;
    }
    
    .payment-methods {
        flex-direction: column;
        gap: 25px;
    }
    
    .desktop-mockup {
        width: 350px;
        height: 220px;
    }
    
    .product-info {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .product-title {
        font-size: 2rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .tab-content {
        padding: 30px 20px;
    }
    
    .features-table th,
    .features-table td {
        padding: 15px 12px;
        font-size: 14px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .pricing-block {
        padding: 20px;
    }
}

/* Yeni Slider Stilleri */

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary::before {
    content: '';
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: grainMove 20s linear infinite;
}

.bg-gradient-secondary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-secondary::before {
    content: '';
    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"><defs><pattern id="grain2" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain2)"/></svg>');
    opacity: 0.3;
    animation: grainMove 20s linear infinite;
}

@keyframes grainMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(100px, 100px); }
}





/* Flash Animations for New Sections */
.web-scripts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: flashSlide 3s ease-in-out infinite;
    pointer-events: none;
}

.app-development-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: flashSlide 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes flashSlide {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}







.text-gradient {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-new {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons-new {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons-new .btn {
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-buttons-new .btn {
    position: relative;
    overflow: hidden;
}

.hero-buttons-new .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.hero-buttons-new .btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    opacity: 0;
}

.hero-buttons-new .btn:hover::before {
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0% { 
        transform: translateX(-100%) rotate(45deg);
        opacity: 0;
    }
    50% { 
        opacity: 1;
    }
    100% { 
        transform: translateX(100%) rotate(45deg);
        opacity: 0;
    }
}

.hero-buttons-new .btn i {
    animation: iconPulse 2s infinite;
}

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

.hero-nav-dots-new {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

.dot-new {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot-new.active {
    background: white;
    transform: scale(1.2);
}

.dot-new:hover {
    background: rgba(255,255,255,0.8);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section-new {
        height: 70vh;
        min-height: 500px;
    }
    
    .hero-title-new {
        font-size: 1.8rem;
    }
    
    .hero-description-new {
        font-size: 1rem;
    }
    
    .hero-buttons-new {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons-new .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* ESKİ HERO CSS'LERİ TAMAMEN TEMİZLENDİ */

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 30;
}

.slider-nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 12px 20px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 35;
}

.slider-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.slider-nav-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    transition: all 0.3s ease;
}

.slider-nav-btn.active .nav-dot {
    background: #ffffff;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Slider Controls */
.hero-slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    z-index: 20;
}

.slider-control {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 25;
}

.slider-control:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.slider-control.prev {
    left: 30px;
}

.slider-control.next {
    right: 30px;
}

/* Script Preview Styles */
.hero-script-preview {
    position: relative;
    z-index: 3;
}

.script-preview-window {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.preview-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.preview-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f56;
}

.control.yellow {
    background: #ffbd2e;
}

.control.green {
    background: #27ca3f;
}

.preview-title {
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
}

.preview-content {
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    min-height: 300px;
}

.script-demo {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.demo-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 20px;
}

.demo-nav {
    display: flex;
    gap: 15px;
}

.nav-item {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-item.active {
    color: #ffffff;
    font-weight: 600;
}

.nav-item:hover {
    color: #ffffff;
}

.demo-content {
    padding: 30px 20px;
    text-align: center;
}

.demo-hero h2 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.demo-hero p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* App Preview Styles */
.hero-app-preview {
    position: relative;
    z-index: 3;
}

.app-preview-window {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.app-demo {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Scripts Page Modern Styles */
/* Scripts Page Modern Hero */
.scripts-hero-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 1;
}

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

.hero-badge-modern {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 15px 30px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.hero-badge-modern:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-badge-modern i {
    color: #ffd700;
    font-size: 1.2rem;
    animation: rocketFloat 3s ease-in-out infinite;
}

.hero-badge-modern span {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

.hero-title-modern {
    margin-bottom: 2rem;
}

.title-main {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.title-sub {
    display: block;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.hero-desc-modern {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

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

.stat-card-modern {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    min-width: 160px;
    position: relative;
    overflow: hidden;
}

.stat-card-modern::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.5s;
}

.stat-card-modern:hover::before {
    left: 100%;
}

.stat-card-modern:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon-modern {
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 1rem;
    display: block;
}

.stat-number-modern {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label-modern {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    display: block;
}

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

/* Responsive */
@media (max-width: 768px) {
    .scripts-hero-modern {
        padding: 80px 0;
        min-height: 70vh;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
    }
    
    .hero-desc-modern {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats-modern {
        gap: 1.5rem;
    }
    
    .stat-card-modern {
        min-width: 140px;
        padding: 1.5rem 1rem;
    }
    
    .stat-icon-modern {
        font-size: 2rem;
    }
    
    .stat-number-modern {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .scripts-hero-modern {
        padding: 60px 0;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .hero-stats-modern {
        gap: 1rem;
    }
    
    .stat-card-modern {
        min-width: 120px;
        padding: 1rem 0.75rem;
    }
}

.scripts-hero .hero-content {
    position: relative;
    z-index: 10;
}

.scripts-hero .script-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    padding: 12px 24px;
    display: inline-block;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.scripts-hero .badge-text {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.scripts-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

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

.scripts-hero .title-subtitle {
    display: block;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin-top: 0.5rem;
}

.scripts-hero .hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 10;
}

.scripts-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
}

.scripts-hero .stat-item {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    min-width: 150px;
}

.scripts-hero .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.scripts-hero .stat-icon {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.scripts-hero .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.scripts-hero .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Responsive Scripts Hero */
@media (max-width: 768px) {
    .scripts-hero {
        padding: 60px 0;
    }
    
    .scripts-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .scripts-hero .title-subtitle {
        font-size: 1.5rem;
    }
    
    .scripts-hero .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .scripts-hero .hero-stats {
        gap: 1.5rem;
    }
    
    .scripts-hero .stat-item {
        min-width: 120px;
        padding: 1rem;
    }
    
    .scripts-hero .stat-icon {
        font-size: 1.5rem;
    }
    
    .scripts-hero .stat-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .scripts-hero .hero-title {
        font-size: 2rem;
    }
    
    .scripts-hero .title-subtitle {
        font-size: 1.2rem;
    }
    
    .scripts-hero .hero-stats {
        gap: 1rem;
    }
    
    .scripts-hero .stat-item {
        min-width: 100px;
        padding: 0.75rem;
    }
}
.scripts-hero::before {
    content: '';
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.2;
    z-index: 1;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.filter-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 25px;
    padding: 12px 24px;
    color: #667eea;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.filter-btn:hover {
    background: rgba(102, 126, 234, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
}
.filter-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

/* Modern Script Cards */
.script-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}
.script-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.script-card-modern .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}
.script-card-modern:hover .card-img-top {
    transform: scale(1.05);
}
.script-card-modern .card-body {
    padding: 1.5rem;
}
.script-card-modern .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}
.script-card-modern .card-text {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.script-card-modern .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 1rem;
}
.script-card-modern .btn {
    width: 100%;
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

/* Script Card Modern Components */
.script-image-modern {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}
.script-image-modern img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}
.script-overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}
.script-card-modern:hover .script-overlay-modern {
    opacity: 1;
}
.overlay-content-modern {
    text-align: center;
    color: white;
}
.script-badge-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
    display: inline-block;
}
.overlay-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}
.overlay-actions .btn {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 20px;
}
.script-content-modern {
    padding: 1.5rem;
}
.script-title-modern {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}
.script-description-modern {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 14px;
}
.script-features-modern {
    display: flex;
    gap: 8px;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}
.feature-tag-modern {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}
.script-price-modern {
    margin-bottom: 1rem;
}
.price-amount-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea;
}
.price-currency-modern {
    font-size: 14px;
    color: #6b7280;
    margin-left: 5px;
}
.script-actions-modern {
    margin-top: auto;
}
.btn-detail-modern {
    width: 100%;
    border-radius: 12px;
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}
.btn-detail-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: white;
}
.load-more-btn {
    border-radius: 30px;
    padding: 15px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(102,126,234,0.18);
}

/* Responsive and Animations */
@media (max-width: 768px) {
    .filter-buttons {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .script-card-modern .card-title {
        font-size: 1.1rem;
    }
    .script-card-modern .price {
        font-size: 1.25rem;
    }
}

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

.script-item {
    animation: fadeInUp 0.6s ease;
}

/* Hide scripts after 6th item initially */
.script-item:nth-child(n+7) {
    display: none;
}

/* Main Page Scripts Button */
.btn-outline-primary.btn-lg {
    border-radius: 30px;
    padding: 15px 40px;
    font-weight: 700;
    font-size: 1.1rem;
    background: white;
    color: #2563eb;
    border: 2px solid #2563eb;
    box-shadow: 0 4px 24px rgba(37,99,235,0.08);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.btn-outline-primary.btn-lg:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 32px rgba(102,126,234,0.18);
}

/* Modern Scripts Button */
.modern-scripts-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.modern-scripts-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    color: white;
    text-decoration: none;
}

.modern-scripts-btn .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.modern-scripts-btn:hover .btn-shine {
    left: 100%;
}

.modern-scripts-btn .btn-text {
    position: relative;
    z-index: 2;
}

.modern-scripts-btn i {
    position: relative;
    z-index: 2;
    animation: rocketPulse 2s infinite;
}

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

/* Scripts Categories Section */
.scripts-categories-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
}

.categories-sidebar {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.categories-title {
    color: #2c3e50;
    font-weight: 700;
    margin-bottom: 25px;
    font-size: 1.3rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 15px;
}

.categories-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    border-radius: 15px;
    text-decoration: none;
    color: #6c757d;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border: 2px solid transparent;
}

.category-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(5px);
    text-decoration: none;
}

.category-item.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: #5a6fd8;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.category-item span:first-of-type {
    font-weight: 600;
    flex: 1;
}

.category-count {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    min-width: 30px;
    text-align: center;
}

.category-item:hover .category-count,
.category-item.active .category-count {
    background: rgba(255,255,255,0.3);
}

.scripts-content {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.scripts-header {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.scripts-title {
    color: #2c3e50;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 10px;
}

.scripts-subtitle {
    color: #6c757d;
    font-size: 1.1rem;
    margin: 0;
}

.no-scripts-found {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.script-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .categories-sidebar {
        margin-bottom: 30px;
        position: static;
    }
    
    .scripts-content {
        padding: 20px;
    }
    
    .scripts-title {
        font-size: 1.5rem;
    }
}

/* Animation for category items */
.category-item {
    animation: slideInLeft 0.6s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hover effects for script cards in new layout */
.script-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.script-card-modern:hover .script-image-modern img {
    transform: scale(1.05);
}

/* Flash animation for category selection */
.category-item.active {
    animation: categoryFlash 0.5s ease;
}

@keyframes categoryFlash {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Loading state for scripts grid */
.scripts-grid-loading {
    text-align: center;
    padding: 50px;
}

.scripts-grid-loading .spinner-border {
    color: #667eea;
}

/* Empty state styling */
.no-scripts-found {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    margin: 20px 0;
}

.no-scripts-found i {
    color: #6c757d;
    opacity: 0.5;
}

.no-scripts-found h4 {
    color: #495057;
    margin-bottom: 10px;
}

.no-scripts-found p {
    color: #6c757d;
    margin-bottom: 20px;
}

/* Category count animation */
.category-count {
    transition: all 0.3s ease;
}

.category-item:hover .category-count {
    transform: scale(1.1);
}

/* Script grid responsive improvements */
@media (max-width: 576px) {
    .script-item {
        margin-bottom: 20px;
    }
    
    .script-card-modern {
        margin: 0 10px;
    }
    
    .categories-sidebar {
        padding: 20px;
    }
    
    .scripts-content {
        padding: 15px;
    }
}

/* Enhanced category sidebar on larger screens */
@media (min-width: 992px) {
    .categories-sidebar {
        max-height: calc(100vh - 200px);
        overflow-y: auto;
    }
    
    .categories-sidebar::-webkit-scrollbar {
        width: 6px;
    }
    
    .categories-sidebar::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }
    
    .categories-sidebar::-webkit-scrollbar-thumb {
        background: #667eea;
        border-radius: 10px;
    }
    
    .categories-sidebar::-webkit-scrollbar-thumb:hover {
        background: #5a6fd8;
    }
}

.app-header {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 15px 20px;
}

.app-content {
    padding: 30px 20px;
    text-align: center;
}

.app-hero h3 {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.app-hero p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Flash Animation for Slides */
.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: slideFlash 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes slideFlash {
    0% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

/* Responsive Adjustments for Slider */
@media (max-width: 768px) {
    .hero-slider-nav {
        bottom: 30px;
        gap: 15px;
    }
    
    .slider-nav-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .nav-label {
        display: none;
    }
    
    .hero-slider-controls {
        padding: 0 20px;
    }
    
    .slider-control {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }
    
    .script-preview-window,
    .app-preview-window {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-slider-nav {
        bottom: 20px;
        gap: 10px;
    }
    
    .slider-nav-btn {
        padding: 8px 12px;
        font-size: 10px;
    }
    
    .hero-slider-controls {
        padding: 0 15px;
    }
    
    .slider-control {
        width: 45px;
        height: 45px;
        font-size: 14px;
    }
}

/* ========== BLOG IMAGES & DETAIL PAGE STYLES ========== */

/* Blog Image Styles */
.blog-image {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.blog-card:hover .blog-image::before {
    opacity: 1;
}

/* Blog Detail Page Styles */
.blog-detail-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.blog-detail-hero::before {
    content: '';
    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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.blog-detail-content {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.blog-detail-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #6c757d;
    font-size: 0.9rem;
}

.blog-content {
    line-height: 1.8;
    font-size: 1.1rem;
}

.blog-content h2, .blog-content h3 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.blog-content p {
    margin-bottom: 20px;
}

.related-posts {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 30px;
    margin-top: 40px;
}

.related-post-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
}

.related-post-image {
    height: 200px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumb-custom {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.breadcrumb-custom .breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}

.breadcrumb-custom .breadcrumb-item.active {
    color: white;
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

/* ========== YENİ MODERN HİZMET SAYFALARI CSS ========== */

/* Kompakt Hero Alanı */
.service-hero-compact {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    color: white;
    padding: 120px 0 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.service-hero-compact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: heroShimmer 8s ease-in-out infinite;
}

@keyframes heroShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-badge-flash {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.1));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    padding: 12px 24px;
    margin-bottom: 24px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: badgeGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.hero-badge-flash::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: badgeShine 4s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { 
        transform: translateY(0px) scale(1);
        box-shadow: 0 4px 20px rgba(255,255,255,0.2);
    }
    50% { 
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 8px 30px rgba(255,255,255,0.4);
    }
}

@keyframes badgeShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.hero-title-flash {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titlePulse 2s ease-in-out infinite;
    text-shadow: 0 4px 20px rgba(255,255,255,0.3);
}

@keyframes titlePulse {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(-5px); opacity: 0.9; }
}

.hero-description-flash {
    font-size: 1.2rem;
    opacity: 0.95;
    margin-bottom: 32px;
    line-height: 1.7;
    animation: descriptionFadeSlide 1.5s ease-out 0.5s both;
}

@keyframes descriptionFadeSlide {
    from { 
        opacity: 0; 
        transform: translateY(30px) translateX(-20px);
    }
    to { 
        opacity: 0.95; 
        transform: translateY(0) translateX(0);
    }
}

.hero-features-flash {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: featuresStagger 2s ease-out 1s both;
}

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

.feature-badge-flash {
    background: linear-gradient(135deg, rgba(255,255,255,0.25), rgba(255,255,255,0.1));
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    animation: featureBounce 0.6s ease-out;
    animation-delay: var(--delay, 0s);
}

.feature-badge-flash:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.2));
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

@keyframes featureBounce {
    0% { opacity: 0; transform: translateY(20px) scale(0.8); }
    50% { transform: translateY(-5px) scale(1.1); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

.hero-icon-flash {
    font-size: 10rem;
    opacity: 0.2;
    animation: iconFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(255,255,255,0.3));
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    50% { transform: translateY(-30px) rotate(0deg); }
    75% { transform: translateY(-15px) rotate(-5deg); }
}

/* Modern İçerik Kartı */
.service-content-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 24px;
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.1),
        0 1px 3px rgba(0,0,0,0.05);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.service-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed, #ec4899);
    animation: cardShimmer 3s ease-in-out infinite;
}

@keyframes cardShimmer {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Özellikler Grid */
.features-grid-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.feature-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.08),
        0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.8);
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79,70,229,0.05) 0%, rgba(236,72,153,0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(79,70,229,0.15),
        0 8px 16px rgba(0,0,0,0.1);
}

.feature-card-modern:hover::before {
    opacity: 1;
}

.feature-icon-modern {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: white;
    animation: iconPulseGlow 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.feature-icon-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: iconShine 4s ease-in-out infinite;
}

@keyframes iconPulseGlow {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(79,70,229,0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(236,72,153,0.6);
    }
}

@keyframes iconShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
}

.feature-title-modern {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
    transition: color 0.3s ease;
}

.feature-card-modern:hover .feature-title-modern {
    color: #4f46e5;
}

.feature-description-modern {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Süreç Adımları */
.process-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
}

.process-step-modern {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.process-number-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    box-shadow: 0 10px 30px rgba(79,70,229,0.3);
    animation: numberPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.process-number-modern::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #4f46e5, #7c3aed, #ec4899, #4f46e5);
    border-radius: 50%;
    z-index: -1;
    animation: numberRotate 4s linear infinite;
}

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

@keyframes numberRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.process-step-modern:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed, #ec4899);
    z-index: -1;
    animation: lineGlow 3s ease-in-out infinite;
}

@keyframes lineGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.process-title-modern {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}

.process-description-modern {
    color: #64748b;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* CTA Modern */
.cta-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: ctaShimmer 6s ease-in-out infinite;
}

@keyframes ctaShimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.cta-title-modern {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 20px;
    animation: ctaTitleFloat 4s ease-in-out infinite;
}

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

.cta-button-modern {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    color: #4f46e5;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}

.cta-button-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(79,70,229,0.1), transparent);
    transition: left 0.6s ease;
}

.cta-button-modern:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255,255,255,0.4);
    color: #4f46e5;
}

.cta-button-modern:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero-compact {
        padding: 40px 0;
        min-height: 350px;
    }
    
    .hero-title-flash {
        font-size: 2rem;
    }
    
    .hero-features-flash {
        justify-content: center;
    }
    
    .process-step-modern:not(:last-child)::after {
        display: none;
    }
    
    .features-grid-modern {
        padding: 60px 0;
    }
    
    .feature-card-modern {
        margin-bottom: 30px;
    }
}





@media (max-width: 768px) {
    
    /* Service sayfaları mobil responsive */
    .service-hero-compact {
        padding: 140px 0 80px 0;
        text-align: center;
    }
    
    .service-hero-compact h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .service-hero-compact p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-features-list {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .hero-features-list li {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .features-grid-modern .row {
        margin: 0;
    }
    
    .feature-card-modern {
        margin-bottom: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .feature-icon-modern {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: 0 auto 1rem auto;
    }
    
    .feature-title-modern {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .feature-description-modern {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .process-step-modern {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .process-number-modern {
        margin: 0 auto 1rem auto;
    }
    
    .process-title-modern {
        font-size: 1.2rem;
    }
    
    .process-description-modern {
        font-size: 0.9rem;
    }
    
    .why-choose-card-modern {
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }
    
    .why-choose-icon-modern {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .cta-section-modern {
        padding: 4rem 0;
        text-align: center;
    }
    
    .cta-section-modern h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .cta-section-modern p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .service-hero-compact {
        padding: 120px 0 60px 0;
    }
    
    .service-hero-compact h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .service-hero-compact p {
        font-size: 1rem;
    }
    
    .hero-features-list li {
        font-size: 0.85rem;
        padding: 0.3rem 0.7rem;
    }
    
    .feature-card-modern {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon-modern {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .feature-title-modern {
        font-size: 1.1rem;
    }
    
    .feature-description-modern {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .process-step-modern {
        padding: 1rem;
    }
    
    .process-number-modern {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .why-choose-card-modern {
        padding: 1rem;
    }
    
    .cta-section-modern h2 {
        font-size: 1.8rem;
    }
    
    .cta-section-modern .btn {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
    
    /* Mobil müşteri menüsü */
    .mobile-customer-menu {
        border-top: 1px solid #eee;
        padding-top: 1rem;
    }
    
    .customer-info-mobile {
        background: #f8f9fa;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        margin-bottom: 1rem;
        text-align: center;
        color: #495057;
    }
}

/* Desktop müşteri menüsü dropdown */
.customer-menu .dropdown-menu {
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: none;
    padding: 0.5rem 0;
}

.customer-menu .dropdown-item {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.customer-menu .dropdown-item:hover {
    background: #f8f9fa;
    padding-left: 1.5rem;
}

.customer-menu .dropdown-item.text-danger:hover {
    background: #fff5f5;
    color: #dc3545 !important;
}

/* Header actions responsive düzenleme */
@media (max-width: 1200px) {
    .header-actions .search-form {
        display: none;
    }
}

@media (max-width: 992px) {
    .header-actions {
        gap: 0.5rem;
    }
    
    .header-actions .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

/* ========== CUSTOMER DROPDOWN MENU CSS ========== */

.customer-menu {
    position: relative;
    display: inline-block;
}

.customer-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    color: #2d3748;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.customer-menu .dropdown-toggle:hover {
    background: #f7fafc;
    border-color: #cbd5e0;
    color: #2d3748;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.customer-menu .dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 220px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 8px 0;
    margin-top: 8px;
    z-index: 1000;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.customer-menu .dropdown-menu.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.customer-menu .dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: none;
    background: none;
}

.customer-menu .dropdown-item:hover {
    background: #f7fafc;
    color: #2d3748;
    padding-left: 24px;
}

.customer-menu .dropdown-item.text-danger {
    color: #e53e3e;
}

.customer-menu .dropdown-item.text-danger:hover {
    background: #fed7d7;
    color: #c53030;
}

.customer-menu .dropdown-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 8px 16px;
    border: none;
}

.customer-menu .dropdown-item i {
    width: 16px;
    text-align: center;
    margin-right: 8px;
    font-size: 14px;
}

/* Mobile Customer Menu Styles */
@media (max-width: 768px) {
    .customer-menu .dropdown-toggle {
        font-size: 14px;
        padding: 8px 12px;
    }
    
    .customer-menu .dropdown-menu {
        min-width: 200px;
        right: -10px;
    }
    
    .customer-menu .dropdown-item {
        padding: 10px 16px;
        font-size: 14px;
    }
}

/* Animation for dropdown arrow */
.customer-menu .dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
}

.customer-menu.active .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

/* ========== MODERN SERVICE CARDS ========== */

.modern-service-card {
    position: relative;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    cursor: pointer;
}

.modern-service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(102, 126, 234, 0.25);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.modern-service-card:hover .card-glow {
    opacity: 1;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.service-card-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-icon-container {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.service-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.modern-service-card:hover .service-icon-bg {
    opacity: 0.2;
    transform: scale(1.1) rotate(5deg);
}

.service-icon {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.modern-service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.modern-service-card:hover .service-title {
    color: #667eea;
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.service-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(102, 126, 234, 0.05);
    transform: translateX(5px);
}

.feature-item i {
    color: #28a745;
    font-size: 1rem;
    flex-shrink: 0;
}

.feature-item span {
    color: #495057;
    font-weight: 500;
}

.service-footer {
    margin-top: auto;
}

.service-price {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border: 2px solid rgba(102, 126, 234, 0.1);
}

.price-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.25rem;
}

.price-label {
    font-size: 0.9rem;
    color: #6c757d;
}

.price-contact {
    font-size: 1.1rem;
    color: #495057;
    font-weight: 600;
}

.modern-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    cursor: pointer;
    width: 100%;
}

.modern-btn:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.btn-text {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.btn-icon {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.modern-btn:hover .btn-icon {
    transform: translateX(5px);
}

.btn-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
}

.modern-btn:hover .btn-ripple {
    width: 300px;
    height: 300px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modern-service-card {
        padding: 1.5rem;
    }
    
    .service-icon-container {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .modern-btn {
        padding: 0.875rem 1.5rem;
        gap: 0.5rem;
    }
}

/* ========== COMPACT ABOUT SECTION ========== */

.modern-about-section {
    padding: 3rem 0; /* Reduced from 5rem */
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.modern-about-content {
    position: relative;
    z-index: 2;
}

.modern-section-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1.25rem; /* Reduced padding */
    border-radius: 25px; /* Smaller radius */
    font-weight: 600;
    font-size: 0.8rem; /* Smaller font */
    letter-spacing: 0.5px;
    margin-bottom: 1rem; /* Reduced margin */
    overflow: hidden;
}

.badge-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: badgeShine 2s infinite;
}

@keyframes badgeShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.modern-section-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem); /* Reduced size */
    font-weight: 700; /* Lighter weight */
    color: #2c3e50;
    margin-bottom: 1rem; /* Reduced margin */
    line-height: 1.3;
}

.modern-gradient-text {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modern-section-description {
    font-size: 1rem; /* Reduced size */
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem; /* Reduced margin */
}

.modern-stats-grid {
    display: flex; /* Changed to flex */
    gap: 1rem; /* Reduced gap */
    margin-bottom: 1.5rem; /* Reduced margin */
    flex-wrap: wrap;
    justify-content: space-between;
}

.modern-stat-card {
    position: relative;
    background: white;
    border-radius: 12px; /* Smaller radius */
    padding: 1rem; /* Reduced padding */
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); /* Lighter shadow */
    transition: all 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    flex: 1;
    min-width: 120px; /* Minimum width */
    text-align: center;
}

.modern-stat-card:hover {
    transform: translateY(-5px); /* Less movement */
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.stat-icon-container {
    position: relative;
    width: 40px; /* Smaller icon */
    height: 40px;
    margin: 0 auto 0.75rem; /* Center and reduce margin */
}

.stat-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.modern-stat-card:hover .stat-icon-bg {
    opacity: 0.2;
    transform: scale(1.05);
}

.stat-icon-container i {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 10px;
    color: white;
    font-size: 1rem; /* Smaller icon */
    transition: all 0.3s ease;
}

.modern-stat-card:hover .stat-icon-container i {
    transform: scale(1.1);
}

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

.stat-number {
    font-size: 1.5rem; /* Reduced size */
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 0.25rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem; /* Smaller font */
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.25rem;
}

.stat-description {
    font-size: 0.75rem; /* Smaller description */
    color: #6c757d;
    line-height: 1.3;
}

.modern-about-buttons {
    display: flex;
    gap: 1rem; /* Reduced gap */
    flex-wrap: wrap;
}

.modern-primary-btn,
.modern-secondary-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem; /* Reduced gap */
    padding: 0.75rem 1.5rem; /* Reduced padding */
    border-radius: 25px; /* Smaller radius */
    font-weight: 600;
    font-size: 0.9rem; /* Smaller font */
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.modern-primary-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.modern-secondary-btn {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.modern-primary-btn:hover,
.modern-secondary-btn:hover {
    color: white;
    transform: translateY(-2px); /* Less movement */
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.modern-secondary-btn:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.btn-flash {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: all 0.5s ease;
}

.modern-primary-btn:hover .btn-flash {
    left: 100%;
}

.modern-about-visual {
    position: relative;
    height: 300px; /* Reduced height */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.flash-animation-container {
    position: relative;
    width: 250px; /* Reduced size */
    height: 250px;
}

.main-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px; /* Reduced size */
    height: 120px;
}

.inner-circle {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    animation: compactPulse 3s infinite;
}

@keyframes compactPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
    }
}

.pulse-ring {
    position: absolute;
    border: 2px solid rgba(102, 126, 234, 0.3);
    border-radius: 50%;
    animation: compactPulsate 2.5s infinite;
}

.pulse-ring-1 {
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    animation-delay: 0s;
}

.pulse-ring-2 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    animation-delay: 0.8s;
}

.pulse-ring-3 {
    width: 130%;
    height: 130%;
    top: -15%;
    left: -15%;
    animation-delay: 1.6s;
}

@keyframes compactPulsate {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

.center-icon {
    font-size: 2rem; /* Smaller icon */
    color: white;
    animation: compactRotate 6s infinite linear;
}

@keyframes compactRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-element {
    position: absolute;
    width: 40px; /* Smaller elements */
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    animation: compactFloat 5s infinite ease-in-out;
}

.floating-element i {
    font-size: 1rem; /* Smaller icons */
    color: #667eea;
}

.element-1 {
    top: 15%;
    left: 25%;
    animation-delay: 0s;
}

.element-2 {
    top: 25%;
    right: 20%;
    animation-delay: 1s;
}

.element-3 {
    bottom: 25%;
    right: 25%;
    animation-delay: 2s;
}

.element-4 {
    bottom: 20%;
    left: 20%;
    animation-delay: 3s;
}

@keyframes compactFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    50% { 
        transform: translateY(-15px) rotate(90deg);
    }
}

.background-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px; /* Smaller glow */
    height: 200px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: compactBackgroundPulse 3s infinite;
}

@keyframes compactBackgroundPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.6;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modern-about-section {
        padding: 2rem 0;
    }
    
    .modern-section-title {
        font-size: 1.5rem;
    }
    
    .modern-section-description {
        font-size: 0.9rem;
    }
    
    .modern-stats-grid {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .modern-stat-card {
        min-width: auto;
    }
    
    .modern-about-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .modern-primary-btn,
    .modern-secondary-btn {
        padding: 0.75rem 1.25rem;
        width: 100%;
        justify-content: center;
    }
    
    .modern-about-visual {
        height: 200px;
        margin-top: 1.5rem;
    }
    
    .flash-animation-container {
        width: 180px;
        height: 180px;
    }
    
    .main-circle {
        width: 80px;
        height: 80px;
    }
    
    .center-icon {
        font-size: 1.5rem;
    }
    
    .floating-element {
        width: 30px;
        height: 30px;
    }
    
    .floating-element i {
        font-size: 0.8rem;
    }
}

/* ========== TEMİZ HERO SLIDER - BAŞKA HİÇBİR ŞEY YOK ========== */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 0;
    padding: 0;
    z-index: 1;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 10;
    color: white;
    text-align: center;
    width: 100%;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block !important;
    background: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50px !important;
    padding: 12px 24px !important;
    margin-bottom: 2rem !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    color: white !important;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem) !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
    color: white !important;
    text-align: center !important;
    position: relative !important;
    z-index: 10 !important;
    display: block !important;
    width: 100% !important;
    clear: both !important;
}

.hero-desc {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 2rem !important;
    max-width: 600px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}

.hero-buttons {
    display: flex !important;
    gap: 20px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-bottom: 3rem !important;
}

.btn-primary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    color: #1a1a1a !important;
    padding: 16px 32px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4) !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6) !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
}

.btn-secondary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    padding: 14px 30px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !important;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.prev { left: 30px; }
.next { right: 30px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #fbbf24;
    transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem) !important;
    }
    
    .hero-desc {
        font-size: 1rem !important;
    }
    
    .hero-buttons {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }
    
    .btn-primary, .btn-secondary {
        width: 100% !important;
        max-width: 280px !important;
        justify-content: center !important;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .prev {
        left: 15px;
    }
    
    .next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        padding: 8px 16px !important;
        font-size: 0.8rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 24px !important;
        font-size: 1rem !important;
    }
}

/* BAŞKA HERHANGİ BİR CSS İÇERİK YASAK - SADECE BU VAR! */





















.hero-description {
    font-size: 1.25rem !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 2rem !important;
    max-width: 500px !important;
}

.hero-features {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 1rem !important;
    margin-bottom: 2rem !important;
}

.feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 0.5rem 1rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 25px !important;
    color: white !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease !important;
}

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

.feature-item i {
    color: #10b981;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.5rem !important;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border: none !important;
    cursor: pointer !important;
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1e3a8a;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.3);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
    color: #1e3a8a;
}

.hero-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
}

.hero-stats {
    display: flex !important;
    gap: 2rem !important;
}

.stat {
    text-align: left !important;
}

.stat-number {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    color: #fbbf24 !important;
    line-height: 1 !important;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.main-visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse 4s infinite ease-in-out;
    z-index: 10;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.2);
}

.visual-icon {
    font-size: 5rem;
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

@keyframes pulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 0 50px rgba(251, 191, 36, 0.3), 0 0 100px rgba(255, 255, 255, 0.1);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.08);
        box-shadow: 0 0 70px rgba(251, 191, 36, 0.6), 0 0 150px rgba(255, 255, 255, 0.2);
    }
}

.floating-card {
    position: absolute;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1e3a8a;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: float 6s infinite ease-in-out;
    z-index: 5 !important;
    pointer-events: none;
}

.floating-card i {
    font-size: 1.5rem;
}

.card-1 {
    top: 10%;
    right: 20%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 25%;
    right: 10%;
    animation-delay: 2s;
}

.card-3 {
    top: 60%;
    right: 35%;
    animation-delay: 4s;
}

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

/* Modern Hero Desktop - Floating Cards Visible */
@media (min-width: 769px) {
    .floating-card {
        display: flex !important;
    }
}

/* More Dijital Style CTA Buttons */
.hero-cta-buttons {
    display: flex !important;
    gap: 20px !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin: 2rem 0 3rem 0 !important;
}

.cta-primary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    color: #1a1a1a !important;
    padding: 16px 32px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4) !important;
    transition: all 0.3s ease !important;
    border: none !important;
    letter-spacing: 0.5px !important;
}

.cta-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.6) !important;
    color: #1a1a1a !important;
    text-decoration: none !important;
}

.cta-secondary {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    padding: 14px 30px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    backdrop-filter: blur(10px) !important;
    transition: all 0.3s ease !important;
    letter-spacing: 0.5px !important;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px) !important;
    color: white !important;
    text-decoration: none !important;
}



/* TAMAM - Temizlendi! SADECE HERO SLIDER CSS KALDI */
