/* =========================================
   MKDCS — STYLE.CSS (OVERHAULED)
   Font: Outfit (headings) + Inter (body)
   Brand: #ff471a (orange), dark glass base
   ========================================= */

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

/* =========================================
   1. GLOBAL VARIABLES & BASE
   ========================================= */
:root {
    /* Backgrounds */
    --bg-page:        #f0f2f5;
    --bg-surface:     #ffffff;
    --bg-dark:        #080d18;
    --bg-dark2:       #0d1526;

    /* Text */
    --text-dark-main:   #0b1120;
    --text-dark-muted:  #536079;
    --text-light-main:  #f4f6fb;
    --text-light-muted: #8fa0be;

    /* Brand */
    --brand-orange:   #E00000;
    --brand-orange2:  #FF1A1A;
    --brand-orange-glow: rgba(224, 0, 0, 0.25);
    --accent-blue:    #0ea5e9;

    /* Wire/Cable palette */
    --wire-tan:       #c4a96a;
    --wire-dark:      #4a3f2e;
    --wire-grey:      #6b7280;

    /* Glass */
    --glass-light-bg:     rgba(255, 255, 255, 0.72);
    --glass-light-border: rgba(255, 255, 255, 0.9);
    --glass-dark-bg:      rgba(8, 13, 24, 0.97);
    --glass-blur:         blur(18px);

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body:    'Inter', sans-serif;
}

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

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
}

body {
    font-family: var(--font-body);
    background: var(--bg-page);
    color: var(--text-dark-main);
    line-height: 1.65;
}

/* ── Ambient Glows ── */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes breatheGlow {
    0%, 100% { transform: translateX(-50%) scale(1);   opacity: 0.7; }
    50%       { transform: translateX(-50%) scale(1.4); opacity: 1;   }
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, 30px) scale(1.1); }
    100% { transform: translate(-30px, -40px) scale(0.9); }
}

.glow-1 {
    width: 100vw; max-width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(224,0,0,0.08) 0%, transparent 70%);
    top: -120px; left: 50%; transform: translateX(-50%);
    animation: breatheGlow 10s ease-in-out infinite;
}


.glow-orange { background: rgba(224, 0, 0, 0.12); width: 500px; height: 500px; animation: floatGlow 14s ease-in-out infinite alternate; }
.glow-blue { background: rgba(14, 165, 233, 0.08); width: 600px; height: 600px; animation: floatGlow 18s ease-in-out infinite alternate-reverse; }
.glow-top-left { top: -10%; left: -10%; }
.glow-bottom-right { bottom: -10%; right: -10%; }
.relative-section { position: relative; z-index: 1; overflow: hidden; }

/* =========================================
   2. SMART NAVIGATION
   ========================================= */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 5%;
    position: fixed;
    top: 0; left: 0; width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

nav.scrolled {
    background: var(--glass-dark-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 14px 5%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

nav.nav-hidden { transform: translateY(-100%); pointer-events: none; }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-img { height: 54px; width: auto; display: block; }

.logo-fallback { align-items: center; gap: 10px; }
.logo-mark {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--brand-orange);
    letter-spacing: .06em;
}
.logo-text { display: flex; flex-direction: column; }
.logo-text span:first-child {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-light-main);
    letter-spacing: .05em;
    line-height: 1.1;
}
.logo-text span:last-child {
    font-family: var(--font-body);
    font-size: 0.65rem;
    color: var(--text-light-muted);
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* Nav links */
.nav-links {
    display: flex; align-items: center; gap: 28px;
    list-style: none; margin: 0; padding: 0;
}
.nav-links li { display: flex; align-items: center; }

.nav-links a {
    color: var(--text-light-muted);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: .03em;
    transition: color 0.3s;
    display: inline-flex; align-items: center;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text-light-main); }

/* Underline hover (Unified for Desktop & Mobile) */
.nav-links a:not(.btn-glass):not(.btn-solid-orange):not(.dropdown-content a),
.nav-links .dropbtn { position: relative; }
.nav-links a:not(.btn-glass):not(.btn-solid-orange):not(.dropdown-content a)::after,
.nav-links .dropbtn::after {
    content: '';
    position: absolute; bottom: 4px; left: 12px;
    width: 0; height: 2px;
    background: var(--brand-orange);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav-links a:not(.btn-glass):not(.btn-solid-orange):not(.dropdown-content a):hover::after,
.nav-links a:not(.btn-glass):not(.btn-solid-orange):not(.dropdown-content a):active::after,
.nav-links a.active:not(.btn-glass):not(.btn-solid-orange):not(.dropdown-content a)::after,
.nav-links .dropbtn:hover::after,
.nav-links .dropbtn:active::after,
.nav-links .dropbtn.active::after,
.nav-links .dropdown:has(.dropdown-content.locked) .dropbtn::after { width: calc(100% - 24px); }

/* Adjust underline positioning for Desktop layout */
@media (min-width: 901px) {
    .nav-links a:not(.btn-glass):not(.btn-solid-orange):not(.dropdown-content a)::after,
    .nav-links .dropbtn::after { bottom: -5px; left: 0; }
    .nav-links a:not(.btn-glass):not(.btn-solid-orange):not(.dropdown-content a):hover::after,
    .nav-links a.active:not(.btn-glass):not(.btn-solid-orange):not(.dropdown-content a)::after,
    .nav-links .dropbtn:hover::after,
    .nav-links .dropbtn.active::after,
    .nav-links .dropdown:hover .dropbtn::after { width: 100%; }
}

/* Contact button */
.btn-glass {
    background: rgba(224,0,0, 0.1);
    border: 1px solid rgba(224, 0, 0, 0.35);
    color: var(--text-light-main) !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: .04em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex; justify-content: center; align-items: center;
}
.btn-glass:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    box-shadow: 0 4px 20px var(--brand-orange-glow);
    transform: translateY(-3px);
}

/* Solid primary button */
.btn-solid-orange {
    background: var(--brand-orange);
    border: 1px solid var(--brand-orange);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: .04em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    display: inline-flex; justify-content: center; align-items: center;
    box-shadow: 0 4px 14px rgba(224, 0, 0, 0.25);
}
.btn-solid-orange:hover {
    background: var(--brand-orange2);
    border-color: var(--brand-orange2);
    box-shadow: 0 6px 24px var(--brand-orange-glow);
    transform: translateY(-3px);
}

/* Shine on all primary buttons */
.btn-outline-orange, .btn-blue, .btn-glass, .btn-solid-orange {
    position: relative; overflow: hidden; z-index: 1;
}
.btn-outline-orange::after, .btn-blue::after, .btn-glass::after, .btn-solid-orange::after {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    z-index: -1;
}
.btn-outline-orange:hover::after, .btn-blue:hover::after, .btn-glass:hover::after, .btn-solid-orange:hover::after { left: 200%; }

/* Hamburger */
.menu-toggle { display: none; }

/* =========================================
   3. DROPDOWN MENU
   ========================================= */
.dropdown { position: relative; }
.dropbtn  { cursor: pointer; gap: 6px; }
.arrow    { font-size: 8px; transition: transform 0.3s ease; }

.dropdown:hover .arrow { transform: rotate(180deg); }

.dropdown-content {
    display: none;
    position: absolute; top: calc(100% + 10px); left: 50%;
    transform: translateX(-50%);
    background: var(--glass-dark-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    min-width: 250px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.65);
    z-index: 1000;
    padding: 10px 0;
    flex-direction: column; list-style: none;
}

/* Creates an invisible bridge across the 10px gap so the hover state doesn't break */
.dropdown-content::after {
    content: '';
    position: absolute;
    top: -15px; 
    left: 0;
    width: 100%;
    height: 15px;
    background: transparent;
}

.dropdown-content a {
    padding: 11px 22px;
    display: flex; align-items: center; gap: 10px;
    width: 100%;
    color: var(--text-light-muted);
    transition: all 0.2s ease;
    font-size: 0.86rem;
    letter-spacing: .02em;
}

.dropdown-content a:hover,
.dropdown-content a.active {
    background: rgba(224,0,0,0.07);
    color: var(--text-light-main);
    padding-left: 26px;
}
.dropdown-content a:hover::before { opacity: 1; }

.dropdown:hover .dropdown-content,
.dropdown-content.locked {
  display: flex;
  flex-direction: column;
  animation: fadeSlideUp 0.2s ease forwards;
}

@keyframes fadeSlideUp {
    from { opacity: 0; transform: translate(-50%, 8px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

/* Glow Animation for Footer Navigation Trigger */
@keyframes pulseRingOrange {
  0%   { box-shadow: 0 0 0 0 rgba(224, 0, 0, 0.5); }
  70%  { box-shadow: 0 0 0 10px rgba(224, 0, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(224, 0, 0, 0); }
}

.dropbtn.triggered {
  animation: pulseRingOrange 0.6s ease-out;
  border-radius: 6px;
}

/* =========================================
   MOBILE NAV
   ========================================= */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex; flex-direction: column;
        justify-content: space-between;
        width: 28px; height: 20px;
        background: none; border: none; cursor: pointer; z-index: 1001;
    }
    .menu-toggle .bar {
        height: 2.5px; width: 100%;
        background: var(--text-light-main);
        border-radius: 10px; transition: all 0.3s ease;
    }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8.75px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8.75px) rotate(-45deg); }

    .nav-links {
        display: flex; flex-direction: column;
        align-items: flex-start; justify-content: flex-start;
        position: fixed; top: 0; right: 0; bottom: 0;
        width: 85vw; max-width: 340px; height: 100vh; height: 100dvh;
        background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(2, 6, 23, 0.98));
        backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(224, 0, 0, 0.3);
        gap: 14px; padding: 96px 36px 40px;
        box-shadow: -15px 0 40px rgba(0,0,0,0.6);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        overflow-y: auto; -webkit-overflow-scrolling: touch; z-index: 1000;
    }
    .nav-links.active { transform: translateX(0); }

    nav .dropdown { width: 100%; display: block; position: static; }
    nav .nav-links a:not(.dropdown-content a), nav .dropbtn {
        width: 100%; display: flex; justify-content: space-between;
        align-items: center; padding: 11px 12px;
        color: var(--text-light-main); font-size: 1.05rem;
        border-radius: 8px;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    nav .nav-links a:not(.dropdown-content a):not(.btn-glass):not(.btn-solid-orange):hover, nav .dropbtn:hover,
    nav .nav-links a.active:not(.dropdown-content a):not(.btn-glass):not(.btn-solid-orange), nav .dropbtn.active {
        color: var(--brand-orange);
        transform: translateX(6px);
    }
    nav .nav-links a:not(.dropdown-content a):not(.btn-glass):not(.btn-solid-orange):active, nav .dropbtn:active {
        transform: scale(0.98) translateX(6px);
    }
    nav .dropdown-content {
        position: static !important; display: flex !important;
        flex-direction: column; width: 100%;
        max-height: 0; overflow: hidden;
        opacity: 0 !important;
        transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
        background: transparent !important; backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important; box-shadow: none !important;
        border: none !important; border-radius: 0 !important;
        padding: 0 !important; margin: 0 !important;
        transform: none !important; animation: none !important;
    }
    nav .dropdown-content.locked {
        max-height: 500px; opacity: 1 !important;
        padding: 5px 0 14px 0 !important; animation: none !important;
        visibility: visible;
    }
    nav .dropdown-content li { width: 100%; }
    nav .dropdown-content a {
        padding: 11px 0 11px 18px !important; font-size: 0.92rem;
        display: block; width: 100%; color: var(--text-light-muted) !important;
        background: transparent !important;
        border-left: 1px solid rgba(255,255,255,0.12) !important; margin-left: 8px;
        transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, padding-left 0.2s ease;
    }
    nav .dropdown-content a:hover, nav .dropdown-content a:active, nav .dropdown-content a.active {
        color: var(--brand-orange) !important;
        background: rgba(224, 0, 0, 0.07) !important;
        padding-left: 24px !important;
    }
    nav .dropdown:hover .dropdown-content:not(.locked) {
        max-height: 0 !important; opacity: 0 !important;
        padding: 0 !important; visibility: hidden;
    }
    .dropdown:hover .arrow { transform: rotate(0deg); }
    nav .dropdown:has(.dropdown-content.locked) .arrow,
    nav .dropdown:has(.dropdown-content.locked):hover .arrow { transform: rotate(180deg); }
    .dropdown:hover .dropdown-content { display: none; animation: none; }
    .dropdown-content.locked {
        display: flex !important; max-height: 500px; opacity: 1; position: static;
    }
    .nav-links .dropdown-content { transform: none !important; left: 0; width: 100%; }
    nav .nav-links a.btn-glass, nav .nav-links a.btn-solid-orange {
        padding: 11px 22px !important; width: auto !important;
        display: inline-flex !important; justify-content: center; margin-top: 12px;
    }
}

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero {
    display: flex; align-items: center; justify-content: center;
    min-height: 95vh;
    padding: 120px 2% 80px;
    background: linear-gradient(160deg, rgba(5,10,20,0.65) 0%, rgba(5,10,20,0.92) 100%),
                url('../images/data-center-network-infrastructure-with-blue-cabling_411562-21607.png');
    background-size: cover; background-position: center;
    color: var(--text-light-main);
    position: relative; overflow: hidden;
}

/* Floating Glass Badges */
.hero-floating-badge {
    position: absolute;
    background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 16px 22px;
    border-radius: 16px;
    display: flex; align-items: center; gap: 18px;
    color: var(--text-light-main);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}
.hero-floating-badge.badge-left { top: 28%; left: 6%; animation-delay: 0s; }
.hero-floating-badge.badge-right { bottom: 18%; right: 8%; animation-delay: -3s; }
.hero-floating-badge.badge-top { top: 18%; right: 12%; animation-delay: -1.5s; padding: 12px 18px; }

/* Anniversary Hero Badge Position Overrides */
.anniversary-hero .hero-floating-badge.badge-left { top: auto; bottom: 12%; left: auto; right: 30%; }
.anniversary-hero .hero-floating-badge.badge-top { top: 15%; left: auto; right: 4%; bottom: auto; }
.anniversary-hero .hero-floating-badge.badge-right { top: auto; bottom: 12%; left: auto; right: 4%; }

/* Lock Anniversary badges to the grid center on ultra-wide screens */
@media (min-width: 1540px) {
    .anniversary-hero .hero-floating-badge.badge-left { right: calc(50vw - 190px); }
    .anniversary-hero .hero-floating-badge.badge-top { right: calc(50vw - 600px); }
    .anniversary-hero .hero-floating-badge.badge-right { right: calc(50vw - 620px); }
    .anniversary-badge-wrapper { position: relative; right: 15px; } /* Optical centering nudge */
}

.badge-icon-wrap {
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(224,0,0,0.15); border: 1px solid rgba(224,0,0,0.3);
    display: flex; align-items: center; justify-content: center;
}
.hero-floating-badge i { color: var(--brand-orange); width: 22px; height: 22px; }
.badge-info strong { display: block; font-size: 1.05rem; font-family: var(--font-display); line-height: 1.1; color: #fff; margin-bottom: 4px; }
.badge-info span { font-size: 0.7rem; color: var(--text-light-muted); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; display: flex; align-items: center; gap: 6px; }

/* Pulsing Green Dot */
.pulse-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: #22c55e; box-shadow: 0 0 10px #22c55e;
    animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

/* Scroll Down Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    opacity: 0; animation: heroFadeInUp 1s ease 1.2s both;
    z-index: 5;
}
.scroll-indicator .mouse {
    width: 26px; height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 13px;
    position: relative;
}
.scroll-indicator .mouse::before {
    content: ''; position: absolute;
    top: 6px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--brand-orange);
    animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel {
    0% { transform: translate(-50%, 0); opacity: 1; }
    100% { transform: translate(-50%, 16px); opacity: 0; }
}

/* Emphasis in Headings */
h1 em, h2 em, h3 em,
.hero h1 em, .section-header-center h2 em, .section-header-left h2 em,
.overview-text-content h2 em, .services-header h2 em, .editorial-hero .hero-title em {
    color: var(--brand-orange);
    font-weight: inherit;
    font-style: normal;
}


/* Animated conduit lines */
.hero::after {
    content: '';
    position: absolute; bottom: -2px; left: 0; right: 0;
    height: 3px; z-index: 3;
    background: linear-gradient(90deg, transparent 0%, var(--brand-orange) 30%, #FF1A1A 50%, var(--brand-orange) 70%, transparent 100%);
    box-shadow: 0 0 20px var(--brand-orange-glow);
}

.hero-content {
    width: 100%; max-width: 860px;
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
    position: relative; z-index: 2;
}

/* EYEBROW — cable-specific badge */
.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body);
    font-size: 0.72rem; font-weight: 600;
    letter-spacing: .2em; text-transform: uppercase;
    color: var(--brand-orange);
    background: rgba(224,0,0,0.12);
    border: 1px solid rgba(224,0,0,0.3);
    padding: 6px 16px; border-radius: 50px;
    margin-bottom: 14px;
    opacity: 0; animation: heroFadeInUp 0.8s ease 0.1s both;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    width: 18px; height: 2px;
    background: var(--brand-orange); border-radius: 2px;
    flex-shrink: 0;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -.01em;
    text-transform: uppercase;
    margin-bottom: 16px;
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Anniversary Tagline Side-by-Side */
.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--text-light-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    opacity: 0;
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}
.hero-tagline em {
    color: var(--brand-orange);
    font-style: normal;
}
.hero-tagline .sep {
    color: rgba(255, 255, 255, 0.3);
}

.hero-sub {
    color: var(--text-light-muted);
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    max-width: 620px;
    margin: 0 auto 24px;
    line-height: 1.75;
    opacity: 0;
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

/* Hero Highlight Pills */
.hero-highlights {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 16px;
    margin-bottom: 32px;
    opacity: 0; animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.hero-highlights span {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 500; color: var(--text-light-main);
    background: rgba(255,255,255,0.05); padding: 8px 16px; border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1); backdrop-filter: blur(10px);
}
.hero-highlights i { width: 16px; height: 16px; color: var(--brand-orange); }

/* Hero Coil */
.hero-coil {
    margin-top: 40px;
    opacity: 0;
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s both;
}

.hero-actions-center {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

/* Split Layout for Anniversary Hero */
.hero-split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    max-width: 1440px;
    width: 100%;
    position: relative;
    z-index: 10;
}
.hero-content-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.hero-content-left h1 {
    text-align: left;
}

/* Custom Anniversary Badge */
.anniversary-badge-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
.anniversary-badge {
    width: 380px;
    height: 380px;
    background: var(--bg-dark2);
    border-radius: 50%;
    border: 12px solid rgba(255, 255, 255, 0.03);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5), inset 0 0 40px rgba(0,0,0,0.5);
}
.anniversary-badge::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 100%; height: 100%;
    transform: translate(-50%, -50%) scale(0.8);
    border-radius: 50%;
    background: var(--brand-orange);
    filter: blur(40px);
    z-index: -1;
    opacity: 0;
    pointer-events: none;
        animation: badgePulseGlow 5s infinite;
        animation-delay: 1s; /* Waits for the intro animation to finish */
}
@keyframes badgePulseGlow {
        0%   { transform: translate(-50%, -50%) scale(0.8); opacity: 0; }
        10%  { transform: translate(-50%, -50%) scale(1.05); opacity: 0.6; }  /* Fast glow in */
        75%  { transform: translate(-50%, -50%) scale(1.15); opacity: 0.5; }  /* Longer glow hold */
        100%  { transform: translate(-50%, -50%) scale(1.25); opacity: 0; }    /* Slow fade out */
}
.anniversary-badge .badge-inner {
    width: 310px;
    height: 310px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.badge-years-row {
    display: flex;
    align-items: center;
    justify-content: center;
}
.badge-num-large {
    font-family: var(--font-display);
    font-size: 10rem;
    font-weight: 900;
    color: var(--brand-orange);
    line-height: 0.85; /* Trims empty bounding box space for perfect centering */
    text-shadow: 0 10px 30px rgba(224,0,0,0.3);
    letter-spacing: -0.05em;
    margin-right: -5px;
}
.badge-text-years {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    letter-spacing: 0.15em;
}
.badge-ribbon {
    position: relative;
    margin-top: 8px;
    background: #fff;
    color: var(--text-dark-main);
    padding: 12px 34px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.15em;
    border-radius: 6px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

/* Anniversary Strip */
.anniversary-strip {
    background: var(--bg-dark2);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 80px 5%;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.anniversary-strip::before {
    content: '10';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 25vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02);
    pointer-events: none;
    line-height: 0.8;
}
.anniversary-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.anniversary-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-light-main);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: 0.02em;
}
.anniversary-title em {
    color: var(--brand-orange);
    font-style: normal;
}
.anniversary-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--text-light-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content .btn-glass,
.hero-content .btn-outline-orange,
.hero-actions-center {
    opacity: 0;
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

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

/* ── CABLE WIRE DIVIDER (reusable) ── */
.wire-divider {
    position: relative; width: 100%;
    height: 80px; overflow: hidden;
    background: var(--bg-page);
}
.wire-divider.wd-dark { background: var(--bg-dark); }
.wire-divider svg { position: absolute; inset: 0; width: 100%; height: 100%; }

/* =========================================
   5. OVERVIEW SECTION
   ========================================= */
.modern-overview {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
    max-width: 1220px; margin: 44px auto;
    padding: 0 5%;
}

.overview-visual {
    background: var(--glass-dark-bg);
    background-image: var(--bg-img);
    background-size: cover; background-position: center;
    backdrop-filter: var(--glass-blur);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    min-height: 300px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.12);
    position: relative; overflow: hidden;
}

/* Corner cable-port accent */
.overview-visual::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-10px); }
}
.huge-icon, .card-illus, .about-visual img { animation: float 6s ease-in-out infinite; }
.huge-icon { width: 120px; height: 120px; color: rgba(255,255,255,0.08); }

/* Floating Badge for Images/Visuals */
.floating-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--glass-light-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--brand-orange);
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    z-index: 5;
    animation: float 6s ease-in-out infinite;
}
.floating-badge .badge-num {
    display: block;
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--brand-orange);
    line-height: 1;
    font-weight: 800;
    margin-bottom: 4px;
}
.floating-badge .badge-text {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--text-dark-muted);
    text-transform: uppercase;
    font-weight: 700;
}

.overview-text-content {
    background: var(--glass-light-bg);
    border: 1px solid var(--glass-light-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.04);
    position: relative; overflow: hidden;
}

/* Top-left decorative port marks */
.overview-text-content::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange) 0%, transparent 60%);
}

.section-subtitle {
    color: var(--brand-orange);
    font-family: var(--font-body);
    font-size: 0.68rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .22em;
    margin-bottom: 8px; display: flex; align-items: center; gap: 10px;
}
.section-subtitle::before {
    content: '';
    width: 24px; height: 2px;
    background: var(--brand-orange);
    border-radius: 2px; flex-shrink: 0;
}

.overview-text-content h2 {
    font-family: var(--font-display);
    font-size: 2.4rem; font-weight: 700;
    color: var(--text-dark-main);
    text-transform: uppercase; letter-spacing: -.02em;
    margin-bottom: 14px; line-height: 1.08;
}

.overview-text-content p {
    color: var(--text-dark-muted);
    font-size: 0.93rem; line-height: 1.75; margin-bottom: 14px;
}

.overview-stats {
    display: flex; gap: 24px;
    margin: 16px 0; padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.stat-item { display: flex; flex-direction: column; }
.stat-num {
    font-family: var(--font-display);
    color: var(--brand-orange); font-size: 2rem; font-weight: 700; line-height: 1;
}
.stat-label { font-size: 0.76rem; color: var(--text-dark-muted); margin-top: 2px; }

.btn-outline-orange {
    border: 2px solid var(--brand-orange);
    color: var(--brand-orange);
    padding: 12px 28px; border-radius: 8px;
    font-size: 0.88rem; font-weight: 600;
    text-decoration: none; letter-spacing: .04em;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); display: inline-block;
}
.btn-outline-orange:hover {
    background: var(--brand-orange); color: white;
    box-shadow: 0 8px 24px var(--brand-orange-glow);
    transform: translateY(-3px);
}

/* =========================================
   6. SERVICES SECTION
   ========================================= */
.modern-services { padding: 44px 5%; }

.services-header {
    text-align: center; max-width: 600px; margin: 0 auto 36px;
}
.services-header .section-subtitle { justify-content: center; }
.services-header h2 {
    font-family: var(--font-display);
    font-size: 2.6rem; font-weight: 700;
    color: var(--text-dark-main);
    text-transform: uppercase; letter-spacing: .01em;
    margin-bottom: 8px;
}
.services-header p { color: var(--text-dark-muted); font-size: 0.93rem; }

.modern-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px; max-width: 1220px; margin: 0 auto;
}

.modern-card {
    background: var(--glass-light-bg);
    border: 1px solid var(--glass-light-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 14px; overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: 0 8px 28px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
}
.modern-card:hover { 
    transform: translateY(-10px); 
    box-shadow: 0 20px 48px rgba(0,0,0,0.1); 
    border-color: rgba(224, 0, 0, 0.4);
}
.modern-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0) 100%);
    opacity: 0; transition: opacity 0.3s; z-index: 1; pointer-events: none;
}
.modern-card:hover::before { opacity: 1; }

.card-visual {
    background: var(--glass-dark-bg);
    background-image: var(--bg-img); background-size: cover; background-position: center;
    height: 130px;
    display: flex; align-items: center; justify-content: center;
    border-bottom: 3px solid var(--brand-orange);
    position: relative; overflow: hidden;
}
/* Wire texture inside card visual */
.card-visual::after {
    content: '';
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent 0px, transparent 10px,
        rgba(255,255,255,0.02) 10px, rgba(255,255,255,0.02) 11px
    );
    pointer-events: none;
}

.card-illus { width: 56px; height: 56px; color: rgba(255,255,255,0.12); }

.card-body {
    position: relative; padding: 22px 18px 18px;
    display: flex; flex-direction: column; flex-grow: 1;
}

.card-icon {
    position: absolute; top: 0; left: 20px;
    transform: translateY(-50%);
    width: 44px; height: 44px;
    background: var(--brand-orange);
    border: 3px solid #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; box-shadow: 0 4px 14px rgba(224,0,0,0.3);
}
.card-icon svg { width: 20px; height: 20px; }
.card-icon img { width: 20px; height: 20px; object-fit: contain; filter: brightness(0) invert(1); }

.card-body h3 {
    font-family: var(--font-display);
    font-size: 1.25rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .04em;
    color: var(--text-dark-main); margin-bottom: 10px;
}
.card-body p { color: var(--text-dark-muted); font-size: 0.86rem; margin-bottom: 14px; flex-grow: 1; line-height: 1.7; }

.card-link {
    color: var(--brand-orange); font-size: 0.84rem;
    text-decoration: none; font-weight: 600; letter-spacing: .04em;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
}
.card-link:hover { gap: 10px; }

/* =========================================
   WIRE SECTION DIVIDERS
   ========================================= */

/* ── Type A: Wavy cable run ── */
.section-wire-divider {
    position: relative; width: 100%; padding: 0;
    background: var(--bg-page); overflow: hidden; line-height: 0;
}
.section-wire-divider.dark-wire { background: var(--bg-dark2); }
.section-wire-divider svg { display: block; width: 100%; }

/* ── Type B: Inline cable strip ── */
.cable-strip {
    width: 100%; background: var(--bg-dark2);
    padding: 32px 5%; display: flex;
    align-items: center; gap: 0; overflow: hidden;
    position: relative;
}
.cable-strip::before,
.cable-strip::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: 100px; z-index: 2;
    pointer-events: none;
}
.cable-strip::before { left: 0; background: linear-gradient(to right, var(--bg-dark2), transparent); }
.cable-strip::after  { right: 0; background: linear-gradient(to left, var(--bg-dark2), transparent); }

.cable-strip-svg { width: 100%; height: 48px; display: block; }

/* =========================================
   7. HARDWARE MARQUEE
   ========================================= */
.hardware-marquee-section {
    border-top: 1px solid var(--glass-light-border);
    border-bottom: 1px solid var(--glass-light-border);
    padding: 24px 0;
    position: relative; display: flex;
    flex-direction: column; align-items: center;
}
.marquee-label {
    font-family: var(--font-body);
    font-size: 0.66rem; font-weight: 700;
    color: var(--text-dark-main); letter-spacing: .28em;
    margin-bottom: 14px; z-index: 3;
}
.marquee-content {
    width: 100%; overflow: hidden; position: relative;
    max-width: 1600px;
}
.marquee-content::before, .marquee-content::after {
    content: ''; position: absolute; top: 0; width: 14%; height: 100%;
    z-index: 2; pointer-events: none;
}
.marquee-content::before { left: 0;  background: linear-gradient(to right, var(--bg-page) 0%, transparent 100%); }
.marquee-content::after  { right: 0; background: linear-gradient(to left,  var(--bg-page) 0%, transparent 100%); }

.marquee-track {
    display: flex; align-items: center; width: max-content;
    animation: scrollPureCSS 90s linear infinite;
}
.marquee-content:hover .marquee-track { animation-play-state: paused; }

.hardware-item {
    height: 46px; width: auto; object-fit: contain;
    margin-right: 72px;
    filter: grayscale(100%) opacity(0.42);
    transition: filter 0.3s ease, transform 0.3s ease;
    cursor: pointer;
}
.hardware-item:hover { filter: grayscale(0%) opacity(1); transform: scale(1.1); }

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

/* =========================================
   8. WHY CHOOSE US — TABS
   ========================================= */
.modern-why-us {
    padding: 28px 5% 52px;
    max-width: 1300px; margin: 0 auto;
}

/* Section header shared */
.section-header-center {
    text-align: center; max-width: 600px; margin: 0 auto 48px;
}
.section-header-center .section-subtitle { justify-content: center; }
.section-header-center h2 {
    font-family: var(--font-display);
    font-size: 2.6rem; font-weight: 700; text-transform: uppercase;
    color: var(--text-dark-main); letter-spacing: .01em;
}

.why-tabs {
    display: flex; gap: 10px; margin-bottom: 12px;
    flex-wrap: wrap; justify-content: center;
}

.why-tab-btn {
    background: var(--glass-light-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-light-border);
    padding: 10px 18px; border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem; font-weight: 600;
    color: var(--text-dark-muted); cursor: pointer;
    display: flex; align-items: center; gap: 9px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 3px 12px rgba(0,0,0,0.03);
    letter-spacing: .02em;
}
.why-tab-btn img { width: 22px; height: 22px; object-fit: contain; }
.why-tab-btn i   { width: 22px; height: 22px; color: var(--text-dark-muted); transition: color 0.3s; }

.why-tab-btn:hover { 
    border-color: var(--brand-orange); 
    color: var(--text-dark-main); 
    transform: translateY(-4px); 
    box-shadow: 0 8px 24px rgba(224, 0, 0, 0.15);
}
.why-tab-btn:hover i { color: var(--brand-orange); }

.why-tab-btn.active {
    background: var(--brand-orange); color: #fff;
    border-color: var(--brand-orange);
    box-shadow: 0 8px 24px var(--brand-orange-glow); transform: translateY(-4px);
}
.why-tab-btn.active i { color: #fff; }
.why-tab-btn.active img { filter: brightness(0) invert(1); }

.why-content-container {
    background: var(--glass-light-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-light-border);
    border-radius: 18px; overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}

.why-panel {
    display: none; grid-template-columns: 1.1fr 0.9fr; gap: 28px;
    padding: 26px; animation: fadeIn 0.4s ease forwards;
}
.why-panel.active { display: grid; }

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

.why-text h3 {
    font-family: var(--font-display);
    font-size: 2rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .03em;
    color: var(--text-dark-main); margin-bottom: 12px;
}
.why-intro {
    color: var(--text-dark-muted); font-size: 1rem;
    font-style: italic; margin-bottom: 16px; line-height: 1.65;
}

.modern-check-list { list-style: none; padding: 0; }
.modern-check-list li {
    position: relative; padding-left: 32px;
    margin-bottom: 10px; font-size: 0.92rem;
    color: var(--text-dark-muted); line-height: 1.6;
}
.modern-check-list li strong { color: var(--text-dark-main); }
.modern-check-list li::before {
    content: '✓'; position: absolute; left: 0; top: 1px;
    color: var(--brand-orange); font-size: 1.1rem; font-weight: 900;
}

.why-image { width: 100%; height: 100%; min-height: 300px; border-radius: 10px; overflow: hidden; }
.why-image img { width: 100%; height: 100%; object-fit: cover; }

/* =========================================
   9. PORTFOLIO
   ========================================= */
.modern-portfolio { padding: 28px 5% 52px; max-width: 1300px; margin: 0 auto; }

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

.portfolio-item {
    border-radius: 12px; overflow: hidden;
    aspect-ratio: 4/3; cursor: pointer;
    border: 1px solid var(--glass-light-border);
    position: relative; background: #000;
}
.portfolio-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease; display: block;
    color: #fff;
}
.portfolio-item:hover img { transform: scale(1.05); opacity: 0.88; }

.portfolio-overlay {
    position: absolute; inset: 0;
    background: rgba(8,13,24,0.78);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
    color: #fff; pointer-events: none;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }

.portfolio-label {
    font-family: var(--font-display);
    font-size: 1.1rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .06em;
    margin-bottom: 10px;
    transform: translateY(14px); transition: transform 0.3s ease;
}
.portfolio-item:hover .portfolio-label { transform: translateY(0); }

.zoom-icon { width: 30px; height: 30px; transform: scale(0.5); transition: transform 0.3s; }
.portfolio-item:hover .zoom-icon { transform: scale(1); }

.portfolio-action { text-align: center; }

.btn-blue {
    background: var(--accent-blue); color: #fff;
    padding: 12px 36px; border-radius: 8px;
    text-decoration: none; font-size: 0.9rem; font-weight: 600;
    display: inline-block; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); border: none;
    letter-spacing: .04em;
}
.btn-blue:hover { 
    background: #0284c7; 
    transform: translateY(-4px); 
    box-shadow: 0 8px 24px rgba(14,165,233,0.3); 
}

/* =========================================
   10. LIGHTBOX
   ========================================= */
.lightbox-modal {
    display: none; position: fixed; z-index: 2000;
    inset: 0; background: rgba(8,13,24,0.96);
    backdrop-filter: blur(12px);
    align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
}
.lightbox-modal.active { display: flex; opacity: 1; }

.lightbox-content {
    max-width: 90%; max-height: 85vh;
    border-radius: 8px; box-shadow: 0 18px 60px rgba(0,0,0,0.6);
    animation: zoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    object-fit: contain;
}
@keyframes zoomIn {
    from { transform: scale(0.92); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}

.lightbox-close {
    position: absolute; top: 22px; right: 32px;
    color: var(--text-light-muted); font-size: 38px; font-weight: 700;
    cursor: pointer; transition: color 0.3s; z-index: 2010;
}
.lightbox-close:hover { color: var(--brand-orange); }

.lightbox-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    color: white; width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; cursor: pointer; border-radius: 50%;
    backdrop-filter: blur(5px); transition: all 0.3s; z-index: 2010;
}
.lightbox-nav:hover {
    background: var(--brand-orange); border-color: var(--brand-orange);
    transform: translateY(-50%) scale(1.1);
}
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }

/* =========================================
   11. ABOUT PAGE
   ========================================= */
.container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }

.section-header-left { margin-bottom: 38px; text-align: left; }
.section-header-left .section-subtitle {
    display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}
.section-header-left .section-subtitle::after {
    content: ''; display: block; width: 56px; height: 1.5px;
    background: var(--brand-orange);
}
.section-header-left h2 {
    font-family: var(--font-display);
    font-size: 2.3rem; font-weight: 700;
    color: var(--text-dark-main); text-transform: uppercase; letter-spacing: .02em;
}

/* Editorial / About hero */
.about-hero, .editorial-hero {
    display: flex; align-items: center; justify-content: center;
    min-height: 420px;
    background-image:
        linear-gradient(rgba(5,10,20,0.7), rgba(5,10,20,0.88)),
        url('../images/server-room-bg.jpg');
    background-size: cover; background-position: center;
    color: white; text-align: center; padding-top: 80px;
    position: relative;
}
.about-hero::after, .editorial-hero::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--brand-orange), transparent);
}
.editorial-hero {
    background-image: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.88)), var(--hero-bg);
}

.about-hero h1, .editorial-hero .hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 800;
    text-transform: uppercase; letter-spacing: .02em;
    margin-bottom: 14px;
    animation: heroFadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.editorial-hero-content {
    padding: 140px 20px 80px; display: flex;
    flex-direction: column; align-items: center; text-align: center;
    max-width: 800px; z-index: 2;
}
.editorial-hero-desc {
    font-size: 1.05rem; color: rgba(255,255,255,0.78);
    line-height: 1.65; margin-bottom: 38px; max-width: 560px;
    opacity: 0; animation: heroFadeInUp 1s ease 0.2s both;
}

.breadcrumbs { font-size: 0.95rem; font-weight: 500; }
.breadcrumbs a { color: var(--brand-orange); text-decoration: none; }
.breadcrumbs a:hover { color: var(--brand-orange2); }
.breadcrumbs .divider { color: rgba(255,255,255,0.4); margin: 0 9px; }
.breadcrumbs .current { color: white; }

/* About sections */
.about-company-section { padding: 80px 0 40px; background: var(--bg-surface); }
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; align-items: center; }
.about-visual img { width: 100%; height: auto; max-width: 440px; display: block; margin: 0 auto; }

.overview-title {
    font-family: var(--font-display);
    font-size: 1.9rem; font-weight: 700; text-transform: uppercase;
    color: var(--text-dark-main); margin-bottom: 14px; text-align: center;
}
.about-text-content p { color: #525f72; font-size: 0.93rem; line-height: 1.82; margin-bottom: 22px; }

/* Slogan */
.slogan-section { background: var(--bg-page); padding: 24px 0; }
.slogan-grid    { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.slogan-card {
    background: var(--bg-surface); padding: 28px 36px;
    border-radius: 8px; display: flex; align-items: center; gap: 18px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    border-left: 4px solid var(--brand-orange);
}
.slogan-icon img { width: 34px; height: 34px; object-fit: contain; }
.slogan-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem; font-weight: 700; text-transform: uppercase;
    color: var(--text-dark-main);
}

/* =========================================
   UTILITIES (Reusable layouts)
   ========================================= */
.pt-0 { padding-top: 0 !important; }
.grid-max-800 { max-width: 800px; margin: 0 auto; }
.grid-max-1000 { max-width: 1000px; margin: 0 auto; }
.visual-sm { height: 140px !important; }

/* Mission / Vision */
.objectives-section { padding: 40px 5% 80px; }
.mv-grid  { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.mv-card  { display: flex; flex-direction: column; align-items: center; }
.mv-image { width: 100%; height: 270px; border-radius: 14px; overflow: hidden; box-shadow: 0 8px 28px rgba(0,0,0,0.05); }
.mv-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.mv-card:hover .mv-image img { transform: scale(1.05); }
.mv-box {
    background: var(--glass-light-bg); width: 90%;
    backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-light-border);
    padding: 48px 28px 38px; border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    position: relative; margin-top: -56px; text-align: center; z-index: 2;
}
.mv-icon-circle {
    position: absolute; top: -24px; left: 50%; transform: translateX(-50%);
    width: 48px; height: 48px; background: var(--brand-orange); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 4px solid #fff; box-shadow: 0 4px 12px rgba(224,0,0,0.28);
}
.mv-icon-circle img { width: 20px; height: 20px; filter: brightness(0) invert(1); }
.mv-box h3 {
    font-family: var(--font-display);
    font-size: 1.3rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em;
    color: var(--text-dark-main); margin-bottom: 14px;
}
.mv-box p { color: #5e6e84; font-size: 0.88rem; line-height: 1.75; }

/* =========================================
   12. IT INFRASTRUCTURE PAGE
   ========================================= */
.it-products-section { padding: 80px 0 120px; background: var(--bg-surface); }
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 38px 28px; }
.product-card {
    background: var(--bg-surface); border-radius: 10px;
    box-shadow: 0 8px 36px rgba(0,0,0,0.06);
    display: flex; flex-direction: column; align-items: center;
    padding-bottom: 32px; transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 16px 52px rgba(0,0,0,0.1); }
.product-image-wrap { width: 100%; height: 210px; display: flex; justify-content: center; align-items: center; padding: 28px; position: relative; }
.product-image-wrap img { max-width: 100%; max-height: 100%; object-fit: contain; transition: transform 0.3s; }
.product-card:hover .product-image-wrap img { transform: scale(1.05); }

.product-icon {
    position: absolute; bottom: -24px; left: 50%; transform: translateX(-50%);
    width: 48px; height: 48px; background: var(--brand-orange); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 4px solid #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.12); z-index: 2;
}
.product-icon img { width: 20px; height: 20px; filter: brightness(0) invert(1); transition: none; }
.product-card:hover .product-icon img { transform: none; }
.product-card h3 {
    margin-top: 42px;
    font-family: var(--font-display);
    font-size: 1.2rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
    color: var(--text-dark-main);
}

/* Back to top */
.back-to-top {
    position: fixed; bottom: 28px; right: 28px; z-index: 1000;
    width: 44px; height: 44px; background: var(--brand-orange); color: white;
    text-align: center; line-height: 44px; font-size: 18px; border-radius: 6px;
    text-decoration: none; opacity: 0; visibility: hidden;
    transition: all 0.3s; box-shadow: 0 4px 14px var(--brand-orange-glow);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: #B30000; transform: translateY(-3px); }

/* =========================================
   13. SCROLL REVEAL
   ========================================= */
.reveal, .reveal-left, .reveal-right {
    opacity: 0; transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal       { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal.active, .reveal-left.active, .reveal-right.active {
    opacity: 1; transform: none;
}

/* =========================================
   14. FOOTER
   ========================================= */
footer {
    background: var(--bg-dark2);
    padding: 64px 5% 32px; margin-top: 0;
    color: var(--text-light-main);
    position: relative; overflow: hidden;
}
/* Top orange line */
footer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--brand-orange) 0%, var(--brand-orange2) 30%, transparent 100%);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 24px;
}

.footer-brand p {
    color: var(--text-light-muted);
    font-size: 0.92rem; line-height: 1.7;
    margin-bottom: 20px; max-width: 380px;
}
.footer-contact p {
    display: flex; align-items: center;
    color: var(--text-light-muted);
    font-size: 0.88rem; margin-bottom: 12px;
}
.footer-contact i { color: var(--brand-orange); }

.footer-links h4 {
    font-family: var(--font-display);
    font-size: 1.05rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--text-light-main);
    margin-bottom: 20px;
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 14px; }
.footer-links a {
    color: var(--text-light-muted); text-decoration: none;
    font-size: 0.92rem; transition: all 0.3s;
    display: inline-block;
}
.footer-links a:before{

}
.footer-links a:hover { color: var(--brand-orange); transform: translateX(6px); }

.footer-socials { display: flex; gap: 18px; margin-top: 20px; }
.social-icon {
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--text-light-muted); transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none; padding: 0;
}
.social-icon svg {
    width: 22px; height: 22px; fill: none; stroke: currentColor;
    stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; display: block;
}
.social-icon:hover { transform: translateY(-4px) scale(1.15); color: var(--text-light-main); }
.social-icon:active { transform: translateY(0) scale(0.95); transition: all 0.1s; }
.social-icon.fb-icon:hover { color: #1877F2; filter: drop-shadow(0 4px 8px rgba(24,119,242,0.4)); }
.social-icon.ig-icon:hover { color: #E1306C; filter: drop-shadow(0 4px 8px rgba(225,48,108,0.4)); }

.cert-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.cert-badge {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
    padding: 6px 12px; border-radius: 6px; font-size: 0.72rem;
    font-weight: 700; letter-spacing: .05em; color: var(--text-light-muted);
    text-transform: uppercase;
}

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { color: var(--text-light-muted); font-size: 0.85rem; }
.footer-credits { color: var(--brand-orange) !important; font-size: 0.75rem !important; opacity: 0.9; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; }

/* Remove hover effect from modern cards in the contact section */
.contact-split .modern-card:hover {
    transform: none;
    box-shadow: 0 8px 28px rgba(0,0,0,0.05);
    border-color: var(--glass-light-border);
}
.contact-split .modern-card:hover::before {
    opacity: 0;
}
/* =========================================
   15. RESPONSIVE
   ========================================= */
@media (max-width: 1240px) {
    .anniversary-badge { width: 320px; height: 320px; border-width: 10px; }
    .anniversary-badge .badge-inner { width: 260px; height: 260px; border-width: 2px; }
    .badge-num-large { font-size: 8rem; }
    .badge-text-years { font-size: 1.8rem; }
    .badge-ribbon { font-size: 1.2rem; padding: 10px 24px; }
    .hero-split-layout { gap: 30px; }
}
@media (max-width: 1024px) {
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
    .hero-floating-badge { display: none; }
    
    .hero-split-layout { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .hero-content-left { align-items: center; }
    .hero-content-left h1, .hero-content-left .hero-sub { text-align: center !important; margin-left: auto !important; margin-right: auto !important; }
    .hero-content-left .hero-tagline, .hero-content-left .hero-actions-center { justify-content: center !important; }
}
@media (max-width: 900px) {
    .modern-overview { grid-template-columns: 1fr; padding: 0 20px; }
    .overview-text-content { padding: 36px 28px; }
    .hero h1 { font-size: 2.6rem; }
    
    .anniversary-badge { width: 300px; height: 300px; border-width: 8px; }
    .anniversary-badge .badge-inner { width: 250px; height: 250px; border-width: 2px; }
    .badge-num-large { font-size: 7.5rem; }
    .badge-text-years { font-size: 1.6rem; }
    .badge-ribbon { font-size: 1.1rem; padding: 10px 24px; }

    .hero-tagline { flex-direction: column; gap: 4px; }
    .hero-tagline .sep { display: none; }

    .floating-badge { bottom: -10px; right: -10px; padding: 16px 24px; }
    .floating-badge .badge-num { font-size: 2rem; }

    .why-panel { grid-template-columns: 1fr; padding: 28px; }
    .why-tab-btn { flex: 1 1 45%; justify-content: center; font-size: 0.85rem; }
    .why-image { min-height: 240px; }

    .about-grid { grid-template-columns: 1fr; }
    .about-visual { order: -1; margin-bottom: 14px; }
    .overview-title { text-align: left; }
    .slogan-grid, .mv-grid { grid-template-columns: 1fr; }
    .mv-grid { gap: 72px; }
}
@media (max-width: 600px) {
    .why-tab-btn { flex: 1 1 100%; }
    .anniversary-strip { padding: 60px 5%; }
    .anniversary-strip::before { font-size: 35vw; }
    .floating-badge { position: absolute; bottom: -15px; right: 15px; margin: 0; display: block; animation: float 6s ease-in-out infinite; padding: 14px 20px; }
    .floating-badge .badge-num { font-size: 1.6rem; margin-bottom: 2px; }
    .floating-badge .badge-text { font-size: 0.65rem; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-actions-center { flex-direction: column; width: 100%; max-width: 320px; gap: 14px; }
    .hero-actions-center a { width: 100%; }
}
@media (max-width: 768px) {
    .lightbox-nav { width: 42px; height: 42px; font-size: 16px; }
    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
    .hardware-item { height: 34px; margin-right: 36px; }
    .marquee-content::before, .marquee-content::after { width: 8%; }
}