/* Toast notifications */
.toast-container {
    position: fixed;
    top: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2000;
    pointer-events: none;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    max-width: 92vw;
    padding: 12px 14px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.22s ease, opacity 0.22s ease;
    pointer-events: auto;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.hide {
    transform: translateY(-6px);
    opacity: 0;
}

.toast__icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    background: rgba(255, 255, 255, 0.1);
}

.toast--success .toast__icon { background: rgba(34, 197, 94, 0.2); }
.toast--error .toast__icon { background: rgba(239, 68, 68, 0.2); }

.toast__message {
    font-size: 14px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
}

.toast__close {
    margin-left: auto;
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.toast__close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

@media (max-width: 480px) {
    .toast-container {
        top: 12px;
        right: 12px;
        gap: 8px;
    }
    .toast { min-width: auto; }
}


/* CSS Variables - Color System */
:root {
    --primary-color:   #667eea;
    --secondary-color: #1D9BF0;
    --accent-color: #667eea;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --background-primary: #0a0a0a;
    --background-secondary: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.3);
    --success-color: #28a745;
    --info-color: #17a2b8;
    --warning-color: #ffc107;
}

/* TTNormsPro Font Family Import */
@font-face {
    font-family: 'TTNormsPro';
    src: url('../fonts/TTNormsPro-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TTNormsPro';
    src: url('../fonts/TTNormsPro-ThinItalic.ttf') format('truetype');
    font-weight: 100;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TTNormsPro';
    src: url('../fonts/TTNormsPro-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TTNormsPro';
    src: url('../fonts/TTNormsPro-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TTNormsPro';
    src: url('../fonts/TTNormsPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TTNormsPro';
    src: url('../fonts/TTNormsPro-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TTNormsPro';
    src: url('../fonts/TTNormsPro-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TTNormsPro';
    src: url('../fonts/TTNormsPro-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TTNormsPro';
    src: url('../fonts/TTNormsPro-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TTNormsPro';
    src: url('../fonts/TTNormsPro-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TTNormsPro';
    src: url('../fonts/TTNormsPro-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TTNormsPro';
    src: url('../fonts/TTNormsPro-ExtraBoldItalic.ttf') format('truetype');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'TTNormsPro';
    src: url('../fonts/TTNormsPro-Black.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TTNormsPro';
    src: url('../fonts/TTNormsPro-BlackItalic.ttf') format('truetype');
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}




/* Subtle glow for interactive elements */
.cta-button:hover,
.submit-btn:hover,
.service-card:hover,
.contact-item:hover,
.nav-menu a:hover {
    box-shadow: 0 0 12px rgba(29, 155, 240, 0.15);
}

/* Disable mouse follower on mobile devices */
@media (max-width: 768px) {
    .mouse-follower {
        display: none;
    }
}

/* Disable mouse follower on touch devices */
@media (pointer: coarse) {
    .mouse-follower {
        display: none;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'TTNormsPro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Minimal scrollbar */
/* Chrome, Edge, Safari */
body::-webkit-scrollbar {
    width: 6px;
}
body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}
body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}
body::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

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

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.85) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3) !important;
    backdrop-filter: blur(20px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6) !important;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    position: relative;
    width: 100%;
}

.logo {
    font-size: 34px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    font-family: 'TTNormsPro', 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #fff;
}
.logo:hover .dot{
    color: #fff;
}

.nav-menu {
    display: flex;
    list-style: none;
    padding: 0px 20px;
    gap: 40px;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.nav-menu-left {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu-right {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 10px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

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

.nav-menu a:hover {
    color: var(--secondary-color);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu span {
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #000;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background:
        radial-gradient(900px 600px at 80% 20%, rgba(102, 126, 234, 0.10), transparent 65%),
        radial-gradient(800px 550px at 20% 75%, rgba(34, 197, 94, 0.08), transparent 70%),
        radial-gradient(700px 520px at 65% 80%, rgba(59, 130, 246, 0.10), transparent 70%),
        radial-gradient(850px 600px at 25% 25%, rgba(236, 72, 153, 0.08), transparent 68%),
        radial-gradient(circle at 85% 15%, rgba(120, 119, 198, 0.035) 0%, transparent 28%),
        radial-gradient(circle at 15% 85%, rgba(255, 255, 255, 0.02) 0%, transparent 35%);
    opacity: 0.65;
}

.hero::after {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background:
        radial-gradient(950px 700px at 15% 15%, rgba(255, 255, 255, 0.035), transparent 60%),
        radial-gradient(1000px 750px at 85% 85%, rgba(120, 119, 198, 0.05), transparent 65%),
        radial-gradient(1200px 900px at 50% 60%, rgba(10, 10, 10, 0), rgba(0, 0, 0, 0.45)); /* vignette */
    opacity: 0.55;
}



.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 100px 20px 0;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: fadeInUp 1.2s ease-out;
}

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

.hero-content h1 {
    font-size: clamp(2.2rem, 4.3vw, 3.8rem);
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-family: 'TTNormsPro', sans-serif;
    text-transform: uppercase;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    margin-bottom: 40px;
    font-weight: 400;
    opacity: 1;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-button {
    display: inline-block;
    padding: 18px 40px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    border: 2px solid #fff;
    font-weight: 400;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'TTNormsPro', sans-serif;
    font-size: 14px;
    position: relative;
    border-radius: 1px;
    overflow: hidden;
    z-index: 1;
    will-change: transform;
}

.cta-button::before { display: none; }

.cta-button:hover { color: #fff; border-color: var(--secondary-color); }

.cta-button:hover::before { display: none; }

.cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.15);
}

.cta-button:active::before {
    transform: translateY(0%);
}

/* Starfield Effect */
.starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.starfield::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    box-shadow: 
        85px 120px 0 0 rgba(255, 255, 255, 0.15),
        180px 80px 0 0 rgba(255, 255, 255, 0.1),
        320px 200px 0 0 rgba(255, 255, 255, 0.25),
        450px 50px 0 0 rgba(255, 255, 255, 0.1),
        120px 300px 0 0 rgba(255, 255, 255, 0.2),
        680px 180px 0 0 rgba(255, 255, 255, 0.3),
        250px 400px 0 0 rgba(255, 255, 255, 0.35),
        780px 350px 0 0 rgba(255, 255, 255, 0.25),
        50px 500px 0 0 rgba(255, 255, 255, 0.4),
        920px 100px 0 0 rgba(255, 255, 255, 0.3),
        380px 60px 0 0 rgba(255, 255, 255, 0.35),
        150px 450px 0 0 rgba(255, 255, 255, 0.25),
        820px 280px 0 0 rgba(255, 255, 255, 0.45),
        550px 380px 0 0 rgba(255, 255, 255, 0.3),
        720px 520px 0 0 rgba(255, 255, 255, 0.4),
        40px 180px 0 0 rgba(255, 255, 255, 0.1),
        480px 150px 0 0 rgba(255, 255, 255, 0.35),
        200px 250px 0 0 rgba(255, 255, 255, 0.15),
        650px 420px 0 0 rgba(255, 255, 255, 0.4),
        850px 480px 0 0 rgba(255, 255, 255, 0.25),
        300px 320px 0 0 rgba(255, 255, 255, 0.35),
        600px 80px 0 0 rgba(255, 255, 255, 0.3),
        100px 380px 0 0 rgba(255, 255, 255, 0.45),
        750px 150px 0 0 rgba(255, 255, 255, 0.2),
        420px 480px 0 0 rgba(255, 255, 255, 0.4),
        880px 220px 0 0 rgba(255, 255, 255, 0.3),
        160px 120px 0 0 rgba(255, 255, 255, 0.15),
        520px 350px 0 0 rgba(255, 255, 255, 0.25),
        280px 180px 0 0 rgba(255, 255, 255, 0.25),
        700px 300px 0 0 rgba(255, 255, 255, 0.3),
        /* Əlavə yıldızlar */
        150px 90px 0 0 rgba(255, 255, 255, 0.15),
        550px 120px 0 0 rgba(255, 255, 255, 0.25),
        750px 240px 0 0 rgba(255, 255, 255, 0.4),
        350px 350px 0 0 rgba(255, 255, 255, 0.3),
        90px 450px 0 0 rgba(255, 255, 255, 0.35),
        800px 150px 0 0 rgba(255, 255, 255, 0.25),
        250px 180px 0 0 rgba(255, 255, 255, 0.25),
        650px 350px 0 0 rgba(255, 255, 255, 0.35),
        450px 280px 0 0 rgba(255, 255, 255, 0.3),
        180px 520px 0 0 rgba(255, 255, 255, 0.4),
        /* Daha çox yıldızlar */
        120px 80px 0 0 rgba(255, 255, 255, 0.1),
        480px 200px 0 0 rgba(255, 255, 255, 0.35),
        720px 320px 0 0 rgba(255, 255, 255, 0.25),
        280px 420px 0 0 rgba(255, 255, 255, 0.45),
        850px 180px 0 0 rgba(255, 255, 255, 0.3),
        160px 280px 0 0 rgba(255, 255, 255, 0.15),
        600px 400px 0 0 rgba(255, 255, 255, 0.25),
        320px 150px 0 0 rgba(255, 255, 255, 0.2),
        780px 480px 0 0 rgba(255, 255, 255, 0.3),
        90px 320px 0 0 rgba(255, 255, 255, 0.15),
        520px 80px 0 0 rgba(255, 255, 255, 0.25),
        750px 380px 0 0 rgba(255, 255, 255, 0.45),
        200px 480px 0 0 rgba(255, 255, 255, 0.3),
        680px 120px 0 0 rgba(255, 255, 255, 0.35),
        380px 250px 0 0 rgba(255, 255, 255, 0.25),
        820px 350px 0 0 rgba(255, 255, 255, 0.4),
        140px 180px 0 0 rgba(255, 255, 255, 0.1),
        580px 420px 0 0 rgba(255, 255, 255, 0.35),
        300px 80px 0 0 rgba(255, 255, 255, 0.15),
        /* Sağ kısım üçün əlavə yıldızlar */
        720px 180px 0 0 rgba(255, 255, 255, 0.3),
        860px 250px 0 0 rgba(255, 255, 255, 0.25),
        780px 120px 0 0 rgba(255, 255, 255, 0.4),
        920px 320px 0 0 rgba(255, 255, 255, 0.35),
        650px 280px 0 0 rgba(255, 255, 255, 0.3),
        800px 420px 0 0 rgba(255, 255, 255, 0.25),
        740px 60px 0 0 rgba(255, 255, 255, 0.35),
        880px 160px 0 0 rgba(255, 255, 255, 0.3),
        620px 350px 0 0 rgba(255, 255, 255, 0.4),
        760px 250px 0 0 rgba(255, 255, 255, 0.25),
        840px 480px 0 0 rgba(255, 255, 255, 0.35),
        700px 80px 0 0 rgba(255, 255, 255, 0.3),
        940px 200px 0 0 rgba(255, 255, 255, 0.25),
        660px 450px 0 0 rgba(255, 255, 255, 0.4),
        820px 90px 0 0 rgba(255, 255, 255, 0.3);
}

.starfield::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    background: rgba(180, 180, 180, 0.7);
    border-radius: 50%;
    box-shadow: 
        220px 160px 0 0 rgba(180, 180, 180, 0.15),
        450px 280px 0 0 rgba(180, 180, 180, 0.25),
        680px 120px 0 0 rgba(180, 180, 180, 0.35),
        120px 420px 0 0 rgba(180, 180, 180, 0.1),
        800px 380px 0 0 rgba(180, 180, 180, 0.3),
        350px 220px 0 0 rgba(180, 180, 180, 0.25),
        580px 460px 0 0 rgba(180, 180, 180, 0.35),
        80px 280px 0 0 rgba(180, 180, 180, 0.1),
        720px 60px 0 0 rgba(180, 180, 180, 0.3),
        400px 380px 0 0 rgba(180, 180, 180, 0.25),
        180px 320px 0 0 rgba(180, 180, 180, 0.15),
        650px 240px 0 0 rgba(180, 180, 180, 0.2),
        320px 120px 0 0 rgba(180, 180, 180, 0.15),
        780px 440px 0 0 rgba(180, 180, 180, 0.25),
        50px 360px 0 0 rgba(180, 180, 180, 0.15),
        480px 200px 0 0 rgba(180, 180, 180, 0.2),
        260px 480px 0 0 rgba(180, 180, 180, 0.3),
        /* Əlavə yıldızlar */
        520px 90px 0 0 rgba(180, 180, 180, 0.25),
        150px 350px 0 0 rgba(180, 180, 180, 0.15),
        780px 200px 0 0 rgba(180, 180, 180, 0.2),
        300px 480px 0 0 rgba(180, 180, 180, 0.35),
        600px 320px 0 0 rgba(180, 180, 180, 0.25),
        80px 150px 0 0 rgba(180, 180, 180, 0.15),
        850px 350px 0 0 rgba(180, 180, 180, 0.2),
        450px 420px 0 0 rgba(180, 180, 180, 0.35),
        200px 80px 0 0 rgba(180, 180, 180, 0.15),
        750px 480px 0 0 rgba(180, 180, 180, 0.3),
        /* Daha çox yıldızlar */
        180px 120px 0 0 rgba(180, 180, 180, 0.1),
        480px 280px 0 0 rgba(180, 180, 180, 0.3),
        720px 420px 0 0 rgba(180, 180, 180, 0.2),
        280px 180px 0 0 rgba(180, 180, 180, 0.15),
        850px 120px 0 0 rgba(180, 180, 180, 0.25),
        160px 380px 0 0 rgba(180, 180, 180, 0.15),
        600px 180px 0 0 rgba(180, 180, 180, 0.2),
        320px 320px 0 0 rgba(180, 180, 180, 0.35),
        780px 380px 0 0 rgba(180, 180, 180, 0.25),
        90px 280px 0 0 rgba(180, 180, 180, 0.15),
        520px 420px 0 0 rgba(180, 180, 180, 0.2),
        750px 180px 0 0 rgba(180, 180, 180, 0.35),
        200px 120px 0 0 rgba(180, 180, 180, 0.1),
        680px 480px 0 0 rgba(180, 180, 180, 0.3),
        380px 80px 0 0 rgba(180, 180, 180, 0.2),
        820px 280px 0 0 rgba(180, 180, 180, 0.35),
        140px 420px 0 0 rgba(180, 180, 180, 0.15),
        580px 150px 0 0 rgba(180, 180, 180, 0.3),
        300px 380px 0 0 rgba(180, 180, 180, 0.1),
        /* Sağ kısım üçün əlavə yıldızlar */
        640px 220px 0 0 rgba(180, 180, 180, 0.25),
        890px 380px 0 0 rgba(180, 180, 180, 0.3),
        770px 320px 0 0 rgba(180, 180, 180, 0.2),
        910px 180px 0 0 rgba(180, 180, 180, 0.35),
        690px 150px 0 0 rgba(180, 180, 180, 0.25),
        830px 420px 0 0 rgba(180, 180, 180, 0.3),
        710px 480px 0 0 rgba(180, 180, 180, 0.2),
        860px 80px 0 0 rgba(180, 180, 180, 0.35),
        750px 220px 0 0 rgba(180, 180, 180, 0.25),
        920px 280px 0 0 rgba(180, 180, 180, 0.3),
        660px 380px 0 0 rgba(180, 180, 180, 0.2),
        800px 160px 0 0 rgba(180, 180, 180, 0.35),
        940px 360px 0 0 rgba(180, 180, 180, 0.25),
        720px 100px 0 0 rgba(180, 180, 180, 0.3);
}

/* Shooting Stars Effect */
.shooting-stars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.shooting-stars .shooting-star {
    position: absolute;
    width: var(--size, 1px);
    height: var(--size, 1px);
    background: transparent; /* remove head dot */
    border-radius: 50%;
    opacity: 0;
    transform: translate(0, 0);
    animation: shootStar var(--duration, 1.2s) linear forwards;
    pointer-events: none;
    z-index: 2;
}

.shooting-stars .shooting-star::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(var(--size, 1px) * 45);
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.2) 60%, rgba(255,255,255,0.6) 80%, rgba(255,255,255,0.9) 100%);
    transform: translate(-50%, -50%) rotate(calc(var(--angle, 45deg)));
    transform-origin: 100% center;
    border-radius: 1px;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.4);
}

@keyframes shootStar {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.85);
    }
    20% {
        opacity: 1;
        transform: translate(calc(var(--translate-x) * 0.2), calc(var(--translate-y) * 0.2)) scale(1);
    }
    80% {
        opacity: 0.85;
        transform: translate(calc(var(--translate-x) * 0.8), calc(var(--translate-y) * 0.8)) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(var(--translate-x), var(--translate-y)) scale(0.95);
    }
}

/* Floating particles animation */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: floatSmooth 25s cubic-bezier(0.4, 0.0, 0.6, 1) infinite;
    transition: all 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

/* Disable particle animations on mobile */
@media (max-width: 768px) {
    .particle {
        animation: none !important;
        transition: none !important;
    }
}

.particle:nth-child(1) { 
    left: 10%; 
    top: 20%; 
    animation-delay: 0s;
    animation-duration: 25s;
}
.particle:nth-child(2) { 
    left: 20%; 
    top: 80%; 
    animation-delay: 8s;
    animation-duration: 30s;
}
.particle:nth-child(3) { 
    left: 60%; 
    top: 40%; 
    animation-delay: 15s;
    animation-duration: 28s;
}
.particle:nth-child(4) { 
    left: 80%; 
    top: 70%; 
    animation-delay: 20s;
    animation-duration: 32s;
}
.particle:nth-child(5) { 
    left: 40%; 
    top: 60%; 
    animation-delay: 5s;
    animation-duration: 27s;
}

@keyframes floatSmooth {
    0% { 
        transform: translateY(0px) translateX(0px) scale(1); 
        opacity: 0.6; 
    }
    25% { 
        transform: translateY(-3px) translateX(1px) scale(1.02); 
        opacity: 0.8; 
    }
    50% { 
        transform: translateY(-5px) translateX(-1px) scale(0.98); 
        opacity: 0.9; 
    }
    75% { 
        transform: translateY(-2px) translateX(-1px) scale(1.03); 
        opacity: 0.8; 
    }
    100% { 
        transform: translateY(0px) translateX(0px) scale(1); 
        opacity: 0.6; 
    }
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: #111;
    position: relative;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 30px 20px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

.stat-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'TTNormsPro', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: #999;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about {
    padding: 120px 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 70%, rgba(120, 119, 198, 0.015) 0%, transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.008) 0%, transparent 35%);
    will-change: transform;
    transform: translate3d(0, 0, 0);
    z-index: -1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #fff;
    font-family: 'TTNormsPro', sans-serif;
}

.about-text p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 24px;
    font-weight: 300;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid #333;
    color: #ccc;
    font-weight: 300;
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: #fff;
    border-bottom-color: #555;
}

.feature-icon {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.about-image {
    height: 400px;
    background: 
        linear-gradient(45deg, transparent, rgba(255,255,255,0.03), transparent),
        #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.5rem;
    font-weight: 300;
    font-family: 'TTNormsPro', sans-serif;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

/* Code Editor Styles */
.code-editor {
    width: 100%;
    height: 100%;
    background: #1e1e1e;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.editor-header {
    background: #2d2d30;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.window-controls {
    display: flex;
    gap: 8px;
    margin-right: 16px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.control.close { background: #ff5f56; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #27ca3f; }

.file-tab {
    color: #fff;
    font-size: 14px;
    font-family: 'TTNormsPro', sans-serif;
    font-weight: 500;
}

.editor-content {
    display: flex;
    height: calc(100% - 40px);
}

.line-numbers {
    background: #252526;
    padding: 16px 8px;
    color: #858585;
    font-size: 12px;
    font-family: 'Courier New', monospace;
    text-align: right;
    min-width: 40px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.line-numbers span {
    display: block;
    line-height: 1.6;
}

.code-lines {
    flex: 1;
    padding: 16px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 4px;
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

.code-line:nth-child(1) { animation-delay: 0.1s; }
.code-line:nth-child(2) { animation-delay: 0.2s; }
.code-line:nth-child(3) { animation-delay: 0.3s; }
.code-line:nth-child(4) { animation-delay: 0.4s; }
.code-line:nth-child(5) { animation-delay: 0.5s; }
.code-line:nth-child(6) { animation-delay: 0.6s; }
.code-line:nth-child(7) { animation-delay: 0.7s; }
.code-line:nth-child(8) { animation-delay: 0.8s; }

.indent { padding-left: 20px; }
.indent-2 { padding-left: 40px; }

.keyword {
    color: #569cd6;
    font-weight: bold;
}

.class-name {
    color: #4ec9b0;
    font-weight: bold;
}

.property {
    color: #9cdcfe;
}

.string {
    color: #ce9178;
}

.method {
    color: #dcdcaa;
}

/* Cursor animation */
.code-line:last-child::after {
    content: '|';
    color: #fff;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.about-image::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(255, 255, 255, 0.02),
        transparent
    );
    animation: shimmer 4s ease-in-out infinite;
}

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

/* Services Section */
.services {
    padding: 120px 0;
    background: #111;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.01) 0%, transparent 30%),
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.012) 0%, transparent 35%);
    will-change: transform;
    transform: translate3d(0, 0, 0);
    z-index: -1;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
    font-family: 'TTNormsPro', sans-serif;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 80px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

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

.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    padding: 36px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
    border-radius: 14px;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.service-card:hover { border-color: rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.04); }

.service-card:hover::after { display: none; }

.service-card:active { transform: none; }

.service-card .service-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(102, 126, 234, 0.12);
    color: var(--secondary-color);
    margin-bottom: 18px;
}

.service-icon {
    font-size: 1.4rem;
    color: inherit;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 500;
    font-family: 'TTNormsPro', sans-serif;
}

.service-card p {
    color: #b6b6b6;
    line-height: 1.7;
    font-weight: 300;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: #000;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 80px;
    color: #fff;
    font-family: 'TTNormsPro', sans-serif;
}

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

.testimonial-card {
    background: #111;
    padding: 40px;
    border: 1px solid #333;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.testimonial-card:hover {
    border-color: #555;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.02);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 32px;
    font-weight: 300;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 500;
    font-family: 'TTNormsPro', sans-serif;
}

.author-info h4 {
    color: #fff;
    margin-bottom: 4px;
    font-weight: 500;
}

.author-info p {
    color: #999;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: #111;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 60% 40%, rgba(120, 119, 198, 0.01) 0%, transparent 32%),
        radial-gradient(circle at 40% 60%, rgba(255, 255, 255, 0.006) 0%, transparent 28%);
    will-change: transform;
    transform: translate3d(0, 0, 0);
    z-index: -1;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 80px;
    color: #fff;
    font-family: 'TTNormsPro', sans-serif;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 40px;
    color: #fff;
    font-weight: 500;
    font-family: 'TTNormsPro', sans-serif;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.contact-item:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 4px;
    font-family: 'TTNormsPro', sans-serif;
}

.contact-item div {
    color: #ccc;
    font-weight: 300;
}

.contact-item strong {
    color: #fff;
    font-weight: 500;
}

.contact-form {
    background: #000;
    padding: 40px;
    border: 1px solid #333;
    border-radius: 8px;
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: #fff;
    font-weight: 500;
    font-family: 'TTNormsPro', sans-serif;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ccc;
    font-weight: 300;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px solid #333;
    color: #fff;
    font-size: 1rem;
    font-weight: 300;
    transition: all 0.3s ease;
    font-family: 'TTNormsPro', sans-serif;
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(29, 155, 240, 0.05);
    box-shadow: 0 0 0 4px rgba(29, 155, 240, 0.08);
}

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

.submit-btn {
    background: transparent;
    color: #fff;
    padding: 16px 32px;
    border: 2px solid #fff;
    font-size: 1rem;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'TTNormsPro', sans-serif;
    border-radius: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    will-change: transform;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    pointer-events: none;
}

.submit-btn:hover {
    color: #000;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.submit-btn:hover::before {
    transform: translateY(0%);
}

.submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 255, 255, 0.15);
}
.form-group.error input,
.form-group.error textarea {
    border-color: #dc3545;
    background: rgba(220, 53, 69, 0.06);
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.08);
}

.form-group.success input,
.form-group.success textarea {
    border-color: #198754;
    background: rgba(25, 135, 84, 0.05);
    box-shadow: 0 0 0 4px rgba(25, 135, 84, 0.08);
}

.error-text {
    display: block;
    margin-top: 8px;
    color: #ff6b6b;
    font-size: 0.85rem;
    font-weight: 400;
}

.submit-btn.loading {
    opacity: 0.8;
    pointer-events: none;
}

.submit-btn:active::before {
    transform: translateY(0%);
}

/* Footer */
footer {
    background: #000;
    padding: 80px 0 40px;
    border-top: 1px solid #333;
}

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

.footer-section h3 {
    margin-bottom: 24px;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'TTNormsPro', sans-serif;
}

.footer-section p,
.footer-section a {
    color: #999;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
    transition: all 0.3s ease;
    font-family: 'TTNormsPro', sans-serif;
    border-radius: 4px;
}

.social-links a:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
    color: #666;
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .scroll-indicator { display: none !important; }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(0, 0, 0, 0.8);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        backdrop-filter: blur(40px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 30px 0;
    }

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

    .nav-menu-left,
    .nav-menu-right {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-menu a {
        padding: 16px;
        display: block;
        font-size: 16px;
        margin: 8px 0;
    }
    
    .mobile-menu {
        display: flex;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    nav {
        padding: 20px 0;
        justify-content: space-between;
    }

    /* Center key sections on mobile */
    .contact-content { text-align: center; }
    .contact-info, .contact-form { text-align: center; }
    .contact-item { justify-content: center; }
    .contact-item .contact-icon { margin-top: 0; }
    .contact-form form { margin: 0 auto; }
    .contact-form { margin: 0 auto; }
    .footer-content { text-align: center; }
    .footer-section { display: flex; flex-direction: column; align-items: center; }
    .service-card { text-align: center; }
    .service-card .service-icon { margin-left: auto; margin-right: auto; }
    .about-text { text-align: center; }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .services,
    .about,
    .contact,
    .testimonials {
        padding: 80px 0;
    }
    
    .hero-content {
        padding: 100px 16px 0;
    }

    nav {
        padding: 18px 20px;
        justify-content: space-between;
    }

    .nav-menu {
        top: 70px;
    }
    
    .mobile-menu {
        right: 16px;
    }
}

/* --- Dynamic background stars (hero) --- */
.starfield .star {
    position: absolute;
    width: 1px;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
    animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.05;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.1);
    }
}

/* --- Hero section accent glows --- */
.hero-accent {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    background: radial-gradient(circle, #291333 10%, transparent 100%);
    filter: blur(200px);
    opacity: 1;
    z-index: 0;
    will-change: transform;
    transform: translate3d(0, 0, 0);
}

.hero-accent--bl {
    width: 900px;
    height: 900px;
    bottom: -350px;
    left: -350px;
}

.hero-accent--tr {
    width: 650px;
    height: 550px;
    top: -150px;
    right: -250px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.5s ease;
    opacity: 1;
}

.scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.scroll-mouse {
    width: 25px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    position: relative;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.scroll-mouse:hover {
    border-color: var(--secondary-color);
    background: rgba(29, 155, 240, 0.1);
}

.scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--secondary-color);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 20px;
        opacity: 0.5;
    }
    100% {
        top: 8px;
        opacity: 1;
    }
}

.scroll-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 300;
    font-family: 'TTNormsPro', sans-serif;
    animation: fadeInOut 3s infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Scroll indicator mobile responsive */
@media (max-width: 768px) {
    .scroll-indicator {
        bottom: 60px;
        transform: translateX(-50%) scale(0.9);
    }
    
    .scroll-mouse {
        width: 22px;
        height: 35px;
    }
    
    .scroll-wheel {
        width: 2px;
        height: 6px;
    }
    
    .scroll-text {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .scroll-indicator {
        bottom: 80px;
        transform: translateX(-50%) scale(0.8);
    }
}

/* Simple fade-in animations */
.fade-visible {
    animation: fadeInUp 0.8s ease-out forwards;
}

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

/* Service Cards Staggered Animation */
.service-card.fade-visible { animation: serviceCardReveal 0.5s ease-out forwards; }

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

/* Feature Items Animation */
.feature-item.fade-visible {
    animation: featureReveal 0.5s ease-out forwards;
}

@keyframes featureReveal {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Simple hover effects */
.service-card:hover { transform: none; box-shadow: none; transition: none; }

.dot {
    background-color: var(--secondary-color);
    border-radius: 100px;
    width: 10px;
    display: inline-block;
    margin-left: 4px;
    height: 10px;
    border-radius: 100px;
    transition: color 0.6s ease;
}
.fas{
    color: var(--secondary-color);
}

/* Language Selector Styles */
.language-selector {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.7;
}

.language-selector:hover {
    opacity: 1;
}

.language-selector.hidden {
    opacity: 0;
    transform: translateY(-50%) translateX(100px);
    pointer-events: none;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.language-toggle.active {
    background: rgba(102, 126, 234, 0.15);
    border-color: var(--primary-color);
}

.current-lang {
    font-size: 18px;
    line-height: 1;
}

.language-toggle i {
    font-size: 10px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.language-toggle.active i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 140px;
    overflow: hidden;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateX(3px);
}

.language-option.active {
    background: rgba(102, 126, 234, 0.15);
}

.flag {
    font-size: 16px;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.3));
}

.lang-name {
    display: inline;
    font-family: 'TTNormsPro', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: var(--text-primary);
    letter-spacing: 0.3px;
}

/* Animation for dropdown items */
.language-option {
    opacity: 0;
    transform: translateX(15px);
    animation: slideInRight 0.3s ease forwards;
}

.language-option:nth-child(1) { animation-delay: 0.1s; }
.language-option:nth-child(2) { animation-delay: 0.2s; }

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .language-selector {
        right: 20px;
    }
    
    .language-toggle {
        padding: 6px 10px;
    }
    
    .current-lang {
        font-size: 16px;
    }
    
    .language-dropdown {
        min-width: 130px;
        right: -5px;
    }
    
    .language-option {
        padding: 8px 12px;
    }
    
    .lang-name {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .language-selector {
        right: 15px;
    }
    
    .language-toggle {
        padding: 4px 8px;
    }
    
    .current-lang {
        font-size: 10px;
    }
    
    .language-dropdown {
        min-width: 120px;
        right: -8px;
    }
    
    .flag {
        font-size: 14px;
    }
    
    .lang-name {
        font-size: 10px;
    }
}

/* Working Hours Styling */
.contact-item .working-hours {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-item .working-hours .hours-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9em;
    line-height: 1.4;
}

.contact-item .working-hours .hours-line .time-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--success-color);
    animation: pulse 2s infinite;
}

.contact-item .working-hours .hours-line.weekend .time-icon {
    background: var(--warning-color);
}

.contact-item .working-hours .hours-line.online .time-icon {
    background: var(--info-color);
    animation: blink 1.5s infinite;
}

.contact-item .working-hours .status-badge {
    margin-left: auto;
    font-size: 0.8em;
    padding: 2px 6px;
    border-radius: 8px;
    background: rgba(40, 167, 69, 0.2);
    border: 1px solid var(--success-color);
    animation: fadeIn 0.5s ease-out;
}

.contact-item .working-hours .hours-note {
    color: var(--info-color);
    font-weight: 500;
    font-size: 0.85em;
    margin-top: 4px;
    padding: 4px 8px;
    background: rgba(23, 162, 184, 0.1);
    border-radius: 12px;
    border-left: 3px solid var(--info-color);
    animation: slideInLeft 0.5s ease-out;
}

.contact-item .working-hours .hours-emergency {
    color: var(--warning-color);
    font-weight: 500;
    font-size: 0.85em;
    margin-top: 4px;
    padding: 4px 8px;
    background: rgba(255, 193, 7, 0.1);
    border-radius: 12px;
    border-left: 3px solid var(--warning-color);
    animation: slideInLeft 0.7s ease-out;
}

/* Support section specific styling */
.contact-item .contact-icon .fas.fa-headset {
    color: var(--info-color);
    animation: headsetPulse 3s infinite;
}

@keyframes headsetPulse {
    0%, 100% { 
        transform: scale(1);
        color: var(--info-color);
    }
    50% { 
        transform: scale(1.1);
        color: var(--primary-color);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.3; }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Responsive working hours */
@media (max-width: 768px) {
    .contact-item .working-hours .hours-line {
        font-size: 0.85em;
    }
    
    .contact-item .working-hours .hours-note,
    .contact-item .working-hours .hours-emergency {
        font-size: 0.8em;
    }
    
    .contact-item .working-hours .status-badge {
        font-size: 0.75em;
        padding: 1px 4px;
    }
}