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

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #06b6d4;
    --accent-color: #f43f5e;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --dark-lighter: #334155;
    --gray: #64748b;
    --gray-light: #cbd5e1;
    --light: #f8fafc;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-mesh: radial-gradient(at 0% 0%, #667eea 0px, transparent 50%),
                     radial-gradient(at 100% 0%, #764ba2 0px, transparent 50%),
                     radial-gradient(at 100% 100%, #f093fb 0px, transparent 50%),
                     radial-gradient(at 0% 100%, #4facfe 0px, transparent 50%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-2xl: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(102, 126, 234, 0.4);
    --shadow-glow-lg: 0 0 40px rgba(102, 126, 234, 0.6);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body {
    font-family: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
}

.logo-image {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(99, 102, 241, 0.5));
    transition: var(--transition);
    animation: logoFloat 3s ease-in-out infinite;
    mix-blend-mode: normal;
    opacity: 1;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px;
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
        filter: drop-shadow(0 4px 15px rgba(99, 102, 241, 0.5));
    }
    50% { 
        transform: translateY(-4px) rotate(2deg);
        filter: drop-shadow(0 8px 20px rgba(99, 102, 241, 0.7));
    }
}

.logo-image:hover {
    transform: scale(1.1) rotate(8deg);
    filter: drop-shadow(0 10px 30px rgba(99, 102, 241, 0.9));
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.brand-name {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #1f2937;
    letter-spacing: 0.5px;
    line-height: 1.2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.brand-tagline {
    font-size: 0.7rem;
    color: #4b5563;
    font-family: 'Space Grotesk', monospace;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
}

.nav-brand h2 {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.nav-brand h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 10px;
    opacity: 0.3;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 10px;
}

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: var(--transition);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

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

/* Hero Background Logo */
.hero-background-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    overflow: hidden;
}

.bg-logo {
    width: 80%;
    max-width: 1200px;
    height: auto;
    opacity: 0.08;
    filter: blur(2px) brightness(1.2);
    animation: bgLogoFloat 8s ease-in-out infinite;
    mix-blend-mode: screen;
}

@keyframes bgLogoFloat {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
        opacity: 0.08;
    }
    50% { 
        transform: scale(1.05) rotate(2deg);
        opacity: 0.12;
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(99, 102, 241, 0.03) 2px, rgba(99, 102, 241, 0.03) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(99, 102, 241, 0.03) 2px, rgba(99, 102, 241, 0.03) 4px);
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

/* Hero Image Styles */
.hero-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    position: relative;
    width: 450px;
    height: 450px;
    animation: floatImage 6s ease-in-out infinite;
}

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

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4),
                0 0 0 15px rgba(99, 102, 241, 0.1),
                inset 0 0 100px rgba(99, 102, 241, 0.1);
    filter: brightness(1.05) contrast(1.1);
    animation: morphShape 10s ease-in-out infinite;
}

@keyframes morphShape {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    25% { border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%; }
    50% { border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%; }
    75% { border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%; }
}

.image-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at 50% 50%, 
        rgba(99, 102, 241, 0.4) 0%, 
        rgba(139, 92, 246, 0.3) 30%,
        transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0.8;
    }
}

.image-border {
    position: absolute;
    inset: -10px;
    background: linear-gradient(45deg, 
        #667eea 0%, 
        #764ba2 25%, 
        #f093fb 50%, 
        #4facfe 75%, 
        #667eea 100%);
    background-size: 300% 300%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: 1;
    animation: morphShape 10s ease-in-out infinite, gradientRotate 8s linear infinite;
    filter: blur(2px);
}

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

.image-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(16, 185, 129, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    z-index: 3;
    animation: badgeBounce 3s ease-in-out infinite;
}

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

.image-badge svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.floating-stats {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    z-index: 3;
}

.stat-item-float {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    animation: statFloat 4s ease-in-out infinite;
}

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

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

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

.stat-item-float:hover {
    transform: translateY(-5px) scale(1.05);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.stat-number-float {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.stat-label-float {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.3rem;
    font-weight: 500;
}

.hero-text {
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 0.7rem 2rem;
    background: rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    color: var(--white);
    font-family: 'Space Grotesk', monospace;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border: 2px solid rgba(99, 102, 241, 0.4);
    box-shadow: 0 8px 32px 0 rgba(99, 102, 241, 0.3),
                inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
    animation: badgePulse 3s ease-in-out infinite, badgeFloat 4s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.badge-text {
    position: relative;
    z-index: 2;
}

.badge-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { 
        box-shadow: 0 8px 32px 0 rgba(99, 102, 241, 0.3),
                    inset 0 1px 0 0 rgba(255, 255, 255, 0.1);
        border-color: rgba(99, 102, 241, 0.4);
    }
    50% { 
        box-shadow: 0 12px 40px 0 rgba(99, 102, 241, 0.5),
                    inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
        border-color: rgba(99, 102, 241, 0.6);
    }
}

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

@keyframes badgeShine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.title-line {
    font-family: 'Playfair Display', serif;
    font-size: 0.4em;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeSlideRight 1s ease-out;
    display: block;
}

.programmer-badge {
    position: relative;
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 200% auto;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #ffffff !important;
    box-shadow: 
        0 15px 50px rgba(102, 126, 234, 0.6),
        0 0 0 4px rgba(255, 255, 255, 0.15),
        inset 0 0 25px rgba(255, 255, 255, 0.25);
    animation: 
        fadeSlideRight 1s ease-out,
        gradientShift 3s ease infinite,
        pulseGlowBadge 2.5s ease-in-out infinite;
    margin-bottom: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    font-family: 'Space Grotesk', monospace;
}

.programmer-badge::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #4facfe, #667eea);
    background-size: 400% 400%;
    border-radius: 50px;
    z-index: -1;
    filter: blur(20px);
    opacity: 0.8;
    animation: gradientRotate 5s ease infinite;
}

.programmer-badge::after {
    content: '</>';
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: #4facfe;
    font-weight: 900;
    animation: codeFlicker 2s ease-in-out infinite;
    text-shadow: 0 0 20px rgba(79, 172, 254, 0.8);
}

@keyframes pulseGlowBadge {
    0%, 100% {
        box-shadow: 
            0 15px 50px rgba(102, 126, 234, 0.6),
            0 0 0 4px rgba(255, 255, 255, 0.15),
            inset 0 0 25px rgba(255, 255, 255, 0.25);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 20px 70px rgba(102, 126, 234, 0.9),
            0 0 0 6px rgba(255, 255, 255, 0.25),
            inset 0 0 35px rgba(255, 255, 255, 0.35);
        transform: scale(1.03);
    }
}

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

@keyframes codeFlicker {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
        text-shadow: 0 0 20px rgba(79, 172, 254, 0.8);
    }
    50% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1.15);
        text-shadow: 0 0 30px rgba(79, 172, 254, 1);
    }
}

.title-name {
    font-family: 'Playfair Display', serif;
    font-size: 1em;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeSlideUp 1s ease-out 0.2s backwards;
    display: block;
    position: relative;
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.5);
}

.title-name::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.8;
}

.title-underline {
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
    border-radius: 10px;
    animation: underlineGrow 1.5s ease-out 0.5s forwards;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.8);
}

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

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

@keyframes underlineGrow {
    from { width: 0; }
    to { width: 200px; }
}

.hero-subtitle {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.subtitle-word {
    display: inline-block;
    animation: wordFadeIn 0.6s ease-out backwards;
    transition: all 0.3s ease;
}

.subtitle-word:nth-child(1) { animation-delay: 0.6s; }
.subtitle-word:nth-child(2) { animation-delay: 0.7s; }
.subtitle-word:nth-child(3) { animation-delay: 0.8s; }
.subtitle-word:nth-child(4) { animation-delay: 0.9s; }

.subtitle-word:hover {
    color: #fff;
    transform: translateY(-3px);
    text-shadow: 0 5px 15px rgba(255, 255, 255, 0.4);
}

@keyframes wordFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.highlight {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 50%, #fbbf24 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    animation: gradientFlow 3s ease infinite, wordFadeIn 0.6s ease-out 1s backwards;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 30px rgba(79, 172, 254, 0.5);
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4facfe, #00f2fe, #fbbf24);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(79, 172, 254, 0.6);
}

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

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 1.2s backwards;
    max-width: 700px;
}

.hero-description strong {
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-domain {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(99, 102, 241, 0.4);
    border-radius: 50px;
    margin-bottom: 2rem;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out 1.3s backwards;
}

.hero-domain:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(99, 102, 241, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.hero-domain svg {
    color: #4facfe;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

.hero-domain a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Space Grotesk', monospace;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.hero-domain a:hover {
    color: #4facfe;
    text-shadow: 0 0 20px rgba(79, 172, 254, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 1.4s backwards;
}

.btn {
    padding: 1.2rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    overflow: hidden;
}

.btn-text {
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.btn-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn:hover .btn-text {
    transform: translateX(-3px);
}

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

.btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    background-size: 200% auto;
    color: var(--white);
    box-shadow: 0 15px 35px -5px rgba(99, 102, 241, 0.6),
                0 0 0 0 rgba(99, 102, 241, 0.4);
    animation: gradientShiftBtn 3s ease infinite;
}

.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: btnShineMove 3s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px -5px rgba(99, 102, 241, 0.8),
                0 0 0 8px rgba(99, 102, 241, 0.2);
    animation: none;
    background-position: right center;
}

@keyframes gradientShiftBtn {
    0%, 100% { background-position: left center; }
    50% { background-position: right center; }
}

@keyframes btnShineMove {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.btn-ripple {
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s ease;
}

.btn-secondary:hover .btn-ripple {
    opacity: 1;
    transform: scale(1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px -5px rgba(255, 255, 255, 0.4),
                0 0 0 8px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover .btn-icon {
    animation: arrowBounce 0.6s ease infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.arrow-down {
    width: 2px;
    height: 30px;
    background: var(--white);
    position: relative;
}

.arrow-down::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: translateX(-50%) rotate(45deg);
}

/* Section Styles */
section {
    padding: 100px 0;
}

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

.section-label {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border: 2px solid rgba(99, 102, 241, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.1);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

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

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

.service-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-card.featured::before {
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%);
    height: 100%;
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: var(--white);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
    transition: var(--transition-bounce);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-primary);
    border-radius: 18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(10px);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.5);
}

.service-card:hover .service-icon::before {
    opacity: 0.7;
}

.service-card.featured .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-icon svg {
    width: 30px;
    height: 30px;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

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

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-card.featured .service-features li::before {
    color: var(--accent-color);
}

/* Experience Section */
.experience {
    background: var(--dark);
    color: var(--white);
}

.experience .section-label {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.experience .section-title {
    color: var(--white);
}

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

.experience-description {
    font-size: 1.1rem;
    color: var(--gray-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 30px rgba(79, 172, 254, 0.3);
    transition: var(--transition);
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.stat-label {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.tech-stack h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.tech-tag {
    padding: 0.7rem 1.3rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 0.9rem;
    font-family: 'Space Grotesk', monospace;
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tech-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    flex-shrink: 0;
}

.tech-tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(99, 102, 241, 0.2) 0%, 
        rgba(139, 92, 246, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tech-tag:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.tech-tag:hover::before {
    opacity: 1;
}

.tech-tag:hover .tech-icon {
    transform: scale(1.2) rotate(10deg);
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.8));
}

/* Specific colors for different technologies */
.tech-tag:nth-child(1):hover { /* HTML */
    border-color: #e34c26;
    box-shadow: 0 10px 30px rgba(227, 76, 38, 0.4);
}

.tech-tag:nth-child(1):hover .tech-icon {
    color: #e34c26;
    filter: drop-shadow(0 0 8px rgba(227, 76, 38, 0.8));
}

.tech-tag:nth-child(2):hover { /* CSS */
    border-color: #264de4;
    box-shadow: 0 10px 30px rgba(38, 77, 228, 0.4);
}

.tech-tag:nth-child(2):hover .tech-icon {
    color: #264de4;
    filter: drop-shadow(0 0 8px rgba(38, 77, 228, 0.8));
}

.tech-tag:nth-child(3):hover { /* JavaScript */
    border-color: #f0db4f;
    box-shadow: 0 10px 30px rgba(240, 219, 79, 0.4);
}

.tech-tag:nth-child(3):hover .tech-icon {
    color: #f0db4f;
    filter: drop-shadow(0 0 8px rgba(240, 219, 79, 0.8));
}

.tech-tag:nth-child(4):hover { /* Python */
    border-color: #3776ab;
    box-shadow: 0 10px 30px rgba(55, 118, 171, 0.4);
}

.tech-tag:nth-child(4):hover .tech-icon {
    color: #3776ab;
    filter: drop-shadow(0 0 8px rgba(55, 118, 171, 0.8));
}

.tech-tag:nth-child(5):hover { /* Django */
    border-color: #092e20;
    box-shadow: 0 10px 30px rgba(9, 46, 32, 0.6);
}

.tech-tag:nth-child(5):hover .tech-icon {
    color: #44b78b;
    filter: drop-shadow(0 0 8px rgba(68, 183, 139, 0.8));
}

.tech-tag:nth-child(6):hover { /* MySQL */
    border-color: #00758f;
    box-shadow: 0 10px 30px rgba(0, 117, 143, 0.4);
}

.tech-tag:nth-child(6):hover .tech-icon {
    color: #00758f;
    filter: drop-shadow(0 0 8px rgba(0, 117, 143, 0.8));
}

.tech-tag:nth-child(7):hover { /* MongoDB */
    border-color: #47a248;
    box-shadow: 0 10px 30px rgba(71, 162, 72, 0.4);
}

.tech-tag:nth-child(7):hover .tech-icon {
    color: #47a248;
    filter: drop-shadow(0 0 8px rgba(71, 162, 72, 0.8));
}

.tech-tag:nth-child(8):hover { /* Node.js */
    border-color: #68a063;
    box-shadow: 0 10px 30px rgba(104, 160, 99, 0.4);
}

.tech-tag:nth-child(8):hover .tech-icon {
    color: #68a063;
    filter: drop-shadow(0 0 8px rgba(104, 160, 99, 0.8));
}

.tech-tag:nth-child(9):hover { /* React */
    border-color: #61dafb;
    box-shadow: 0 10px 30px rgba(97, 218, 251, 0.4);
}

.tech-tag:nth-child(9):hover .tech-icon {
    color: #61dafb;
    filter: drop-shadow(0 0 8px rgba(97, 218, 251, 0.8));
}

.tech-tag:nth-child(10):hover { /* Git */
    border-color: #f34f29;
    box-shadow: 0 10px 30px rgba(243, 79, 41, 0.4);
}

.tech-tag:nth-child(10):hover .tech-icon {
    color: #f34f29;
    filter: drop-shadow(0 0 8px rgba(243, 79, 41, 0.8));
}

.tech-tag:nth-child(11):hover { /* API REST */
    border-color: #4facfe;
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
}

.tech-tag:nth-child(11):hover .tech-icon {
    color: #4facfe;
    filter: drop-shadow(0 0 8px rgba(79, 172, 254, 0.8));
}

/* Code Window */
.code-window {
    background: var(--dark-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.code-header {
    background: rgba(0, 0, 0, 0.3);
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.code-dots {
    display: flex;
    gap: 0.5rem;
}

.code-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-dots span:nth-child(1) { background: #ff5f56; }
.code-dots span:nth-child(2) { background: #ffbd2e; }
.code-dots span:nth-child(3) { background: #27c93f; }

.code-title {
    color: var(--gray-light);
    font-size: 0.9rem;
}

.code-content {
    padding: 2rem;
    overflow-x: auto;
}

.code-content pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.8;
}

.code-keyword { color: #c678dd; }
.code-variable { color: #e06c75; }
.code-property { color: #56b6c2; }
.code-string { color: #98c379; }
.code-number { color: #d19a66; }
.code-boolean { color: #d19a66; }

/* Process Section */
.process {
    background: var(--light);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    width: 2px;
    height: calc(100% + 3rem);
    background: linear-gradient(to bottom, #667eea, #764ba2);
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    transition: var(--transition-bounce);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.process-step:hover .step-number::before {
    opacity: 0.5;
}

.step-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(99, 102, 241, 0.05), 
        transparent);
    transition: left 0.6s ease;
}

.step-content:hover {
    transform: translateX(15px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
}

.step-content:hover::before {
    left: 100%;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step-content p {
    color: var(--gray);
    line-height: 1.8;
}

.process-step.highlighted .step-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: highlightPulse 2s ease-in-out infinite;
}

@keyframes highlightPulse {
    0%, 100% {
        box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 25px 60px rgba(102, 126, 234, 0.6);
    }
}

.process-step.highlighted .step-content h3,
.process-step.highlighted .step-content p {
    color: var(--white);
}

.step-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.step-highlight span {
    word-break: break-word;
    line-height: 1.4;
}

.step-highlight svg {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
}

/* Benefits Section */
.benefits {
    background: var(--white);
}

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

.benefit-card {
    text-align: center;
    padding: 2rem;
    transition: var(--transition);
}

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

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    transition: var(--transition-bounce);
    position: relative;
}

.benefit-icon::after {
    content: '';
    position: absolute;
    inset: -8px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.benefit-card:hover .benefit-icon::after {
    opacity: 0.6;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.8;
}

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

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

.contact-description {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    transition: var(--transition-bounce);
    position: relative;
}

.contact-icon svg {
    width: 26px;
    height: 26px;
    color: white;
    z-index: 1;
    position: relative;
}

.whatsapp-icon {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 16px;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.3s ease;
}

.contact-item:hover .whatsapp-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
}

.contact-item:hover .whatsapp-icon::before {
    opacity: 0.6;
}

.contact-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-primary);
    border-radius: 16px;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.3s ease;
}

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

.contact-item:hover .contact-icon::before {
    opacity: 0.5;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

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

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

.contact-item p {
    color: var(--gray);
}

.cta-note {
    display: flex;
    gap: 1rem;
    padding: 1.8rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
    border-left: 5px solid var(--success-color);
    border: 2px solid rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.cta-note:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
    border-left-width: 8px;
}

.cta-note svg {
    width: 24px;
    height: 24px;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-note p {
    color: var(--gray);
    line-height: 1.8;
}

.cta-note strong {
    color: var(--dark);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.contact-form-wrapper::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15),
                0 10px 20px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
}

/* CAPTCHA Styles */
.captcha-group {
    grid-column: 1 / -1;
}

.captcha-container {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.captcha-question {
    flex: 1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.captcha-container input {
    flex: 0.8;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
}

.captcha-refresh {
    flex: 0;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.captcha-refresh svg {
    width: 24px;
    height: 24px;
}

.captcha-refresh:hover {
    background: var(--primary-dark);
    transform: rotate(180deg);
}

.captcha-refresh:active {
    transform: rotate(180deg) scale(0.95);
}

.btn-submit {
    grid-column: 1 / -1;
    justify-content: center;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-submit svg {
    width: 20px;
    height: 20px;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Form Message Styles */
.form-message {
    grid-column: 1 / -1;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    animation: slideDown 0.3s ease-out;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid var(--success-color);
    color: #047857;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid #ef4444;
    color: #991b1b;
}

.form-message svg {
    flex-shrink: 0;
}

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

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--gray-light);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    color: var(--gray-light);
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
}

.footer-domain {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    margin: 0 auto;
    transition: var(--transition);
}

.footer-domain:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.footer-domain svg {
    color: #4facfe;
    flex-shrink: 0;
}

.footer-domain a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-family: 'Space Grotesk', monospace;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-domain a:hover {
    color: #4facfe;
}

.btn-submit {
    position: relative;
    width: 100%;
}

.btn-loading {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.btn-loading svg {
    width: 20px;
    height: 20px;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    animation: slideInUp 0.3s ease-out;
}

.form-message svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.form-message.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    border: 2px solid #10b981;
    color: #065f46;
}

.form-message.success svg {
    stroke: #10b981;
}

.form-message.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
    border: 2px solid #ef4444;
    color: #991b1b;
}

.form-message.error svg {
    stroke: #ef4444;
}

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

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .experience-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .contact .container {
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 90px 0 60px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        padding: 20px;
    }

    .hero-image-container {
        width: 280px;
        height: 280px;
        margin: 0 auto 1rem;
    }
    
    .hero-image-wrapper {
        order: -1;
        margin-bottom: 2rem;
    }
    
    .floating-stats {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 1rem;
        margin-bottom: 2rem;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .stat-item-float {
        background: rgba(99, 102, 241, 0.15);
        padding: 0.75rem 1.25rem;
        border-radius: 12px;
        backdrop-filter: blur(10px);
    }
    
    .stat-number-float {
        font-size: 1.5rem;
    }
    
    .stat-label-float {
        font-size: 0.75rem;
    }
    
    .image-badge {
        top: 10px;
        right: 10px;
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .image-badge svg {
        width: 16px;
        height: 16px;
    }

    .logo-image {
        width: 45px;
        height: 45px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .brand-tagline {
        font-size: 0.6rem;
    }
    
    .programmer-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.5rem;
        letter-spacing: 0.18em;
    }
    
    .programmer-badge::after {
        right: -25px;
        font-size: 1.4rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-name {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

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

    .hamburger {
        display: flex;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }

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

    .service-card.featured {
        transform: scale(1);
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .process-step::after {
        left: 30px;
    }
    
    .step-highlight {
        gap: 0.75rem;
        padding: 0.75rem;
        flex-wrap: wrap;
    }
    
    .step-highlight span {
        font-size: 0.9rem;
        flex: 1;
        min-width: 0;
    }

    .experience-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero-content {
        padding: 10px;
        gap: 2rem;
    }
    
    .hero-image-container {
        width: 240px;
        height: 240px;
        margin: 0 auto 1rem;
    }
    
    .image-badge {
        bottom: -5px;
        top: auto;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.35rem 0.7rem;
        font-size: 0.65rem;
        gap: 0.35rem;
    }
    
    .image-badge svg {
        width: 14px;
        height: 14px;
    }
    
    .hero-image-wrapper {
        order: -1;
        margin-bottom: 1.5rem;
    }
    
    .floating-stats {
        margin-top: 1.5rem;
        margin-bottom: 2.5rem;
        gap: 1rem;
    }
    
    .stat-item-float {
        padding: 0.6rem 1rem;
        min-width: 100px;
    }
    
    .stat-number-float {
        font-size: 1.3rem;
    }
    
    .stat-label-float {
        font-size: 0.7rem;
    }
    
    .badge {
        margin-bottom: 1.5rem;
        padding: 0.6rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .programmer-badge {
        font-size: 0.7rem;
        padding: 0.5rem 1.2rem;
        letter-spacing: 0.15em;
        margin-bottom: 1rem;
        margin-top: 1rem;
    }
    
    .programmer-badge::after {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-top: 1.5rem;
    }
    
    .title-line {
        font-size: 0.9rem;
    }
    
    .title-name {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-top: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-top: 1rem;
    }
    
    .hero-buttons {
        margin-top: 2rem;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
        max-width: 100%;
    }
    
    .btn-submit {
        width: 100%;
        padding: 1rem;
        max-width: 100%;
    }
    
    .contact-form {
        padding: 0;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
        margin: 0 10px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .step-highlight {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        padding: 0.75rem;
    }
    
    .step-highlight span {
        font-size: 0.85rem;
        width: 100%;
    }
    
    .process-step {
        grid-template-columns: 50px 1fr;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.9rem;
    }
    
    .captcha-container {
        flex-direction: column;
    }
    
    .captcha-question {
        width: 100%;
        font-size: 1rem;
    }
    
    .captcha-container input {
        width: 100%;
    }
    
    .captcha-refresh {
        width: 100%;
        padding: 1rem;
    }
}

/* Floating particles animation */
@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    33% { transform: translateY(-20px) translateX(10px); }
    66% { transform: translateY(-10px) translateX(-10px); }
}

.hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

/* Glow effect for featured elements */
@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.3),
                    0 0 40px rgba(99, 102, 241, 0.2),
                    0 0 60px rgba(99, 102, 241, 0.1);
    }
    50% {
        box-shadow: 0 0 30px rgba(99, 102, 241, 0.4),
                    0 0 60px rgba(99, 102, 241, 0.3),
                    0 0 90px rgba(99, 102, 241, 0.2);
    }
}
