/* ================================
   28AMBITION - PREMIUM WEBSITE STYLES
   Modern, Sophisticated, Conversion-Focused
   ================================ */

/* CSS Custom Properties (Variables) */
:root {
    /* Colors */
    --primary-color: #f5ba01;
    --primary-dark: #d6a200;
    --primary-light: #ffd152;
    --secondary-color: #ec4899;
    --accent-color: #10b981;
    --warning-color: #f59e0b;
    --success-color: #059669;
    --error-color: #dc2626;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #d6a200 0%, #f5ba01 30%, #ffd152 60%, #f5ba01 100%);
    --gradient-secondary: linear-gradient(135deg, #f5ba01 0%, #ffd152 100%);
    --gradient-accent: linear-gradient(135deg, #d6a200 0%, #ffd152 50%, #f5ba01 100%);
    --gradient-dark: linear-gradient(135deg, #f5ba01 0%, #d6a200 50%, #c79500 100%);
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --black: #000000;
    
    /* Typography */
    --font-primary: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', roboto, sans-serif;
    --font-display: 'Orbitron', 'Exo 2', 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;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 0.125rem;
    --radius-base: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-3xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease-in-out;
    --transition-base: 0.3s ease-in-out;
    --transition-slow: 0.5s ease-in-out;
    
    /* 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;
}

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

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

body {
    font-family: var(--font-primary);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--gradient-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

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

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

.logo-container {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(240, 240, 240, 1);
    border-radius: 50%;
    padding: var(--space-2) var(--space-6);
    margin-bottom: var(--space-8);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    box-shadow: 
        0 0 50px rgba(255, 200, 0, 0.8),
        0 0 100px rgba(255, 220, 80, 0.6),
        0 0 150px rgba(245, 186, 1, 0.4),
        0 8px 32px rgba(255, 255, 255, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 1),
        inset 0 -2px 4px rgba(255, 200, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.logo-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 300%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%,
        transparent 30%,
        rgba(255, 240, 150, 0.8) 40%,
        rgba(255, 220, 80, 1) 45%, 
        rgba(255, 200, 0, 1) 50%, 
        rgba(255, 220, 80, 1) 55%,
        rgba(255, 240, 150, 0.8) 60%,
        transparent 70%,
        transparent 100%);
    animation: sweepGradient 2.5s ease-in-out infinite;
    animation-delay: 0.5s;
    z-index: 0;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle, rgba(245, 186, 1, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
    filter: blur(20px);
}

.loading-logo {
    height: 80px;
    width: auto;
    display: block;
    margin: 0;
    position: relative;
    left: 8px;
    z-index: 1;
}

.loading-animation {
    display: flex;
    gap: var(--space-2);
    justify-content: center;
    margin-top: var(--space-8);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(245, 186, 1, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: rotate 1s linear infinite;
    display: inline-block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--space-4);
    letter-spacing: 0.02em;
}

/* Futuristic text elements */
.hero-title {
    font-family: 'Raleway', sans-serif !important;
    font-weight: 200 !important;
    font-size: 4rem !important;
    letter-spacing: 12px !important;
    text-transform: uppercase !important;
    line-height: 1.3 !important;
}

.section-title {
    font-family: 'Raleway', sans-serif !important;
    font-weight: 200 !important;
    letter-spacing: 8px !important;
    text-transform: uppercase !important;
}

.nav-link {
    font-family: var(--font-primary);
    letter-spacing: 0.05em;
    font-weight: 600 !important;
    color: #333333 !important;
}

.cta-button {
    font-family: 'Rajdhani', var(--font-primary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.display-title {
    font-family: var(--font-display);
    font-size: var(--text-6xl);
    font-weight: 800;
    line-height: 1.1;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* Premium text - black, same font style */
.hero-title .gradient-text {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #000000 !important;
    background-clip: unset !important;
    color: #000000 !important;
}

.white-text {
    color: var(--white) !important;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(245, 186, 1, 0.2);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: #ffffff !important;
    box-shadow: var(--shadow-lg);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-4) var(--space-6);
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand .brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 60px;
    width: auto;
    transition: all var(--transition-base);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-8);
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: #000000;
    font-weight: 700;
    font-size: var(--text-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color var(--transition-base);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: var(--space-2);
}

.bar {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    transition: all var(--transition-base);
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    border: none;
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: var(--text-sm);
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

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

.cta-button.primary:hover::before {
    left: 100%;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 0 20px rgba(245, 186, 1, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: var(--gray-700);
    border: 2px solid var(--gray-300);
}

.cta-button.secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Hero CTA Buttons - Large and Prominent */
.hero-cta-btn {
    padding: var(--space-5) var(--space-12);
    font-size: var(--text-xl);
    font-weight: 700;
    border-radius: var(--radius-2xl);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 240px;
    justify-content: center;
}

.hero-cta-btn.primary {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 24px rgba(245, 186, 1, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.1);
    position: relative;
}

.hero-cta-btn.primary span {
    color: var(--white);
}

.hero-cta-btn.primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(245, 186, 1, 0.6), 0 0 40px rgba(245, 186, 1, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.15);
    border-color: var(--primary-light);
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(20, 20, 20, 0.95) 100%);
}

.hero-cta-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 3px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

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

.hero-cta-btn.secondary:hover::before {
    left: 100%;
}

.hero-cta-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.cta-button.small {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.nav-cta {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
    color: var(--white) !important;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    opacity: 0.95;
}

.hero-pattern {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: 
        url('../images/geometric-pattern.png'),
        radial-gradient(circle at 25% 25%, rgba(245, 186, 1, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(245, 186, 1, 0.1) 0%, transparent 50%);
    background-size: 85%, 100% 100%, 100% 100%;
    background-position: center, center, center;
    background-repeat: no-repeat, no-repeat, no-repeat;
    opacity: 0.35;
    animation: patternRotate 16s ease-in-out infinite;
    mix-blend-mode: screen;
    filter: brightness(1.8) contrast(1.3);
}

.hero-pattern-layer2 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('../images/geometric-pattern.png');
    background-size: 85%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.25;
    animation: patternWave1 7s ease-in-out infinite, patternRotate 20s ease-in-out infinite reverse;
    mix-blend-mode: screen;
    filter: brightness(1.6) contrast(1.2);
}

.hero-pattern-layer3 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-image: url('../images/geometric-pattern.png');
    background-size: 85%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.20;
    animation: patternWave2 9s ease-in-out infinite, patternRotate 18s ease-in-out infinite;
    animation-delay: 3s, 5s;
    mix-blend-mode: screen;
    filter: brightness(1.5) contrast(1.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
    padding: var(--space-16) 0 0 0;
    max-width: 100%;
    width: 100%;
    margin-top: 20px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-4xl), 6vw, var(--text-7xl));
    font-weight: 800;
    line-height: 1.1;
    margin-top: 30px;
    margin-bottom: var(--space-8);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.45),
        0 3px 6px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.35),
        0 1px 2px rgba(0, 0, 0, 0.48),
        1px 1px 0px rgba(0, 0, 0, 0.45),
        -1px -1px 0px rgba(0, 0, 0, 0.45);
    filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.3)) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease-out forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: var(--text-xl);
    line-height: 1.7;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto var(--space-10);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    padding: var(--space-4) var(--space-6);
    border-radius: 12px;
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: var(--space-10);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--space-4);
    margin: 65px auto var(--space-8);
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.hero-stats .stat-item {
    flex: 0 0 auto;
    min-width: 180px;
}

.stat-item {
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.stat-item:nth-child(1) {
    animation-delay: 0s;
}

.stat-item:nth-child(2) {
    animation-delay: 3s;
}

.stat-item:nth-child(3) {
    animation-delay: 0s;
}

.stat-number {
    display: inline-block;
    font-size: var(--text-4xl);
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--white);
    margin-bottom: var(--space-2);
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.45),
        -1px -1px 0px rgba(0, 0, 0, 0.45);
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}

.stat-percent {
    display: inline-block;
    font-size: var(--text-4xl);
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--white);
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.45),
        -1px -1px 0px rgba(0, 0, 0, 0.45);
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
}

.stat-infinity .stat-number {
    display: inline-block;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: var(--space-2);
}

.stat-label {
    display: block;
    font-size: var(--text-sm);
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: var(--space-2);
    text-shadow: 
        0 1px 2px rgba(0, 0, 0, 0.45),
        0 2px 3px rgba(0, 0, 0, 0.4),
        0 1px 1px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--white);
    animation: bounce 2s infinite;
    width: 200px;
    margin-left: -100px;
}

.scroll-text {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-2);
}

.scroll-arrow {
    font-size: var(--text-lg);
    animation: bounce 2s infinite;
}

/* Section Styles */
section {
    padding: var(--space-24) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-16);
}

.section-header.portfolio-header {
    text-align: left;
    max-width: none;
    margin: 0 0 var(--space-16) 0;
}

.section-tagline {
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-4);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--gray-600);
    line-height: 1.7;
}

.services .section-description {
    font-size: var(--text-xl);
}

/* Services Section */
.services {
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
}

.service-card {
    background: #1e1e14 !important;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.service-card:nth-child(odd) {
    animation: float 5s ease-in-out infinite;
    animation-delay: 0s;
}

.service-card:nth-child(even) {
    animation: float 5s ease-in-out infinite;
    animation-delay: 2.5s;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    z-index: 2;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 186, 1, 0.15), transparent);
    transition: left 0.8s ease;
    z-index: 1;
    pointer-events: none;
}

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

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

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    animation-play-state: paused;
}

.service-card.featured {
    background: var(--gradient-primary);
    color: var(--white);
    transform: scale(1.05);
}

.service-card.featured .service-title,
.service-card.featured .service-description {
    color: var(--white);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: var(--text-2xl);
    margin-bottom: var(--space-6);
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service-title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--white);
}

.service-description {
    color: var(--gray-300);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-6);
}

.feature-tag {
    padding: var(--space-1) var(--space-3);
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: var(--text-xs);
    font-weight: 500;
    border-radius: var(--radius-full);
}

.service-card.featured .feature-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--text-sm);
    transition: all var(--transition-base);
}

.service-card.featured .service-link {
    color: var(--white);
}

.service-link:hover {
    gap: var(--space-3);
}

/* Portfolio Section */
.portfolio {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background-image: url('../images/geometric-pattern.png');
    background-size: 85%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    animation: patternWave1 8s ease-in-out infinite, patternRotate 16s ease-in-out infinite;
    mix-blend-mode: screen;
    filter: brightness(1.8) contrast(1.3);
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.3);
}

.portfolio > * {
    position: relative;
    z-index: 1;
}

.portfolio-header .section-title {
    color: var(--white);
    font-size: clamp(var(--text-4xl), 5vw, var(--text-6xl));
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.portfolio-header .section-description {
    color: var(--white);
    font-size: var(--text-xl);
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.portfolio-header .section-tagline {
    background: var(--white);
    color: var(--primary-color);
}

.portfolio-header {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
    text-align: left !important;
    max-width: none !important;
}

.portfolio-header .section-title {
    margin-bottom: 0 !important;
    letter-spacing: 0px !important;
}

.portfolio-divider {
    width: 2px;
    height: 60px;
    background: var(--white);
    flex-shrink: 0;
}

.portfolio-description {
    text-align: left;
    max-width: 280px;
    margin: 0;
}

.portfolio-filters {
    display: none;
}

.filter-btn {
    padding: var(--space-3) var(--space-6);
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    font-weight: 500;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--white);
    background: var(--white);
    color: var(--primary-color);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-12);
}

.portfolio-cta {
    text-align: center;
}

/* Portfolio CTA Button - Match Hero Size and Style */
.portfolio-cta-btn.cta-button.primary {
    padding: var(--space-5) var(--space-12);
    font-size: var(--text-xl);
    font-weight: 700;
    border-radius: var(--radius-2xl);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    min-width: 240px;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%) !important;
    border: 3px solid var(--primary-color) !important;
    box-shadow: 0 8px 24px rgba(245, 186, 1, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.1) !important;
    position: relative;
}

.portfolio-cta-btn span {
    color: var(--white);
}

.portfolio-cta-btn.cta-button.primary:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 12px 32px rgba(245, 186, 1, 0.6), 0 0 40px rgba(245, 186, 1, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.15) !important;
    border-color: var(--primary-light) !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(20, 20, 20, 0.95) 100%) !important;
}

/* About Section */
.about {
    background: var(--gray-50);
}

/* About CTA Button - Dark Aesthetic, Slightly Bigger */
.about-cta-btn.cta-button.primary {
    padding: var(--space-4) var(--space-10);
    font-size: var(--text-lg);
    font-weight: 700;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%) !important;
    border: 3px solid var(--primary-color) !important;
    box-shadow: 0 8px 24px rgba(245, 186, 1, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.1) !important;
    position: relative;
}

.about-cta-btn span {
    color: var(--white);
}

.about-cta-btn.cta-button.primary:hover {
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 12px 32px rgba(245, 186, 1, 0.6), 0 0 40px rgba(245, 186, 1, 0.5), inset 0 1px 2px rgba(255, 255, 255, 0.15) !important;
    border-color: var(--primary-light) !important;
    background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(20, 20, 20, 0.95) 100%) !important;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.about-description {
    font-size: var(--text-lg);
    line-height: 1.7;
    margin-bottom: var(--space-8);
}

.about-features {
    margin-bottom: var(--space-8);
}

.feature-item {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.feature-item i {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-lg);
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content h4 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-2);
}

.feature-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.visual-container {
    position: relative;
}

.visual-card {
    background: var(--white);
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.visual-card h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-6);
    text-align: center;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.process-step {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-4);
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    transition: all var(--transition-base);
}

.process-step:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(8px);
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--text-sm);
}

.step-text {
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
    padding: var(--space-12) 0 !important;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background-image: url('../images/geometric-pattern.png');
    background-size: 85%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
    animation: patternWave2 9s ease-in-out infinite, patternRotate 18s ease-in-out infinite;
    animation-delay: 2s, 4s, 3s;
    mix-blend-mode: screen;
    filter: brightness(1.8) contrast(1.3);
    box-shadow: inset 0 0 100px rgba(255, 255, 255, 0.3);
}

.testimonials > * {
    position: relative;
    z-index: 1;
}

.testimonials-header {
    max-width: 700px !important;
    margin: 0 auto var(--space-8) !important;
}

.testimonials-header .section-tagline {
    font-size: 1rem;
}

.testimonials-header .section-title {
    color: var(--white);
    font-size: 2.5rem !important;
    white-space: nowrap;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-bottom: var(--space-4) !important;
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.testimonials-header .section-description {
    color: var(--white);
    font-size: 1.125rem !important;
    white-space: nowrap;
    text-align: center !important;
    display: block !important;
    width: 100% !important;
    margin-bottom: var(--space-3) !important;
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.testimonial-divider {
    margin: var(--space-3) auto var(--space-4) auto !important;
}

.testimonials-header .section-tagline {
    background: var(--white);
    color: var(--primary-color);
}

.testimonial-divider {
    width: 100px;
    height: 2px;
    background: var(--white);
    margin: var(--space-6) auto var(--space-12) auto;
}

#featured-testimonial-content {
    transition: opacity 0.3s ease, transform 0.3s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-testimonial-attribution {
    color: var(--white);
    font-size: var(--text-lg);
    font-weight: 700;
    text-align: center;
    margin: 0 auto var(--space-4) auto;
    max-width: 800px;
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.featured-testimonial-quote {
    color: var(--white);
    font-size: var(--text-lg);
    font-weight: 700;
    text-align: center;
    margin: 0 auto var(--space-8) auto;
    max-width: 800px;
    line-height: 1.6;
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    margin-bottom: var(--space-8);
}

.testimonials-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-4);
}

.nav-btn {
    width: 48px;
    height: 48px;
    border: 2px solid var(--white);
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1);
}

.testimonials-dots {
    display: flex;
    gap: var(--space-2);
}

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

.dot.active {
    background: var(--white);
}

/* Contact Section */
.contact {
    background: var(--gray-50);
}

/* Contact View Work Button */
.contact-view-work-btn {
    margin-top: var(--space-8);
    padding: var(--space-4) var(--space-10);
    font-size: var(--text-lg);
    font-weight: 700;
    border-radius: var(--radius-xl);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white) !important;
    border: 3px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: inline-block;
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

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

.contact-view-work-btn:hover::before {
    left: 100%;
}

.contact-view-work-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
    color: var(--white) !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    position: relative;
}

.contact-logo {
    position: absolute;
    left: 0;
    bottom: 20px;
}

.contact-logo-img {
    height: 100px;
    width: auto;
}

.info-card {
    background: var(--gradient-primary) !important;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    height: fit-content;
}

.info-card h3 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--white) !important;
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.info-card p {
    color: var(--white) !important;
    line-height: 1.6;
    margin-bottom: var(--space-8);
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.contact-methods {
    margin-bottom: var(--space-8);
}

.contact-method {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.contact-method i {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-content {
    display: flex;
    flex-direction: column;
}

.method-label {
    font-size: var(--text-lg);
    color: var(--white);
    font-weight: 600;
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.method-value {
    font-size: var(--text-lg);
    color: var(--white);
    font-weight: 600;
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),\n        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.social-links {
    display: flex;
    gap: var(--space-3);
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-base);
}

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

/* Forms */
.form {
    background: var(--gradient-primary) !important;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--space-6);
}

.form-label {
    display: block;
    color: var(--white) !important;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: 8px;
    padding-left: 4px;
    background: none !important;
    border: none !important;
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.form-input {
    width: 100%;
    padding: var(--space-4);
    border: none !important;
    border-radius: var(--radius-lg);
    font-size: var(--text-base);
    background: var(--white) !important;
    color: var(--gray-900) !important;
    transition: all var(--transition-base);
    outline: none !important;
    box-shadow: none !important;
}

.form-input option {
    color: var(--gray-900) !important;
    background: var(--white) !important;
}

.service-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-4) center;
    padding-right: var(--space-12);
    position: relative;
    max-height: 56px;
    overflow: hidden;
    transition: all 0.3s ease;
    font-size: 0;
    line-height: 0;
}

.service-select:focus {
    font-size: var(--text-base);
    line-height: 1.5;
    max-height: 400px;
    overflow-y: auto;
    border-radius: var(--radius-lg) var(--radius-lg) var(--radius-lg) var(--radius-lg);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3), 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    padding-bottom: var(--space-2);
}

.service-select option {
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    margin: var(--space-1) var(--space-2);
    transition: all 0.2s ease;
    cursor: pointer;
    font-size: var(--text-base);
    line-height: 1.5;
}

.service-select option:hover {
    background: var(--primary-light) !important;
    color: var(--gray-900) !important;
}

.service-select option:checked {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    font-weight: 600;
}

/* Custom Scrollbar for Service Select */
.service-select::-webkit-scrollbar {
    width: 8px;
}

.service-select::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-full);
    margin: var(--space-2);
}

.service-select::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: var(--radius-full);
}

.service-select::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

.form-input::placeholder {
    color: var(--gray-500);
}

.form-input:focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3) !important;
    border: none !important;
    outline: none !important;
}

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

.form-submit {
    width: 100%;
    margin-top: var(--space-4);
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    color: var(--white);
    padding: var(--space-20) 0 var(--space-8);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    background-image: url('../images/geometric-pattern.png');
    background-size: 85%;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
    animation: patternWave1 7s ease-in-out infinite, patternRotate 20s ease-in-out infinite;
    animation-delay: 4s, 6s, 8s;
    mix-blend-mode: lighten;
}

.footer > * {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-16);
    margin-bottom: var(--space-12);
}

.footer-brand .brand-link {
    display: block;
    text-decoration: none;
    margin-bottom: var(--space-4);
}

.footer-logo {
    height: 80px;
    width: auto;
    display: block;
    margin-left: 0;
}

.footer-description {
    line-height: 1.7;
    margin-bottom: var(--space-6);
    color: var(--white);
    max-width: 400px;
    margin-left: 0;
    padding-left: 0;
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social .social-link {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.footer-social .social-link:hover {
    background: var(--white);
    color: var(--primary-color);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-16);
    justify-content: end;
    margin-left: auto;
    max-width: 600px;
}

.group-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-4);
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.link-list {
    list-style: none;
}

.link-list li {
    margin-bottom: var(--space-3);
}

.footer-link {
    color: var(--white);
    text-decoration: none;
    transition: color var(--transition-base);
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
    text-shadow: 
        0 2px 3px rgba(0, 0, 0, 0.45),
        0 3px 5px rgba(0, 0, 0, 0.4),
        0 1px 2px rgba(0, 0, 0, 0.5),
        1px 1px 0px rgba(0, 0, 0, 0.48);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: var(--z-fixed);
}

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

.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}