:root {
    /* Performance Variables */
    --performance-mode: 0; /* 0 = full effects, 1 = reduced effects */
    --reduced-motion: 0; /* Detects user preference */
    
    /* Brand Colors */
    --color-primary: #089cf8;
    --color-secondary: #17cfbf;
    --color-tertiary: #07d1b7;
    --color-quaternary: #08afe4;
    
    /* Professional Color Palette */
    --color-neutral-900: #0a0a0a;
    --color-neutral-800: #1a1a1a;
    --color-neutral-700: #2a2a2a;
    --color-neutral-600: #404040;
    --color-neutral-500: #666666;
    --color-neutral-400: #999999;
    --color-neutral-300: #cccccc;
    --color-neutral-200: #e6e6e6;
    --color-neutral-100: #f5f5f5;
    --color-neutral-50: #fafafa;
    
    /* Background */
    --bg-primary: #0f0f0f;
    --bg-secondary: #181818;
    --bg-tertiary: #222222;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.04);
    
    /* Gradient Combinations */
    --gradient-primary: linear-gradient(135deg, #089cf8 0%, #17cfbf 50%, #07d1b7 100%);
    --gradient-secondary: linear-gradient(45deg, #17cfbf 0%, #08afe4 100%);
    --gradient-tertiary: linear-gradient(225deg, #07d1b7 0%, #089cf8 100%);
    --gradient-text: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    --gradient-border: linear-gradient(90deg, transparent 0%, rgba(8, 156, 248, 0.2) 50%, transparent 100%);
    
    /* Typography - Professional fonts */
    --font-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-secondary: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
    
    /* Spacing - More generous for premium feel */
    --section-padding: 160px 0;
    --section-padding-mobile: 80px 0;
    --container-padding: 0 2rem;
    --container-padding-mobile: 0 1.5rem;
    --max-width: 1400px;
    
    /* Transitions - Smooth and professional */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows - Subtle and sophisticated */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-color: 0 20px 60px rgba(8, 156, 248, 0.2);
    --shadow-glow: 0 0 40px rgba(8, 156, 248, 0.1);
    
    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Animation speeds */
    --transition-fast: 0.15s;
    --transition-normal: 0.3s;
    --transition-slow: 0.6s;
}

/* ============ SUCCESS OVERLAY STYLES ============ */

.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(
        135deg,
        rgba(3, 17, 39, 0.95) 0%,
        rgba(3, 17, 39, 0.98) 50%,
        rgba(3, 17, 39, 0.95) 100%
    );
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    animation: successFadeIn 0.8s ease-out forwards;
}

.success-content {
    text-align: center;
    max-width: 500px;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(8, 156, 248, 0.1), rgba(23, 207, 191, 0.1));
    border: 2px solid rgba(8, 156, 248, 0.3);
    border-radius: 30px;
    backdrop-filter: blur(30px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: successSlideUp 0.8s ease-out 0.2s both;
}

.success-animation {
    margin-bottom: 2rem;
}

.checkmark-circle {
    width: 80px;
    height: 80px;
    border: 3px solid var(--accent-cyan);
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    animation: checkmarkCircle 0.6s ease-out 0.4s both;
}

.checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 15px;
    border: 3px solid var(--accent-cyan);
    border-top: none;
    border-right: none;
    transform: translate(-50%, -60%) rotate(-45deg);
    animation: checkmarkDraw 0.4s ease-out 0.8s both;
}

.success-text h2 {
    color: var(--accent-cyan);
    font-family: 'Nexa Extra Bold', 'Inter', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.success-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(8, 156, 248, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.detail-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.close-success-btn {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-blue));
    border: 2px solid transparent;
    border-radius: 25px;
    padding: 1rem 2rem;
    font-family: 'Nexa Extra Bold', 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: bold;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(8, 156, 248, 0.3);
}

.close-success-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 ease;
}

.close-success-btn:hover::before {
    left: 100%;
}

.close-success-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px rgba(8, 156, 248, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Success Animations */
@keyframes successFadeIn {
    from {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    to {
        opacity: 1;
        backdrop-filter: blur(20px);
    }
}

@keyframes successSlideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes checkmarkCircle {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes checkmarkDraw {
    from {
        opacity: 0;
        transform: translate(-50%, -60%) rotate(-45deg) scale(0);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -60%) rotate(-45deg) scale(1);
    }
}

/* Prevent FOUC - hide main content until intro completes */
body:not(.intro-completed) .nav,
body:not(.intro-completed) .hero,
body:not(.intro-completed) main,
body:not(.intro-completed) section:not(#intro-overlay) {
    opacity: 0;
    visibility: hidden;
}

/* Show content after intro completion */
body.intro-completed .nav,
body.intro-completed .hero,
body.intro-completed main,
body.intro-completed section:not(#intro-overlay) {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .success-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .success-text h2 {
        font-size: 1.5rem;
    }
    
    .success-details {
        gap: 0.8rem;
    }
    
    .detail-item {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* ============ END SUCCESS OVERLAY STYLES ============ */

/* ============ END CHECKOUT SYSTEM STYLES ============ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Intro Overlay */
#intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        #031127 0%, 
        #052247 25%, 
        #089cf8 50%, 
        #17cfbf 75%, 
        #07d1b7 100%);
    background-size: 400% 400%;
    animation: gradientFlow 8s ease-in-out infinite;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 1.5s ease-out;
    /* Prevent flashing on mobile - ensure overlay is always on top and visible */
    will-change: opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

#intro-overlay.fade-out {
    opacity: 0;
    pointer-events: none;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.intro-container {
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    padding: 2rem;
}

.skip-button {
    position: static;
    margin-top: 2rem;
    z-index: 10001;
}

#skip-intro {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    font-size: 0.9rem;
    min-width: 120px;
}

#skip-intro:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 156, 248, 0.3);
}

.typing-line {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.2em;
    position: relative;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
}

#typing-cursor {
    animation: blink 1s infinite;
    margin-left: 0.1em;
    position: relative;
    color: var(--color-secondary);
    text-shadow: 0 0 20px currentColor;
}

#typing-text {
    white-space: nowrap;
    display: inline-block;
    background: linear-gradient(45deg, #ffffff, var(--color-primary), var(--color-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Mobile Responsive Styles for Intro */
@media (max-width: 768px) {
    #intro-overlay {
        /* Use same sophisticated animation as desktop */
        background: linear-gradient(135deg, 
            #031127 0%, 
            #052247 25%, 
            #089cf8 50%, 
            #17cfbf 75%, 
            #07d1b7 100%);
        background-size: 400% 400%;
        animation: gradientFlow 8s ease-in-out infinite;
        /* Enhanced mobile performance with same visual quality */
        will-change: opacity, transform;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
        /* Ensure smooth transitions match desktop */
        transition: opacity 1.5s ease-out;
    }
    
    .intro-container {
        gap: 2rem;
        padding: 1rem;
        /* Ensure proper centering with same desktop layout */
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* Add desktop-like positioning */
        position: relative;
    }
    
    .typing-line {
        font-size: clamp(1.8rem, 6vw, 3rem);
        /* Enhanced text effects matching desktop */
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
        height: 1.2em;
        position: relative;
        /* Add desktop-like text glow */
        filter: drop-shadow(0 0 20px rgba(8, 156, 248, 0.3));
    }
    
    #typing-text {
        /* Enhanced gradient effects matching desktop */
        background: linear-gradient(45deg, #ffffff, var(--color-primary), var(--color-secondary));
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        background-size: 200% 200%;
        animation: textGlow 3s ease-in-out infinite;
        /* Add desktop-level text shadow */
        text-shadow: 0 0 40px rgba(8, 156, 248, 0.4);
        /* Ensure crisp rendering */
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    #typing-cursor {
        /* Enhanced cursor animation matching desktop */
        animation: blink 1s infinite;
        margin-left: 0.1em;
        position: relative;
        color: var(--color-secondary);
        text-shadow: 0 0 20px currentColor;
        /* Add desktop-like glow effect */
        filter: drop-shadow(0 0 10px var(--color-secondary));
    }
    
    #skip-intro {
        padding: 12px 24px;
        font-size: 0.9rem;
        min-width: 120px;
        /* Enhanced styling matching desktop */
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        /* Add desktop-like transitions */
        transition: all 0.3s ease;
        transform: translateZ(0);
        /* Enhanced hover effects for mobile touch */
        -webkit-tap-highlight-color: transparent;
    }
    
    #skip-intro:hover,
    #skip-intro:active {
        /* Mobile touch feedback matching desktop hover */
        background: rgba(255, 255, 255, 0.2);
        border-color: var(--color-primary);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(8, 156, 248, 0.3);
    }
}

@media (max-width: 480px) {
    .intro-container {
        gap: 1.5rem;
        padding: 1rem;
        /* Maintain desktop-quality centering */
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    
    .typing-line {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        /* Enhanced text effects for smallest screens */
        text-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
        filter: drop-shadow(0 0 15px rgba(8, 156, 248, 0.3));
        /* Ensure proper spacing */
        height: 1.2em;
        position: relative;
    }
    
    #typing-text {
        /* Maintain gradient quality on small screens */
        background: linear-gradient(45deg, #ffffff, var(--color-primary), var(--color-secondary));
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        background-size: 200% 200%;
        animation: textGlow 3s ease-in-out infinite;
        text-shadow: 0 0 30px rgba(8, 156, 248, 0.4);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    #typing-cursor {
        /* Enhanced cursor for small screens */
        animation: blink 1s infinite;
        margin-left: 0.1em;
        position: relative;
        color: var(--color-secondary);
        text-shadow: 0 0 15px currentColor;
        filter: drop-shadow(0 0 8px var(--color-secondary));
    }
    
    #skip-intro {
        padding: 10px 20px;
        font-size: 0.8rem;
        min-width: 100px;
        /* Maintain desktop-quality styling */
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        transform: translateZ(0);
        -webkit-tap-highlight-color: transparent;
    }
    
    #skip-intro:hover,
    #skip-intro:active {
        /* Enhanced touch feedback */
        background: rgba(255, 255, 255, 0.2);
        border-color: var(--color-primary);
        transform: translateY(-1px);
        box-shadow: 0 6px 20px rgba(8, 156, 248, 0.3);
    }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 16px;
}

body {
    font-family: var(--font-secondary);
    background: var(--bg-primary);
    color: #ffffff;
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 0;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-neutral-300);
    margin: 0;
}

/* Section Badges */
.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    backdrop-filter: blur(20px);
    transition: var(--transition-smooth);
}

.section-badge:hover {
    background: var(--bg-card-hover);
    border-color: rgba(8, 156, 248, 0.3);
    box-shadow: var(--shadow-glow);
}

/* Enhanced Button Styles */
.primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-color);
}

.primary-cta::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.6s ease;
}

.primary-cta:hover::before {
    left: 100%;
}

.primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 80px rgba(8, 156, 248, 0.4);
}

.secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
}

.secondary-cta:hover {
    border-color: var(--color-primary);
    background: rgba(8, 156, 248, 0.1);
    transform: translateY(-2px);
}

/* Enhanced Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo-image {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
    transition: var(--transition-smooth);
}

.logo-image:hover {
    filter: brightness(1.3) drop-shadow(0 0 10px rgba(8, 156, 248, 0.3));
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-link {
    color: var(--color-neutral-300);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.75rem 0;
    letter-spacing: 0.02em;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
    border-radius: 2px;
    transform: translateX(-50%);
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(8, 156, 248, 0.1);
    border-radius: 50%;
    transition: var(--transition-smooth);
    transform: translate(-50%, -50%);
    z-index: -1;
}

.nav-link:hover {
    color: white;
    text-shadow: 0 0 10px rgba(8, 156, 248, 0.3);
    transform: translateY(-1px);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover::after {
    width: 120%;
    height: 40px;
}

.nav-link.active {
    color: var(--color-primary);
    font-weight: 600;
}

.nav-link.active::before {
    width: 100%;
    background: var(--color-primary);
}

.cta-btn {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-color);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-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.6s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 60px rgba(8, 156, 248, 0.4);
    filter: brightness(1.1);
}

.cta-btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-color);
}

/* Complementary Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 50%;
    width: 60px;
    height: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: rgba(8, 156, 248, 0.1);
    border: 1px solid rgba(8, 156, 248, 0.2);
    border-radius: var(--radius-xl);
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.section-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8, 156, 248, 0.1), transparent);
    transition: left 1s ease;
}

.section-badge:hover::before {
    left: 100%;
}

.section-subtitle {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    position: relative;
}

.section-title {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 3px;
    opacity: 0.7;
}

.section-description {
    color: var(--color-neutral-400);
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Consistent Button Styling */
.primary-cta {
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    letter-spacing: 0.02em;
}

.secondary-cta {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    color: white;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    backdrop-filter: blur(20px);
    letter-spacing: 0.02em;
}

.secondary-cta:hover {
    border-color: var(--color-primary);
    background: rgba(8, 156, 248, 0.1);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(8, 156, 248, 0.2);
}

/* Mobile Navigation Enhancements */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    padding: 0.75rem;
    background: rgba(8, 156, 248, 0.1);
    border: 1px solid rgba(8, 156, 248, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mobile-menu-toggle:hover {
    background: rgba(8, 156, 248, 0.2);
    border-color: rgba(8, 156, 248, 0.4);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(8, 156, 248, 0.3);
}

.mobile-menu-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-menu-toggle:hover::before {
    left: 100%;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    transform-origin: center;
}

.mobile-menu-toggle.active {
    background: rgba(8, 156, 248, 0.2);
    border-color: rgba(8, 156, 248, 0.5);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background: var(--color-secondary);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background: var(--color-secondary);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        z-index: 1001;
        animation: slideDown 0.3s ease-out;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        padding: 0 2rem;
        margin: 0.5rem 0;
    }
    
    .nav-menu .nav-link {
        color: var(--color-neutral-200);
        font-size: 1.1rem;
        font-weight: 500;
        padding: 0.75rem 0;
        display: block;
        text-align: center;
        transition: all 0.3s ease;
        border-bottom: 1px solid transparent;
    }
    
    .nav-menu .nav-link:hover {
        color: var(--color-primary);
        border-bottom-color: var(--color-primary);
        transform: translateX(5px);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Enhanced mobile cursor and touch behavior */
    .explore-button,
    .primary-cta,
    .secondary-cta,
    .project-cta,
    .nav-link {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        transition: all 0.2s ease;
    }
    
    .explore-button:active,
    .primary-cta:active,
    .secondary-cta:active,
    .project-cta:active {
        transform: scale(0.95);
    }
    
    /* Mobile menu animations */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Hero mobile improvements */
    .hero {
        padding-top: 120px;
        text-align: center;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
    
    /* Services mobile improvements */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    /* Interactive showcase mobile */
    .template-navigator {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .nav-item {
        font-size: 0.85rem;
        padding: 0.75rem 0.5rem;
    }
    
    .template-preview {
        margin: 0 -1rem;
    }
    
    /* Portfolio mobile improvements */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Contact mobile improvements */
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
}

/* Professional Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 180px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.background-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(8, 156, 248, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 156, 248, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridFloat 20s ease-in-out infinite;
}

@keyframes gridFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-25px, -25px); }
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-particles::before,
.floating-particles::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 156, 248, 0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.floating-particles::before {
    top: 20%;
    left: 10%;
    animation-delay: -7s;
}

.floating-particles::after {
    top: 60%;
    right: 10%;
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content {
    max-width: 800px;
    text-align: center;
    z-index: 2;
}

.hero-badge {
    margin-bottom: 2rem;
}

.badge-text {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    backdrop-filter: blur(20px);
}

.hero-title {
    margin-bottom: 2rem;
    font-weight: 700;
}

.title-main {
    display: block;
    color: white;
    margin-bottom: 0.5rem;
}

.title-accent {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-neutral-400);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-neutral-400);
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
}

.hero-ctas {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-arrow {
    transition: var(--transition-smooth);
}

.primary-cta:hover .cta-arrow {
    transform: translateX(4px);
}

/* New Explore Button - Right Corner */
.explore-button-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.explore-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(8, 156, 248, 0.95) 0%, rgba(23, 207, 191, 0.95) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    padding: 1.2rem 2rem;
    color: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 25px rgba(8, 156, 248, 0.4),
        0 0 40px rgba(8, 156, 248, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    min-width: 160px;
}

.explore-button::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.6s ease;
}

.explore-button:hover::before {
    left: 100%;
}

.explore-button:hover {
    transform: translateY(-2px) scale(1.08);
    background: linear-gradient(135deg, rgba(8, 156, 248, 1) 0%, rgba(23, 207, 191, 1) 100%);
    box-shadow: 
        0 20px 50px rgba(8, 156, 248, 0.5),
        0 0 60px rgba(8, 156, 248, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.explore-button:active {
    transform: translateY(2px) scale(1.05);
    transition: all 0.1s ease;
}

.explore-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.explore-button:hover .explore-icon {
    transform: scale(1.15) rotate(45deg);
    background: rgba(8, 156, 248, 0.3);
    box-shadow: 0 0 15px rgba(8, 156, 248, 0.4);
}

.explore-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: compassSpin 3s infinite ease-in-out;
}

@keyframes compassSpin {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(5deg);
    }
    75% {
        transform: rotate(-5deg);
    }
}

.explore-text {
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-size: 0.9rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments for explore button */
@media (max-width: 768px) {
    .explore-button-container {
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    .explore-button {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .explore-icon {
        width: 24px;
        height: 24px;
    }
    
    .explore-text {
        font-size: 0.8rem;
    }
}

.scroll-arrow {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: scrollFloat 2.5s ease-in-out infinite;
}

.arrow-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(8, 156, 248, 0.4) 20%, 
        var(--color-primary) 50%, 
        var(--color-secondary) 80%, 
        transparent 100%);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(8, 156, 248, 0.3);
}

.arrow-line::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(180deg, 
        rgba(23, 207, 191, 0.6) 0%, 
        rgba(8, 156, 248, 0.4) 50%, 
        transparent 100%);
    animation: arrowFlow 2s ease-in-out infinite;
    border-radius: 1px;
    box-shadow: 0 0 10px rgba(23, 207, 191, 0.4);
}

.arrow-point {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--color-secondary);
    margin-top: -1px;
    animation: pointPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(23, 207, 191, 0.5));
    position: relative;
    z-index: 2;
}

.scroll-text {
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.7rem;
    font-family: var(--font-primary);
    background: linear-gradient(45deg, #ffffff, var(--color-primary), var(--color-secondary));
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: textGlow 3s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.2);
}

@keyframes scrollFloat {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(8px); 
    }
}

@keyframes arrowFlow {
    0% { 
        transform: translateY(-20px); 
        opacity: 0; 
    }
    30% { 
        opacity: 1; 
    }
    70% { 
        opacity: 1; 
    }
    100% { 
        transform: translateY(50px); 
        opacity: 0; 
    }
}

@keyframes pointPulse {
    0%, 100% { 
        opacity: 0.8; 
        transform: scale(1); 
        filter: drop-shadow(0 0 8px rgba(23, 207, 191, 0.6));
    }
    50% { 
        opacity: 1; 
        transform: scale(1.15); 
        filter: drop-shadow(0 0 15px rgba(23, 207, 191, 0.9));
    }
}

@keyframes textGlow {
    0%, 100% { 
        background-position: 0% 50%; 
    }
    50% { 
        background-position: 100% 50%; 
    }
}

/* Section Styles */
section {
    padding: var(--section-padding);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

section:nth-child(even) {
    background: var(--bg-secondary);
}

section:nth-child(odd) {
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(8, 156, 248, 0.4);
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* About Section */
.about {
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    z-index: 1;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    transition: gap 0.3s ease, max-width 0.3s ease, padding 0.3s ease;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    transition: var(--transition-smooth), transform 0.3s ease, width 0.3s ease, max-width 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-color);
    border-color: rgba(8, 156, 248, 0.3);
}

.card-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 8px rgba(8, 156, 248, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(8, 156, 248, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(8, 156, 248, 0.2);
}

.card-icon svg {
    color: #089cf8;
    width: 40px;
    height: 40px;
}

.about-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-secondary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.about-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 400;
}

/* Services Section */
/* Professional Services Section */
.services {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.services-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.section-description {
    color: var(--color-neutral-400);
    font-size: 1.125rem;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 1rem;
        padding: 0 0.5rem;
    }
}

.service-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(8, 156, 248, 0.3);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4), 
                0 10px 30px rgba(8, 156, 248, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: white;
    transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(8, 156, 248, 0.4);
}

.service-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-description {
    color: var(--color-neutral-400);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.service-features li {
    color: var(--color-neutral-300);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    color: var(--color-primary);
    font-weight: bold;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(8, 156, 248, 0.1);
    font-size: 0.75rem;
}

.service-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-smooth);
}

.service-link:hover {
    gap: 0.75rem;
    color: white;
}

.service-link::after {
    content: '→';
    transition: var(--transition-smooth);
}

/* Enhanced Interactive Showcase with Realistic Mockups */
.interactive-showcase {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, rgba(10, 10, 10, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.interactive-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 20% 50%, rgba(8, 156, 248, 0.05) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 80%, rgba(23, 207, 191, 0.03) 0%, transparent 50%);
    z-index: 1;
}

.showcase-container {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
}

.template-navigator {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8, 156, 248, 0.1), transparent);
    transition: left 0.6s ease;
}

.nav-item:hover::before {
    left: 100%;
}

.nav-item.active {
    border-color: var(--color-primary);
    background: linear-gradient(135deg, rgba(8, 156, 248, 0.1) 0%, rgba(23, 207, 191, 0.05) 100%);
    box-shadow: 0 10px 40px rgba(8, 156, 248, 0.2);
}

.nav-item:hover {
    transform: translateX(8px);
    border-color: rgba(8, 156, 248, 0.3);
}

.nav-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: white;
}

.nav-item span {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.template-preview-container {
    position: relative;
    height: 700px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
}

.template-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.template-frame.active {
    opacity: 1;
    transform: translateY(0);
}

/* Realistic Website Mockups */
.website-mockup {
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.mockup-browser-bar {
    height: 40px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff5f57;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #28ca42;
}

.address-bar {
    flex: 1;
    height: 24px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-left: 1rem;
    display: flex;
    align-items: center;
    padding: 0 0.75rem;
    font-size: 0.8rem;
    color: #666;
}

.mockup-content {
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* Restaurant Template Mockup */
.restaurant-mockup {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.restaurant-mockup .mockup-header {
    padding: 2rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
}

.restaurant-mockup h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    font-family: serif;
    color: #f39c12;
}

.restaurant-mockup .hero-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

.restaurant-mockup .menu-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding: 2rem;
}

.menu-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.menu-item h3 {
    color: #f39c12;
    margin-bottom: 0.5rem;
}

/* Real Estate Template Mockup */
.realestate-mockup {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.realestate-mockup .mockup-header {
    padding: 2rem;
    text-align: center;
}

.realestate-mockup h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.property-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 2rem;
}

.property-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.property-image {
    height: 120px;
    background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
}

.property-info {
    padding: 1rem;
}

.property-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #4facfe;
}

/* Portfolio Template Mockup */
.portfolio-mockup {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.portfolio-mockup .mockup-header {
    padding: 2rem;
    text-align: center;
}

.portfolio-mockup h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding: 2rem;
}

.portfolio-item-mock {
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.portfolio-item-mock:hover {
    transform: scale(1.05);
}

/* E-commerce Template Mockup */
.ecommerce-mockup {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.ecommerce-mockup .mockup-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.ecommerce-mockup h1 {
    font-size: 1.8rem;
}

.cart-icon {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem;
    border-radius: 4px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 2rem;
}

.product-card-mock {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.product-image-mock {
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
}

.product-details {
    padding: 1rem;
    text-align: center;
}

.product-price-mock {
    font-weight: bold;
    color: #43e97b;
}

/* Interactive Elements */
.interactive-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.interactive-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(8, 156, 248, 0.4);
}

.interactive-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 ease;
}

.interactive-btn:hover::before {
    left: 100%;
}

.template-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: center;
    gap: 1rem;
    z-index: 10;
}

.control-btn {
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(20px);
}

.control-btn:hover {
    background: rgba(8, 156, 248, 0.7);
    border-color: var(--color-primary);
}

.control-btn.active {
    background: var(--gradient-primary);
    border-color: var(--color-primary);
}

/* Portfolio Section - Modern Redesign */
.portfolio {
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--bg-primary) 0%, transparent 100%);
    z-index: 1;
}

.portfolio .container {
    position: relative;
    z-index: 2;
}

.portfolio .section-header {
    text-align: center;
    margin-bottom: 6rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio .section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.portfolio .section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 2px 20px rgba(8, 156, 248, 0.6);
}

.portfolio .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 1.5rem;
}

/* Modern Portfolio Showcase */
.portfolio-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 1200px) {
    .portfolio-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

.modern-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(8, 156, 248, 0.03) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 156, 248, 0.1) 0%, rgba(23, 207, 191, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px;
    z-index: 1;
}

.modern-card:hover::before {
    opacity: 1;
}

.modern-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(8, 156, 248, 0.25);
    border-color: rgba(8, 156, 248, 0.3);
}

/* Project Visual with Browser Mockup */
.project-visual {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.project-mockup {
    width: 100%;
    height: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Project Mockup Background Gradients */
.gradient-1 {
    background: var(--gradient-primary);
}

.gradient-2 {
    background: var(--gradient-secondary);
}

.gradient-3 {
    background: var(--gradient-tertiary);
}

.gradient-4 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

.mockup-screen {
    width: 90%;
    height: 85%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateX(5deg);
    transition: transform 0.4s ease;
}

.modern-card:hover .mockup-screen {
    transform: perspective(1000px) rotateX(0deg);
}

.mockup-browser {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
}

.browser-bar {
    height: 32px;
    background: #e9ecef;
    border-bottom: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff5f57;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #28ca42;
}

.mockup-content {
    padding: 16px;
    height: calc(100% - 32px);
    background: #ffffff;
}

/* Content Previews */
.restaurant-preview .preview-header {
    height: 20px;
    background: linear-gradient(90deg, #089cf8, #17cfbf);
    border-radius: 4px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: white;
    font-weight: 600;
    font-size: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.restaurant-preview .preview-nav {
    height: 8px;
    background: #e9ecef;
    border-radius: 2px;
    margin-bottom: 16px;
    width: 80%;
}

.restaurant-preview .preview-hero {
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ffa500);
    border-radius: 8px;
}

.realty-preview .preview-header {
    height: 20px;
    background: linear-gradient(90deg, #17cfbf, #089cf8);
    border-radius: 4px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: white;
    font-weight: 600;
    font-size: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.realty-preview .preview-nav {
    height: 8px;
    background: #e9ecef;
    border-radius: 2px;
    margin-bottom: 16px;
    width: 70%;
}

.realty-preview .preview-properties {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.realty-preview .property-card {
    height: 60px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
}

.bakery-preview .preview-header {
    height: 20px;
    background: linear-gradient(90deg, #ff9a9e, #fecfef);
    border-radius: 4px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: white;
    font-weight: 600;
    font-size: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.bakery-preview .preview-nav {
    height: 8px;
    background: #e9ecef;
    border-radius: 2px;
    margin-bottom: 16px;
    width: 60%;
}

.bakery-preview .preview-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.bakery-preview .gallery-item {
    height: 40px;
    background: linear-gradient(135deg, #ffeaa7, #fab1a0);
    border-radius: 4px;
}

/* Fitness Preview - Fourth Project */
.fitness-preview .preview-header {
    height: 20px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 4px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: white;
    font-weight: 600;
    font-size: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.fitness-preview .preview-nav {
    height: 8px;
    background: #e9ecef;
    border-radius: 2px;
    margin-bottom: 16px;
    width: 65%;
}

.fitness-preview .preview-dashboard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 6px;
    height: 80px;
}

.fitness-preview .dashboard-widget {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    height: 35px;
}

.fitness-preview .dashboard-chart {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 4px;
    height: 35px;
}

/* Project Overlay with Stats */
.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(8, 156, 248, 0.9) 0%, rgba(23, 207, 191, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 24px 24px 0 0;
}

.modern-card:hover .project-overlay {
    opacity: 1;
}

.project-stats {
    display: flex;
    gap: 3rem;
    text-align: center;
}

.stat {
    display: flex;
    flex-direction: column;
    color: white;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Project Details */
.project-details {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.project-category {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.project-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.project-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.feature-tag {
    background: rgba(8, 156, 248, 0.2);
    color: var(--color-primary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(8, 156, 248, 0.3);
}

.project-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    width: fit-content;
}

.project-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(8, 156, 248, 0.4);
}

.project-cta svg {
    transition: transform 0.3s ease;
}

.project-cta:hover svg {
    transform: translateX(2px);
}

/* Responsive Design for Portfolio */
@media (max-width: 768px) {
    .portfolio-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .modern-card {
        max-width: 100%;
    }
    
    .project-stats {
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Old portfolio styles removed - replaced with modern design above */

/* Contact Section */
.contact {
    background: var(--bg-secondary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    transition: gap 0.3s ease, max-width 0.3s ease, padding 0.3s ease;
}

.contact-text .section-title,
.contact-text .section-subtitle {
    text-align: left;
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: var(--color-secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form input,
.form textarea,
.form select {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: white;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form input:focus,
.form textarea:focus,
.form select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(255, 255, 255, 0.15);
}

.form input::placeholder,
.form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form select option {
    background: var(--bg-primary);
    color: white;
}

.submit-btn {
    width: 100%;
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

/* Form Status Messages */
.form-status {
    margin-top: 1rem;
    display: none;
}

.success-message,
.error-message {
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    animation: slideInUp 0.5s ease-out;
}

.success-message {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.error-message {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.success-message h3,
.error-message h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.success-message p,
.error-message p {
    margin: 0;
    opacity: 0.9;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
.footer {
    background: var(--bg-primary);
    padding: 1.5rem 0 0.5rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    z-index: 1;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 1.5rem;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section h3 {
    color: var(--color-text-primary);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section a:hover {
    color: var(--color-primary);
}

.footer-contact {
    margin-top: 0.75rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0.25rem 0;
    font-size: 0.95rem;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

div.footer-links {
    display: flex;
    gap: 2rem;
}

div.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

div.footer-links a:hover {
    color: var(--color-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
/* Large tablets and small laptops (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content {
        gap: 3rem;
        max-width: 95%;
    }
    
    .about-grid,
    .services-grid,
    .portfolio-grid {
        max-width: 90%;
        padding: 0 1rem;
    }
    
    .contact-content {
        max-width: 90%;
        gap: 3rem;
    }
    
    .service-card {
        max-width: 400px;
    }
    
    .about-card {
        max-width: 350px;
    }
}

/* Tablet styles (768px and below) */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: var(--container-padding);
        max-width: 100%;
    }
    
    .hero-title .title-line {
        text-align: center;
    }
    
    .hero-subtitle {
        text-align: center;
        margin: 0 auto 3rem auto;
        max-width: 90%;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    div.footer-links {
        flex-wrap: nowrap;
        justify-content: center;
        gap: -0.5rem;
        max-width: 100%;
        line-height: 1.8;
        display: flex;
        flex-direction: row;
        overflow: visible;
    }
    
    div.footer-links a {
        font-size: 0.9rem;
        display: inline-block;
        padding: 0.4rem 0.8rem;
        text-align: center;
        white-space: nowrap;
        background: rgba(3, 17, 39, 0.8);
        border-radius: 15px;
        margin: 0 -0.3rem;
        position: relative;
        z-index: 1;
        transition: all 0.3s ease;
    }
    
    div.footer-links a:hover {
        z-index: 10;
        transform: scale(1.05);
        background: rgba(8, 156, 248, 0.2);
        box-shadow: 0 4px 15px rgba(8, 156, 248, 0.3);
    }
    
    .footer-logo p {
        max-width: 300px;
        margin: 0.5rem auto 0 auto;
        line-height: 1.6;
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        font-size: 0.9rem;
        padding-top: 1.5rem;
    }
    
    .hero-ctas {
        justify-content: center;
        align-items: center;
        gap: 1rem;
        flex-direction: column;
        width: 100%;
    }
    
    .primary-cta, .secondary-cta {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 2rem;
        text-align: center;
    }

    /* Enhanced Mobile Features */
    /* Disable cursor effects on mobile */
    .cursor-light,
    .cursor-light-secondary,
    .cursor-glow {
        display: none;
    }

    /* Interactive Showcase mobile */
    .interactive-showcase {
        padding: 5rem 0;
    }

    .showcase-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .template-navigator {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        position: static;
        order: 2;
    }

    .nav-item {
        padding: 1rem;
        text-align: center;
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-item span {
        font-size: 0.9rem;
    }

    .nav-icon {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }

    .template-preview-container {
        height: 500px;
        order: 1;
    }

    .website-mockup {
        font-size: 0.85rem;
    }

    .mockup-header h1 {
        font-size: 1.8rem !important;
    }

    .menu-preview,
    .property-grid,
    .portfolio-grid,
    .products-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 1rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .template-controls {
        bottom: 10px;
        left: 10px;
        right: 10px;
        gap: 0.5rem;
    }

    .control-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    /* About Section Mobile */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .about-card {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .about-card h3 {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .about-card p {
        text-align: center;
        line-height: 1.6;
    }
    
    /* Services Section Mobile */
    .services .container {
        padding: var(--section-padding) 1rem;
        min-height: auto;
    }
    
    .services-showcase {
        gap: 2rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 2rem;
        text-align: center;
    }
    
    .service-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .service-item:nth-child(even) .service-icon,
    .service-item:nth-child(even) .service-content {
        order: unset;
    }
    
    .service-icon {
        justify-self: center;
        margin: 0 auto;
    }
    
    .service-content {
        text-align: center;
        align-items: center;
    }
    
    .service-badge {
        align-self: center;
    }
    
    .service-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .service-description {
        text-align: center;
        max-width: 100%;
    }
    
    .service-features {
        justify-content: center;
    }
    
    .learn-more-btn {
        align-self: center;
    }
    
    /* Portfolio Section Mobile */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        justify-items: center;
        max-width: 600px;
        margin: 0 auto;
        padding: 0 1rem;
    }
    
    .portfolio-item {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    
    .project-info {
        text-align: center;
        padding: 1.5rem;
    }
    
    .project-info h3 {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .project-info p {
        text-align: center;
        margin-bottom: 0;
    }
    
    /* Contact Section Mobile */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .contact-text {
        text-align: center;
    }
    
    .contact-text .section-title,
    .contact-text .section-subtitle {
        text-align: center;
    }
    
    .contact-info {
        text-align: center;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .contact-item {
        text-align: center;
    }
    
    .form {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form input,
    .form textarea,
    .form select {
        width: 100%;
        text-align: left;
        padding: 1rem 1.5rem;
    }
    
    .submit-btn {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }
}

@media (max-width: 480px) {
    /* Hero Section Small Mobile */
    .hero-content {
        gap: 2rem;
        padding: 1rem;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 7vw, 4rem);
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        text-align: center;
        max-width: 95%;
    }
    
    .primary-cta, .secondary-cta {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* About Section Small Mobile */
    .about-grid {
        max-width: 100%;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .about-card {
        max-width: 100%;
        padding: 1.5rem 1rem;
        text-align: center;
    }
    
    .about-card h3 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .about-card p {
        font-size: 0.95rem;
        text-align: center;
        line-height: 1.6;
    }
    
    /* Services Section Small Mobile */
    .services .container {
        padding: var(--section-padding) 0.5rem;
        min-height: auto;
    }
    
    .services-showcase {
        gap: 1.5rem;
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .service-item {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .service-icon {
        width: 100px;
        height: 100px;
    }
    
    .icon-wrapper {
        width: 80px;
        height: 80px;
        border-radius: 20px;
    }
    
    .service-emoji {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .feature-tag {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .learn-more-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Portfolio Section Small Mobile */
    .portfolio-grid {
        max-width: 100%;
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .portfolio-item {
        max-width: 100%;
    }
    
    .project-info {
        text-align: center;
        padding: 1rem;
    }
    
    .project-info h3 {
        font-size: 1.2rem;
        text-align: center;
    }
    
    .project-info p {
        font-size: 0.9rem;
        text-align: center;
    }
    
    /* Contact Section Small Mobile */
    .contact-content {
        gap: 2rem;
        padding: 0 0.5rem;
    }
    
    .contact-text .section-title {
        font-size: clamp(2rem, 6vw, 3rem);
        text-align: center;
    }
    
    .contact-text .section-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .form input,
    .form textarea,
    .form select {
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
    }
    
    .submit-btn {
        width: 100%;
        max-width: 260px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Footer Section Small Mobile */
    div.footer-links {
        flex-wrap: nowrap;
        justify-content: center;
        gap: -0.8rem;
        max-width: 100%;
        line-height: 1.6;
        overflow: visible;
    }
    
    div.footer-links a {
        font-size: 0.8rem;
        display: inline-block;
        padding: 0.3rem 0.6rem;
        text-align: center;
        background: rgba(3, 17, 39, 0.9);
        border-radius: 12px;
        margin: 0 -0.4rem;
        position: relative;
        z-index: 1;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    div.footer-links a:hover {
        z-index: 10;
        transform: scale(1.1);
        background: rgba(8, 156, 248, 0.3);
        box-shadow: 0 4px 12px rgba(8, 156, 248, 0.4);
    }
    
    .footer-bottom {
        padding-top: 1.2rem;
        font-size: 0.8rem;
    }
    
    .footer-logo p {
        font-size: 0.85rem;
        max-width: 260px;
        margin: 0.5rem auto 0 auto;
        line-height: 1.4;
    }
    
    .footer {
        padding: 1.5rem 0 0.5rem;
    }
}

/* Animation Classes */
.reveal-text {
    opacity: 0;
    transform: translateY(50px);
}

.slide-in {
    opacity: 0;
    transform: translateX(-50px);
}

.fade-in {
    opacity: 0;
}

/* Very Small Mobile Phones (320px and below) */
@media (max-width: 320px) {
    div.footer-links {
        gap: -1rem;
        flex-wrap: nowrap;
        justify-content: center;
        overflow: visible;
    }
    
    div.footer-links a {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
        margin: 0 -0.5rem;
        background: rgba(3, 17, 39, 0.95);
        border-radius: 10px;
        position: relative;
        z-index: 1;
        transition: all 0.3s ease;
    }
    
    div.footer-links a:hover {
        z-index: 10;
        transform: scale(1.15);
        background: rgba(8, 156, 248, 0.4);
        box-shadow: 0 4px 10px rgba(8, 156, 248, 0.5);
    }
    
    .footer-logo p {
        font-size: 0.8rem;
        max-width: 240px;
        line-height: 1.3;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 1rem;
    }
    
    .footer {
        padding: 1.2rem 0 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-main {
        text-align: center;
    }
    
    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-section li {
        margin-bottom: 0;
    }
}

/* Mobile Portrait Orientation - Extra narrow screens */
@media (max-width: 480px) and (orientation: portrait) {
    div.footer-links {
        flex-direction: row;
        gap: -0.6rem;
        align-items: center;
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap;
        overflow: visible;
    }
    
    div.footer-links a {
        font-size: 0.85rem;
        padding: 0.4rem 0.7rem;
        text-align: center;
        margin: 0 -0.3rem;
        background: rgba(3, 17, 39, 0.85);
        border-radius: 12px;
        position: relative;
        z-index: 1;
        transition: all 0.3s ease;
    }
    
    div.footer-links a:hover {
        z-index: 10;
        transform: scale(1.08);
        background: rgba(8, 156, 248, 0.25);
        box-shadow: 0 4px 12px rgba(8, 156, 248, 0.35);
    }
    
    .footer-content {
        padding: 0 1rem;
        gap: 1.2rem;
    }
    
    .footer-logo p {
        max-width: 280px;
        text-align: center;
    }
}

/* Extra Small Mobile (375px and below) */
@media (max-width: 375px) {
    div.footer-links {
        flex-direction: row;
        gap: -0.8rem;
        align-items: center;
        justify-content: center;
        flex-wrap: nowrap;
        overflow: visible;
    }
    
    div.footer-links a {
        font-size: 0.75rem;
        padding: 0.3rem 0.5rem;
        margin: 0 -0.4rem;
        background: rgba(3, 17, 39, 0.9);
        border-radius: 10px;
        position: relative;
        z-index: 1;
        transition: all 0.3s ease;
    }
    
    div.footer-links a:hover {
        z-index: 10;
        transform: scale(1.12);
        background: rgba(8, 156, 248, 0.35);
        box-shadow: 0 4px 10px rgba(8, 156, 248, 0.4);
    }
    
    .footer-bottom {
        font-size: 0.8rem;
        padding: 1rem 0.5rem 0 0.5rem;
    }
    
    .footer {
        padding: 1.2rem 0.5rem 0.5rem 0.5rem;
    }
}

/* Premium Cursor Effects */
.cursor-light {
    position: fixed;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(8, 156, 248, 0.12) 0%, rgba(8, 156, 248, 0.06) 30%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transition: transform 0.1s ease-out;
    mix-blend-mode: screen;
}

.cursor-light-secondary {
    position: fixed;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(23, 207, 191, 0.1) 0%, rgba(23, 207, 191, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transition: transform 0.15s ease-out;
    mix-blend-mode: screen;
}

.cursor-glow {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(8, 156, 248, 0.3) 0%, rgba(8, 156, 248, 0.15) 50%, transparent 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    transition: transform 0.05s ease-out;
    mix-blend-mode: screen;
}

/* Enhanced Hero Background with Light Interaction */
.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(8, 156, 248, 0.1) 0%, 
                rgba(8, 156, 248, 0.05) 30%, 
                transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.hero-background:hover::before {
    opacity: 1;
}

/* Premium Cursor Effects */
.cursor-light {
    position: fixed;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #089cf8 0%, #17cfbf 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: normal;
    opacity: 1;
    transition: opacity 0.3s ease, transform 0.1s ease, background 0.3s ease;
    box-shadow: 
        0 0 20px #089cf8,
        0 0 40px #17cfbf,
        0 0 60px #089cf8,
        inset 0 0 10px rgba(255, 255, 255, 0.5);
    border: 2px solid #ffffff;
}

.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #17cfbf 0%, #089cf8 100%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9997;
    mix-blend-mode: normal;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    box-shadow: 
        0 0 15px #17cfbf,
        0 0 30px #089cf8;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

/* Force cursor visibility on desktop */
@media (min-width: 1024px) {
    body {
        cursor: none !important;
    }
    
    body *, a, button, .service-card, .portfolio-item, .about-card, input, textarea, select, .flip-card {
        cursor: none !important;
    }
    
    .cursor-light, .cursor-trail {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Show default cursor on mobile and tablets */
@media (max-width: 1023px) {
    .cursor-light,
    .cursor-trail {
        display: none !important;
    }
    
    body, body *, a, button, .service-card, .portfolio-item, .about-card, input, textarea, select, .flip-card {
        cursor: default !important;
    }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    z-index: 9999;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(8, 156, 248, 0.5);
    animation: gradient-shift 3s infinite alternate;
}

/* Right Side Scroll Bar */
.scroll-bar-right {
    position: fixed;
    top: 0;
    right: 0;
    width: 4px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.1);
    z-index: 9998;
}

.scroll-bar-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--gradient-primary);
    background-size: 200% 200%;
    transition: height 0.3s ease;
    box-shadow: 0 0 15px rgba(8, 156, 248, 0.6);
    border-radius: 2px;
    animation: gradient-shift 3s infinite alternate;
}

/* Gradient Animation for Scroll Bars */
@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 10px rgba(8, 156, 248, 0.5);
    }
    50% {
        box-shadow: 0 0 15px rgba(23, 207, 191, 0.6);
    }
    100% {
        background-position: 100% 50%;
        box-shadow: 0 0 12px rgba(7, 209, 183, 0.55);
    }
}

/* Enhanced Mini Website Template Styles */
.mini-website {
    display: none;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    font-family: var(--font-secondary);
    position: relative;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.4s ease;
}

.mini-website.active {
    display: block;
    transform: scale(1);
    opacity: 1;
}

.mini-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, var(--primary-color, #2c3e50) 0%, rgba(0,0,0,0.8) 100%);
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.mini-logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.mini-menu {
    display: flex;
    gap: 2rem;
}

.mini-menu span {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    position: relative;
}

.mini-menu span:hover {
    color: white;
    background: rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

.mini-hero {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color, #2c3e50) 0%, var(--accent-color, #f39c12) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.mini-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
}

.mini-hero h1 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.mini-hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.mini-cta {
    padding: 0.8rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mini-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.mini-content {
    padding: 2rem;
    background: #f8f9fa;
    min-height: 200px;
}

.menu-grid,
.property-grid,
.portfolio-grid,
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.menu-item,
.property-item,
.portfolio-item,
.product-item {
    padding: 1.2rem;
    background: white;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.menu-item::before,
.property-item::before,
.portfolio-item::before,
.product-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-color-rgb, 243, 156, 18), 0.1), transparent);
    transition: left 0.6s ease;
}

.menu-item:hover::before,
.property-item:hover::before,
.portfolio-item:hover::before,
.product-item:hover::before {
    left: 100%;
}

.menu-item:hover,
.property-item:hover,
.portfolio-item:hover,
.product-item:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--accent-color, #f39c12);
}

.menu-item h4,
.property-item h4,
.portfolio-item h4,
.product-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.menu-item p,
.property-item p,
.portfolio-item p,
.product-item p {
    font-size: 0.85rem;
    color: var(--accent-color, #f39c12);
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Template-specific color schemes */
.mini-website[data-template="restaurant"] {
    --primary-color: #2c3e50;
    --accent-color: #f39c12;
    --secondary-color: #e74c3c;
}

.mini-website[data-template="realestate"] {
    --primary-color: #3498db;
    --accent-color: #2ecc71;
    --secondary-color: #95a5a6;
}

.mini-website[data-template="portfolio"] {
    --primary-color: #9b59b6;
    --accent-color: #e67e22;
    --secondary-color: #34495e;
}

.mini-website[data-template="ecommerce"] {
    --primary-color: #27ae60;
    --accent-color: #f39c12;
    --secondary-color: #e74c3c;
}

/* Responsive mini templates */
@media (max-width: 768px) {
    .menu-grid,
    .property-grid,
    .portfolio-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .mini-hero {
        padding: 1rem;
    }
    
    .mini-hero h1 {
        font-size: 1.2rem;
    }
    
    .mini-content {
        padding: 1rem;
    }
}

/* Portfolio Section - Classic Flip Cards */
.portfolio {
    padding: 8rem 0;
    background: var(--color-bg-secondary);
}

.portfolio .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.portfolio-item.flip-card {
    perspective: 1000px;
    height: 400px;
}

.portfolio-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.portfolio-item.flip-card:hover .portfolio-card {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-back {
    transform: rotateY(180deg);
    background: var(--color-bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.card-front .project-image {
    width: 100%;
    height: 60%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.card-front .project-image.gradient-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-front .project-image.gradient-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-front .project-image.gradient-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.card-front .project-info {
    padding: 2rem;
    background: var(--color-bg-secondary);
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card-front .project-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.card-front .project-info p {
    color: var(--color-neutral-400);
    font-size: 1rem;
}

.card-back h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-back p {
    color: var(--color-neutral-300);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.tech-stack span {
    padding: 0.25rem 0.75rem;
    background: rgba(8, 156, 248, 0.2);
    border: 1px solid rgba(8, 156, 248, 0.3);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--color-primary);
}

.view-project {
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.view-project:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(8, 156, 248, 0.4);
}

/* ================================
   Page-Specific Styles
   ================================ */

/* Page Headers */
.page-header {
    padding: 120px 0 80px;
    background: var(--bg-secondary);
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(8, 156, 248, 0.3) 0%, rgba(8, 156, 248, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pageGlow 4s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes pageGlow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
        filter: blur(40px);
    }
    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.1);
        filter: blur(20px);
    }
    100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
        filter: blur(30px);
    }
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    position: relative;
    z-index: 2;
    animation: titleSlideIn 1s ease-out;
    text-shadow: 0 0 30px rgba(8, 156, 248, 0.5);
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 100px;
    height: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(8, 156, 248, 0.6);
    animation: underlineGlow 2s ease-in-out infinite alternate;
}

@keyframes titleSlideIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes underlineGlow {
    0% {
        box-shadow: 0 0 20px rgba(8, 156, 248, 0.6);
    }
    100% {
        box-shadow: 0 0 30px rgba(8, 156, 248, 0.9);
    }
}

@keyframes subtitleFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--color-neutral-300);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 2;
    animation: subtitleFadeIn 1.2s ease-out 0.3s both;
}

/* Active Navigation State */
.nav-link.active {
    color: var(--color-primary);
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

/* Page-loaded state for consistent styling */
.page-loaded .nav {
    opacity: 1;
    transform: translateY(0);
}

.page-loaded .page-header {
    opacity: 1;
}

/* About Page Specific Styles */
.our-story {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-neutral-300);
    margin-bottom: 1.5rem;
}

.story-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--color-neutral-400);
    font-size: 0.9rem;
}

/* Team Section */
.team {
    padding: var(--section-padding);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(8, 156, 248, 0.3);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-avatar {
    font-size: 3rem;
}

.member-role {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--color-neutral-400);
    line-height: 1.6;
}

/* Services Page Specific Styles */
.detailed-services {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content ul {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.service-content li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-neutral-300);
}

.service-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.service-visual {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-preview, .design-preview, .analytics-preview {
    width: 100%;
    max-width: 400px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-lg);
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.code-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.code-dots {
    display: flex;
    gap: 0.5rem;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-neutral-500);
}

.code-line {
    font-family: var(--font-mono);
    font-size: 0.9rem;
    color: var(--color-neutral-300);
    margin-bottom: 0.5rem;
}

.keyword { color: #ff79c6; }
.function { color: #50fa7b; }
.string { color: #f1fa8c; }
.number { color: #bd93f9; }
.method { color: #8be9fd; }

/* Search in Design Animation */
.search-in-action {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: searchPulse 2s ease-in-out infinite;
}

@keyframes searchPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.design-canvas {
    position: relative;
    height: 120px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.canvas-element {
    position: absolute;
    border-radius: 4px;
}

.canvas-element.rect {
    width: 40px;
    height: 25px;
    background: rgba(8, 156, 248, 0.3);
    top: 20px;
    left: 20px;
}

.canvas-element.circle {
    width: 30px;
    height: 30px;
    background: rgba(23, 207, 191, 0.3);
    border-radius: 50%;
    top: 60px;
    right: 30px;
}

/* Process Section */
.process-section {
    padding: var(--section-padding);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1.5rem;
}

/* Portfolio Page Specific Styles */
.portfolio-stats {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(8, 156, 248, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: rgba(8, 156, 248, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(8, 156, 248, 0.2);
}

.stat-icon svg {
    color: #089cf8;
    width: 32px;
    height: 32px;
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

/* Technologies Section */
.technologies {
    padding: var(--section-padding);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tech-category {
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.tech-category h3 {
    color: var(--color-primary);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-tag {
    padding: 0.5rem 1rem;
    background: rgba(8, 156, 248, 0.1);
    border: 1px solid rgba(8, 156, 248, 0.2);
    border-radius: var(--radius-sm);
    color: var(--color-neutral-300);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.tech-tag:hover {
    background: rgba(8, 156, 248, 0.2);
    border-color: rgba(8, 156, 248, 0.3);
    color: var(--color-primary);
}

/* Contact Page Specific Styles */
.contact-methods {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.method-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.method-card:hover {
    transform: translateY(-5px);
    border-color: rgba(8, 156, 248, 0.3);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.method-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.method-link:hover {
    color: var(--color-secondary);
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    padding: 2rem;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(8, 156, 248, 0.3);
}

.faq-item h3 {
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--color-neutral-300);
    line-height: 1.6;
}

/* Process Preview */
.process-preview {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

/* Responsive Design for New Pages */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .story-content,
    .service-detail {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail.reverse {
        direction: ltr;
    }
    
    .stats-grid,
    .methods-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS FOR LOW-END PCs
   ======================================== */

/* Respect user's motion preferences */
@media (prefers-reduced-motion: reduce) {
    :root {
        --reduced-motion: 1;
    }
    
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    /* Disable cursor effects */
    .cursor-light,
    .cursor-light-secondary,
    .cursor-glow {
        display: none !important;
    }
    
    /* Disable parallax effects */
    .parallax-bg {
        transform: none !important;
    }
    
    /* Simplify animations */
    .hero-title .title-line,
    .hero-subtitle,
    .service-card,
    .portfolio-item {
        animation: none !important;
        transform: none !important;
    }
}

/* Low-performance device detection (rough estimate) */
@media (max-width: 768px) and (max-resolution: 1.5dppx) {
    /* Disable heavy effects on lower-end mobile devices */
    .cursor-light,
    .cursor-light-secondary,
    .cursor-glow {
        display: none;
    }
    
    /* Reduce gradient complexity */
    .hero-background::before,
    .hero-background::after {
        display: none;
    }
    
    /* Disable text animations */
    .typing-effect {
        animation: none;
    }
    
    /* Reduce box shadows */
    .service-card,
    .portfolio-item,
    .cta-btn {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    }
}

/* Performance mode class for manual activation */
.performance-mode .cursor-light,
.performance-mode .cursor-light-secondary,
.performance-mode .cursor-glow {
    display: none !important;
}

/* Ensure intro overlay is NEVER hidden by performance mode */
.performance-mode #intro-overlay {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.performance-mode .hero-background::before,
.performance-mode .hero-background::after {
    display: none !important;
}

.performance-mode * {
    animation-duration: 0.2s !important;
    transition-duration: 0.2s !important;
}

.performance-mode .parallax-bg {
    transform: none !important;
}

.performance-mode .service-card,
.performance-mode .portfolio-item {
    transform: none !important;
}

/* Force GPU acceleration for smoother animations on capable devices */
@media (min-width: 1024px) and (min-resolution: 2dppx) {
    .hero-title,
    .service-card,
    .portfolio-item,
    .cta-btn {
        will-change: transform;
        transform: translateZ(0);
    }
}

/* Optimize for very low-end devices */
@media (max-width: 480px) and (max-resolution: 1dppx) {
    /* Remove all non-essential animations */
    * {
        animation: none !important;
        transition: opacity 0.2s ease !important;
    }
    
    /* Disable cursor effects completely */
    .cursor-light,
    .cursor-light-secondary,
    .cursor-glow {
        display: none !important;
    }
    
    /* Simplify background effects */
    .hero-background,
    .section-background {
        background: var(--bg-primary) !important;
    }
    
    /* Reduce visual complexity */
    .gradient-border,
    .animated-border {
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        background: none !important;
    }
}