/* ============================================
   SPRAYLORDS LTD - Main Stylesheet
   ============================================ */

/* CSS Variables - Modern 2025 Design System */
:root {
    /* Modern Color Palette - Soft, Muted, Premium */
    --primary-color: #0f4c75;
    --primary-light: #3282b8;
    --secondary-color: #1b5e7e;
    --accent-color: #ff6b35;
    --accent-gold: #ffb84d;
    --accent-gold-light: #ffd89b;
    --dark-color: #0a0e27;
    --dark-soft: #1a1f3a;
    --light-color: #f8f9fa;
    --light-soft: #f0f2f5;
    --text-color: #2d3748;
    --text-light: #718096;
    --text-lighter: #a0aec0;
    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.95);
    --border-color: #e2e8f0;
    --border-soft: rgba(226, 232, 240, 0.5);
    
    /* Modern Shadows - Softer, More Depth */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.15);
    --shadow-2xl: 0 32px 80px rgba(0, 0, 0, 0.18);
    --shadow-colored: 0 12px 32px rgba(15, 76, 117, 0.2);
    --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.3);
    
    /* Smooth Transitions - Modern Easing */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s 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.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Layout */
    --max-width: 1280px;
    --border-radius-sm: 12px;
    --border-radius: 20px;
    --border-radius-lg: 28px;
    --border-radius-xl: 36px;
    --border-radius-full: 9999px;
    
    /* Modern Gradients - Subtle, Premium */
    --gradient-primary: linear-gradient(135deg, #0f4c75 0%, #1b5e7e 50%, #3282b8 100%);
    --gradient-accent: linear-gradient(135deg, #ff6b35 0%, #ff8c5a 50%, #ffb84d 100%);
    --gradient-blue: linear-gradient(135deg, #0f4c75 0%, #1b5e7e 30%, #3282b8 70%, #bbe1fa 100%);
    --gradient-gold: linear-gradient(135deg, #ffb84d 0%, #ffd89b 50%, #ffe5c4 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.1) 100%);
    --gradient-dark: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2d3748 100%);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    --backdrop-blur: blur(20px);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Modern Animated Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 40%, rgba(15, 76, 117, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 85% 70%, rgba(50, 130, 184, 0.03) 0%, transparent 60%),
        radial-gradient(circle at 50% 20%, rgba(255, 107, 53, 0.02) 0%, transparent 60%),
        linear-gradient(180deg, rgba(248, 249, 250, 0.5) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: -1;
    pointer-events: none;
    animation: backgroundShift 25s ease-in-out infinite;
}

@keyframes backgroundShift {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    33% { opacity: 0.95; transform: scale(1.02) rotate(1deg); }
    66% { opacity: 0.98; transform: scale(0.98) rotate(-1deg); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
    letter-spacing: -0.02em;
    position: relative;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 4s linear infinite;
    letter-spacing: -0.03em;
}

@keyframes shimmer {
    to { background-position: 200% center; }
}

h2 {
    font-size: 2.75rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 80px;
    height: 5px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius-full);
    animation: expandWidth 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 60px; }
}

h3 {
    font-size: 1.875rem;
    font-weight: 700;
    position: relative;
    letter-spacing: -0.01em;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Modern Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-dark);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    color: var(--white);
    padding: 1.75rem 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--white);
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-accept-btn {
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 0.75rem 2rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: var(--transition);
}

.cookie-accept-btn:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

/* Modern Header with Enhanced Glassmorphism */
.main-header {
    position: sticky;
    top: 0;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.main-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 14, 39, 0.95);
    z-index: -1;
    pointer-events: none;
}

.main-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-header.scrolled::before {
    opacity: 1;
}

.header-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.logo-text {
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.logo-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.logo-link:hover::after {
    transform: scaleX(1);
}

.logo-link:hover .logo-text {
    transform: translateY(-2px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.logo-link:hover {
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.2);
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    border-radius: 8px;
    overflow: hidden;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35 0%, #ffb84d 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px 2px 0 0;
    box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.6);
}

.nav-link:hover::before {
    width: 300px;
    height: 300px;
}

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

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

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

/* ============================================
   MODERN HERO SECTION 2025 - Bento UI Design
   Dark Mode, 3D Effects, Scrolltelling
   ============================================ */

/* Hero Section - Dark Theme Base */
.hero-section {
    position: relative;
    min-height: 100vh;
    max-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f172a 100%);
    color: var(--white);
    padding: 1.5rem;
    box-sizing: border-box;
}

/* Animated Background Layers with Parallax */
.hero-bg-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.layer-1 {
    background: radial-gradient(circle at 20% 30%, rgba(15, 76, 117, 0.3) 0%, transparent 50%);
    animation: layerFloat 20s ease-in-out infinite;
}

.layer-2 {
    background: radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.2) 0%, transparent 50%);
    animation: layerFloat 25s ease-in-out infinite reverse;
}

.layer-3 {
    background: radial-gradient(circle at 50% 50%, rgba(50, 130, 184, 0.15) 0%, transparent 60%);
    animation: layerFloat 30s ease-in-out infinite;
}

@keyframes layerFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
}

/* 3D Floating Shapes */
.hero-3d-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float3D 15s ease-in-out infinite;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-accent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    bottom: 20%;
    right: 15%;
    animation-delay: 5s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    background: var(--gradient-gold);
    top: 60%;
    left: 70%;
    animation-delay: 10s;
}

@keyframes float3D {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    33% { 
        transform: translate(50px, -50px) rotate(120deg) scale(1.2);
    }
    66% { 
        transform: translate(-50px, 50px) rotate(240deg) scale(0.8);
    }
}

/* Bento Grid Container */
.hero-bento-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(8, minmax(60px, 1fr));
    gap: 1rem;
    padding: 1rem;
    box-sizing: border-box;
    overflow: hidden;
}

/* Bento Card Base Styles */
.bento-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 1.5rem;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px) scale(0.95);
    box-sizing: border-box;
    min-height: 0;
    max-height: 100%;
}

.bento-card[data-scroll="true"] {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover::before {
    opacity: 1;
}

.bento-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(255, 107, 53, 0.1);
}

/* Main Title Card - Large Span */
.bento-main-title {
    grid-column: 1 / 8;
    grid-row: 1 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(15, 76, 117, 0.15) 0%, rgba(27, 94, 126, 0.1) 100%);
    border: 2px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
    min-height: 0;
    max-height: 100%;
}

.title-wrapper {
    position: relative;
    width: 100%;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: var(--white);
    margin: 0;
    text-transform: uppercase;
    position: relative;
}

.title-line {
    display: block;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleReveal 1s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.title-line.line-1 { animation-delay: 0.1s; }
.title-line.line-2 { animation-delay: 0.2s; }
.title-line.line-3 { animation-delay: 0.3s; }
.title-line.line-4 { animation-delay: 0.4s; }
.title-line.line-5 { animation-delay: 0.5s; }

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

.title-accent {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 120px;
    height: 6px;
    background: var(--gradient-accent);
    border-radius: var(--border-radius-full);
    animation: expandWidth 1.2s ease-out 0.6s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes expandWidth {
    to {
        transform: scaleX(1);
    }
}

/* CTA Card */
.bento-cta {
    grid-column: 8 / 13;
    grid-row: 1 / 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 0;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Modern Button Styles */
.btn-modern {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.btn-primary.btn-modern {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary.btn-modern:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-secondary.btn-modern {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary.btn-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-modern:hover .btn-arrow {
    transform: translateX(5px);
}

/* Stats Cards */
.bento-stat {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.stat-1 {
    grid-column: 1 / 5;
    grid-row: 5 / 7;
}

.stat-2 {
    grid-column: 5 / 9;
    grid-row: 5 / 7;
}

.stat-3 {
    grid-column: 9 / 13;
    grid-row: 5 / 7;
}

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

.stat-number {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.stat-number::after {
    content: '+';
    font-size: 0.6em;
    vertical-align: super;
}

.stat-label {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 2.5rem;
    opacity: 0.3;
    filter: blur(2px);
}

.bento-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px) scale(1.05);
}

.bento-stat:hover .stat-icon {
    opacity: 0.6;
    filter: blur(0);
    transform: scale(1.2) rotate(10deg);
}

/* Feature Card */
.bento-feature {
    grid-column: 1 / 7;
    grid-row: 7 / 9;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.feature-text {
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-full);
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: var(--gradient-accent);
    border-radius: var(--border-radius-full);
    animation: progressFill 2s ease-out 1s forwards;
}

@keyframes progressFill {
    to {
        width: 100%;
    }
}

/* Visual Card */
.bento-visual {
    grid-column: 7 / 13;
    grid-row: 7 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.visual-content {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.orb-1 {
    width: 200px;
    height: 200px;
    background: var(--gradient-accent);
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.orb-2 {
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    bottom: 20%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 100px;
    height: 100px;
    background: var(--gradient-gold);
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

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

/* Modern Scroll Indicator */
.scroll-indicator-modern {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, transparent 100%);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); }
    50% { opacity: 1; transform: scaleY(1); }
}

.scroll-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 500;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    animation: mouseScroll 2s ease-in-out infinite;
}

@keyframes mouseScroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* Parallax Overlay */
.hero-parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(15, 76, 117, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.5;
}

/* Modern Buttons - 2025 Style */
.btn {
    display: inline-block;
    padding: 1.125rem 2.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: var(--border-radius-full);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    color: var(--white);
    border: 2px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background: var(--white-soft);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(26, 77, 110, 0.2) 50%, transparent 100%);
}

section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(26, 77, 110, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: sectionOrb 20s ease-in-out infinite alternate;
}

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

/* Scroll Reveal Animation */
.fade-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.02em;
    position: relative;
}

/* Services Section */
.services-section {
    background: linear-gradient(180deg, rgba(245, 245, 245, 0.5) 0%, var(--white) 50%, rgba(245, 245, 245, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::after {
    content: '';
    position: absolute;
    bottom: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(45, 122, 159, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: servicesOrb 25s ease-in-out infinite alternate;
}

@keyframes servicesOrb {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(150px, -100px) scale(1.2); }
}

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

.service-card {
    background: var(--white);
    padding: 2.75rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    opacity: 1;
    transform: translateY(0);
    animation: serviceCardFadeIn 0.8s ease-out forwards;
}

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

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card::before {
    content: '';
    position: absolute;
    top: var(--mouse-y, 50%);
    left: var(--mouse-x, 50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 77, 110, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    pointer-events: none;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.service-card:hover::before {
    width: 400px;
    height: 400px;
    opacity: 1;
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: var(--transition);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(26, 77, 110, 0.3));
}

.service-title {
    font-size: 1.75rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    position: relative;
    display: inline-block;
}

.service-description {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 1.2rem;
    transition: var(--transition);
}

.service-card:hover .service-features li::before {
    transform: scale(1.3) rotate(5deg);
}

/* Projects Section */
.projects-section {
    background-color: var(--white);
}

.projects-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.project-slide {
    display: none;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    transform: perspective(1000px) rotateX(3deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-slide.active {
    display: block;
    animation: fadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: perspective(1000px) rotateX(0deg);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: perspective(1000px) rotateX(10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: perspective(1000px) rotateX(0deg) scale(1);
    }
}

.project-slide:hover {
    transform: perspective(1000px) rotateX(-2deg) translateY(-10px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.project-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.9) contrast(1.1);
}

.project-slide:hover .project-image {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 50%, transparent 100%);
    padding: 3rem 2rem 2rem;
    color: var(--white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.project-slide:hover .project-info {
    transform: translateY(-10px);
}

.project-title {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.project-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.project-category {
    display: inline-block;
    padding: 0.625rem 1.5rem;
    background: var(--gradient-accent);
    border-radius: var(--border-radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.project-slide:hover .project-category {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
}

.slider-btn {
    background: var(--white-soft);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 2px solid var(--glass-border);
    width: 64px;
    height: 64px;
    border-radius: var(--border-radius-full);
    font-size: 1.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    pointer-events: all;
    color: var(--primary-color);
    box-shadow: var(--shadow-lg);
    font-weight: 300;
    position: relative;
    overflow: hidden;
}

.slider-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(26, 77, 110, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.slider-btn:hover {
    background: var(--white);
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-color);
}

.slider-btn:hover::before {
    width: 300px;
    height: 300px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-accent);
    transition: width 0.4s ease, height 0.4s ease;
}

.dot:hover {
    transform: scale(1.3);
    border-color: var(--accent-color);
}

.dot:hover::before {
    width: 8px;
    height: 8px;
}

.dot.active {
    background: var(--gradient-accent);
    transform: scale(1.4);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.5);
    border-color: var(--accent-color);
}

.dot.active::before {
    width: 6px;
    height: 6px;
    background: var(--white);
}

/* About Section */
.about-section {
    background-color: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--gradient-accent);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.about-image-wrapper:hover::before {
    opacity: 0.3;
    animation: borderPulse 2s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.05); opacity: 0.5; }
}

.about-image-wrapper:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-2xl);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.95) contrast(1.1);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2);
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-intro {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    position: relative;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 0.75rem;
}

/* Process Section */
.process-section {
    background: linear-gradient(180deg, var(--white) 0%, rgba(245, 245, 245, 0.5) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(243, 156, 18, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: processOrb 15s ease-in-out infinite alternate;
}

@keyframes processOrb {
    0% { transform: translate(0, -50%) scale(1); }
    100% { transform: translate(100px, -50%) scale(1.3); }
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--gradient-accent) 0%, var(--gradient-primary) 100%);
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-colored);
    animation: timelineGlow 4s ease-in-out infinite alternate;
}

@keyframes timelineGlow {
    0% { box-shadow: var(--shadow-colored); }
    100% { box-shadow: var(--shadow-glow); }
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 3px solid var(--white);
}

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

.step-number::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.process-step:hover .step-number::before {
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

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

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-title {
    font-size: 1.75rem;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    position: relative;
    transition: var(--transition);
}

.process-step:hover .step-title {
    transform: translateX(10px);
}

.step-description {
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-color);
}

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

.testimonial-card {
    background: var(--white);
    padding: 2.75rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    opacity: 1;
    transform: translateY(0);
    animation: testimonialCardFadeIn 0.8s ease-out forwards;
}

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

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 120px;
    font-weight: 300;
    color: rgba(26, 77, 110, 0.05);
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: var(--shadow-xl);
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-rating {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 2px 5px rgba(243, 156, 18, 0.3));
    letter-spacing: 2px;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-color);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    position: relative;
    padding-left: 1.5rem;
    font-weight: 400;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 60px;
    color: rgba(26, 77, 110, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-soft);
    border-radius: var(--border-radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    opacity: 1;
    transform: translateY(0);
    animation: faqFadeIn 0.6s ease-out forwards;
}

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

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
    border-color: var(--primary-light);
}

.faq-question {
    width: 100%;
    padding: 1.75rem;
    background: var(--white);
    border: none;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
    letter-spacing: -0.01em;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 4px 4px 0;
}

.faq-question:hover {
    background: linear-gradient(90deg, rgba(26, 77, 110, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    padding-left: 2rem;
}

.faq-question:hover::before {
    transform: scaleY(1);
}

.faq-item.active .faq-question {
    background: linear-gradient(90deg, rgba(26, 77, 110, 0.08) 0%, rgba(255, 255, 255, 1) 100%);
    color: var(--primary-color);
}

.faq-item.active .faq-question::before {
    transform: scaleY(1);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    background-color: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

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

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

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

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

.contact-item address {
    font-style: normal;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
}

.contact-form {
    background: var(--white-soft);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    padding: 3.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 77, 110, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.125rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    position: relative;
    z-index: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(15, 76, 117, 0.1), var(--shadow-md);
    transform: translateY(-2px);
    background: var(--white);
}

.form-group input:not(:placeholder-shown),
.form-group textarea:not(:placeholder-shown) {
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Modern Footer */
.main-footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.main-footer::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: footerGlow 12s ease-in-out infinite alternate;
}

@keyframes footerGlow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    100% { transform: translate(-50px, -50px) scale(1.2); opacity: 1; }
}

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

.footer-section h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section a {
    position: relative;
    display: inline-block;
    transition: var(--transition);
}

.footer-section a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-section a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-section a:hover::after {
    width: 100%;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.business-id {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Policy Pages Styles */
.policy-page {
    padding: 2rem 0 5rem;
    background-color: var(--white);
}

.policy-header {
    background-color: var(--light-color);
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.policy-header h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.policy-header p {
    color: var(--text-light);
    font-size: 1.125rem;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.policy-content h3 {
    color: var(--dark-color);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.policy-content p {
    margin-bottom: 1.25rem;
    color: var(--text-color);
}

.policy-content ul,
.policy-content ol {
    margin: 1.25rem 0;
    padding-left: 2rem;
}

.policy-content li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--secondary-color);
}

/* Thanks Page Styles */
.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    text-align: center;
    padding: 3rem 2rem;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-timeline::before {
        left: 25px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(10, 14, 39, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-xl);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .main-nav .nav-link {
        color: rgba(255, 255, 255, 0.9);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 1rem;
        width: 100%;
        text-align: left;
    }
    
    .main-nav .nav-link:hover,
    .main-nav .nav-link.active {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .burger-menu {
        display: flex;
    }

    /* Отключаем 3D эффекты на мобильных */
    .service-card:hover,
    .testimonial-card:hover,
    .project-slide:hover {
        transform: translateY(-5px) scale(1);
    }
    
    /* Упрощаем анимации для мобильных */
    .service-card::before,
    .testimonial-card::before {
        display: none;
    }
    
    section::after {
        display: none;
    }
    
    .services-section::after,
    .process-section::before {
        display: none;
    }

    /* Modern Hero Section - Tablet Adaptations */
    .hero-section {
        max-height: 100vh;
        padding: 1rem;
    }

    .hero-bento-container {
        grid-template-columns: repeat(8, 1fr);
        grid-template-rows: repeat(10, minmax(50px, 1fr));
        gap: 0.75rem;
        padding: 1rem;
        height: 100%;
        overflow: hidden;
    }

    .bento-main-title {
        grid-column: 1 / 9;
        grid-row: 1 / 5;
    }

    .bento-cta {
        grid-column: 1 / 9;
        grid-row: 5 / 7;
    }

    .stat-1 {
        grid-column: 1 / 4;
        grid-row: 7 / 9;
    }

    .stat-2 {
        grid-column: 4 / 7;
        grid-row: 7 / 9;
    }

    .stat-3 {
        grid-column: 7 / 9;
        grid-row: 7 / 9;
    }

    .bento-feature {
        grid-column: 1 / 5;
        grid-row: 9 / 11;
    }

    .bento-visual {
        grid-column: 5 / 9;
        grid-row: 9 / 11;
    }

    .section-title {
        font-size: 2rem;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content p {
        margin-bottom: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .header-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    /* Modern Hero Section - Mobile Adaptations */
    .hero-section {
        min-height: 100vh;
        max-height: 100vh;
        height: 100vh;
        padding: 0.75rem;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .hero-bento-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 0.75rem;
        padding: 0.75rem;
        height: auto;
        min-height: calc(100vh - 1.5rem);
        overflow: visible;
    }

    .bento-card {
        padding: 1.5rem;
    }

    .bento-main-title {
        grid-column: 1;
        grid-row: 1;
        min-height: 300px;
    }

    .hero-title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .bento-cta {
        grid-column: 1;
        grid-row: 2;
    }

    .stat-1,
    .stat-2,
    .stat-3 {
        grid-column: 1;
    }

    .stat-1 {
        grid-row: 3;
    }

    .stat-2 {
        grid-row: 4;
    }

    .stat-3 {
        grid-row: 5;
    }

    .bento-feature {
        grid-column: 1;
        grid-row: 6;
    }

    .bento-visual {
        grid-column: 1;
        grid-row: 7;
        min-height: 200px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-modern {
        width: 100%;
    }

    .floating-shape {
        display: none;
    }

    .scroll-indicator-modern {
        bottom: 1.5rem;
    }

    .accordion-header {
        flex-wrap: wrap;
        padding: 1rem;
    }

    .accordion-number {
        min-width: 60px;
        font-size: 1.5rem;
    }

    .accordion-label {
        font-size: 1rem;
    }
}

/* Accessibility - Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .floating-shape,
    .hero-bg-layer,
    .gradient-orb {
        animation: none !important;
    }
    
    .bento-card {
        transform: none !important;
    }
}

/* Performance Optimization - GPU Acceleration */
.bento-card,
.floating-shape,
.hero-bg-layer {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Focus States for Accessibility */
.bento-card:focus-visible,
.btn-modern:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: 3px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .bento-card {
        border-width: 2px;
        border-color: rgba(255, 255, 255, 0.3);
    }
    
    .hero-title {
        -webkit-text-fill-color: #ffffff;
        color: #ffffff;
    }
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .cookie-notice,
    .slider-controls {
        display: none;
    }
}

