/* ================================
   RESET & BASE STYLES
   ================================ */

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

:root {
    /* Manga Corp Brand Colors */
    --primary-orange: #ff6b35;
    --secondary-orange: #ff8c42;
    --dark-orange: #e55a2b;
    --light-orange: #ffa366;
    
    /* Supporting Colors */
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-bg: #1a1a1a;
    --accent-blue: #00d4ff;
    --accent-purple: #8b5cf6;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --text-muted: #666666;
    
    /* Lighting Effects */
    --glow-orange: 0 0 20px rgba(255, 107, 53, 0.4);
    --glow-blue: 0 0 20px rgba(0, 212, 255, 0.4);
    --glow-purple: 0 0 20px rgba(139, 92, 246, 0.4);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    --gradient-bg: linear-gradient(135deg, var(--dark-bg) 0%, var(--light-bg) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--dark-bg);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ================================
   LOADING OVERLAY
   ================================ */

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.body:not(.loading) .loading-overlay {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 30px;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
    border-top-color: var(--primary-orange);
    animation-duration: 1.5s;
}

.spinner-ring:nth-child(2) {
    border-right-color: var(--accent-blue);
    animation-duration: 2s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    border-bottom-color: var(--accent-purple);
    animation-duration: 2.5s;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ================================
   LANGUAGE SELECTOR
   ================================ */

.language-selector {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1001;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 25px;
    color: var(--text-primary);
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: var(--glow-orange);
}

.lang-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
    border-color: var(--primary-orange);
    box-shadow: 0 0 30px rgba(255, 107, 53, 0.6);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: rgba(26, 26, 26, 0.95);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 10px;
    min-width: 150px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.lang-option {
    display: block;
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: left;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-option:hover {
    background: rgba(255, 107, 53, 0.2);
    color: var(--text-primary);
}

/* ================================
   UTILITY CLASSES
   ================================ */

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

.section {
    padding: 100px 0;
    position: relative;
}

.section-alt {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Orbitron', sans-serif;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(var(--glow-orange));
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.1;
    filter: blur(20px);
    z-index: -1;
}

.section-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   BUTTONS
   ================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--glow-orange);
    position: relative;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.8);
}

.btn-primary:hover::after {
    opacity: 0.5;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border-color: var(--primary-orange);
    box-shadow: inset 0 0 0 0 var(--primary-orange);
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    color: white;
    box-shadow: inset 0 0 0 50px var(--primary-orange), var(--glow-orange);
    transform: translateY(-3px);
}

/* ================================
   NAVIGATION
   ================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom-color: rgba(255, 107, 53, 0.4);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo .logo-img {
    width: 50px;
    height: auto;
    filter: drop-shadow(var(--glow-orange));
}

.nav-logo .logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
}

.nav-logo .logo-main {
    color: var(--text-primary);
}

.nav-logo .logo-sub {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    box-shadow: var(--glow-orange);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
    text-shadow: var(--glow-orange);
}

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

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

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-orange);
    transition: 0.3s;
    border-radius: 3px;
    box-shadow: var(--glow-orange);
}

/* ================================
   HERO SECTION
   ================================ */

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: radial-gradient(ellipse at center, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    overflow: hidden;
}

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

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 107, 53, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(0, 212, 255, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(139, 92, 246, 0.8), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255, 107, 53, 0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(0, 212, 255, 0.8), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-200px, -100px, 0);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.lighting-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        conic-gradient(from 0deg at 30% 70%, transparent 0deg, rgba(255, 107, 53, 0.3) 60deg, transparent 120deg),
        conic-gradient(from 180deg at 70% 30%, transparent 0deg, rgba(0, 212, 255, 0.2) 90deg, transparent 180deg);
    animation: lightingRotate 30s linear infinite;
}

@keyframes lightingRotate {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg) scale(1.1);
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg) scale(1);
        opacity: 0.3;
    }
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 30px;
    font-family: 'Orbitron', sans-serif;
    line-height: 1.1;
}

.title-line {
    display: block;
    font-size: 0.5em;
    opacity: 0.9;
    margin-bottom: 15px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.title-highlight {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8));
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    0% {
        filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8));
    }
    100% {
        filter: drop-shadow(0 0 50px rgba(255, 107, 53, 1));
    }
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    color: var(--text-secondary);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-orange);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    filter: drop-shadow(var(--glow-orange));
}

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

/* ================================
   SERVICES SECTION
   ================================ */

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

.service-card {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.service-card:hover::before {
    opacity: 0.1;
}

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 80px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-orange);
    filter: drop-shadow(var(--glow-orange));
}

.icon-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .icon-glow {
    opacity: 1;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.8));
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.service-features {
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.service-features li i {
    color: var(--primary-orange);
    font-size: 0.8rem;
}

/* ================================
   INFRASTRUCTURE SECTION
   ================================ */

.infrastructure-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
}

.stat-glow {
    position: absolute;
    inset: -10px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-card:hover .stat-glow {
    opacity: 0.6;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.stat-suffix {
    font-size: 1.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.infrastructure-features {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.feature-item.reverse {
    direction: rtl;
}

.feature-item.reverse > * {
    direction: ltr;
}

.feature-visual {
    position: relative;
}

.feature-visual img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.3));
}

.pulse-effect {
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary-orange);
    border-radius: 20px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.05);
        opacity: 0;
    }
}

.feature-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.feature-content ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.feature-content ul li i {
    color: var(--primary-orange);
}

/* ================================
   PUBLISHING SECTION
   ================================ */

.publishing-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 60px;
}

.publishing-visual {
    position: relative;
    text-align: center;
}

.publishing-visual img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.4));
}

.floating-elements {
    position: absolute;
    inset: 0;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--glow-orange);
    animation: float 3s ease-in-out infinite;
    animation-delay: var(--delay);
}

.floating-icon:nth-child(1) { top: 10%; left: 10%; }
.floating-icon:nth-child(2) { top: 20%; right: 15%; }
.floating-icon:nth-child(3) { bottom: 30%; left: 5%; }
.floating-icon:nth-child(4) { bottom: 10%; right: 10%; }
.floating-icon:nth-child(5) { top: 50%; left: -10%; }
.floating-icon:nth-child(6) { top: 60%; right: -5%; }

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

.publishing-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    font-family: 'Orbitron', sans-serif;
}

.publishing-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.publishing-process {
    display: grid;
    gap: 20px;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: white;
    font-family: 'Orbitron', sans-serif;
    flex-shrink: 0;
}

.step-content h4 {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 5px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

/* ================================
   CONTACT SECTION
   ================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 60px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    position: relative;
}

.icon-pulse {
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary-orange);
    border-radius: 15px;
    animation: pulse 2s ease-in-out infinite;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.contact-details p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

.social-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-link:hover .social-glow {
    opacity: 0.8;
}

/* ================================
   FORMS
   ================================ */

.contact-form {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.2);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(10, 10, 10, 0.8);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: var(--light-bg);
    padding: 0 10px;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.form-glow {
    position: absolute;
    inset: 0;
    border: 2px solid var(--primary-orange);
    border-radius: 15px;
    opacity: 0;
    filter: blur(5px);
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label + .form-glow,
.form-group textarea:focus + label + .form-glow,
.form-group select:focus + label + .form-glow {
    opacity: 0.3;
}

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

.btn-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 50px;
    filter: blur(15px);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-submit:hover .btn-glow {
    opacity: 0.5;
}

/* ================================
   FOOTER
   ================================ */

.footer {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    color: var(--text-primary);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
    opacity: 0.5;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-img {
    width: 40px;
    height: auto;
    filter: drop-shadow(var(--glow-orange));
}

.footer-logo .logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
}

.footer-logo .logo-main {
    color: var(--text-primary);
}

.footer-logo .logo-sub {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 107, 53, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 768px) {
    .language-selector {
        top: 90px;
        right: 10px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        padding: 30px 0;
        gap: 20px;
        border-top: 1px solid rgba(255, 107, 53, 0.2);
    }

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

    .nav-toggle {
        display: flex;
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-item.reverse {
        direction: ltr;
    }

    .publishing-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

    .section {
        padding: 60px 0;
    }

    .hero-buttons {
        gap: 15px;
    }

    .btn {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

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

    .contact-form {
        padding: 25px;
    }

    .floating-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ================================
   SCROLL REVEAL ANIMATIONS
   ================================ */

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ================================
   PERFORMANCE OPTIMIZATIONS
   ================================ */

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

/* Force GPU acceleration for smooth animations */
.hero-particles,
.lighting-effect,
.floating-icon,
.pulse-effect {
    will-change: transform;
    transform: translateZ(0);
}