/* Bonsoftware Custom Styles */

/* Modern Design System Variables */
:root {
    /* Modern Color Palette */
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-200: #bfdbfe;
    --primary-300: #93c5fd;
    --primary-400: #60a5fa;
    --primary-500: #3b82f6;
    --primary-600: #2563eb;
    --primary-700: #1d4ed8;
    --primary-800: #1e40af;
    --primary-900: #1e3a8a;
    
    --secondary-50: #f8fafc;
    --secondary-100: #f1f5f9;
    --secondary-200: #e2e8f0;
    --secondary-300: #cbd5e1;
    --secondary-400: #94a3b8;
    --secondary-500: #64748b;
    --secondary-600: #475569;
    --secondary-700: #334155;
    --secondary-800: #1e293b;
    --secondary-900: #0f172a;
    
    --accent-50: #fdf4ff;
    --accent-100: #fae8ff;
    --accent-200: #f5d0fe;
    --accent-300: #f0abfc;
    --accent-400: #e879f9;
    --accent-500: #d946ef;
    --accent-600: #c026d3;
    --accent-700: #a21caf;
    --accent-800: #86198f;
    --accent-900: #701a75;
    
    /* Semantic Colors */
    --primary: var(--primary-600);
    --primary-dark: var(--primary-700);
    --primary-light: var(--primary-500);
    --secondary: var(--secondary-600);
    --accent: var(--accent-500);
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #06b6d4;
    
    /* Background Colors */
    --bg-primary: #ffffff;
    --bg-secondary: var(--secondary-50);
    --bg-tertiary: var(--secondary-100);
    --bg-dark: var(--secondary-900);
    --bg-overlay: rgba(15, 23, 42, 0.8);
    
    /* Text Colors */
    --text-primary: var(--secondary-900);
    --text-secondary: var(--secondary-600);
    --text-tertiary: var(--secondary-500);
    --text-inverse: #ffffff;
    --text-muted: var(--secondary-400);
    
    /* Modern Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-800) 0%, var(--secondary-700) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-500) 0%, var(--primary-500) 100%);
    --gradient-hero: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, var(--secondary-50) 100%);
    
    /* Modern Shadows */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    
    /* Modern Border Radius */
    --radius-xs: 0.25rem;
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;
    
    /* Modern Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;
    
    /* Modern Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', Consolas, 'Liberation Mono', Menlo, Courier, monospace;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    --text-8xl: 6rem;
    --text-9xl: 8rem;
    
    /* Font Weights */
    --font-thin: 100;
    --font-extralight: 200;
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* Modern Transitions */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Z-Index Scale */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;
}

/* Modern Global Styles */
* {
    box-sizing: border-box;
}

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    font-weight: var(--font-normal);
    line-height: var(--leading-relaxed);
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    text-rendering: optimizeLegibility;
}

/* Modern Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    color: var(--text-primary);
    margin: 0 0 var(--space-md) 0;
}

.display-1 {
    font-size: var(--text-6xl);
    font-weight: var(--font-extrabold);
    line-height: var(--leading-none);
    letter-spacing: -0.025em;
}

.display-2 {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    line-height: var(--leading-tight);
    letter-spacing: -0.025em;
}

.display-3 {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    line-height: var(--leading-tight);
    letter-spacing: -0.025em;
}

.display-4 {
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    line-height: var(--leading-snug);
    letter-spacing: -0.025em;
}

.display-5 {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    line-height: var(--leading-snug);
}

.lead {
    font-size: var(--text-xl);
    font-weight: var(--font-normal);
    line-height: var(--leading-relaxed);
    color: var(--text-secondary);
}

/* Modern Text Utilities */
.text-primary { color: var(--text-primary) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-tertiary { color: var(--text-tertiary) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-inverse { color: var(--text-inverse) !important; }

/* Modern Background Utilities */
.bg-primary { background-color: var(--bg-primary) !important; }
.bg-secondary { background-color: var(--bg-secondary) !important; }
.bg-tertiary { background-color: var(--bg-tertiary) !important; }
.bg-dark { background-color: var(--bg-dark) !important; }

/* Modern Background Gradients */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--primary-700) 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary::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.05) 0%, transparent 50%);
    opacity: 0.8;
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.bg-gradient-accent {
    background: var(--gradient-accent);
}

.bg-gradient-card {
    background: var(--gradient-card);
}

/* Modern Navigation */
.navbar {
    background: transparent !important;
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: var(--space-sm) 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-sm);
}

.navbar-brand {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: white !important;
    text-decoration: none;
    transition: var(--transition);
}

.navbar.scrolled .navbar-brand {
    color: var(--text-primary) !important;
}

.navbar-brand:hover {
    color: var(--primary) !important;
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-weight: var(--font-medium);
    font-size: var(--text-sm);
    padding: var(--space-sm) var(--space-md);
    margin: 0 var(--space-xs);
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: #374151 !important;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
    background-color: rgba(59, 130, 246, 0.1);
    transform: translateY(-1px);
}

.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    background-color: rgba(59, 130, 246, 0.1);
    font-weight: var(--font-semibold);
}

.navbar-toggler {
    border: none;
    padding: var(--space-xs);
    border-radius: var(--radius);
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Professional Hero Section */
.professional-hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: var(--space-md) 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.7) 100%),
        url('/images/carousel-slide-1.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 2;
}


/* CTA Card Styling */
.cta-card {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
    padding: var(--space-sm) var(--space-lg);
    display: inline-block;
    margin-bottom: var(--space-lg);
}

.cta-card::before {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 5;
    padding: var(--space-2xl) 0;
    padding-top: var(--space-4xl);
    max-width: 100%;
}

.hero-badge {
    margin-bottom: var(--space-lg);
}

.hero-badge span {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #60a5fa;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: var(--font-extrabold);
    line-height: 1.1;
    color: white;
    margin-bottom: var(--space-lg);
    position: relative;
}

.title-line-1 {
    display: block;
    margin-bottom: var(--space-xs);
}

.title-line-2 {
    display: block;
    color: #60a5fa;
}

.hero-description {
    font-size: var(--text-lg);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-2xl);
    max-width: 500px;
}

.hero-cta {
    margin-bottom: var(--space-2xl);
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: transparent;
    color: #60a5fa;
    padding: 0;
    border-radius: 0;
    text-decoration: none;
    font-weight: var(--font-semibold);
    font-size: var(--text-sm);
    transition: var(--transition);
    border: none;
    width: auto;
    justify-content: center;
    position: relative;
    z-index: 2;
    letter-spacing: 1px;
}

.btn-hero-primary:hover {
    color: #93c5fd;
    background: transparent;
}

.hero-visual-area {
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: var(--space-md) 0;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    max-width: 400px;
    padding: var(--space-md);
    padding-right: 0;
}

.stat-item {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(20px);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: var(--text-4xl);
    font-weight: var(--font-extrabold);
    color: #60a5fa;
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    font-weight: var(--font-medium);
}

.scroll-indicator {
    position: absolute;
    right: var(--space-lg);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.scroll-dots {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.dot.active {
    background: #60a5fa;
    transform: scale(1.2);
}

.bottom-scroll {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-xl);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Modern Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(2deg);
    }
    66% {
        transform: translateY(-10px) rotate(-1deg);
    }
}

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

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

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

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

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

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

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

/* Modern Card System */
.feature-card {
    background: var(--bg-primary);
    border: 1px solid var(--secondary-200);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.6s ease-out;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-300);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg) auto;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.feature-icon i {
    font-size: 2rem;
    color: white !important;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-lg);
}

/* Service Cards */
.service-card {
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.service-icon i {
    color: white !important;
}

/* Product Cards */
.product-card {
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s;
}

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

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.product-icon {
    transition: var(--transition);
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg) auto;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.product-icon i {
    color: white !important;
}

.service-detail-card {
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

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

/* Additional Service Cards */
.additional-service-card {
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background-color: white !important;
}

/* Team Cards */
.team-card {
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-color);
}

.team-avatar {
    transition: var(--transition);
}

.team-card:hover .team-avatar {
    transform: scale(1.1);
}

/* Value Cards */
.value-card {
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    transition: var(--transition);
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Process Steps */
.process-step {
    transition: var(--transition);
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    transition: var(--transition);
    font-size: 1.5rem;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: var(--shadow);
}

/* Contact Form */
.contact-form-card {
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-form-card:hover {
    box-shadow: var(--shadow);
}

.form-control, .form-select {
    border-radius: var(--border-radius);
    border: 1px solid #dee2e6;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.25);
}

/* Contact Info */
.contact-info-card {
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-info-card:hover {
    box-shadow: var(--shadow);
}

.contact-item {
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-icon {
    transition: var(--transition);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1);
}

/* Social Links */
.social-link {
    transition: var(--transition);
    display: inline-block;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
}

/* Modern Button System */
.btn {
    border-radius: var(--radius-lg);
    font-weight: var(--font-semibold);
    font-size: var(--text-sm);
    padding: var(--space-sm) var(--space-lg);
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

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

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

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

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: 1px solid var(--primary-600);
}

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

.btn-secondary {
    background: var(--bg-primary);
    color: var(--text-primary);
    border: 1px solid var(--secondary-300);
}

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

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

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

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-warning {
    background: var(--warning);
    color: var(--text-primary);
    border: 1px solid var(--warning);
}

.btn-warning:hover {
    background: #d97706;
    color: white;
}

.btn-lg {
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--text-lg);
    border-radius: var(--radius-xl);
}

.btn-sm {
    padding: var(--space-xs) var(--space-md);
    font-size: var(--text-xs);
    border-radius: var(--radius);
}

/* Stats Section */
.stat-item {
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    transition: var(--transition);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: var(--warning-color) !important;
}

/* FAQ Section */
.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--border-radius) !important;
    margin-bottom: 1rem;
    transition: var(--transition);
}

.accordion-item:hover {
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    border-radius: var(--border-radius) !important;
    font-weight: 500;
    transition: var(--transition);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* Error Pages */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0033 50%, #003366 100%);
    color: #fff;
}

.error-content {
    animation: fadeInUp 0.8s ease-out;
}

.error-content h1,
.error-content h2,
.error-content p {
    color: #fff !important;
}

.error-content .text-muted {
    color: #ccc !important;
}

.error-content .btn {
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.error-icon {
    animation: float 4s ease-in-out infinite;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

footer a {
    transition: var(--transition);
}

footer a:hover {
    color: var(--warning-color) !important;
    transform: translateX(3px);
}

/* Page Headers */
.page-header {
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

/* Badges */
.badge {
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.badge:hover {
    transform: scale(1.05);
}

/* Services Hero Section */
.services-hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%230f172a;stop-opacity:1" /><stop offset="100%" style="stop-color:%231e293b;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23bg)"/><g opacity="0.1"><rect x="100" y="100" width="200" height="150" fill="%233b82f6" rx="10"/><rect x="350" y="200" width="180" height="120" fill="%2310b981" rx="8"/><rect x="600" y="150" width="160" height="100" fill="%23f59e0b" rx="6"/><rect x="800" y="250" width="140" height="90" fill="%23ef4444" rx="5"/><circle cx="200" cy="400" r="60" fill="%238b5cf6"/><circle cx="500" cy="450" r="50" fill="%2306b6d4"/><circle cx="800" cy="400" r="45" fill="%23f97316"/><rect x="150" y="500" width="300" height="80" fill="%236b7280" rx="15"/><rect x="500" y="520" width="250" height="60" fill="%234b5563" rx="12"/><rect x="800" y="500" width="200" height="70" fill="%23374151" rx="10"/></g><g opacity="0.05"><path d="M50,50 L150,50 L100,150 Z" fill="%233b82f6"/><path d="M1000,100 L1100,100 L1050,200 Z" fill="%2310b981"/><path d="M200,600 L300,600 L250,700 Z" fill="%23f59e0b"/><path d="M900,650 L1000,650 L950,750 Z" fill="%23ef4444"/></g></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.services-hero-section .container {
    position: relative;
    z-index: 3;
}

/* Stats Hero Section */
.stats-hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
}

.stats-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%230f172a;stop-opacity:1" /><stop offset="100%" style="stop-color:%231e293b;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23bg)"/><g opacity="0.1"><rect x="100" y="100" width="200" height="150" fill="%233b82f6" rx="10"/><rect x="350" y="200" width="180" height="120" fill="%2310b981" rx="8"/><rect x="600" y="150" width="160" height="100" fill="%23f59e0b" rx="6"/><rect x="800" y="250" width="140" height="90" fill="%23ef4444" rx="5"/><circle cx="200" cy="400" r="60" fill="%238b5cf6"/><circle cx="500" cy="450" r="50" fill="%2306b6d4"/><circle cx="800" cy="400" r="45" fill="%23f97316"/><rect x="150" y="500" width="300" height="80" fill="%236b7280" rx="15"/><rect x="500" y="520" width="250" height="60" fill="%234b5563" rx="12"/><rect x="800" y="500" width="200" height="70" fill="%23374151" rx="10"/></g><g opacity="0.05"><path d="M50,50 L150,50 L100,150 Z" fill="%233b82f6"/><path d="M1000,100 L1100,100 L1050,200 Z" fill="%2310b981"/><path d="M200,600 L300,600 L250,700 Z" fill="%23f59e0b"/><path d="M900,650 L1000,650 L950,750 Z" fill="%23ef4444"/></g></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.stats-hero-section .container {
    position: relative;
    z-index: 3;
}

.modern-stat-item {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(20px);
    padding: var(--space-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.modern-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.modern-stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Modern Footer */
.modern-footer {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0f1a 0%, #1a1f2e 50%, #2a2f3e 100%);
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(10, 15, 26, 0.95) 0%, rgba(26, 31, 46, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="footer-bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%230a0f1a;stop-opacity:1" /><stop offset="100%" style="stop-color:%232a2f3e;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23footer-bg)"/><g opacity="0.08"><rect x="50" y="50" width="150" height="100" fill="%233b82f6" rx="8"/><rect x="250" y="150" width="120" height="80" fill="%2310b981" rx="6"/><rect x="450" y="100" width="100" height="70" fill="%23f59e0b" rx="5"/><rect x="650" y="200" width="90" height="60" fill="%23ef4444" rx="4"/><circle cx="100" cy="400" r="40" fill="%238b5cf6"/><circle cx="300" cy="450" r="35" fill="%2306b6d4"/><circle cx="500" cy="400" r="30" fill="%23f97316"/><rect x="100" y="500" width="200" height="60" fill="%236b7280" rx="10"/><rect x="350" y="520" width="180" height="50" fill="%234b5563" rx="8"/><rect x="580" y="500" width="160" height="55" fill="%23374151" rx="7"/></g><g opacity="0.04"><path d="M30,30 L80,30 L55,80 Z" fill="%233b82f6"/><path d="M1000,50 L1050,50 L1025,100 Z" fill="%2310b981"/><path d="M150,600 L200,600 L175,650 Z" fill="%23f59e0b"/><path d="M900,650 L950,650 L925,700 Z" fill="%23ef4444"/></g></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
    z-index: 2;
}

.modern-footer .container {
    position: relative;
    z-index: 3;
}

.footer-title {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-title i {
    color: #60a5fa !important;
    font-size: 1.3rem;
}

.footer-subtitle {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    position: relative;
}

.footer-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 1px;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: #60a5fa !important;
    transform: translateX(5px);
}

.footer-contact {
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    color: #60a5fa !important;
    width: 16px;
    text-align: center;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2) !important;
    margin: 2rem 0 !important;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 0.9rem;
}

.footer-social {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none !important;
    margin-left: 0.5rem;
}

.footer-social:first-child {
    margin-left: 0;
}

.footer-social:hover {
    color: #60a5fa !important;
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
    text-decoration: none !important;
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .modern-footer .row > div {
        text-align: center !important;
    }
    
    .footer-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-contact {
        justify-content: center;
    }
    
    .footer-social {
        margin: 0 0.25rem;
    }
    
    .modern-footer .row:last-child {
        text-align: center !important;
    }
    
    .modern-footer .col-md-6:last-child {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .footer-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-text {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-link {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-contact {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
}

/* About Hero Section */
.about-hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding-top: 120px;
    padding-bottom: 80px;
}

.about-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%),
        url('/images/about-hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 2;
}

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

.about-hero-badge {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space-lg);
    display: inline-block;
    color: #60a5fa;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-hero-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Hero Section */
.services-hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding-top: 120px;
    padding-bottom: 80px;
}

.services-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%),
        url('/images/services-hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.services-hero-section .container {
    position: relative;
    z-index: 3;
}

.services-hero-badge {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space-lg);
    display: inline-block;
    color: #60a5fa;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-hero-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.services-hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Hero Section */
.contact-hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding-top: 120px;
    padding-bottom: 80px;
}

.contact-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%),
        url('/images/contact-hero.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.contact-hero-section .container {
    position: relative;
    z-index: 3;
}

.contact-hero-badge {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space-lg);
    display: inline-block;
    color: #60a5fa;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-hero-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.contact-hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    color: white;
}

.loading-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.loading-logo i {
    color: #60a5fa;
    margin-right: 0.5rem;
    font-size: 2rem;
    animation: iconPulse 1.5s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.5));
}

.loading-logo span {
    animation: textShine 2s ease-in-out infinite;
    background: linear-gradient(45deg, #ffffff, #60a5fa, #ffffff);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes logoGlow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(96, 165, 250, 0.3));
    }
    100% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(96, 165, 250, 0.8));
    }
}

@keyframes iconPulse {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(96, 165, 250, 0.5));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(96, 165, 250, 0.8));
    }
    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(96, 165, 250, 0.5));
    }
}

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


/* About Story Section */
.about-story-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-story-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(226, 232, 240, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="about-bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23f8fafc;stop-opacity:1" /><stop offset="100%" style="stop-color:%23e2e8f0;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23about-bg)"/><g opacity="0.1"><rect x="100" y="100" width="200" height="150" fill="%233b82f6" rx="10"/><rect x="350" y="200" width="180" height="120" fill="%2310b981" rx="8"/><rect x="600" y="150" width="160" height="100" fill="%23f59e0b" rx="6"/><circle cx="200" cy="400" r="60" fill="%238b5cf6"/><circle cx="500" cy="450" r="50" fill="%2306b6d4"/><circle cx="800" cy="400" r="45" fill="%23f97316"/></g><g opacity="0.05"><path d="M50,50 L150,50 L100,150 Z" fill="%233b82f6"/><path d="M1000,100 L1100,100 L1050,200 Z" fill="%2310b981"/><path d="M200,600 L300,600 L250,700 Z" fill="%23f59e0b"/></g></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.about-story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 2;
}

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

.about-story-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space-lg);
    display: inline-block;
    color: #3b82f6;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-story-title {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-story-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    align-items: stretch;
}

.about-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(15px);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    min-height: 120px;
    width: 100%;
    text-align: center;
}

.about-feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    margin-right: 0;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.about-feature-item span {
    color: #1e293b;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    flex: 1;
}

.about-visual-area {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.about-visual-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    color: white;
    font-size: 2rem;
}

.about-visual-text h4 {
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.about-visual-text p {
    color: #64748b;
    font-size: 0.9rem;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.2rem;
    animation: float 3s ease-in-out infinite;
}

.floating-element.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.floating-element.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

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

/* Mission & Vision Section */
.mission-vision-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
}

.mission-vision-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(51, 65, 85, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="mission-bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%231e293b;stop-opacity:1" /><stop offset="100%" style="stop-color:%23475569;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23mission-bg)"/><g opacity="0.1"><rect x="100" y="100" width="200" height="150" fill="%233b82f6" rx="10"/><rect x="350" y="200" width="180" height="120" fill="%2310b981" rx="8"/><rect x="600" y="150" width="160" height="100" fill="%23f59e0b" rx="6"/><circle cx="200" cy="400" r="60" fill="%238b5cf6"/><circle cx="500" cy="450" r="50" fill="%2306b6d4"/><circle cx="800" cy="400" r="45" fill="%23f97316"/></g><g opacity="0.05"><path d="M50,50 L150,50 L100,150 Z" fill="%233b82f6"/><path d="M1000,100 L1100,100 L1050,200 Z" fill="%2310b981"/><path d="M200,600 L300,600 L250,700 Z" fill="%23f59e0b"/></g></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.mission-vision-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.mission-vision-section .container {
    position: relative;
    z-index: 3;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    height: 100%;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: white;
    font-size: 2rem;
}

.mission-title,
.vision-title {
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mission-description,
.vision-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.values-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(226, 232, 240, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="values-bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23f8fafc;stop-opacity:1" /><stop offset="100%" style="stop-color:%23e2e8f0;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23values-bg)"/><g opacity="0.1"><rect x="100" y="100" width="200" height="150" fill="%233b82f6" rx="10"/><rect x="350" y="200" width="180" height="120" fill="%2310b981" rx="8"/><rect x="600" y="150" width="160" height="100" fill="%23f59e0b" rx="6"/><circle cx="200" cy="400" r="60" fill="%238b5cf6"/><circle cx="500" cy="450" r="50" fill="%2306b6d4"/><circle cx="800" cy="400" r="45" fill="%23f97316"/></g><g opacity="0.05"><path d="M50,50 L150,50 L100,150 Z" fill="%233b82f6"/><path d="M1000,100 L1100,100 L1050,200 Z" fill="%2310b981"/><path d="M200,600 L300,600 L250,700 Z" fill="%23f59e0b"/></g></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.values-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 2;
}

.values-section .container {
    position: relative;
    z-index: 3;
}

.values-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space-lg);
    display: inline-block;
    color: #3b82f6;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.values-title {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.values-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.value-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: white;
    font-size: 1.8rem;
}

.value-title {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.value-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Overview Section */
.services-overview-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-overview-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(226, 232, 240, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="services-bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23f8fafc;stop-opacity:1" /><stop offset="100%" style="stop-color:%23e2e8f0;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23services-bg)"/><g opacity="0.1"><rect x="100" y="100" width="200" height="150" fill="%233b82f6" rx="10"/><rect x="350" y="200" width="180" height="120" fill="%2310b981" rx="8"/><rect x="600" y="150" width="160" height="100" fill="%23f59e0b" rx="6"/><circle cx="200" cy="400" r="60" fill="%238b5cf6"/><circle cx="500" cy="450" r="50" fill="%2306b6d4"/><circle cx="800" cy="400" r="45" fill="%23f97316"/></g><g opacity="0.05"><path d="M50,50 L150,50 L100,150 Z" fill="%233b82f6"/><path d="M1000,100 L1100,100 L1050,200 Z" fill="%2310b981"/><path d="M200,600 L300,600 L250,700 Z" fill="%23f59e0b"/></g></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.services-overview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 2;
}

.services-overview-section .container {
    position: relative;
    z-index: 3;
}

.services-overview-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space-lg);
    display: inline-block;
    color: #3b82f6;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-overview-title {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.services-overview-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: white;
    font-size: 2rem;
}

/* Services Overview Section specific styles */
.services-overview-section .service-title {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.services-overview-section .service-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.services-overview-section .service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.services-overview-section .service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #64748b;
    font-size: 0.95rem;
}

.services-overview-section .service-features i {
    color: #10b981;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* General service styles (for other sections) */
.service-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.service-features i {
    color: #10b981;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.service-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tech-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

/* Additional Services Section */
.additional-services-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
}

.additional-services-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(51, 65, 85, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="additional-bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%231e293b;stop-opacity:1" /><stop offset="100%" style="stop-color:%23475569;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23additional-bg)"/><g opacity="0.1"><rect x="100" y="100" width="200" height="150" fill="%233b82f6" rx="10"/><rect x="350" y="200" width="180" height="120" fill="%2310b981" rx="8"/><rect x="600" y="150" width="160" height="100" fill="%23f59e0b" rx="6"/><circle cx="200" cy="400" r="60" fill="%238b5cf6"/><circle cx="500" cy="450" r="50" fill="%2306b6d4"/><circle cx="800" cy="400" r="45" fill="%23f97316"/></g><g opacity="0.05"><path d="M50,50 L150,50 L100,150 Z" fill="%233b82f6"/><path d="M1000,100 L1100,100 L1050,200 Z" fill="%2310b981"/><path d="M200,600 L300,600 L250,700 Z" fill="%23f59e0b"/></g></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.additional-services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.additional-services-section .container {
    position: relative;
    z-index: 3;
}

.additional-services-badge {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space-lg);
    display: inline-block;
    color: #60a5fa;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.additional-services-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.additional-services-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.additional-service-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.additional-service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.additional-service-card:hover .additional-service-title {
    color: #1e293b;
}

.additional-service-card:hover .additional-service-description {
    color: #64748b;
}

.additional-service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: white;
    font-size: 1.8rem;
}

.additional-service-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.additional-service-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.process-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(226, 232, 240, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="process-bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23f8fafc;stop-opacity:1" /><stop offset="100%" style="stop-color:%23e2e8f0;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23process-bg)"/><g opacity="0.1"><rect x="100" y="100" width="200" height="150" fill="%233b82f6" rx="10"/><rect x="350" y="200" width="180" height="120" fill="%2310b981" rx="8"/><rect x="600" y="150" width="160" height="100" fill="%23f59e0b" rx="6"/><circle cx="200" cy="400" r="60" fill="%238b5cf6"/><circle cx="500" cy="450" r="50" fill="%2306b6d4"/><circle cx="800" cy="400" r="45" fill="%23f97316"/></g><g opacity="0.05"><path d="M50,50 L150,50 L100,150 Z" fill="%233b82f6"/><path d="M1000,100 L1100,100 L1050,200 Z" fill="%2310b981"/><path d="M200,600 L300,600 L250,700 Z" fill="%23f59e0b"/></g></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.process-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 2;
}

.process-section .container {
    position: relative;
    z-index: 3;
}

.process-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space-lg);
    display: inline-block;
    color: #3b82f6;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.process-title {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.process-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.step-title {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

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

.features-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(226, 232, 240, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="features-bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23f8fafc;stop-opacity:1" /><stop offset="100%" style="stop-color:%23e2e8f0;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23features-bg)"/><g opacity="0.1"><rect x="100" y="100" width="200" height="150" fill="%233b82f6" rx="10"/><rect x="350" y="200" width="180" height="120" fill="%2310b981" rx="8"/><rect x="600" y="150" width="160" height="100" fill="%23f59e0b" rx="6"/><circle cx="200" cy="400" r="60" fill="%238b5cf6"/><circle cx="500" cy="450" r="50" fill="%2306b6d4"/><circle cx="800" cy="400" r="45" fill="%23f97316"/></g><g opacity="0.05"><path d="M50,50 L150,50 L100,150 Z" fill="%233b82f6"/><path d="M1000,100 L1100,100 L1050,200 Z" fill="%2310b981"/><path d="M200,600 L300,600 L250,700 Z" fill="%23f59e0b"/></g></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.features-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 2;
}

.features-hero-section .container {
    position: relative;
    z-index: 3;
}

.features-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space-lg);
    display: inline-block;
    color: #3b82f6;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.features-title {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.features-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: white;
    font-size: 2rem;
}

.feature-title {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Hero Section (Homepage) */
.services-hero-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(30, 41, 59, 0.95) 0%, rgba(51, 65, 85, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="services-bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%231e293b;stop-opacity:1" /><stop offset="100%" style="stop-color:%23475569;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23services-bg)"/><g opacity="0.1"><rect x="100" y="100" width="200" height="150" fill="%233b82f6" rx="10"/><rect x="350" y="200" width="180" height="120" fill="%2310b981" rx="8"/><rect x="600" y="150" width="160" height="100" fill="%23f59e0b" rx="6"/><circle cx="200" cy="400" r="60" fill="%238b5cf6"/><circle cx="500" cy="450" r="50" fill="%2306b6d4"/><circle cx="800" cy="400" r="45" fill="%23f97316"/></g><g opacity="0.05"><path d="M50,50 L150,50 L100,150 Z" fill="%233b82f6"/><path d="M1000,100 L1100,100 L1050,200 Z" fill="%2310b981"/><path d="M200,600 L300,600 L250,700 Z" fill="%23f59e0b"/></g></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.services-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
    z-index: 2;
}

.services-hero-section .container {
    position: relative;
    z-index: 3;
}

.services-badge {
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space-lg);
    display: inline-block;
    color: #60a5fa;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-title {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.services-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: white;
    font-size: 2rem;
}

.service-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.service-features i {
    color: #10b981;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

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

.products-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(226, 232, 240, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="products-bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23f8fafc;stop-opacity:1" /><stop offset="100%" style="stop-color:%23e2e8f0;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23products-bg)"/><g opacity="0.1"><rect x="100" y="100" width="200" height="150" fill="%233b82f6" rx="10"/><rect x="350" y="200" width="180" height="120" fill="%2310b981" rx="8"/><rect x="600" y="150" width="160" height="100" fill="%23f59e0b" rx="6"/><circle cx="200" cy="400" r="60" fill="%238b5cf6"/><circle cx="500" cy="450" r="50" fill="%2306b6d4"/><circle cx="800" cy="400" r="45" fill="%23f97316"/></g><g opacity="0.05"><path d="M50,50 L150,50 L100,150 Z" fill="%233b82f6"/><path d="M1000,100 L1100,100 L1050,200 Z" fill="%2310b981"/><path d="M200,600 L300,600 L250,700 Z" fill="%23f59e0b"/></g></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.products-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 2;
}

.products-hero-section .container {
    position: relative;
    z-index: 3;
}

.products-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space-lg);
    display: inline-block;
    color: #10b981;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.products-title {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.products-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399);
}

.product-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #34d399);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: white;
    font-size: 2rem;
}

.product-title {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-description {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    text-align: left;
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #64748b;
    font-size: 0.95rem;
}

.product-features i {
    color: #10b981;
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.product-badge {
    margin-top: 1rem;
}

.badge-text {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1e293b;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
}

.badge-button {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    color: #1e293b;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.badge-button:hover {
    background: linear-gradient(135deg, #d97706, #f59e0b);
    color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    text-decoration: none;
}

.badge-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

/* Contact Content Section */
.contact-content-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-content-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, rgba(248, 250, 252, 0.9) 0%, rgba(226, 232, 240, 0.8) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="contact-bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23f8fafc;stop-opacity:1" /><stop offset="100%" style="stop-color:%23e2e8f0;stop-opacity:1" /></linearGradient></defs><rect width="1200" height="800" fill="url(%23contact-bg)"/><g opacity="0.1"><rect x="100" y="100" width="200" height="150" fill="%233b82f6" rx="10"/><rect x="350" y="200" width="180" height="120" fill="%2310b981" rx="8"/><rect x="600" y="150" width="160" height="100" fill="%23f59e0b" rx="6"/><circle cx="200" cy="400" r="60" fill="%238b5cf6"/><circle cx="500" cy="450" r="50" fill="%2306b6d4"/><circle cx="800" cy="400" r="45" fill="%23f97316"/></g><g opacity="0.05"><path d="M50,50 L150,50 L100,150 Z" fill="%233b82f6"/><path d="M1000,100 L1100,100 L1050,200 Z" fill="%2310b981"/><path d="M200,600 L300,600 L250,700 Z" fill="%23f59e0b"/></g></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.contact-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    z-index: 2;
}

.contact-content-section .container {
    position: relative;
    z-index: 3;
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.contact-form-badge {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space-lg);
    display: inline-block;
    color: #3b82f6;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-form-title {
    color: #1e293b;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.contact-form-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contact Info Card */
.contact-info-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-2xl);
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399);
}

.contact-info-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space-lg);
    display: inline-block;
    color: #10b981;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info-title {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(59, 130, 246, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: var(--transition);
}

.contact-info-item:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-info-text {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.25rem;
}

.contact-info-text:last-child {
    margin-bottom: 0;
}

.contact-social {
    border-top: 1px solid rgba(59, 130, 246, 0.1);
    padding-top: 1.5rem;
}

.contact-social-title {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.contact-social-link {
    width: 45px;
    height: 45px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.contact-social-link:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* FAQ Section */
.faq-section {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8b5cf6, #a78bfa);
}

.faq-badge {
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius);
    padding: var(--space-sm) var(--space-lg);
    display: inline-block;
    color: #8b5cf6;
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.faq-title {
    color: #1e293b;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.faq-description {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(59, 130, 246, 0.05);
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.faq-question-text {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-toggle {
    color: #64748b;
    font-size: 1rem;
    transition: var(--transition);
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
    color: #8b5cf6;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInUp 0.3s ease;
}

/* Mobile Menu Full Screen */
.navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    padding: 2rem;
}

.navbar-collapse.show {
    transform: translateX(0);
}

/* Mobile Menu Logo */
.mobile-menu-logo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.mobile-menu-logo i {
    font-size: 2rem;
    color: #60a5fa;
    margin-right: 0.75rem;
}

.mobile-menu-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
}

.mobile-menu-nav .nav-item {
    width: 100%;
    text-align: center;
    max-width: 280px;
}

.mobile-menu-nav .nav-link {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    color: rgba(255, 255, 255, 0.9) !important;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    display: block;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-nav .nav-link:hover {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa !important;
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.3);
}

.mobile-menu-nav .btn {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    margin-top: 0.5rem;
    width: 100%;
    max-width: 280px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border: none;
    border-radius: var(--radius-lg);
}

/* Mobile Menu Social */
.mobile-menu-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.mobile-menu-social-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.mobile-menu-social-links {
    display: flex;
    gap: 1rem;
}

.mobile-menu-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-social-link:hover {
    background: rgba(59, 130, 246, 0.3);
    color: white;
    transform: translateY(-2px);
    border-color: rgba(59, 130, 246, 0.5);
}

/* Close button for mobile menu */
.navbar-toggler {
    position: relative;
    z-index: 10000;
    border: none;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    width: 30px;
    height: 30px;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
    left: 0;
}

.navbar-toggler-icon::before {
    top: 6px;
}

.navbar-toggler-icon::after {
    bottom: 6px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Hide navbar toggler icon when menu is open */
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

/* Scroll state colors */
.navbar.scrolled .navbar-toggler-icon::before,
.navbar.scrolled .navbar-toggler-icon::after {
    background: #374151;
}

.navbar.scrolled .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before,
.navbar.scrolled .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    background: #374151;
}

/* Desktop Menu - Normal behavior */
@media (min-width: 992px) {
    .navbar-collapse {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        transform: none;
        transition: none;
        display: flex !important;
        flex-direction: row;
        justify-content: flex-end;
        padding: 0;
    }
    
    .mobile-menu-content {
        display: none !important;
    }
    
    .navbar-collapse .navbar-nav {
        flex-direction: row;
        align-items: center;
        gap: 0;
        width: auto;
        padding: 0;
    }
    
    .navbar-collapse .nav-item {
        width: auto;
        text-align: left;
    }
    
    .navbar-collapse .nav-link {
        font-size: 1rem;
        font-weight: 500;
        padding: 0.5rem 1rem;
        color: rgba(255, 255, 255, 0.9) !important;
        border-radius: 0;
        transition: var(--transition);
        display: inline-block;
        width: auto;
        border: none;
        background: transparent;
    }
    
    .navbar-collapse .nav-link:hover {
        background: transparent;
        color: #60a5fa !important;
        transform: none;
        border: none;
    }
    
    .navbar-collapse .btn {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
        margin-top: 0;
        width: auto;
        max-width: none;
        background: linear-gradient(135deg, #3b82f6, #60a5fa);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .professional-hero {
        min-height: 100vh;
        padding: var(--space-lg) 0;
    }
    
    .cta-card {
        display: inline-block;
        margin: 0 auto var(--space-lg) auto;
    }
    
    .hero-content {
        text-align: center;
        padding: var(--space-lg) 0;
        padding-top: var(--space-2xl);
    }
    
    
    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: var(--space-md);
    }
    
    .hero-description {
        font-size: var(--text-base);
        margin-bottom: var(--space-lg);
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-sm);
        max-width: 100%;
        margin-top: var(--space-lg);
        padding: var(--space-sm);
        padding-right: 0;
    }
    
    .stat-item {
        padding: var(--space-lg);
    }
    
    .stat-number {
        font-size: var(--text-2xl);
    }
    
    .stat-label {
        font-size: var(--text-xs);
    }
    
    .scroll-indicator {
        right: var(--space-md);
    }
    
    .btn-hero-primary {
        padding: var(--space-sm) var(--space-lg);
        font-size: var(--text-base);
    }
    
    .service-detail-card,
    .contact-form-card {
        padding: 2rem !important;
    }
    
    .contact-info-card {
        margin-top: 2rem;
    }
    
    /* Alt sayfa hero'ları responsive */
    .about-hero-title,
    .services-hero-title,
    .contact-hero-title {
        font-size: 2rem;
    }
    
    .about-hero-description,
    .services-hero-description,
    .contact-hero-description {
        font-size: 1rem;
    }
    
    .about-hero-badge,
    .services-hero-badge,
    .contact-hero-badge {
        font-size: 0.8rem;
        padding: var(--space-xs) var(--space-md);
    }
    
    /* About story section responsive */
    .about-story-title {
        font-size: 2rem;
    }
    
    .about-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-feature-item {
        min-height: 90px;
        padding: 1.5rem;
    }
    
    .about-visual-area {
        height: 300px;
        margin-top: 2rem;
    }
    
    .about-visual-card {
        padding: 1.5rem;
    }
    
    .floating-element {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Mission & Vision responsive */
    .mission-title,
    .vision-title {
        font-size: 1.5rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .mission-icon,
    .vision-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Values responsive */
    .values-title {
        font-size: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* Services responsive */
    .services-overview-title,
    .additional-services-title,
    .process-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .additional-services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .additional-service-card {
        padding: 1.5rem;
    }
    
    .additional-service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }
    
    /* Contact responsive */
    .contact-form-card {
        padding: 2rem;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
    
    .contact-info-card {
        padding: 2rem;
    }
    
    .contact-info-title {
        font-size: 1.3rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .contact-info-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .faq-section {
        padding: 2rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq-question {
        padding: 1rem;
        gap: 0.5rem;
    }
    
    .faq-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem 1rem;
    }
    
    /* Homepage responsive */
    .features-title,
    .services-title,
    .products-title {
        font-size: 2rem;
    }
    
    .features-grid,
    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-card,
    .service-card,
    .product-card {
        padding: 2rem;
    }
    
    .feature-icon,
    .service-icon,
    .product-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 70vh;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .lead {
        font-size: 1.1rem;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .service-detail-card,
    .contact-form-card {
        padding: 1.5rem !important;
    }
    
    .floating-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    footer {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .page-header {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
}

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

/* Focus Styles */
.btn:focus,
.form-control:focus,
.form-select:focus,
.nav-link:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #0000ff;
        --secondary-color: #000000;
        --success-color: #008000;
        --warning-color: #ff8c00;
        --danger-color: #ff0000;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .bg-light {
        background-color: #1a1a1a !important;
        color: #ffffff;
    }
    
    .text-muted {
        color: #adb5bd !important;
    }
    
    .border {
        border-color: #495057 !important;
    }
}

/* ========================================
   YUKARI ÇIK BUTONU STİLLERİ
   ======================================== */

/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    cursor: pointer;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top-btn.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
}

.back-to-top-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
}

.back-to-top-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.back-to-top-btn:hover i {
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .back-to-top-btn {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
        font-size: 16px;
    }
    
    .back-to-top-btn i {
        font-size: 14px;
    }
}

/* ========================================
   MOBİL ÖZEL BONUS BÖLÜMÜ - CYBERPUNK TEMA
   ======================================== */

/* Cyberpunk Background */
.cyberpunk-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, #0a0a0a 0%, #1a0033 25%, #003366 50%, #1a0033 75%, #0a0a0a 100%);
    z-index: 1;
    overflow: hidden;
}

.cyberpunk-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 0, 0.05) 0%, transparent 50%);
    z-index: 2;
}

.cyberpunk-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
    z-index: 3;
}

.cyberpunk-particles {
    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="20" cy="20" r="1" fill="%2300ffff" opacity="0.5"/><circle cx="80" cy="40" r="1" fill="%23ff00ff" opacity="0.5"/><circle cx="40" cy="80" r="1" fill="%2300ff00" opacity="0.5"/><circle cx="60" cy="60" r="1" fill="%23ffff00" opacity="0.5"/></svg>') repeat;
    animation: particles-float 15s linear infinite;
    z-index: 4;
}

/* Mobile Bonus Section */
.mobile-bonus-section {
    position: relative;
    padding: 2rem 0;
    overflow: hidden;
    background: #000;
    border-top: 2px solid #00ffff;
    border-bottom: 2px solid #ff00ff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.mobile-bonus-section .container {
    position: relative;
    z-index: 10;
}

/* Cyberpunk Badge */
.cyberpunk-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    animation: badge-glow 2s ease-in-out infinite alternate;
    margin: 0 auto 2rem auto;
    gap: 0.5rem;
    width: fit-content;
    text-align: center;
}

/* Glitch Text Effect */
.glitch-text {
    position: relative;
    color: #fff;
    font-weight: 700;
    display: block;
    text-align: center;
    margin: 0;
    padding: 0;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
}

.glitch-text::before {
    animation: glitch-1 0.5s infinite;
    color: #ff00ff;
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 0.5s infinite;
    color: #00ffff;
    z-index: -2;
}

/* Cyberpunk Titles */
.cyberpunk-title {
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 1.5rem 0;
    text-align: center;
    width: 100%;
}

.neon-text {
    color: #00ffff;
    text-shadow: 
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 15px #00ffff,
        0 0 20px #00ffff;
    animation: neon-flicker 1.5s infinite alternate;
}

.cyberpunk-subtitle {
    color: #ff00ff;
    display: block;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    text-align: center;
    text-shadow: 
        0 0 5px #ff00ff,
        0 0 10px #ff00ff;
}

.cyberpunk-description {
    color: #ccc;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

/* Bonus Grid */
.bonus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

/* Bonus Cards */
.bonus-card {
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.6), rgba(0, 51, 102, 0.6));
    border: 1px solid #00ffff;
    border-radius: 15px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.6), rgba(0, 51, 102, 0.6));
    border-radius: 15px;
    z-index: -1;
}

.bonus-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.7), rgba(0, 51, 102, 0.7));
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3);
}

.bonus-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    gap: 1rem;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.4), rgba(0, 51, 102, 0.4));
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.bonus-logo {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    margin-right: 1rem;
    border: 1px solid rgba(0, 255, 255, 0.2);
    object-fit: contain;
    background: rgba(14, 14, 14, 0.5);
    padding: 8px;
}

.bonus-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    text-shadow: 
        0 0 10px rgba(0, 255, 255, 0.8),
        0 0 20px rgba(0, 255, 255, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.bonus-subtitle {
    color: #ff00ff;
    font-size: 0.9rem;
    margin: 0.5rem 0;
    font-weight: 600;
    text-shadow: 
        0 0 10px rgba(255, 0, 255, 0.8),
        0 0 20px rgba(255, 0, 255, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8);
}

.bonus-awards {
    margin: 1rem 0;
}

.bonus-award {
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(26, 0, 51, 0.8), rgba(0, 51, 102, 0.8));
    border-radius: 8px;
    border-left: 3px solid #00ffff;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.bonus-award i {
    color: #00ff00;
    margin-right: 0.5rem;
}

.bonus-award span {
    color: #fff;
    font-size: 0.9rem;
}

.bonus-button {
    display: inline-block;
    width: 100%;
    padding: 0.8rem 1rem;
    background: linear-gradient(45deg, #00ffff, #ff00ff);
    color: #000;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.bonus-button:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    color: #000;
}

.cyberpunk-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
}

.disclaimer {
    color: #888;
    font-size: 0.8rem;
    margin: 0;
}

/* Animations */
@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

@keyframes particles-float {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

@keyframes badge-glow {
    0% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.5); }
    100% { box-shadow: 0 0 30px rgba(255, 0, 255, 0.8); }
}

@keyframes glitch-1 {
    0% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes glitch-2 {
    0% { transform: translate(0); }
    20% { transform: translate(2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, 2px); }
    80% { transform: translate(-2px, -2px); }
    100% { transform: translate(0); }
}

@keyframes neon-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}


/* Mobile Bonus Section Responsive */
@media (max-width: 768px) {
    .mobile-bonus-section {
        padding: 2rem 0;
    }
    
    .cyberpunk-title {
        font-size: 1.5rem;
    }
    
    .cyberpunk-subtitle {
        font-size: 1rem;
    }
    
    .bonus-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bonus-card {
        padding: 1rem;
    }
    
    .bonus-header {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-logo {
        margin: 0 0 1rem 0;
    }
    
    .bonus-button {
        padding: 0.7rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .cyberpunk-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .cyberpunk-title {
        font-size: 1.2rem;
    }
    
    .cyberpunk-subtitle {
        font-size: 0.9rem;
    }
    
    .bonus-card {
        padding: 0.8rem;
    }
    
    .bonus-title {
        font-size: 1rem;
    }
    
    .bonus-subtitle {
        font-size: 0.8rem;
    }
    
    .bonus-award span {
        font-size: 0.8rem;
    }
}

/* Notification System */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    max-width: 400px;
    width: 100%;
    padding: 0 15px;
}

.notification {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
    overflow: hidden;
    transform: translateX(100%);
    transition: all 0.3s ease;
    border-left: 4px solid;
    position: relative;
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #d4edda, #f8f9fa);
}

.notification.error {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #f8d7da, #f8f9fa);
}

.notification.warning {
    border-left-color: #ffc107;
    background: linear-gradient(135deg, #fff3cd, #f8f9fa);
}

.notification.info {
    border-left-color: #17a2b8;
    background: linear-gradient(135deg, #d1ecf1, #f8f9fa);
}

.notification-content {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    flex-shrink: 0;
}

.notification.success .notification-icon {
    background: #28a745;
}

.notification.error .notification-icon {
    background: #dc3545;
}

.notification.warning .notification-icon {
    background: #ffc107;
}

.notification.info .notification-icon {
    background: #17a2b8;
}

.notification-message {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin: 0;
}

.notification-close {
    background: none;
    border: none;
    color: #666;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.notification-close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

/* Progress bar for auto-hide */
.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: rgba(0, 0, 0, 0.2);
    width: 100%;
    transform-origin: left;
    animation: notification-progress 5s linear forwards;
}

.notification.success .notification-progress {
    background: #28a745;
}

.notification.error .notification-progress {
    background: #dc3545;
}

.notification.warning .notification-progress {
    background: #ffc107;
}

.notification.info .notification-progress {
    background: #17a2b8;
}

@keyframes notification-progress {
    from {
        transform: scaleX(1);
    }
    to {
        transform: scaleX(0);
    }
}

/* Mobile responsive notifications */
@media (max-width: 768px) {
    .notification-container {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        padding: 0;
    }
    
    .notification {
        margin-bottom: 10px;
    }
    
    .notification-content {
        padding: 12px 15px;
    }
    
    .notification-message {
        font-size: 13px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .back-to-top-btn {
        background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.5);
    }
    
    .back-to-top-btn:hover {
        background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
        box-shadow: 0 6px 20px rgba(59, 130, 246, 0.7);
    }
    
    .notification {
        background: #2d3748;
        color: #e2e8f0;
    }
    
    .notification.success {
        background: linear-gradient(135deg, #22543d, #2d3748);
    }
    
    .notification.error {
        background: linear-gradient(135deg, #742a2a, #2d3748);
    }
    
    .notification.warning {
        background: linear-gradient(135deg, #744210, #2d3748);
    }
    
    .notification.info {
        background: linear-gradient(135deg, #2c5282, #2d3748);
    }
    
    .notification-message {
        color: #e2e8f0;
    }
    
    .notification-close {
        color: #a0aec0;
    }
    
    .notification-close:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #e2e8f0;
    }
}