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

:root {
    /* Apple-inspired Color Palette */
    --primary-color: #007AFF;
    --primary-dark: #0056CC;
    --secondary-color: #5856D6;
    --accent-color: #FF3B30;
    --success-color: #34C759;
    --warning-color: #FF9500;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Glass Morphism - Enhanced for Black Background */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glass-backdrop: blur(25px);
    
    /* Professional Lighting Effects */
    --glow-primary: 0 0 30px rgba(0, 122, 255, 0.4);
    --glow-secondary: 0 0 25px rgba(88, 86, 214, 0.3);
    --glow-accent: 0 0 35px rgba(255, 59, 48, 0.5);
    --glow-white: 0 0 20px rgba(255, 255, 255, 0.2);
    --glow-dark: 0 0 40px rgba(0, 0, 0, 0.3);
    --glow-success: 0 0 25px rgba(52, 199, 89, 0.4);
    --glow-warning: 0 0 25px rgba(255, 149, 0, 0.4);
    
    /* Professional Color Palette */
    --professional-blue: #1e3a8a;
    --professional-purple: #5b21b6;
    --professional-cyan: #0891b2;
    --professional-emerald: #059669;
    --professional-amber: #d97706;
    --professional-rose: #e11d48;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    --font-size-7xl: 4.5rem;
    
    /* Spacing - Tight Design */
    --spacing-1: 0.2rem;
    --spacing-2: 0.4rem;
    --spacing-3: 0.6rem;
    --spacing-4: 0.8rem;
    --spacing-5: 1rem;
    --spacing-6: 1.2rem;
    --spacing-8: 1.6rem;
    --spacing-10: 2rem;
    --spacing-12: 2.4rem;
    --spacing-16: 3rem;
    --spacing-20: 3.5rem;
    --spacing-24: 4rem;
    --spacing-32: 5rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.15s ease-out;
    --transition-normal: 0.3s ease-out;
    --transition-slow: 0.5s ease-out;
}

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

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--white);
    background: #000000;
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(0, 122, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(88, 86, 214, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 59, 48, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -2;
}

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

/* Glass Morphism Base */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    box-shadow: var(--glass-shadow), var(--glow-white);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: var(--radius-2xl);
    pointer-events: none;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.4), 
        var(--glow-primary),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.12);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-4) 0;
    transition: all var(--transition-normal);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--glow-dark);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        var(--glow-primary);
}

.glass-nav {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--glow-dark);
}

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


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

.logo-accent {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-8);
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all var(--transition-normal);
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: var(--transition-normal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 30% 20%, rgba(0, 122, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(88, 86, 214, 0.15) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    margin-bottom: var(--spacing-6);
    background: linear-gradient(135deg, var(--white) 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(88, 86, 214, 0.1) 100%);
    border-radius: var(--radius-xl);
    filter: blur(20px);
    z-index: -1;
}

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

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.9;
    animation: float 8s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: pointer;
}

.gradient-orb:hover {
    filter: blur(60px);
    opacity: 1;
    transform: scale(1.2);
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ff0080, #ff4081, #ff6b9d);
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #00d4ff, #0099cc, #0066ff);
    top: 50%;
    right: 10%;
    animation-delay: 2.5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #ff6b35, #ff8c42, #ffa726);
    bottom: 10%;
    left: 50%;
    animation-delay: 5s;
}

.orb-4 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #9c27b0, #e91e63, #ff4081);
    top: 30%;
    right: 30%;
    animation-delay: 1s;
}

.orb-5 {
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, #00e676, #00c853, #4caf50);
    bottom: 30%;
    left: 20%;
    animation-delay: 3.5s;
}

.orb-6 {
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, #ff1744, #ff5722, #ff9800);
    top: 15%;
    right: 50%;
    animation-delay: 1.5s;
}

.orb-7 {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, #3f51b5, #2196f3, #00bcd4);
    bottom: 50%;
    left: 70%;
    animation-delay: 4.2s;
}

.orb-8 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #e91e63, #9c27b0, #673ab7);
    top: 70%;
    left: 10%;
    animation-delay: 2.8s;
}

.orb-9 {
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, #ffc107, #ff9800, #ff5722);
    top: 25%;
    right: 2%;
    animation-delay: 5.5s;
}

.orb-10 {
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, #4caf50, #8bc34a, #cddc39);
    bottom: 25%;
    right: 20%;
    animation-delay: 3.8s;
}

.orb-merch {
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, #ff6b6b, #ff8e8e, #ffa8a8);
    top: 65%;
    right: 5%;
    animation-delay: 2s;
    box-shadow: 0 0 50px rgba(255, 107, 107, 0.6);
    opacity: 0.95;
}

.orb-services-1 {
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, #00bcd4, #26c6da, #4dd0e1);
    top: 15%;
    left: 5%;
    animation-delay: 1s;
    box-shadow: 0 0 30px rgba(0, 188, 212, 0.4);
    opacity: 0.8;
}

.orb-services-2 {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #9c27b0, #ba68c8, #ce93d8);
    top: 45%;
    left: 15%;
    animation-delay: 3.5s;
    box-shadow: 0 0 25px rgba(156, 39, 176, 0.4);
    opacity: 0.7;
}

.orb-services-3 {
    width: 110px;
    height: 110px;
    background: radial-gradient(circle, #ff9800, #ffb74d, #ffcc80);
    bottom: 10%;
    left: 8%;
    animation-delay: 4.2s;
    box-shadow: 0 0 35px rgba(255, 152, 0, 0.4);
    opacity: 0.85;
}

.floating-bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.6), rgba(255, 107, 53, 0.4));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 0, 128, 0.3);
    box-shadow: 0 8px 32px rgba(255, 0, 128, 0.2);
    pointer-events: none;
    z-index: 1;
    animation: bubbleFloat 8s ease-in-out infinite;
    filter: blur(0.5px);
    opacity: 0.8;
}

.floating-bubble::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    filter: blur(1px);
}

.floating-bubble::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 20%;
    width: 15%;
    height: 15%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    filter: blur(0.5px);
}

@keyframes bubbleFloat {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

.floating-shape {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    animation: shapeFloat 15s linear infinite;
}

.floating-particle {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    animation: particleFloat 12s linear infinite;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

@keyframes shapeFloat {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg) scale(0.5);
        opacity: 0;
    }
    15% {
        opacity: 0.8;
        transform: scale(1);
    }
    85% {
        opacity: 0.8;
        transform: scale(1);
    }
    100% {
        transform: translateY(-100px) translateX(-30px) rotate(180deg) scale(0.5);
        opacity: 0;
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0px);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateY(-50px) translateX(20px);
        opacity: 0;
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1); 
        opacity: 0.9;
    }
    10% { 
        transform: translateY(-10px) rotate(36deg) scale(1.05); 
        opacity: 0.8;
    }
    20% { 
        transform: translateY(-20px) rotate(72deg) scale(0.95); 
        opacity: 0.7;
    }
    30% { 
        transform: translateY(-15px) rotate(108deg) scale(1.1); 
        opacity: 0.8;
    }
    40% { 
        transform: translateY(-25px) rotate(144deg) scale(0.9); 
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-30px) rotate(180deg) scale(1.15); 
        opacity: 0.5;
    }
    60% { 
        transform: translateY(-20px) rotate(216deg) scale(0.85); 
        opacity: 0.7;
    }
    70% { 
        transform: translateY(-10px) rotate(252deg) scale(1.2); 
        opacity: 0.8;
    }
    80% { 
        transform: translateY(-5px) rotate(288deg) scale(0.9); 
        opacity: 0.9;
    }
    90% { 
        transform: translateY(-15px) rotate(324deg) scale(1.05); 
        opacity: 0.7;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-12);
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-6);
    text-align: left;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: var(--spacing-4);
    position: relative;
    overflow: hidden;
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.title-line {
    display: block;
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
    position: relative;
    background: linear-gradient(45deg, #ffffff, #ff0080, #00d4ff, #ffffff);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 0.8s ease-out forwards, gradientShift 3s ease-in-out infinite;
}

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

.accent-text {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

.hero-description {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-6);
    opacity: 0;
    animation: fadeIn 1s ease-out 0.8s forwards;
}

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

.hero-buttons {
    display: flex;
    gap: var(--spacing-4);
    opacity: 0;
    animation: fadeIn 1s ease-out 1s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-4) var(--spacing-6);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-size-base);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.glass-btn {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    color: var(--white);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border: none;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
}

.btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3), 
        var(--glow-primary),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3), 
        var(--glow-primary),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Ensure all button icons are white for consistency */
.btn i {
    color: var(--white);
}

.btn-secondary:hover {
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3), 
        var(--glow-white),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

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

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

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-6);
    box-shadow: var(--glass-shadow);
    animation: floatCard 4s ease-in-out infinite;
}

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

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 1.3s;
}

.card-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 2.6s;
}

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

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

.card-content i {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--spacing-3);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.3));
    transition: all var(--transition-normal);
}

.floating-card:hover .card-content i {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.4));
    transform: scale(1.1);
}

.card-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary-color), transparent);
    border-radius: var(--radius-full);
}

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

/* Section Styles */
section {
    padding: var(--spacing-16) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-12);
}

.section-tag {
    display: inline-block;
    padding: var(--spacing-2) var(--spacing-4);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-4);
}

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

.section-description {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: rgba(255, 255, 255, 0.02);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-6);
    margin-bottom: var(--spacing-16);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-8);
}

.stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-2);
}

.stat-label {
    color: var(--white);
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-6);
}

.feature-item {
    padding: var(--spacing-8);
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-4);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    color: var(--white);
    position: relative;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: var(--radius-full);
    pointer-events: none;
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.feature-item h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-3);
}

.feature-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Services Section */
.services {
    background: rgba(255, 255, 255, 0.02);
    padding: var(--spacing-12) 0;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-8);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-4);
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    padding: var(--spacing-8);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid rgba(255, 0, 128, 0.3);
    background: rgba(255, 0, 128, 0.05);
}

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

.service-card.featured {
    border: 1px solid rgba(255, 0, 128, 0.4);
    background: rgba(255, 0, 128, 0.08);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(255, 0, 128, 0.6);
    background: rgba(255, 0, 128, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 0, 128, 0.3);
}

.service-card:hover::before {
    height: 4px;
    background: linear-gradient(90deg, #ff0080, #00d4ff, #ff0080);
    animation: gradientShift 2s ease-in-out infinite;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-6);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    color: var(--white);
    transition: all var(--transition-normal);
    position: relative;
    box-shadow: 
        0 8px 20px rgba(102, 126, 234, 0.3), 
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        var(--glow-primary);
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 12px 30px rgba(102, 126, 234, 0.4), 
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        var(--glow-primary);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.service-number {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    font-family: 'Inter', sans-serif;
}

.service-content {
    margin-bottom: var(--spacing-6);
}

.service-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-3);
}

.service-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: var(--spacing-4);
}

/* Service Pages Feature Tags - Match Home Page Style */
.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-2);
    margin-top: var(--spacing-6);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feature-tag {
    padding: 4px var(--spacing-2);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.75rem;
    font-weight: 500;
    transition: all var(--transition-normal);
    white-space: nowrap;
    flex-shrink: 0;
    width: auto;
    /* Reverted: 2024-09-10 - Back to original size */
}

.feature-tag:hover {
    background: rgba(255, 0, 128, 0.2);
    border-color: rgba(255, 0, 128, 0.4);
    color: var(--white);
}

.service-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-4);
}

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

.service-link:hover {
    color: var(--white);
    transform: translateX(4px);
}

.service-link i {
    color: var(--white);
    transition: transform var(--transition-normal);
}

.service-link:hover i {
    transform: translateX(4px);
}

.services-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-6);
    max-width: 900px;
    margin: 0 auto;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    padding: var(--spacing-6);
    transition: all var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    color: var(--white);
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: var(--radius-lg);
    pointer-events: none;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.stat-content h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: var(--spacing-1);
    font-size: var(--font-size-base);
}

.stat-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    margin: 0;
}

/* Portfolio Section */
.portfolio {
    background: rgba(255, 255, 255, 0.02);
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-12);
    flex-wrap: wrap;
}

.filter-btn {
    padding: var(--spacing-3) var(--spacing-6);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-normal);
}

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

/* Portfolio Carousel Styles */
.portfolio-carousel {
    position: relative;
    overflow: hidden;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--spacing-6);
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-6);
    margin-top: var(--spacing-8);
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
}

.carousel-btn:hover {
    background: var(--primary-color);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.carousel-btn:disabled:hover {
    background: var(--glass-bg);
    box-shadow: none;
}

.carousel-indicators {
    display: flex;
    gap: var(--spacing-2);
}

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

.carousel-indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background: rgba(255, 255, 255, 0.6);
}

.carousel-info {
    text-align: center;
    margin-top: var(--spacing-4);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

/* Responsive Design for Carousel */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
    }
    
    .carousel-controls {
        gap: var(--spacing-4);
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-base);
    }
}

.portfolio-item {
    overflow: hidden;
    position: relative;
    transition: all var(--transition-normal);
    border-radius: var(--radius-2xl);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.portfolio-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border-color: rgba(102, 126, 234, 0.5);
}

.portfolio-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-4xl);
    color: var(--primary-color);
    transition: all var(--transition-normal);
    position: relative;
}

.project-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.portfolio-item:hover .project-placeholder {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    transform: scale(1.05);
}

.portfolio-item:hover .project-placeholder::before {
    opacity: 1;
}

.portfolio-item:hover .project-placeholder i {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(102, 126, 234, 0.3));
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(102, 126, 234, 0.8) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-normal);
    text-align: center;
    padding: var(--spacing-6);
    transform: translateY(20px);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-2);
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-4);
}

.project-stats {
    display: flex;
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-4);
    flex-wrap: wrap;
    justify-content: center;
}

.stat {
    padding: var(--spacing-1) var(--spacing-3);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all var(--transition-normal);
}

.stat:hover {
    background: rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.5);
    transform: scale(1.05);
}

.portfolio-info {
    padding: var(--spacing-4);
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.project-category {
    font-size: var(--font-size-sm);
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-2);
}

.project-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item {
    display: none;
    padding: var(--spacing-12);
    text-align: center;
}

.testimonial-item.active {
    display: block;
    animation: fadeInSlide 0.5s ease-out;
}

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

.quote-icon {
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin-bottom: var(--spacing-6);
}

.testimonial-text {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: var(--spacing-8);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-4);
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    color: var(--white);
}

.author-info h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: var(--spacing-1);
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-6);
    margin-top: var(--spacing-8);
}

.control-btn {
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.testimonial-dots {
    display: flex;
    gap: var(--spacing-2);
}

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

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Contact Section */
.contact {
    background: rgba(255, 255, 255, 0.02);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    padding: var(--spacing-6);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    color: var(--white);
    position: relative;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all var(--transition-normal);
}

.contact-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.contact-details h3 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: var(--spacing-1);
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-form {
    padding: var(--spacing-8);
}

.form-group {
    position: relative;
    margin-bottom: var(--spacing-6);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-4);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: var(--font-size-base);
    transition: all var(--transition-normal);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group label {
    position: absolute;
    top: -8px;
    left: var(--spacing-3);
    background: rgba(0, 0, 0, 0.8);
    padding: 0 var(--spacing-2);
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-normal);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label {
    opacity: 1;
    transform: translateY(0);
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-16) 0 var(--spacing-8);
}

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

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin: var(--spacing-4) 0;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--spacing-4);
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all var(--transition-normal);
}

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

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-8);
}

.link-group h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: var(--spacing-4);
}

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

.link-group li {
    margin-bottom: var(--spacing-2);
}

.link-group a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.link-group a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: var(--spacing-16);
        transition: left var(--transition-normal);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .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);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: var(--spacing-8);
    }

    .hero-title {
        font-size: 3.2rem;
        line-height: 1.1;
    }
    
    .hero-title .title-line {
        display: block;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-4);
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: var(--spacing-4) var(--spacing-6);
        font-size: 1.1rem;
    }

    .hero-visual {
        height: 300px;
    }

    .floating-card {
        padding: var(--spacing-4);
    }

    .card-content i {
        font-size: var(--font-size-xl);
    }

    .card-content h3 {
        font-size: var(--font-size-base);
    }

    .section-title {
        font-size: var(--font-size-3xl);
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .services-stats {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: var(--spacing-6);
    }
    
    .service-header {
        margin-bottom: var(--spacing-4);
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: var(--font-size-lg);
    }
    
    .service-number {
        font-size: var(--font-size-xl);
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-4);
    }

    .hero-title {
        font-size: var(--font-size-3xl);
    }

    .section-title {
        font-size: var(--font-size-2xl);
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-item {
        padding: var(--spacing-6);
    }

    .service-card,
    .feature-item {
        padding: var(--spacing-6);
    }

    .testimonial-item {
        padding: var(--spacing-8);
    }

    .contact-form {
        padding: var(--spacing-6);
    }
}

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

/* Project Page Styles */
.project-header {
    padding: var(--spacing-20) 0 var(--spacing-16);
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.project-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    margin-bottom: var(--spacing-6);
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
}

.project-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color var(--transition-normal);
}

.project-breadcrumb a:hover {
    color: var(--white);
}

.project-title-section h1 {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--spacing-4);
    line-height: 1.2;
}

.project-title-section p {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-6);
}

.project-meta {
    display: flex;
    gap: var(--spacing-6);
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-2);
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--font-size-sm);
}

.meta-item i {
    color: var(--primary-color);
    width: 16px;
}

.project-content {
    padding: var(--spacing-16) 0;
}

.project-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-12);
    align-items: start;
}

.project-image-section {
    position: sticky;
    top: var(--spacing-8);
}

.project-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.project-placeholder-large {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--primary-color);
    transition: all var(--transition-normal);
}

.project-placeholder-large:hover {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
    transform: scale(1.02);
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-8);
}

.detail-section h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-4);
    position: relative;
}

.detail-section h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--radius-full);
}

.detail-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: var(--spacing-4);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-3);
}

.tech-tag {
    padding: var(--spacing-2) var(--spacing-4);
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
    border-radius: var(--radius-full);
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all var(--transition-normal);
}

.tech-tag:hover {
    background: rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.5);
    transform: translateY(-2px);
}

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

.feature-list li {
    position: relative;
    padding-left: var(--spacing-6);
    margin-bottom: var(--spacing-3);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

.project-links {
    display: flex;
    gap: var(--spacing-4);
    margin-top: var(--spacing-6);
}

.btn-sm {
    padding: var(--spacing-2) var(--spacing-4);
    font-size: var(--font-size-sm);
}

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

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

.related-projects {
    padding: var(--spacing-16) 0;
    background: rgba(255, 255, 255, 0.02);
}

.related-projects h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: var(--spacing-12);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-6);
}

.related-project-card {
    padding: var(--spacing-6);
    transition: all var(--transition-normal);
    border-radius: var(--radius-2xl);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.related-project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.related-project-image {
    height: 200px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--spacing-4);
}

.related-project-image .project-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
}

.related-project-info h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-2);
}

.related-project-info p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-4);
    font-size: var(--font-size-sm);
}

.back-to-portfolio {
    padding: var(--spacing-12) 0;
    text-align: center;
}

/* Responsive Design for Project Page */
@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-8);
    }
    
    .project-image-section {
        position: static;
    }
    
    .project-placeholder-large {
        height: 250px;
        font-size: 2.5rem;
    }
    
    .project-meta {
        flex-direction: column;
        gap: var(--spacing-3);
    }
    
    .project-links {
        flex-direction: column;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

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

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

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

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

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

.scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease-out;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-top: 3px solid #ff0080;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
}

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

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

/* Selection */
::selection {
    background: var(--primary-color);
    color: var(--white);
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

/* Beautiful Form Styling */
.form-group {
    position: relative;
    margin-bottom: var(--spacing-4);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.form-group label {
    position: absolute;
    top: var(--spacing-3);
    left: var(--spacing-3);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all 0.3s ease;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.8);
    padding: 0 8px;
    border-radius: 4px;
}

.form-group.focused label,
.form-group.valid label {
    top: -8px;
    left: var(--spacing-2);
    font-size: 0.8rem;
    color: var(--primary-color);
    background: rgba(0, 0, 0, 0.9);
}

.form-group.valid input,
.form-group.valid textarea {
    border-color: #22c55e;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.2);
}

.form-group.invalid input,
.form-group.invalid textarea {
    border-color: #ef4444;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
}

/* Beautiful Notifications */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    padding: var(--spacing-4);
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 300px;
    max-width: 400px;
}

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

.notification-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    color: var(--text-primary);
}

.notification-content i {
    font-size: 1.2rem;
}

.notification-success {
    border-color: rgba(34, 197, 94, 0.5);
    background: rgba(34, 197, 94, 0.1);
}

.notification-success .notification-content i {
    color: #22c55e;
}

.notification-error {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.1);
}

.notification-error .notification-content i {
    color: #ef4444;
}

.notification-close {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.notification-close:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

/* Form Loading State */
.btn.loading {
    opacity: 0.8;
    pointer-events: none;
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

/* Thank You Page Styling */
.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-6) 0;
    background: rgba(255, 255, 255, 0.02);
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    padding: var(--spacing-8);
    margin: 0 auto;
}

.success-icon {
    margin-bottom: var(--spacing-6);
}

.success-icon i {
    font-size: 4rem;
    color: #22c55e;
    animation: successPulse 2s ease-in-out infinite;
}

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

.thank-you-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-4);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.thank-you-message {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-6);
    line-height: 1.6;
}

.thank-you-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-6);
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-2);
    color: var(--text-secondary);
    font-size: 1rem;
}

.detail-item i {
    color: var(--primary-color);
    width: 20px;
}

.thank-you-actions {
    display: flex;
    gap: var(--spacing-4);
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-actions .btn {
    min-width: 160px;
}

@media (max-width: 768px) {
    .thank-you-title {
        font-size: 2rem;
    }
    
    .thank-you-content {
        padding: var(--spacing-6);
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Navigation Logo Styling */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: all var(--transition-normal);
}

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

.nav-logo i {
    font-size: 1.8rem;
    color: #8b5cf6;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-4);
}

.footer-logo i {
    font-size: 1.8rem;
    color: #8b5cf6;
}

/* Service Number Animation */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.service-number {
    animation: fadeInScale 0.6s ease-out forwards;
    opacity: 0; /* Start hidden */
}

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

/* Service Pages Process Step Animation */
.process-step .step-number {
    animation: fadeInScale 0.6s ease-out forwards;
    opacity: 0; /* Start hidden */
}

.process-step:nth-child(1) .step-number {
    animation-delay: 0.1s;
}
.process-step:nth-child(2) .step-number {
    animation-delay: 0.2s;
}
.process-step:nth-child(3) .step-number {
    animation-delay: 0.3s;
}
.process-step:nth-child(4) .step-number {
    animation-delay: 0.4s;
}

/* Service Pages Floating Bubbles */
.service-hero {
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 40% 60%, rgba(156, 39, 176, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* Service Pages Complete Redesign - Updated 2024-09-10 */
.service-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-8) 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 10, 30, 0.99) 100%);
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 0, 128, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(0, 188, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.service-hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.service-icon-large {
    margin-bottom: var(--spacing-8);
    position: relative;
    display: inline-block;
}

.service-icon-large i {
    font-size: 5rem;
    color: var(--white);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 8px 16px rgba(102, 126, 234, 0.4));
    transition: all var(--transition-normal);
    animation: iconPulse 3s ease-in-out infinite;
}

.service-icon-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: -1;
    animation: float 6s ease-in-out infinite;
}

.service-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: var(--spacing-6);
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #ffffff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.1;
}

.service-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-8);
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.service-hero-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-10);
    flex-wrap: wrap;
    margin-top: var(--spacing-8);
}

.service-hero-stats .stat-item {
    text-align: center;
    padding: var(--spacing-4);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    min-width: 150px;
    transition: all var(--transition-normal);
}

.service-hero-stats .stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(102, 126, 234, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.service-hero-stats .stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-2);
}

.service-hero-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.service-details {
    padding: var(--spacing-12) 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 40, 0.98) 100%);
    position: relative;
}

.service-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(255, 0, 128, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(0, 188, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.service-content {
    max-width: 1200px;
    margin: 0 auto;
}

.service-description {
    margin-bottom: var(--spacing-8);
    padding: var(--spacing-6);
}

.service-description h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-4);
    color: var(--white);
}

.service-description h3 {
    font-size: 1.5rem;
    margin: var(--spacing-4) 0 var(--spacing-3) 0;
    color: var(--primary-color);
}

.service-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-4);
}

.feature-card {
    padding: var(--spacing-8);
    text-align: center;
    transition: all var(--transition-normal);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(102, 126, 234, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-card .feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-4);
    font-size: 2rem;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

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

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-3);
    color: var(--white);
    font-weight: 600;
    line-height: 1.3;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.service-process {
    padding: var(--spacing-12) 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.98) 0%, rgba(20, 20, 40, 0.95) 100%);
    position: relative;
}

.service-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(156, 39, 176, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 188, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-6);
    margin-top: var(--spacing-8);
}

.process-step {
    padding: var(--spacing-8);
    text-align: center;
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
    transition: all var(--transition-normal);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(102, 126, 234, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.step-number {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-4);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: all var(--transition-normal);
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-3);
    color: var(--white);
    font-weight: 600;
}

.process-step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.service-cta {
    padding: var(--spacing-8) 0;
    background: rgba(255, 255, 255, 0.01);
}

.cta-content {
    text-align: center;
    padding: var(--spacing-8);
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-4);
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-6);
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-4);
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 160px;
}

@media (max-width: 768px) {
    .service-title {
        font-size: 2.5rem;
    }
    
    .service-hero-stats {
        gap: var(--spacing-4);
    }
    
    .service-hero-stats .stat-number {
        font-size: 2rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Contact Form Status Messages */
.form-status {
    margin-top: var(--spacing-4);
    padding: var(--spacing-3);
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
}

.form-status.success {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.form-status.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.form-status.loading {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.status-message {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Form Loading State */
.btn.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn.loading span {
    display: none;
}

.btn.loading::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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