/* ===== PREMIUM VANGUARD CSS ===== */
:root {
    --primary-orange: #FF9800;
    --primary-orange-light: #FFB74D;
    --primary-orange-dark: #F57C00;
    --accent-cyan: #00E5FF;
    --accent-purple: #9C27B0;
    --bg-black: #000000;
    --bg-dark: #0a0a0a;
    --bg-elevated: #1a1a1a;
    --bg-card: rgba(255, 255, 255, 0.03);
    --text-white: #ffffff;
    --text-gray: #a0a0a0;
    --border-glow: rgba(255, 152, 0, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-black);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* ===== CUSTOM CURSOR ===== */
.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s ease;
    mix-blend-mode: difference;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.2s ease;
    opacity: 0.5;
}

/* ===== PARTICLES CANVAS ===== */
#particlesCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.navbar:hover::before {
    opacity: 1;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    position: relative;
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 152, 0, 0.5));
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-img {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-cyan));
    transition: width 0.3s ease;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-orange);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero-premium {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 20px 80px;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 152, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(156, 39, 176, 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-content-premium {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--primary-orange);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title-premium {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
    position: relative;
}

.title-word {
    display: inline-block;
    position: relative;
    animation: fadeInUp 0.8s ease backwards;
}

.title-word:nth-child(1) {
    animation-delay: 0.2s;
}

.title-word:nth-child(2) {
    animation-delay: 0.4s;
}

.title-word::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: glitch 3s ease infinite;
}

@keyframes glitch {

    0%,
    90%,
    100% {
        opacity: 0;
        transform: translate(0);
    }

    92%,
    94%,
    96% {
        opacity: 0.8;
        transform: translate(2px, -2px);
    }

    93%,
    95% {
        opacity: 0.8;
        transform: translate(-2px, 2px);
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientFlow 3s ease infinite;
}

@keyframes gradientFlow {

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

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle-premium {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    animation: fadeIn 0.8s ease 0.6s backwards;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description-premium {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-gray);
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease 0.8s backwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 1s backwards;
}

.stat-box {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem 3rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--accent-cyan));
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.stat-box:hover::before {
    transform: translateX(0);
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 40px rgba(255, 152, 0, 0.3);
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta-premium {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 1.2s backwards;
}

/* ===== PREMIUM BUTTONS ===== */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-premium:hover::before {
    width: 300px;
    height: 300px;
}

.btn-premium.primary {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    color: var(--text-white);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
}

.btn-premium.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 152, 0, 0.6);
}

.btn-premium.secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 2px solid var(--primary-orange);
    color: var(--text-white);
}

.btn-premium.secondary:hover {
    background: var(--primary-orange);
    transform: translateY(-3px);
}

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

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

.btn-premium span {
    position: relative;
    z-index: 1;
}

.btn-premium svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

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

/* ===== 3D FLOATING SHAPES ===== */
.hero-visual-3d {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(0, 229, 255, 0.1));
    border: 1px solid rgba(255, 152, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    animation: float3D 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 1s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 20%;
    animation-delay: 3s;
}

@keyframes float3D {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-20px) rotate(5deg);
    }

    50% {
        transform: translateY(0) rotate(0deg);
    }

    75% {
        transform: translateY(20px) rotate(-5deg);
    }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator-premium {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    animation: bounce 2s ease infinite;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-gray);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--primary-orange), transparent);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ===== PRODUCT SHOWCASE ===== */
.product-showcase {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 20px;
    position: relative;
    background: var(--bg-dark);
}

.product-showcase.reverse {
    background: var(--bg-black);
}

.product-showcase.reverse .product-container {
    flex-direction: row-reverse;
}

.product-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.product-badge-premium {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
}

.product-title-premium {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.product-tagline-premium {
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.product-description-premium {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.product-features-premium {
    list-style: none;
    margin-bottom: 2.5rem;
}

.product-features-premium li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.product-features-premium li:hover {
    padding-left: 1rem;
    border-bottom-color: var(--primary-orange);
}

.product-features-premium svg {
    stroke: var(--primary-orange);
    flex-shrink: 0;
}

.product-features-premium span {
    color: var(--text-white);
    font-size: 1rem;
}

.product-cta-premium {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-image-wrapper-premium {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.product-image-premium {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.product-image-wrapper-premium:hover .product-image-premium {
    transform: scale(1.05);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(0, 229, 255, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-image-wrapper-premium:hover .image-glow {
    opacity: 1;
}

/* ===== PRODUCT SHOWCASE WITH LOGO ===== */
.product-showcase-wrapper {
    position: relative;
    width: 100%;
}

.product-logo-badge {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    padding: 1.5rem 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.product-logo-image {
    height: 60px;
    width: auto;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 229, 255, 0.4));
    transition: all 0.3s ease;
}

.product-showcase-wrapper:hover .product-logo-image {
    transform: scale(1.1);
    filter: drop-shadow(0 8px 25px rgba(0, 229, 255, 0.6));
}

.product-showcase-wrapper .product-image-wrapper-premium {
    margin-top: 40px;
}


/* ===== SERVICES SECTION ===== */
.services-premium {
    padding: 120px 20px;
    background: var(--bg-black);
    position: relative;
}

.services-header-premium {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-premium {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: linear-gradient(135deg, var(--text-white), var(--text-gray));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-subtitle-premium {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-gray);
}

.services-grid-premium {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card-premium {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(0, 229, 255, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-premium:hover::before {
    opacity: 1;
}

.service-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--border-glow);
    box-shadow: 0 20px 60px rgba(255, 152, 0, 0.3);
}

.service-hover-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.2), transparent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.service-card-premium:hover .service-hover-effect {
    width: 400px;
    height: 400px;
}

.service-icon-premium {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.service-card-premium:hover .service-icon-premium {
    transform: scale(1.2) rotate(10deg);
}

.service-title-premium {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.service-desc-premium {
    color: var(--text-gray);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* ===== ABOUT SECTION ===== */
.about-premium {
    padding: 120px 20px;
    background: var(--bg-dark);
}

.about-container-premium {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.image-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.image-frame img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-frame:hover img {
    transform: scale(1.1);
}

.image-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(0, 229, 255, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.image-frame:hover .image-overlay-premium {
    opacity: 1;
}

.about-text-premium {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.about-text-premium strong {
    color: var(--primary-orange);
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.2);
}

.highlight-icon {
    font-size: 2.5rem;
}

.highlight-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-white);
}

/* ===== CONTACT SECTION ===== */
.contact-premium {
    padding: 120px 20px;
    background: var(--bg-black);
}

.contact-container-premium {
    max-width: 1400px;
    margin: 0 auto;
}

.contact-header-premium {
    text-align: center;
    margin-bottom: 80px;
}

.contact-grid-premium {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-glow);
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.2);
}

.contact-icon-premium {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.contact-link {
    text-decoration: none;
    color: var(--primary-orange);
    font-size: 1.125rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    text-decoration: none;
    color: var(--accent-cyan);
}

.social-links-premium {
    display: flex;
    gap: 1rem;
}

.social-btn {
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--text-white);
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

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

/* ===== CONTACT FORM ===== */
.contact-form-premium {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 3rem;
}

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

.form-field-premium {
    position: relative;
}

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

.form-field-premium input,
.form-field-premium select,
.form-field-premium textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    color: var(--text-white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-field-premium input:focus,
.form-field-premium select:focus,
.form-field-premium textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    background: rgba(255, 152, 0, 0.05);
    box-shadow: 0 0 0 4px rgba(255, 152, 0, 0.1);
}

.form-field-premium label {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-field-premium textarea+label {
    top: 1.25rem;
    transform: none;
}

.form-field-premium input:focus+label,
.form-field-premium input:not(:placeholder-shown)+label,
.form-field-premium textarea:focus+label,
.form-field-premium textarea:not(:placeholder-shown)+label {
    top: -0.75rem;
    left: 1rem;
    font-size: 0.75rem;
    color: var(--primary-orange);
    background: var(--bg-black);
    padding: 0 0.5rem;
}

.form-field-premium select {
    cursor: pointer;
}

.form-field-premium select option {
    background: var(--bg-dark);
}

.btn-premium.full-width {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer-premium {
    background: var(--bg-dark);
    border-top: 1px solid var(--glass-border);
    padding: 60px 20px 30px;
}

.footer-container-premium {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top-premium {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--glass-border);
}

.footer-brand-premium {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(255, 152, 0, 0.5));
}

.footer-slogan {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-5px);
}

.footer-links-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

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

.footer-column h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.footer-column a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--text-white);
    padding-left: 10px;
}

.footer-bottom-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-premium p {
    color: var(--text-gray);
    font-size: 0.875rem;
}

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

.footer-countries span {
    color: var(--text-gray);
    font-size: 0.875rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {

    .product-container,
    .about-container-premium {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-grid-premium {
        grid-template-columns: 1fr;
    }

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

    .footer-links-premium {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

    .hero-stats {
        gap: 1.5rem;
    }

    .stat-box {
        padding: 1.5rem 2rem;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .floating-shape {
        display: none;
    }
}

@media (max-width: 480px) {

    .hero-cta-premium,
    .product-cta-premium {
        flex-direction: column;
        width: 100%;
    }

    .btn-premium {
        width: 100%;
        justify-content: center;
    }

    .contact-form-premium {
        padding: 2rem 1.5rem;
    }
}