/* ===============================================
   ROOT VARIABLES - HOLOGRAPHIC CYBER AGENCY
   =============================================== */
:root {
    --cyber-black: #030009;
    --cyber-black-2: #080011;
    --cyber-deep: #0d0618;
    --cyber-card: rgba(20, 10, 35, 0.65);
    --cyber-card-strong: rgba(35, 15, 55, 0.78);
    --cyber-purple: #8b3dff;
    --cyber-purple-2: #b56cff;
    --cyber-purple-glow: rgba(139, 61, 255, 0.65);
    --cyber-white: #ffffff;
    --cyber-muted: rgba(255, 255, 255, 0.72);
    --cyber-border: rgba(181, 108, 255, 0.28);
    --cyber-blue: #00d5ff;
    --primary: var(--cyber-purple);
    --primary-dark: #6a28d1;
    --primary-glow: var(--cyber-purple-glow);
    --bg-dark: var(--cyber-black);
    --bg-dark-2: var(--cyber-black-2);
    --bg-section: var(--cyber-deep);
    --white: var(--cyber-white);
    --text: var(--cyber-white);
    --text-muted: var(--cyber-muted);
    --border: rgba(255, 255, 255, 0.12);
    --border-purple: var(--cyber-border);
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 40px var(--primary-glow);
    --shadow-lg: 0 16px 60px var(--primary-glow);
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===============================================
   GLOBAL PREMIUM TYPOGRAPHY SYSTEM
   =============================================== */

/* Arabic Typography (RTL) */
[dir="rtl"],
[dir="rtl"] body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.8;
    letter-spacing: 0;
}

/* English Typography (LTR) */
[dir="ltr"],
[dir="ltr"] body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    letter-spacing: 0.5px;
}

/* Global Reset & Base Typography */
*, *::before, *::after {
    font-family: inherit;
}

body {
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
}

/* Hero Title - Premium Large Display */
.hero-title,
h1.hero-display,
.display-1 {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
}

/* Section Titles */
.section-title,
h2 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
}

/* Card Titles */
.card-title,
h3 {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
}

/* Small Text */
.small-text,
.small,
.text-sm {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}

/* Buttons Typography */
.btn,
button,
input,
select,
textarea {
    font-family: inherit;
}

/* Navbar Typography */
.navbar-brand,
.nav-link {
    font-family: inherit;
}

/* Footer Typography */
footer,
.footer {
    font-family: inherit;
}

/* Cards Typography */
.cyber-card,
.universe-card,
.service-card,
.testimonial-card,
.brand-universe-card {
    font-family: inherit;
}

/* Media Gallery Typography */
.brand-media-gallery-section,
.brand-media-grid,
.brand-media-card {
    font-family: inherit;
}

/* Packages & Pricing Typography */
.package-card {
    font-family: inherit;
}

/* Contact & Forms Typography */
.contact-section,
.contact-form,
.form-control {
    font-family: inherit;
}

/* Services Page Typography */
.services-page {
    font-family: inherit;
}

/* Portfolio Page Typography */
.portfolio-page {
    font-family: inherit;
}

/* Responsive Typography - Tablet */
@media (max-width: 991.98px) {
    body {
        font-size: 17px;
    }
    
    .hero-title,
    h1.hero-display,
    .display-1 {
        font-size: 48px;
    }
    
    .section-title,
    h2 {
        font-size: 34px;
    }
}

/* Responsive Typography - Mobile */
@media (max-width: 767.98px) {
    body {
        font-size: 16px;
    }
    
    .hero-title,
    h1.hero-display,
    .display-1 {
        font-size: 36px;
    }
    
    .section-title,
    h2 {
        font-size: 28px;
    }
    
    .card-title,
    h3 {
        font-size: 22px;
    }
}

/* ===============================================
   GLOBAL CYBER BACKGROUND & LAYOUT
   =============================================== */
html,
body {
    overflow-x: hidden;
}

.cyber-page,
body {
    position: relative;
    background: var(--cyber-black);
    min-height: 100vh;
}

.cyber-noise::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.06;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.cyber-grid::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: linear-gradient(
            to right,
            rgba(181, 108, 255, 0.12) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(181, 108, 255, 0.12) 1px,
            transparent 1px
        );
    background-size: 60px 60px;
    opacity: 0.3;
    mask-image: radial-gradient(circle at 50% 50%, black 40%, transparent 85%);
    -webkit-mask-image: radial-gradient(
        circle at 50% 50%,
        black 40%,
        transparent 85%
    );
}

.cyber-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    pointer-events: none;
    z-index: 0;
}

.cyber-glow-orb.orb-1 {
    top: 5%;
    left: 10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, var(--cyber-purple), transparent);
    animation: floatOrb1 18s ease-in-out infinite;
}

.cyber-glow-orb.orb-2 {
    bottom: 10%;
    right: 12%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--cyber-purple-2), transparent);
    animation: floatOrb2 22s ease-in-out infinite;
}

.cyber-glow-orb.orb-3 {
    top: 40%;
    left: 50%;
    transform: translateX(-50%);
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(139, 61, 255, 0.25), transparent);
    animation: pulseOrb 8s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(40px, 30px, 0);
    }
}

@keyframes floatOrb2 {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(-30px, -40px, 0);
    }
}

@keyframes pulseOrb {
    0%,
    100% {
        opacity: 0.3;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1.1);
    }
}

/* ===============================================
   TYPOGRAPHY - CYBER STYLE
   =============================================== */
body {
    font-family: "Cairo", "Tajawal", "Segoe UI", sans-serif;
}

.cyber-eyebrow {
    display: inline-block;
    color: var(--cyber-purple);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.8rem;
    text-shadow: 0 0 10px rgba(139, 61, 255, 0.4);
}

.cyber-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
}

.cyber-subtitle {
    font-size: 1.15rem;
    color: var(--cyber-muted);
    line-height: 1.7;
}

.cyber-gradient-text {
    background: linear-gradient(
        135deg,
        var(--cyber-white) 0%,
        var(--cyber-purple) 50%,
        var(--cyber-purple-2) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===============================================
   CYBER SECTION & CONTAINER
   =============================================== */
.cyber-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.cyber-container {
    position: relative;
    z-index: 1;
}

/* ===============================================
   HOLOGRAPHIC CARD COMPONENT
   =============================================== */
.holo-card {
    position: relative;
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    background: var(--cyber-card);
    border: 1px solid var(--cyber-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: var(--transition);
}

.holo-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--cyber-purple),
        var(--cyber-purple-2),
        transparent
    );
    opacity: 0.9;
}

.holo-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(139, 61, 255, 0.08) 40%,
        rgba(181, 108, 255, 0.06) 60%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.holo-card:hover::after {
    transform: translateX(100%);
}

.holo-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(181, 108, 255, 0.45);
    box-shadow: 0 20px 80px var(--primary-glow);
}

.holo-card .data-line {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-purple));
    animation: dataLineMove 2s linear infinite;
}

@keyframes dataLineMove {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        width: 80px;
        opacity: 1;
    }
    100% {
        width: 0;
        opacity: 0;
        left: auto;
        right: 24px;
    }
}

.holo-card .scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--cyber-purple),
        transparent
    );
    animation: scanLine 3s linear infinite;
    opacity: 0.5;
}

@keyframes scanLine {
    0% {
        top: 0;
    }
    100% {
        top: 100%;
    }
}

/* ===============================================
   NEON BUTTONS
   =============================================== */
.neon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1rem;
    border: 2px solid var(--cyber-purple);
    background: linear-gradient(
        135deg,
        var(--cyber-purple),
        var(--cyber-purple-2)
    );
    color: var(--cyber-white);
    box-shadow: 0 0 20px rgba(139, 61, 255, 0.4),
        0 0 40px rgba(139, 61, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.neon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(139, 61, 255, 0.6),
        0 0 60px rgba(139, 61, 255, 0.4);
}

.neon-btn.secondary {
    background: transparent;
    color: var(--cyber-white);
    box-shadow: none;
}

.neon-btn.secondary:hover {
    background: rgba(139, 61, 255, 0.1);
}

/* ===============================================
   CYBER BADGE & LINK
   =============================================== */
.cyber-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    border: 1px solid var(--cyber-border);
    background: rgba(181, 108, 255, 0.08);
    color: var(--cyber-muted);
    font-weight: 700;
    font-size: 0.85rem;
}

.cyber-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--cyber-purple);
    font-weight: 700;
    transition: var(--transition);
}

.cyber-link:hover {
    gap: 0.8rem;
    text-shadow: 0 0 12px rgba(139, 61, 255, 0.6);
}

/* ===============================================
   PURPLE GLOW UTILITY
   =============================================== */
.purple-glow {
    text-shadow: 0 0 10px rgba(139, 61, 255, 0.6),
        0 0 20px rgba(139, 61, 255, 0.4);
}

/* ===============================================
   GLASS PANEL
   =============================================== */
.glass-panel {
    background: rgba(20, 10, 35, 0.55);
    border: 1px solid var(--cyber-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 16px 80px rgba(0, 0, 0, 0.5);
}

/* ===============================================
   PARTICLES BACKGROUND
   =============================================== */
.cyber-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.cyber-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--cyber-purple);
    border-radius: 50%;
    opacity: 0.5;
    box-shadow: 0 0 8px rgba(139, 61, 255, 0.8);
    animation: particleFloat 15s linear infinite;
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    line-height: 1.7;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

img,
video,
canvas,
svg {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6, p, a, span {
    overflow-wrap: anywhere;
}

/* ===============================================
   LOADING SCREEN
   =============================================== */
html:not(.js) .loading-screen {
    display: none;
}

.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: radial-gradient(circle at 50% 50%, var(--bg-section) 0%, var(--bg-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-logo {
    text-align: center;
}

.loading-logo h1 {
    font-size: clamp(4rem, 12vw, 6rem);
    font-weight: 900;
    background: linear-gradient(90deg, var(--white), var(--primary), var(--white));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

.loading-spinner {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
}

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

/* ===============================================
   PROGRESS BAR
   =============================================== */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9998;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), #bba4f7);
    box-shadow: 0 0 20px var(--primary-glow);
}

/* ===============================================
   NAVBAR - HOLOGRAPHIC CYBER
   =============================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    padding: 1.2rem 0;
    background: transparent;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition);
}

.navbar::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--cyber-purple),
        var(--cyber-purple-2),
        transparent
    );
    opacity: 0.4;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(8, 0, 17, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 40px rgba(139, 61, 255, 0.2);
}

.navbar.scrolled::before {
    opacity: 0.8;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--text);
}

.brand-text {
    background: linear-gradient(90deg, var(--cyber-white), var(--cyber-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-logo {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(139, 61, 255, 0.6));
}

.brand-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 16px rgba(139, 61, 255, 0.8));
}

.navbar-toggler {
    border: 1px solid var(--cyber-border);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-link {
    color: var(--text) !important;
    font-weight: 700;
    padding: 0.6rem 1rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--cyber-purple),
        var(--cyber-purple-2),
        transparent
    );
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--cyber-purple) !important;
    text-shadow: 0 0 12px rgba(139, 61, 255, 0.6);
}

.nav-link:hover::after,
.nav-link:focus::after {
    transform: scaleX(1);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.lang-switcher {
    padding: 0.7rem 1.2rem;
    border-radius: 999px;
    background: rgba(20, 10, 35, 0.5);
    color: var(--text);
    border: 1px solid var(--cyber-border);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.lang-switcher:hover {
    background: rgba(139, 61, 255, 0.15);
    border-color: var(--cyber-purple);
    box-shadow: 0 0 20px rgba(139, 61, 255, 0.3);
}

/* ===============================================
   BUTTONS - NEON CYBER
   =============================================== */
.btn-primary,
.premium-cta,
.neon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.95rem 2rem;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1rem;
    border: 2px solid var(--cyber-purple);
    background: linear-gradient(
        135deg,
        var(--cyber-purple),
        var(--cyber-purple-2)
    );
    color: var(--cyber-white);
    box-shadow: 0 0 20px rgba(139, 61, 255, 0.4),
        0 0 40px rgba(139, 61, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 48px;
}

.btn-primary::before,
.premium-cta::before,
.neon-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-primary:hover::before,
.premium-cta:hover::before,
.neon-btn:hover::before {
    left: 100%;
}

.btn-primary:hover,
.premium-cta:hover,
.neon-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(139, 61, 255, 0.6),
        0 0 60px rgba(139, 61, 255, 0.4);
}

.premium-cta-secondary,
.neon-btn.secondary {
    background: transparent;
    color: var(--cyber-white);
    box-shadow: none;
}

.premium-cta-secondary:hover,
.neon-btn.secondary:hover {
    background: rgba(139, 61, 255, 0.1);
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
    min-height: 40px;
}

/* ===============================================
   HERO - HOME PAGE
   =============================================== */
.hero-premium {
    min-height: 100vh;
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 20% 30%, rgba(122, 62, 240, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(187, 164, 247, 0.15) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.hero-glow-1 {
    top: 10%;
    left: 10%;
    background: radial-gradient(circle, var(--primary), transparent);
    animation: float 8s ease-in-out infinite;
}

.hero-glow-2 {
    bottom: 15%;
    right: 10%;
    background: radial-gradient(circle, #bba4f7, transparent);
    animation: float 10s ease-in-out infinite reverse;
}

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

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

.hero-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
}

.hero-kicker {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    margin-bottom: 1.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    font-size: clamp(2.8rem, 6vw, 5rem);
    line-height: 1.05;
    font-weight: 900;
    margin-bottom: 1.2rem;
}

.text-gradient {
    background: linear-gradient(90deg, var(--white), var(--primary), #bba4f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ===============================================
   PAGE HERO (INNER PAGES)
   =============================================== */
.page-header {
    padding: 12rem 0 5rem;
    position: relative;
    overflow: hidden;
    background: 
        radial-gradient(circle at 50% 0%, rgba(122, 62, 240, 0.18) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
}

/* ===============================================
   SECTIONS
   =============================================== */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-shell {
    padding: 6rem 0;
    position: relative;
}

.section-shell:nth-child(even) {
    background: var(--bg-section);
}

.section::before,
.section-shell::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(122, 62, 240, 0.08), transparent 50%);
    pointer-events: none;
}

.section-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
    position: relative;
    z-index: 1;
}

.section-eyebrow {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.8rem;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.section-heading p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* ===============================================
   METRICS
   =============================================== */
.metrics-shell {
    padding-top: 0;
    margin-top: -3rem;
    position: relative;
    z-index: 2;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.analytics-panel {
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.analytics-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(122, 62, 240, 0.05), transparent);
    pointer-events: none;
}

.analytics-panel strong {
    display: block;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.3rem;
    position: relative;
    z-index: 1;
}

.analytics-panel span {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* ===============================================
   SERVICES
   =============================================== */
.services-grid,
.service-luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card,
.service-luxury-card {
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    background: var(--cyber-card);
    border: 1px solid var(--cyber-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before,
.service-luxury-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--cyber-purple),
        var(--cyber-purple-2),
        transparent
    );
    opacity: 0.9;
}

.service-card::after,
.service-luxury-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(139, 61, 255, 0.08) 40%,
        rgba(181, 108, 255, 0.06) 60%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.service-card:hover::after,
.service-luxury-card:hover::after {
    transform: translateX(100%);
}

.service-card:hover,
.service-luxury-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(181, 108, 255, 0.45);
    box-shadow: 0 20px 80px var(--cyber-purple-glow);
}

.service-icon,
.service-command-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(122, 62, 240, 0.1);
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-title,
.service-luxury-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.service-desc,
.service-luxury-card p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.service-link,
.text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 700;
    transition: var(--transition);
}

.service-link:hover,
.text-link:hover {
    gap: 0.8rem;
}

/* ===============================================
   PORTFOLIO
   =============================================== */
.portfolio-grid,
.portfolio-luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.portfolio-item,
.portfolio-luxury-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: var(--transition);
}

.portfolio-item:hover,
.portfolio-luxury-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.portfolio-image,
.portfolio-command-media {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.portfolio-image img,
.portfolio-command-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img,
.portfolio-luxury-card:hover img {
    transform: scale(1.08);
}

.portfolio-overlay,
.portfolio-command-body {
    padding: 1.8rem;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(8, 6, 16, 0.95) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-meta {
    display: inline-block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.6rem;
}

.portfolio-overlay h4,
.portfolio-command-body h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.portfolio-overlay p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

/* ===============================================
   WHY US / VALUES
   =============================================== */
.why-luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.why-luxury-card {
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.why-luxury-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-purple);
}

.why-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(122, 62, 240, 0.1);
    color: var(--primary);
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.why-luxury-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
}

.why-luxury-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

.value-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
}

.value-item .value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-item h4 {
    font-size: 1.3rem;
    font-weight: 800;
}

/* ===============================================
   PACKAGES
   =============================================== */
.packages-grid,
.packages-luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.package-card,
.package-luxury-card {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.package-card:hover,
.package-luxury-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured,
.package-luxury-card.is-featured {
    border-color: var(--border-purple);
    background: linear-gradient(135deg, rgba(122, 62, 240, 0.1), rgba(255, 255, 255, 0.04));
    box-shadow: var(--shadow-md);
}

.package-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.package-name,
.package-luxury-card h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.package-for,
.package-audience {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.8rem;
    display: block;
}

.package-features,
.package-luxury-card ul {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
}

.package-features li,
.package-luxury-card li {
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    position: relative;
    padding-left: 1.8rem;
}

html[dir="rtl"] .package-features li,
html[dir="rtl"] .package-luxury-card li {
    padding-left: 0;
    padding-right: 1.8rem;
}

.package-features li::before,
.package-luxury-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 900;
    font-size: 1rem;
}

html[dir="rtl"] .package-features li::before,
html[dir="rtl"] .package-luxury-card li::before {
    left: auto;
    right: 0;
}

/* ===============================================
   TESTIMONIALS
   =============================================== */
.testimonials-carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(320px, 1fr);
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
    position: relative;
    z-index: 1;
}

.testimonials-carousel::-webkit-scrollbar {
    height: 6px;
}

.testimonials-carousel::-webkit-scrollbar-track {
    background: transparent;
}

.testimonials-carousel::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 999px;
}

.testimonial-luxury-card {
    scroll-snap-align: start;
    padding: 2.2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.2rem;
}

.testimonial-luxury-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.8rem;
}

.testimonial-person {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-person img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(122, 62, 240, 0.2);
}

.testimonial-person strong {
    display: block;
    font-weight: 800;
}

.testimonial-person span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===============================================
   CTA / CONTACT PANEL
   =============================================== */
.cta-shell {
    padding: 6rem 0;
}

.contact-command-panel {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2rem;
    padding: 3.5rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--bg-section) 0%, var(--bg-dark-2) 100%);
    border: 1px solid var(--border-purple);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-command-panel::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary), transparent);
    opacity: 0.25;
    filter: blur(80px);
    pointer-events: none;
}

.cta-copy,
.contact-command-links {
    position: relative;
    z-index: 1;
}

.cta-copy h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-copy p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.contact-command-links {
    display: grid;
    gap: 1.2rem;
}

.contact-command-links a {
    display: grid;
    gap: 0.4rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.contact-command-links a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-purple);
    transform: translateY(-3px);
}

.contact-command-links strong {
    font-weight: 800;
    font-size: 1.05rem;
}

.contact-command-links span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===============================================
   BLOG
   =============================================== */
.blog-card {
    padding: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card > img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.blog-card .blog-meta,
.blog-card h3,
.blog-card .blog-excerpt,
.blog-card .service-link {
    padding: 0 1.8rem;
}

.blog-card .blog-meta {
    padding-top: 1.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.blog-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.blog-card .blog-excerpt {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.blog-card .service-link {
    padding-bottom: 1.8rem;
}

/* ===============================================
   CONTACT PAGE
   =============================================== */
.glass-card {
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.form-label {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.form-control,
.form-select {
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    padding: 0.9rem 1.1rem;
}

.form-control:focus,
.form-select:focus {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--border-purple);
    box-shadow: 0 0 0 0.25rem rgba(122, 62, 240, 0.15);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #86efac;
}

/* ===============================================
   FOOTER
   =============================================== */
.footer {
    padding: 4.5rem 0 2rem;
    background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-dark) 100%);
    border-top: 1px solid var(--border);
}

.footer-brand {
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
    display: inline-block;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--white), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-contact li {
    color: var(--text-muted);
    transition: var(--transition);
}

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

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

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

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    color: var(--text);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
}

/* ===============================================
   WHATSAPP BUTTON
   =============================================== */
.whatsapp-float {
    position: fixed;
    bottom: 1.8rem;
    right: 1.8rem;
    z-index: 1020;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

/* ===============================================
   REVEAL ON SCROLL
   =============================================== */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================================
   RESPONSIVE
   =============================================== */
/* Small phones */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }
    .hero-premium {
        padding: 7rem 0 3.5rem;
    }
    .page-header {
        padding: 9rem 0 3.5rem;
    }
}

/* Phones */
@media (max-width: 575.98px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    .hero-content h1 {
        font-size: clamp(2.2rem, 10vw, 4rem);
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .premium-cta {
        width: 100%;
    }
    .hero-kicker {
        font-size: 0.85rem;
    }
    .btn-primary,
    .premium-cta {
        width: 100%;
    }
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    .analytics-panel strong {
        font-size: 2.2rem;
    }
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 1.2rem;
        right: 1.2rem;
    }
    .contact-command-panel {
        padding: 1.8rem;
    }
    .contact-command-panel::before {
        width: 250px;
        height: 250px;
    }
}

/* Tablets */
@media (max-width: 767.98px) {
    .hero-premium {
        padding: 8rem 0 4rem;
    }
    .page-header {
        padding: 10rem 0 4rem;
    }
    .section,
    .section-shell {
        padding: 4rem 0;
    }
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    .contact-command-panel {
        grid-template-columns: 1fr;
    }
    .glass-card {
        padding: 1.8rem;
    }
    .footer {
        padding: 3.5rem 0 1.8rem;
    }
    .cta-shell {
        padding-bottom: 5rem;
    }
}

/* Large tablets / Small laptops */
@media (max-width: 991.98px) {
    .navbar-collapse {
        margin-top: 1rem;
        padding: 1.5rem;
        border-radius: var(--radius-lg);
        background: rgba(8, 6, 16, 0.95);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
    }
    .navbar-actions {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }
    .navbar-actions .lang-switcher,
    .navbar-actions .premium-cta {
        width: 100%;
    }
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-command-panel {
        grid-template-columns: 1fr;
    }
}

/* Large screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
}

/* RTL fixes */
html[dir="rtl"] .hero-glow-1 {
    right: 10%;
    left: auto;
}
html[dir="rtl"] .hero-glow-2 {
    left: 10%;
    right: auto;
}
html[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 1.8rem;
}
@media (max-width: 575.98px) {
    html[dir="rtl"] .whatsapp-float {
        right: auto;
        left: 1.2rem;
    }
}

/* Performance on small devices */
@media (max-width: 767.98px) {
    .hero-glow {
        width: 350px;
        height: 350px;
        filter: blur(60px);
    }
}

/* ===============================================
   PREFERS REDUCED MOTION
   =============================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ===============================================
   LOGO STYLING
   =============================================== */
.logo-brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
}

.logo-brand svg,
.programmatic-logo svg,
.logo180-svg {
    display: block;
    width: auto;
    height: 68px;
    max-width: 120px;
    object-fit: contain;
    overflow: visible;
}

.hero-logo-center {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.4rem;
}

.hero-logo-center::before {
    content: "";
    position: absolute;
    width: clamp(160px, 20vw, 260px);
    height: clamp(160px, 20vw, 260px);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(122, 62, 240, 0.38) 0%,
        rgba(122, 62, 240, 0.16) 40%,
        transparent 72%
    );
    filter: blur(20px);
    z-index: -1;
}

.hero-logo-center svg,
.hero-logo-center .logo180-svg {
    height: clamp(135px, 15vw, 200px);
    width: auto;
    max-width: 220px;
    filter:
        drop-shadow(0 0 14px rgba(122, 62, 240, 0.65))
        drop-shadow(0 0 34px rgba(122, 62, 240, 0.35));
    animation: logoFloat 5s ease-in-out infinite;
}

.footer-logo-wrap svg,
.footer .logo180-svg {
    height: 110px;
    width: auto;
    max-width: 170px;
}

/* ===============================================
   HOME 3D HOLOGRAPHIC HERO (UPGRADED)
   =============================================== */
.home-3d-hero {
    min-height: 100vh;
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
    background: var(--cyber-black);
    perspective: 1400px;
    transform-style: preserve-3d;
    --mx: 0;
    --my: 0;
    --rx: 0deg;
    --ry: 0deg;
}

.hero-scene-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    transform-style: preserve-3d;
}

.hero-depth-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

.layer-back {
    z-index: 1;
    transform: translate3d(calc(var(--mx) * -30px), calc(var(--my) * -30px), -200px);
}

.layer-mid {
    z-index: 2;
    transform: translate3d(calc(var(--mx) * -20px), calc(var(--my) * -20px), -100px);
}

.layer-front {
    z-index: 3;
    transform: translate3d(calc(var(--mx) * -10px), calc(var(--my) * -10px), 0px);
}

.hero-3d-grid-floor {
    position: absolute;
    bottom: -30%;
    left: -50%;
    width: 200%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(181, 108, 255, 0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(181, 108, 255, 0.25) 1px, transparent 1px);
    background-size: 80px 80px;
    transform: perspective(1000px) rotateX(65deg);
    transform-origin: bottom center;
    opacity: 0.6;
    animation: gridDriftPro 60s linear infinite;
    box-shadow: 0 0 100px rgba(139, 61, 255, 0.2);
}

@keyframes gridDriftPro {
    0% { background-position: 0 0; }
    100% { background-position: 80px 80px; }
}

.hero-visual-layer {
    position: absolute;
    inset: 0;
    z-index: 5;
    transform-style: preserve-3d;
    transform: translate3d(calc(var(--mx) * -15px), calc(var(--my) * -15px), 0);
    transition: transform 0.1s ease-out;
}

.hero-3d-core {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%) translateZ(0);
    width: 280px;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    transform-style: preserve-3d;
}

.core-energy {
    position: absolute;
    inset: -40px;
    background: radial-gradient(circle, rgba(139, 61, 255, 0.4), transparent 70%);
    border-radius: 50%;
    animation: coreEnergyPulse 4s ease-in-out infinite;
    filter: blur(10px);
}

@keyframes coreEnergyPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.15); }
}

.core-orbit {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--cyber-purple);
    opacity: 0.7;
}

.orbit-1 {
    width: 140px;
    height: 140px;
    animation: orbitRotatePro 8s linear infinite;
    box-shadow: 0 0 20px var(--cyber-purple-glow);
}

.orbit-2 {
    width: 200px;
    height: 200px;
    animation: orbitRotatePro 12s linear infinite reverse;
    border-color: var(--cyber-purple-2);
    box-shadow: 0 0 20px rgba(181, 108, 255, 0.4);
}

.orbit-3 {
    width: 260px;
    height: 260px;
    animation: orbitRotatePro 16s linear infinite;
    border-color: rgba(181, 108, 255, 0.4);
}

@keyframes orbitRotatePro {
    0% { transform: rotate3d(0.5, 0.8, 0.3, 0deg); }
    100% { transform: rotate3d(0.5, 0.8, 0.3, 360deg); }
}

.core-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyber-white) 0%, var(--cyber-purple) 50%, var(--cyber-purple-2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 10;
    text-shadow: 0 0 60px var(--cyber-purple-glow);
    animation: coreNumberFloat 5s ease-in-out infinite;
}

@keyframes coreNumberFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.05); }
}

/* Floating 3D Decorative Objects */
.wire-cube {
    position: absolute;
    left: 12%;
    top: 20%;
    width: 100px;
    height: 100px;
    transform-style: preserve-3d;
    animation: cubeRotate 25s linear infinite;
}

.wire-cube::before {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(139, 61, 255, 0.6);
    transform: translateZ(50px);
}

.wire-cube::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(181, 108, 255, 0.4);
}

@keyframes cubeRotate {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.neon-sphere {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--cyber-purple) 0%, transparent 70%);
    box-shadow: 0 0 40px var(--cyber-purple-glow);
    animation: sphereFloat 6s ease-in-out infinite;
}

.sphere-1 {
    right: 20%;
    top: 15%;
    width: 40px;
    height: 40px;
}

.sphere-2 {
    left: 15%;
    bottom: 25%;
    width: 30px;
    height: 30px;
    animation-delay: -3s;
}

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

.data-node-3d {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--cyber-purple);
    box-shadow: 0 0 25px var(--cyber-purple-glow);
    animation: nodePulse 3s ease-in-out infinite;
}

.node-1 {
    left: 25%;
    top: 40%;
    animation-delay: -1s;
}

.node-2 {
    right: 28%;
    bottom: 35%;
    animation-delay: -2s;
}

@keyframes nodePulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 1; }
}

.rotating-triangle {
    position: absolute;
    right: 10%;
    bottom: 20%;
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid rgba(139, 61, 255, 0.6);
    filter: drop-shadow(0 0 20px var(--cyber-purple-glow));
    animation: triangleSpin 10s linear infinite;
}

@keyframes triangleSpin {
    0% { transform: rotateZ(0deg); }
    100% { transform: rotateZ(360deg); }
}

/* Floating 3D Hologram Panels */
.holo-3d-panel {
    position: absolute;
    padding: 1rem 1.5rem;
    background: rgba(20, 10, 35, 0.7);
    border: 1px solid var(--cyber-border);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    color: var(--cyber-white);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    overflow: hidden;
}

.holo-3d-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(139, 61, 255, 0.15) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    animation: panelShine 4s ease-in-out infinite;
}

@keyframes panelShine {
    0%, 40% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
    100% { transform: translateX(100%); }
}

.holo-3d-panel::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-purple), transparent);
}

.panel-branding {
    top: 18%;
    left: 8%;
    transform: translate3d(0, 0, 50px) rotateX(10deg) rotateY(-15deg);
    animation: panelFloat1 8s ease-in-out infinite;
}

.panel-social {
    top: 25%;
    right: 25%;
    transform: translate3d(0, 0, 100px) rotateX(-8deg) rotateY(10deg);
    animation: panelFloat2 10s ease-in-out infinite;
}

.panel-ads {
    top: 45%;
    left: 5%;
    transform: translate3d(0, 0, 80px) rotateX(15deg) rotateY(5deg);
    animation: panelFloat3 9s ease-in-out infinite;
}

.panel-content {
    bottom: 30%;
    right: 8%;
    transform: translate3d(0, 0, 60px) rotateX(-10deg) rotateY(-12deg);
    animation: panelFloat4 7s ease-in-out infinite;
}

.panel-web {
    bottom: 20%;
    left: 20%;
    transform: translate3d(0, 0, 70px) rotateX(8deg) rotateY(10deg);
    animation: panelFloat5 9s ease-in-out infinite;
}

.panel-seo {
    top: 55%;
    right: 28%;
    transform: translate3d(0, 0, 90px) rotateX(-5deg) rotateY(-8deg);
    animation: panelFloat6 11s ease-in-out infinite;
}

@keyframes panelFloat1 {
    0%, 100% { transform: translate3d(0, 0, 50px) rotateX(10deg) rotateY(-15deg); }
    50% { transform: translate3d(15px, -20px, 50px) rotateX(12deg) rotateY(-12deg); }
}

@keyframes panelFloat2 {
    0%, 100% { transform: translate3d(0, 0, 100px) rotateX(-8deg) rotateY(10deg); }
    50% { transform: translate3d(-15px, -15px, 100px) rotateX(-5deg) rotateY(13deg); }
}

@keyframes panelFloat3 {
    0%, 100% { transform: translate3d(0, 0, 80px) rotateX(15deg) rotateY(5deg); }
    50% { transform: translate3d(20px, 10px, 80px) rotateX(18deg) rotateY(8deg); }
}

@keyframes panelFloat4 {
    0%, 100% { transform: translate3d(0, 0, 60px) rotateX(-10deg) rotateY(-12deg); }
    50% { transform: translate3d(-10px, 15px, 60px) rotateX(-7deg) rotateY(-15deg); }
}

@keyframes panelFloat5 {
    0%, 100% { transform: translate3d(0, 0, 70px) rotateX(8deg) rotateY(10deg); }
    50% { transform: translate3d(10px, -10px, 70px) rotateX(5deg) rotateY(7deg); }
}

@keyframes panelFloat6 {
    0%, 100% { transform: translate3d(0, 0, 90px) rotateX(-5deg) rotateY(-8deg); }
    50% { transform: translate3d(-12px, 12px, 90px) rotateX(-8deg) rotateY(-10deg); }
}

.holo-3d-panel:hover {
    border-color: var(--cyber-purple);
    box-shadow: 0 0 50px var(--cyber-purple-glow);
    transform: translate3d(0, 0, 120px) scale(1.05);
}

.hero-scan-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(139, 61, 255, 0.03) 50%,
        transparent 100%
    );
    background-size: 100% 4px;
    pointer-events: none;
    opacity: 0.3;
    z-index: 8;
}

.hero-content-container {
    position: relative;
    z-index: 20;
}

/* ================================
   REBUILT HERO CSS
   ================================ */
.hero-cyber-rebuild {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(circle at 70% 40%, rgba(139, 61, 255, 0.28), transparent 35%),
        radial-gradient(circle at 20% 75%, rgba(139, 61, 255, 0.16), transparent 30%),
        #030009;
    color: #fff;
    display: flex;
    align-items: center;
    padding: 140px 24px 80px;
    isolation: isolate;
}

.hero-rebuild-container {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 5;
}

.hero-copy-panel {
    position: relative;
    z-index: 10;
    max-width: 620px;
}

.hero-kicker {
    display: inline-flex;
    padding: 10px 18px;
    border: 1px solid rgba(181, 108, 255, 0.35);
    border-radius: 999px;
    background: rgba(20, 10, 35, 0.65);
    color: rgba(255,255,255,0.85);
    box-shadow: 0 0 25px rgba(139, 61, 255, 0.25);
    backdrop-filter: blur(12px);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(42px, 6vw, 82px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -1px;
    color: #fff;
    margin: 0 0 22px;
    text-shadow: 0 0 35px rgba(139, 61, 255, 0.25);
}

.hero-title span {
    color: #b56cff;
    text-shadow: 0 0 28px rgba(181, 108, 255, 0.75);
}

.hero-description {
    color: rgba(255,255,255,0.72);
    font-size: 18px;
    line-height: 1.9;
    max-width: 560px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cyber-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 26px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.35s ease;
}

.cyber-btn-primary {
    background: linear-gradient(135deg, #8b3dff, #b56cff);
    color: #fff;
    box-shadow: 0 0 35px rgba(139, 61, 255, 0.5);
}

.cyber-btn-secondary {
    color: #fff;
    border: 1px solid rgba(181, 108, 255, 0.45);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(12px);
}

.cyber-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 45px rgba(139, 61, 255, 0.7);
}

.hero-visual-scene {
    position: relative;
    height: min(620px, 68vh);
    min-height: 520px;
    perspective: 1200px;
    transform-style: preserve-3d;
    z-index: 4;
}

.hero-core-3d {
    position: absolute;
    width: 240px;
    height: 240px;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transform-style: preserve-3d;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: transform 0.15s ease-out;
}

.core-number {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(20, 10, 35, 0.78);
    border: 1px solid rgba(181, 108, 255, 0.65);
    box-shadow:
        0 0 45px rgba(139, 61, 255, 0.75),
        inset 0 0 35px rgba(181, 108, 255, 0.28);
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(181, 108, 255, 0.9);
    z-index: 3;
}

.core-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(181, 108, 255, 0.4);
    box-shadow: 0 0 30px rgba(139, 61, 255, 0.35);
}

.ring-a { animation: rotateCore 9s linear infinite; }
.ring-b { inset: 22px; transform: rotateX(68deg); animation: rotateCore 7s linear infinite reverse; }
.ring-c { inset: 44px; transform: rotateY(68deg); animation: rotateCore 11s linear infinite; }

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

.holo-panel {
    position: absolute;
    min-width: 145px;
    padding: 16px 20px;
    border-radius: 16px;
    color: #fff;
    font-weight: 800;
    text-align: center;
    background: rgba(20, 10, 35, 0.58);
    border: 1px solid rgba(181, 108, 255, 0.38);
    box-shadow: 0 0 30px rgba(139, 61, 255, 0.25);
    backdrop-filter: blur(16px);
    transform-style: preserve-3d;
    overflow: hidden;
    animation: floatPanel 5s ease-in-out infinite;
}

.holo-panel::after {
    content: "";
    position: absolute;
    inset: -100% 0 auto;
    height: 80%;
    background: linear-gradient(to bottom, transparent, rgba(181,108,255,0.25), transparent);
    animation: scanPanel 3s linear infinite;
}

.panel-1 { top: 10%; left: 8%; transform: rotateY(18deg) translateZ(80px); }
.panel-2 { top: 20%; right: 5%; transform: rotateY(-22deg) translateZ(120px); }
.panel-3 { top: 55%; left: 0; transform: rotateY(24deg) translateZ(60px); }
.panel-4 { bottom: 12%; right: 10%; transform: rotateY(-18deg) translateZ(100px); }
.panel-5 { bottom: 4%; left: 22%; transform: rotateX(10deg) translateZ(70px); }
.panel-6 { top: 2%; left: 42%; transform: rotateX(-12deg) translateZ(90px); }
.panel-7 { top: 68%; right: 28%; transform: rotateX(8deg) rotateY(-15deg) translateZ(85px); }
.panel-8 { top: 38%; left: 28%; transform: rotateX(-8deg) rotateY(12deg) translateZ(95px); }

@keyframes floatPanel {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -16px; }
}

@keyframes scanPanel {
    to { transform: translateY(260%); }
}

.hero-bg-grid {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -25%;
    height: 65%;
    background-image:
        linear-gradient(rgba(181,108,255,0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(181,108,255,0.18) 1px, transparent 1px);
    background-size: 64px 64px;
    transform: perspective(850px) rotateX(67deg);
    transform-origin: bottom center;
    opacity: 0.45;
    animation: gridMove 18s linear infinite;
    z-index: 1;
}

@keyframes gridMove {
    to { background-position: 0 128px; }
}

.hero-bg-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(139, 61, 255, 0.22);
    filter: blur(70px);
    z-index: 0;
}

.glow-one { top: 20%; right: 12%; }
.glow-two { bottom: 8%; left: 8%; }

.wire-cube,
.neon-orb,
.data-beam {
    position: absolute;
    pointer-events: none;
}

.wire-cube {
    width: 76px;
    height: 76px;
    border: 1px solid rgba(181,108,255,0.5);
    box-shadow: 0 0 25px rgba(139,61,255,0.4);
    top: 16%;
    right: 28%;
    transform: rotateX(55deg) rotateY(35deg);
    animation: cubeSpin 8s linear infinite;
}

@keyframes cubeSpin {
    to { transform: rotateX(415deg) rotateY(395deg); }
}

.neon-orb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #b56cff;
    box-shadow: 0 0 28px rgba(181,108,255,0.9);
}

.orb-1 { top: 35%; left: 14%; }
.orb-2 { bottom: 24%; right: 20%; }

.data-beam {
    height: 1px;
    width: 240px;
    background: linear-gradient(90deg, transparent, rgba(181,108,255,0.7), transparent);
    opacity: 0.7;
}

.beam-1 { top: 34%; left: 20%; transform: rotate(18deg); }
.beam-2 { bottom: 30%; right: 12%; transform: rotate(-24deg); }

/* Hero Particles */
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero-particles div {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #8b3dff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(139, 61, 255, 0.6);
}

@media (max-width: 992px) {
    .hero-rebuild-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-copy-panel {
        margin: 0 auto;
    }

    .hero-visual-scene {
        height: 460px;
        min-height: 420px;
    }
}

@media (max-width: 768px) {
    .hero-cyber-rebuild {
        padding-top: 120px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-actions {
        justify-content: center;
    }

    .cyber-btn {
        width: 100%;
    }

    .hero-visual-scene {
        height: 360px;
        min-height: 320px;
    }

    .holo-panel {
        min-width: 110px;
        padding: 12px 14px;
        font-size: 12px;
    }

    .panel-3,
    .panel-5,
    .wire-cube {
        display: none;
    }

    .hero-core-3d {
        width: 190px;
        height: 190px;
    }

    .core-number {
        width: 118px;
        height: 118px;
        font-size: 30px;
    }
}

.hero-content-layer {
    position: relative;
    z-index: 21;
}

/* ================================
   SERVICES HOLO SECTION
   ================================ */
.services-holo-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(180deg, #030009 0%, #05010f 100%);
    overflow: hidden;
}

.services-holo-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(181,108,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139,61,255,0.06) 0%, transparent 45%);
    pointer-events: none;
}

.services-holo-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.services-holo-title {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.15;
    font-weight: 900;
    color: white;
    margin: 12px 0 16px;
    text-shadow: 0 0 30px rgba(181,108,255,0.18);
}

.services-holo-subtitle {
    color: rgba(255,255,255,0.68);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.services-holo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 5;
}

.service-3d-card,
.brand-3d-card {
    position: relative;
    overflow: hidden;
    background: rgba(14, 6, 28, 0.72);
    border: 1px solid rgba(181, 108, 255, 0.28);
    border-radius: 28px;
    backdrop-filter: blur(18px);
    box-shadow:
        0 20px 70px rgba(0,0,0,0.38),
        0 0 35px rgba(139, 61, 255, 0.18);
    transform-style: preserve-3d;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    padding: 36px 28px;
}

.service-3d-card::before,
.brand-3d-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--card-x, 50%) var(--card-y, 50%),
        rgba(181,108,255,0.28),
        transparent 34%
    );
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.service-3d-card:hover::before,
.brand-3d-card:hover::before {
    opacity: 1;
}

.service-3d-card:hover,
.brand-3d-card:hover {
    border-color: rgba(181,108,255,0.55);
    box-shadow:
        0 25px 80px rgba(0,0,0,0.45),
        0 0 55px rgba(139, 61, 255, 0.28);
}

.service-card-scan {
    position: absolute;
    inset: -80% 0 auto;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(181,108,255,0.24), transparent);
    animation: scanDown 4s linear infinite;
    pointer-events: none;
}

@keyframes scanDown {
    0% { transform: translateY(0); opacity: 0.5; }
    50% { opacity: 0.2; }
    100% { transform: translateY(200%); opacity: 0; }
}

.service-3d-corners {
    position: absolute;
    inset: 16px;
    pointer-events: none;
}

.service-3d-corners::before,
.service-3d-corners::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(181,108,255,0.35);
}

.service-3d-corners::before {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.service-3d-corners::after {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.service-3d-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(20, 10, 35, 0.85);
    border: 1px solid rgba(181,108,255,0.35);
    display: grid;
    place-items: center;
    font-size: 32px;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(139,61,255,0.25);
    position: relative;
    z-index: 2;
}

.service-3d-title {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.service-3d-desc {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-3d-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(181,108,255,0.7), transparent);
    margin-bottom: 16px;
}

.service-3d-link {
    color: #b56cff;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.service-3d-link:hover {
    gap: 14px;
    text-shadow: 0 0 20px rgba(181,108,255,0.7);
}

.services-holo-cta {
    text-align: center;
    margin-top: 48px;
    position: relative;
    z-index: 5;
}

/* ================================
   BRANDS SHOWCASE SECTION
   ================================ */
.brands-showcase-section {
    position: relative;
    padding: 100px 20px;
    background: linear-gradient(180deg, #05010f 0%, #030009 100%);
    overflow: hidden;
}

.brands-showcase-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(139,61,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(181,108,255,0.06) 0%, transparent 45%);
    pointer-events: none;
}

.brands-showcase-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.brands-showcase-title {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.15;
    font-weight: 900;
    color: white;
    margin: 12px 0 16px;
    text-shadow: 0 0 30px rgba(181,108,255,0.18);
}

.brands-showcase-subtitle {
    color: rgba(255,255,255,0.68);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

.brands-3d-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 5;
}

.brand-3d-card {
    padding: 32px 24px;
}

.brand-signal-line {
    position: absolute;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(181,108,255,0.45), transparent);
    opacity: 0.4;
}

.brand-logo-orbit {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 24px;
}

.brand-logo-frame {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: rgba(20, 10, 35, 0.85);
    border: 1px solid rgba(181,108,255,0.35);
    display: grid;
    place-items: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 40px rgba(139,61,255,0.25);
    overflow: hidden;
}

.brand-logo-img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    object-position: center;
}

.brand-logo-placeholder {
    font-size: 34px;
    font-weight: 900;
    color: #b56cff;
    text-shadow: 0 0 25px rgba(181,108,255,0.7);
}

.brand-glow-ring {
    position: absolute;
    inset: -16px;
    border: 1px solid rgba(181,108,255,0.25);
    border-radius: 36px;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%,100% { box-shadow: 0 0 20px rgba(139,61,255,0.2); }
    50% { box-shadow: 0 0 45px rgba(139,61,255,0.35); }
}

.brand-info {
    text-align: center;
    position: relative;
    z-index: 2;
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.brand-desc {
    color: rgba(255,255,255,0.62);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.brand-social-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.social-chip {
    display: inline-flex;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(20, 10, 35, 0.7);
    border: 1px solid rgba(181,108,255,0.25);
    color: rgba(255,255,255,0.75);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-chip:hover {
    background: rgba(139,61,255,0.2);
    border-color: rgba(181,108,255,0.55);
    color: white;
    box-shadow: 0 0 20px rgba(139,61,255,0.25);
}

.brands-showcase-cta {
    text-align: center;
    margin-top: 48px;
    position: relative;
    z-index: 5;
}

.empty-state-holo {
    padding: 60px 20px;
    text-align: center;
    border: 1px dashed rgba(181,108,255,0.25);
    border-radius: 24px;
    color: rgba(255,255,255,0.55);
    font-size: 16px;
}

/* ================================
   RESPONSIVE
   ================================ */
@media (max-width: 1100px) {
    .services-holo-grid,
    .brands-3d-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-holo-section,
    .brands-showcase-section {
        padding: 70px 16px;
    }
    
    .services-holo-grid,
    .brands-3d-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-3d-card,
    .brand-3d-card {
        padding: 28px 20px;
    }
}

/* ================================
   INNER PAGES - CYBER STYLE
   ================================ */

/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
}

.services-page-cyber,
.portfolio-page-cyber {
    position: relative;
    padding: 120px 20px 80px;
    background: linear-gradient(180deg, #030009 0%, #05010f 100%);
    min-height: 100vh;
    overflow: hidden;
}

.inner-page-bg-grid {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -25%;
    height: 65%;
    background-image:
        linear-gradient(rgba(181,108,255,0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(181,108,255,0.18) 1px, transparent 1px);
    background-size: 64px 64px;
    transform: perspective(850px) rotateX(67deg);
    transform-origin: bottom center;
    opacity: 0.45;
    animation: gridMove 18s linear infinite;
    z-index: 1;
}

@keyframes gridMove {
    to { background-position: 0 128px; }
}

.inner-page-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(139, 61, 255, 0.22);
    filter: blur(70px);
    z-index: 0;
}

.inner-page-glow.glow-one {
    top: 20%;
    right: 12%;
}

.inner-page-glow.glow-two {
    bottom: 8%;
    left: 8%;
}

.inner-page-hero {
    padding: 60px 0;
    text-align: center;
    position: relative;
    z-index: 5;
}

.inner-page-kicker {
    display: inline-flex;
    padding: 10px 18px;
    border: 1px solid rgba(181, 108, 255, 0.35);
    border-radius: 999px;
    background: rgba(20, 10, 35, 0.65);
    color: rgba(255,255,255,0.85);
    box-shadow: 0 0 25px rgba(139, 61, 255, 0.25);
    backdrop-filter: blur(12px);
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 700;
}

.inner-page-title {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.15;
    font-weight: 900;
    color: white;
    margin: 0 0 16px;
    text-shadow: 0 0 35px rgba(139, 61, 255, 0.25);
}

.inner-page-subtitle {
    color: rgba(255,255,255,0.68);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

/* Services page specific styles */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 5;
    margin-bottom: 80px;
}

.service-page-card,
.brand-universe-card {
    position: relative;
    overflow: hidden;
    background: rgba(14, 6, 28, 0.72);
    border: 1px solid rgba(181, 108, 255, 0.28);
    border-radius: 28px;
    backdrop-filter: blur(18px);
    box-shadow:
        0 20px 70px rgba(0,0,0,0.38),
        0 0 35px rgba(139, 61, 255, 0.2);
    transform-style: preserve-3d;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    padding: 36px 28px;
}

.service-page-card::before,
.brand-universe-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--card-x, 50%) var(--card-y, 50%),
        rgba(181,108,255,0.28),
        transparent 34%
    );
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.service-page-card:hover::before,
.brand-universe-card:hover::before {
    opacity: 1;
}

.service-page-card:hover,
.brand-universe-card:hover {
    border-color: rgba(181,108,255,0.55);
    box-shadow:
        0 25px 80px rgba(0,0,0,0.45),
        0 0 55px rgba(139, 61, 255, 0.28);
}

.service-page-corners {
    position: absolute;
    inset: 16px;
    pointer-events: none;
}

.service-page-corners::before,
.service-page-corners::after {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid rgba(181,108,255,0.35);
}

.service-page-corners::before {
    top: 0;
    right: 0;
    border-left: none;
    border-bottom: none;
}

.service-page-corners::after {
    bottom: 0;
    left: 0;
    border-right: none;
    border-top: none;
}

.service-page-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: rgba(20, 10, 35, 0.85);
    border: 1px solid rgba(181,108,255,0.35);
    display: grid;
    place-items: center;
    font-size: 32px;
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(139,61,255,0.25);
    position: relative;
    z-index: 2;
}

.service-page-title {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.service-page-description {
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-page-link {
    color: #b56cff;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.service-page-link:hover {
    gap: 14px;
    text-shadow: 0 0 20px rgba(181,108,255,0.7);
}

/* Portfolio page specific styles */
.brands-universe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
    z-index: 5;
    margin-bottom: 80px;
}

.brand-universe-card {
    padding: 32px 24px;
    text-align: center;
}

.brand-data-signal {
    position: absolute;
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
    background: linear-gradient(90deg, transparent, rgba(181,108,255,0.45), transparent);
    opacity: 0.4;
}

.brand-logo-system {
    position: relative;
    width: 130px;
    height: 130px;
    margin: 0 auto 24px;
}

/* Empty state */
.cyber-empty-state {
    padding: 80px 20px;
    text-align: center;
    border: 1px dashed rgba(181,108,255,0.35);
    border-radius: 28px;
    background: rgba(14, 6, 28, 0.6);
    margin-bottom: 80px;
    position: relative;
    z-index: 5;
}

.cyber-empty-icon {
    font-size: 48px;
    color: #b56cff;
    text-shadow: 0 0 30px rgba(181,108,255,0.6);
    margin-bottom: 16px;
}

.cyber-empty-state p {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
}

/* Page control panel (CTA) */
.page-control-panel {
    position: relative;
    z-index: 5;
    padding: 40px 0;
}

.control-panel-inner {
    background: rgba(14, 6, 28, 0.78);
    border: 1px solid rgba(181,108,255,0.35);
    border-radius: 28px;
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(18px);
    box-shadow:
        0 20px 70px rgba(0,0,0,0.38),
        0 0 35px rgba(139, 61, 255, 0.25);
}

.panel-glow {
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at 50% 50%, rgba(181,108,255,0.28), transparent 60%);
    opacity: 0.5;
    pointer-events: none;
}

.panel-title {
    position: relative;
    z-index: 2;
    font-size: 28px;
    font-weight: 900;
    color: white;
    margin-bottom: 12px;
}

.panel-subtitle {
    position: relative;
    z-index: 2;
    color: rgba(255,255,255,0.68);
    font-size: 16px;
    margin-bottom: 28px;
}

/* Inner pages responsive */
@media (max-width: 1100px) {
    .services-page-grid,
    .brands-universe-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-page-cyber,
    .portfolio-page-cyber {
        padding: 90px 16px 60px;
    }
    
    .services-page-grid,
    .brands-universe-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-page-card,
    .brand-universe-card {
        padding: 28px 20px;
    }
    
    .control-panel-inner {
        padding: 36px 20px;
    }
    
    .panel-title {
        font-size: 22px;
    }
}

/* ================================
   SHARED INNER PAGE STYLES
   ================================ */

.inner-cyber-page {
    position: relative;
    padding: 120px 20px 80px;
    background: linear-gradient(180deg, #030009 0%, #05010f 100%);
    min-height: 100vh;
    overflow: hidden;
}

.inner-hero-3d {
    padding: 40px 0 80px;
    text-align: center;
    position: relative;
    z-index: 5;
}

.inner-kicker {
    display: inline-flex;
    padding: 10px 18px;
    border: 1px solid rgba(181, 108, 255, 0.35);
    border-radius: 999px;
    background: rgba(20, 10, 35, 0.65);
    color: rgba(255,255,255,0.85);
    box-shadow: 0 0 25px rgba(139, 61, 255, 0.25);
    backdrop-filter: blur(12px);
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 700;
}

.inner-title {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.15;
    font-weight: 900;
    color: white;
    margin: 0 0 16px;
    text-shadow: 0 0 35px rgba(139, 61, 255, 0.25);
}

.inner-title span {
    color: #b56cff;
    text-shadow: 0 0 28px rgba(181,108,255,0.75);
}

.inner-subtitle {
    color: rgba(255,255,255,0.68);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.inner-bg-grid {
    position: absolute;
    left: -10%;
    right: -10%;
    bottom: -25%;
    height: 65%;
    background-image:
        linear-gradient(rgba(181,108,255,0.18) 1px, transparent 1px),
        linear-gradient(90deg, rgba(181,108,255,0.18) 1px, transparent 1px);
    background-size: 64px 64px;
    transform: perspective(850px) rotateX(67deg);
    transform-origin: bottom center;
    opacity: 0.45;
    animation: gridMove 18s linear infinite;
    z-index: 1;
}

.inner-glow-orb {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(139, 61, 255, 0.22);
    filter: blur(70px);
    z-index: 0;
}

.inner-glow-orb.glow-one {
    top: 20%;
    right: 12%;
}

.inner-glow-orb.glow-two {
    bottom: 8%;
    left: 8%;
}

.holo-section {
    padding: 60px 0;
    position: relative;
    z-index: 5;
}

.holo-panel-card {
    position: relative;
    overflow: hidden;
    background: rgba(14, 6, 28, 0.72);
    border: 1px solid rgba(181, 108, 255, 0.28);
    border-radius: 28px;
    backdrop-filter: blur(18px);
    box-shadow: 0 20px 70px rgba(0,0,0,0.38), 0 0 35px rgba(139, 61, 255, 0.2);
    transform-style: preserve-3d;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.holo-panel-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at var(--card-x, 50%) var(--card-y, 50%),
        rgba(181,108,255,0.28),
        transparent 34%
    );
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.holo-panel-card:hover::before {
    opacity: 1;
}

.holo-panel-card:hover {
    border-color: rgba(181,108,255,0.55);
    box-shadow: 0 25px 80px rgba(0,0,0,0.45), 0 0 55px rgba(139, 61, 255, 0.28);
}

.cyber-empty-state {
    padding: 80px 20px;
    text-align: center;
    border: 1px dashed rgba(181,108,255,0.35);
    border-radius: 28px;
    background: rgba(14, 6, 28, 0.6);
    position: relative;
    z-index: 5;
}

.cyber-empty-state .cyber-empty-icon {
    font-size: 48px;
    color: #b56cff;
    text-shadow: 0 0 30px rgba(181,108,255,0.6);
    margin-bottom: 16px;
}

.cyber-empty-state p {
    color: rgba(255,255,255,0.6);
    font-size: 16px;
}

/* ================================
   ABOUT PAGE STYLES
   ================================ */

.about-orbit-core {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 32px;
}

.about-orbit-core .core-number {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(20, 10, 35, 0.78);
    border: 1px solid rgba(181, 108, 255, 0.65);
    box-shadow: 0 0 45px rgba(139, 61, 255, 0.75), inset 0 0 35px rgba(181, 108, 255, 0.28);
    font-size: 44px;
    font-weight: 900;
    color: white;
    text-shadow: 0 0 20px rgba(181, 108, 255, 0.9);
    z-index: 3;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.about-orbit-core .core-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(181, 108, 255, 0.4);
    box-shadow: 0 0 30px rgba(139, 61, 255, 0.35);
    animation: rotateCore 12s linear infinite;
}

.about-orbit-core .core-ring.ring-b {
    inset: 24px;
    transform: rotateX(65deg);
    animation-direction: reverse;
    animation-duration: 9s;
}

.about-orbit-core .core-ring.ring-c {
    inset: 48px;
    transform: rotateY(65deg);
    animation-duration: 15s;
}

.about-story-panel {
    padding: 36px 28px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.mv-holo-card {
    padding: 36px 28px;
}

.workflow-data-section {
    padding: 60px 0;
}

.workflow-data-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(181,108,255,0.5), transparent);
    margin: 40px 0;
}

.workflow-node {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    text-align: center;
}

@media (max-width: 1024px) {
    .workflow-node {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .workflow-node {
        grid-template-columns: repeat(2, 1fr);
    }
}

.workflow-node-item {
    padding: 20px 16px;
    background: rgba(14, 6, 28, 0.72);
    border: 1px solid rgba(181, 108, 255, 0.28);
    border-radius: 16px;
    backdrop-filter: blur(18px);
}

.workflow-node-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(181,108,255,0.2);
    border: 1px solid rgba(181,108,255,0.5);
    display: grid;
    place-items: center;
    font-weight: 800;
    color: #b56cff;
    margin: 0 auto 12px;
}

.about-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .about-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .about-metrics-grid {
        grid-template-columns: 1fr;
    }
}

.about-metric-item {
    padding: 32px 20px;
    text-align: center;
}

.about-metric-number {
    font-size: 3rem;
    font-weight: 900;
    color: #b56cff;
    text-shadow: 0 0 25px rgba(181,108,255,0.7);
    margin-bottom: 8px;
}

.about-metric-label {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.about-cta-panel {
    padding: 60px 0;
}

/* ================================
   PACKAGES PAGE STYLES
   ================================ */

.packages-grid-3d {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.package-module-card {
    padding: 36px 28px;
    position: relative;
}

.package-module-card.is-featured {
    border-color: rgba(181,108,255,0.7);
    box-shadow: 0 0 60px rgba(139, 61, 255, 0.35);
}

.package-module-header {
    text-align: center;
    margin-bottom: 24px;
}

.package-module-badge {
    display: inline-flex;
    padding: 8px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, #8b3dff, #b56cff);
    color: white;
    font-weight: 800;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.package-module-name {
    font-size: 26px;
    font-weight: 900;
    color: white;
    margin-bottom: 8px;
}

.package-module-audience {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.package-module-line {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(181,108,255,0.7), transparent);
    margin: 24px auto;
}

.package-module-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.package-module-includes li {
    padding: 8px 0;
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

.package-module-includes li::before {
    content: "✦";
    margin-right: 10px;
    color: #b56cff;
}

/* ================================
   CONTACT PAGE STYLES
   ================================ */

.contact-control-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .contact-control-panel {
        grid-template-columns: 1fr;
    }
}

.contact-form-panel,
.contact-info-panel {
    padding: 36px 28px;
}

.contact-input-group {
    margin-bottom: 20px;
}

.contact-input-group label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,0.85);
    font-weight: 700;
}

.contact-input-group input,
.contact-input-group textarea {
    width: 100%;
    padding: 14px 18px;
    border-radius: 16px;
    background: rgba(10, 4, 24, 0.9);
    border: 1px solid rgba(181, 108, 255, 0.3);
    color: white;
    font-size: 15px;
    outline: none;
    transition: all 0.2s ease;
}

.contact-input-group input::placeholder,
.contact-input-group textarea::placeholder {
    color: rgba(255,255,255,0.35);
}

.contact-input-group input:focus,
.contact-input-group textarea:focus {
    border-color: rgba(181,108,255,0.7);
    box-shadow: 0 0 25px rgba(139, 61, 255, 0.25);
}

.contact-input-group span.text-danger {
    color: #ff6b6b !important;
    font-size: 13px;
    margin-top: 6px;
    display: block;
}

.contact-action-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.whatsapp-neon-card,
.contact-info-item {
    padding: 24px 20px;
    background: rgba(14, 6, 28, 0.72);
    border: 1px solid rgba(181, 108, 255, 0.28);
    border-radius: 16px;
    backdrop-filter: blur(18px);
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.whatsapp-neon-card:hover,
.contact-info-item:hover {
    border-color: rgba(181,108,255,0.55);
    box-shadow: 0 0 30px rgba(139, 61, 255, 0.25);
}

.whatsapp-neon-card .contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: grid;
    place-items: center;
    font-size: 24px;
}

.contact-info-item .contact-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(181,108,255,0.2);
    border: 1px solid rgba(181,108,255,0.4);
    display: grid;
    place-items: center;
    font-size: 24px;
}

.whatsapp-neon-card .contact-text h4,
.contact-info-item .contact-text h4 {
    color: white;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 4px;
}

.whatsapp-neon-card .contact-text p,
.contact-info-item .contact-text p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}

.contact-alert-success {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #86efac;
    padding: 16px 20px;
    border-radius: 16px;
    margin-bottom: 20px;
}

.brand-3d-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyber-purple), transparent);
}

.brand-signal-ring {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--cyber-purple);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.brand-3d-card:hover .brand-signal-ring {
    opacity: 0.5;
    transform: scale(1);
    animation: signalPulse 2s ease-in-out infinite;
}

@keyframes signalPulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--cyber-purple-glow); }
    50% { box-shadow: 0 0 0 20px rgba(139, 61, 255, 0); }
}

.brand-logo-frame {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--cyber-border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brand-logo-frame img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}

.brand-social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.2rem;
    flex-wrap: wrap;
}

.social-chip {
    padding: 0.5rem 1rem;
    border-radius: 999px;
    background: rgba(139, 61, 255, 0.1);
    border: 1px solid var(--cyber-border);
    color: var(--cyber-white);
    font-weight: 700;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.social-chip:hover {
    background: var(--cyber-purple);
    border-color: var(--cyber-purple);
    box-shadow: 0 0 20px var(--cyber-purple-glow);
}

/* ===============================================
   DATA CORE SECTION
   =============================================== */
.data-core-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.metric-holo-box {
    flex: 1;
    min-width: 200px;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--cyber-card);
    border: 1px solid var(--cyber-border);
    backdrop-filter: blur(16px);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.metric-holo-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 61, 255, 0.05), transparent);
}

.metric-holo-box strong {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--cyber-purple);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--cyber-purple-glow);
    position: relative;
    z-index: 1;
}

.metric-holo-box span {
    color: var(--cyber-muted);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.data-node-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyber-purple), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-holo-box:hover .data-node-line {
    opacity: 1;
    animation: dataLineMove 2s linear infinite;
}

/* ===============================================
   PACKAGES CYBER SECTION
   =============================================== */
.package-cyber-card {
    position: relative;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    background: var(--cyber-card);
    border: 1px solid var(--cyber-border);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
    transform-style: preserve-3d;
    overflow: hidden;
}

.package-glow-border {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    background: linear-gradient(90deg, var(--cyber-purple), var(--cyber-purple-2)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.package-cyber-card:hover .package-glow-border {
    opacity: 1;
}

.package-cyber-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px var(--cyber-purple-glow);
}

/* ===============================================
   TESTIMONIALS SIGNAL SECTION
   =============================================== */
.testimonial-signal-card {
    position: relative;
    border-radius: var(--radius-lg);
    background: var(--cyber-card);
    border: 1px solid var(--cyber-border);
    backdrop-filter: blur(16px);
    padding: 2.2rem;
    transition: all 0.4s ease;
}

.signal-rating {
    color: var(--cyber-purple);
}

.signal-avatar {
    border: 2px solid var(--cyber-purple);
    box-shadow: 0 0 15px var(--cyber-purple-glow);
}

/* ===============================================
   FINAL CONTROL PANEL
   =============================================== */
.control-panel-inner {
    position: relative;
}

.control-panel-glow {
    position: absolute;
    inset: -20px;
    border-radius: calc(var(--radius-xl) + 10px);
    background: radial-gradient(circle at 50% 50%, var(--cyber-purple-glow), transparent);
    filter: blur(30px);
    opacity: 0.2;
    z-index: 0;
}

.control-panel-grid {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 991.98px) {
    .floating-screen {
        display: none;
    }
    
    .central-180-core {
        width: 150px;
        height: 150px;
    }
    
    .core-text {
        font-size: 2rem;
    }
    
    .ring-1 { width: 80px; height: 80px; }
    .ring-2 { width: 110px; height: 110px; }
    .ring-3 { width: 150px; height: 150px; }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }

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

@media (max-width: 991.98px) {
    .logo-brand svg,
    .programmatic-logo svg,
    .logo180-svg {
        height: 58px;
        max-width: 105px;
    }

    .hero-logo-center svg,
    .hero-logo-center .logo180-svg {
        height: 145px;
        max-width: 180px;
    }
}

@media (max-width: 575.98px) {
    .logo-brand svg,
    .programmatic-logo svg,
    .logo180-svg {
        height: 50px;
        max-width: 90px;
    }

    .hero-logo-center svg,
    .hero-logo-center .logo180-svg {
        height: 115px;
        max-width: 150px;
    }

    .footer-logo-wrap svg,
    .footer .logo180-svg {
        height: 88px;
        max-width: 130px;
    }
}

/* ================================
   BRAND MEDIA GALLERY STYLES
   ================================ */
.brand-media-gallery-section {
    position: relative;
    z-index: 1;
}

.brand-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 350px));
    gap: 2rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.brand-media-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--cyber-card);
    border: 1px solid var(--cyber-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.brand-media-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--cyber-purple), var(--cyber-purple-2), transparent);
    opacity: 0.9;
}

.brand-media-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(139, 61, 255, 0.08) 40%, rgba(181, 108, 255, 0.06) 60%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    pointer-events: none;
}

.brand-media-card:hover::after {
    transform: translateX(100%);
}

.brand-media-card img,
.brand-media-card video {
    width: 100%;
    border-radius: 16px;
    display: block;
    object-fit: cover;
}

.brand-media-card video {
    aspect-ratio: 9 / 16; /* Instagram Reels ratio */
    background: #000;
    max-height: 600px;
}

.brand-media-card img {
    aspect-ratio: 1 / 1; /* Facebook post square ratio */
    max-height: 500px;
}

/* ================================
   PORTFOLIO MEDIA GALLERY STYLES (NEW)
   ================================ */
.portfolio-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
    justify-content: center;
    gap: clamp(20px, 3vw, 36px);
    width: 100%;
    margin-top: 2.5rem;
}

.portfolio-media-card {
    width: 100%;
    border-radius: 28px;
    padding: 18px;
    background: rgba(18, 8, 32, 0.72);
    border: 1px solid rgba(168, 85, 247, 0.35);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-media-frame {
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    background: 
        radial-gradient(circle at center, rgba(168,85,247,0.18), transparent 60%),
        rgba(0,0,0,0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-card--post .portfolio-media-frame,
.media-card--image .portfolio-media-frame {
    aspect-ratio: 4 / 5;
}

.media-card--reel .portfolio-media-frame,
.media-card--video .portfolio-media-frame {
    aspect-ratio: 9 / 16;
}

.media-card--square .portfolio-media-frame {
    aspect-ratio: 1 / 1;
}

.portfolio-media-frame img,
.portfolio-media-frame video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 14px;
    background: #050008;
}

.portfolio-media-frame video {
    max-height: 100%;
}

.portfolio-media-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(216, 180, 254, 0.65);
    box-shadow: 
        0 22px 80px rgba(0, 0, 0, 0.45),
        0 0 34px rgba(168, 85, 247, 0.22);
}

.portfolio-media-card p {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .portfolio-media-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .portfolio-media-card {
        max-width: 420px;
        margin-inline: auto;
        padding: 14px;
        border-radius: 24px;
    }

    .media-card--reel {
        max-width: 360px;
    }

    .portfolio-media-frame {
        border-radius: 16px;
    }
}

/* ================================
   BRAND CARD CLICKABLE STYLES
   ================================ */
.brand-card-click-area {
    display: block;
    text-decoration: none;
    color: inherit;
}

.brand-details-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #8b3dff, #b56cff);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 0 20px rgba(139, 61, 255, 0.4);
}

.brand-details-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(139, 61, 255, 0.6);
}

/* ================================
   BRAND DETAILS PAGE STYLES
   ================================ */
.brand-details-cyber-page {
    position: relative;
    min-height: 100vh;
    padding: 2rem 0 4rem;
}

.brand-details-hero {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 3rem;
    background: rgba(15, 10, 30, 0.9);
    border: 1px solid rgba(181, 108, 255, 0.3);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.brand-details-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-details-logo img {
    width: 100%;
    max-width: 300px;
    border-radius: 24px;
    box-shadow: 0 0 50px rgba(139, 61, 255, 0.3);
}

.brand-details-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
}

.brand-details-info h1 {
    font-size: 3rem;
    margin: 0;
    line-height: 1.1;
}

@media (max-width: 991.98px) {
    .brand-details-hero {
        grid-template-columns: 1fr;
    }
    .brand-media-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }
}

.brand-media-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(181, 108, 255, 0.55);
    box-shadow: 0 20px 80px var(--cyber-purple-glow);
}

.brand-media-card p {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.brand-media-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(181, 108, 255, 0.55);
    box-shadow: 0 20px 80px var(--cyber-purple-glow);
}

.brand-media-card img,
.brand-media-card video {
    width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.brand-media-card p {
    margin-top: 1rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ================================
   PREMIUM TYPOGRAPHY & SPACING SYSTEM
   ================================ */
:root {
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-32: 128px;
}

/* Premium Font System */
html[lang="ar"] body {
    font-family: 'Tajawal', 'IBM Plex Sans Arabic', sans-serif;
    line-height: 1.85;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] .hero-title,
html[lang="ar"] .section-title,
html[lang="ar"] .card-title {
    font-family: 'Noto Kufi Arabic', 'IBM Plex Sans Arabic', 'Tajawal', sans-serif;
    line-height: 1.35;
    letter-spacing: -0.02em;
}

html[lang="en"] body {
    font-family: 'Montserrat', 'Inter', sans-serif;
    line-height: 1.65;
}

html[lang="en"] h1,
html[lang="en"] h2,
html[lang="en"] h3,
html[lang="en"] .hero-title,
html[lang="en"] .section-title,
html[lang="en"] .card-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    line-height: 1.15;
    letter-spacing: -0.015em;
}

/* Section Header System */
.section-header {
    max-width: 780px;
    margin-inline: auto;
    margin-bottom: clamp(36px, 5vw, 64px);
    text-align: center;
}

.section-eyebrow {
    margin-bottom: 12px;
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    max-width: 720px;
    margin-inline: auto;
    line-height: 1.8;
}

/* Hero Text Spacing */
.hero-badge {
    margin-bottom: 24px;
}

.hero-title {
    margin-bottom: 24px;
    max-width: 760px;
}

.hero-description {
    max-width: 680px;
    line-height: 1.9;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Icon & Text Spacing */
.icon-text,
.card-icon-title,
.service-card-header,
.package-feature,
.contact-info-item,
.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.icon-text svg,
.card-icon-title svg,
.service-card-header svg,
.package-feature svg,
.contact-info-item svg {
    flex: 0 0 auto;
    margin-block-start: 3px;
}

/* Premium Card Spacing */
.service-card,
.portfolio-card,
.package-card,
.testimonial-card,
.feature-card {
    padding: clamp(22px, 2.4vw, 34px);
}

.service-card .card-icon,
.feature-card .card-icon {
    margin-bottom: 20px;
}

.service-card h3,
.package-card h3,
.feature-card h3 {
    margin-bottom: 12px;
}

.service-card p,
.package-card p,
.feature-card p {
    line-height: 1.75;
    margin-bottom: 0;
}

/* Section Vertical Spacing */
.section-shell,
section {
    padding-block: clamp(64px, 10vw, 128px);
}

/* Button Gap */
.btn,
.button,
.premium-cta,
.cyber-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.package-luxury-card {
    padding: 36px 28px;
}

.package-description {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.75;
    margin-top: 12px;
}

