/* 
   Magno Digital Excellence 2026 - Design System
   Premium Technology Aesthetics
*/

:root {
    --bg-main: #0A0A0B;
    --bg-card: rgba(255, 255, 255, 0.03);
    --accent-cyan: #00F2FF;
    --accent-violet: #7000FF;
    --text-primary: #FFFFFF;
    --text-secondary: #A0A0A5;
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: 0 0 15px rgba(0, 242, 255, 0.3);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Outfit:wght@400;700;800&display=swap');

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

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--accent-violet), var(--accent-cyan));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}


h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Glassmorphism Utility */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-10px);
    box-shadow: var(--neon-glow);
}

/* Navbar */
.navigation {
    background: rgba(10, 10, 11, 0.7) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary) !important;
    text-transform: lowercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand img {
    border-radius: 8px;
    filter: brightness(1.2);
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-item.active .nav-link {
    color: var(--accent-cyan) !important;
}

/* Hero Section */
.hero-2026 {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    background: var(--bg-main);
}

.hero-2026::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, rgba(0, 242, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(112, 0, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(0, 242, 255, 0.05) 0%, transparent 50%);
    z-index: -2;
    animation: pulseGradient 15s ease infinite alternate;
}


@keyframes pulseGradient {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.1); }
}



.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-image-main {
    width: 100%;
    height: auto;
    animation: floatHero 8s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 242, 255, 0.2));
}

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


.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.btn-premium {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-violet));
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.2);
}

.btn-premium:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.4);
    color: white;
}

/* Section Styling */
.section-2026 {
    padding: 120px 0;
}

.section-tag {
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.section-title-2026 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

/* Service/Product Cards */
.service-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(112, 0, 255, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--accent-cyan);
    border: 1px solid var(--glass-border);
}

.product-img-wrapper {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border: 1px solid var(--glass-border);
}

.product-img-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

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


.glass-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

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

.animate-up {
    animation: fadeInUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }


/* Footer Dark Map */
.contact-map {
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    filter: invert(90%) hue-rotate(180deg) brightness(0.9);
}

/* Responsive Fixes */
@media (max-width: 991px) {
    .hero-title { font-size: 3rem; }
    .hero-image-bg { width: 80%; right: -20%; }
}

@media (max-width: 767px) {
    .hero-2026 { height: auto; padding: 120px 0; }
    .hero-image-bg { display: none; }
    .section-title-2026 { font-size: 2.5rem; }
}
