/**
 * ULTRA PREMIUM TARQEYAH HEADER
 * Explosive Design That Commands Attention
 */

/* ========== VARIABLES ========== */
:root {
    --primary-blue: #4d61f4;
    --primary-lime: #d7fe7c;
    --primary-dark: #232323;
    --secondary-purple: #cb89ff;
    --secondary-light-gray: #f6f5f2;
    --text-white: #ffffff;
    --transition: cubic-bezier(0.77, 0, 0.175, 1);
}

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

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

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

body.tarqeyah-menu-open {
    overflow: hidden;
}

/* ========== PREMIUM EXPLOSIVE PRELOADER ========== */
.tarqeyah-premium-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0a0f;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.tarqeyah-premium-preloader.tarqeyah-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.tarqeyah-preloader-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tarqeyah-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.5;
    will-change: transform;
}

.tarqeyah-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #4d61f4, transparent);
    top: -250px;
    left: -250px;
    animation: tarqeyahOrbFloat 20s ease-in-out infinite;
}

.tarqeyah-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #cb89ff, transparent);
    bottom: -300px;
    right: -300px;
    animation: tarqeyahOrbFloat 25s ease-in-out infinite reverse;
}

.tarqeyah-orb-3 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #d7fe7c, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: tarqeyahOrbFloat 30s ease-in-out infinite;
    animation-delay: 5s;
}

@keyframes tarqeyahOrbFloat {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(50px, -50px); }
    66% { transform: translate(-50px, 50px); }
}

.tarqeyah-preloader-main {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* 3D Logo Showcase */
.tarqeyah-logo-showcase {
    margin-bottom: 60px;
}

.tarqeyah-logo-3d-container {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto;
    perspective: 1000px;
}

.tarqeyah-logo-platform {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 35px auto;
    background: linear-gradient(135deg, rgba(77, 97, 244, 0.2), rgba(203, 137, 255, 0.2));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    animation: tarqeyahPlatformFloat 4s ease-in-out infinite;
    box-shadow:
            0 20px 60px rgba(77, 97, 244, 0.4),
            0 0 100px rgba(215, 254, 124, 0.2),
            inset 0 0 60px rgba(203, 137, 255, 0.1);
    border: 2px solid rgba(215, 254, 124, 0.3);
    will-change: transform;
}

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

.tarqeyah-showcase-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(215, 254, 124, 0.8));
    animation: tarqeyahLogoBreath 3s ease-in-out infinite;
    will-change: transform;
}

@keyframes tarqeyahLogoBreath {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.tarqeyah-rotating-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
}

.tarqeyah-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 3px solid;
    border-radius: 50%;
    transform-origin: center;
    will-change: transform;
}

.tarqeyah-ring-1 {
    width: 220px;
    height: 220px;
    margin: -110px 0 0 -110px;
    border-color: transparent var(--primary-blue) transparent transparent;
    animation: tarqeyahRingRotate1 4s linear infinite;
}

.tarqeyah-ring-2 {
    width: 260px;
    height: 260px;
    margin: -130px 0 0 -130px;
    border-color: transparent transparent var(--secondary-purple) transparent;
    animation: tarqeyahRingRotate2 6s linear infinite reverse;
}

.tarqeyah-ring-3 {
    width: 300px;
    height: 300px;
    margin: -150px 0 0 -150px;
    border-color: transparent transparent transparent var(--primary-lime);
    animation: tarqeyahRingRotate3 8s linear infinite;
}

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

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

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

.tarqeyah-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 350px;
    margin: -175px 0 0 -175px;
    background: radial-gradient(circle, rgba(77, 97, 244, 0.4), transparent 70%);
    animation: tarqeyahGlowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes tarqeyahGlowPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Brand Reveal */
.tarqeyah-brand-reveal {
    margin-bottom: 50px;
}

.tarqeyah-reveal-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 8px;
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.tarqeyah-char {
    display: inline-block;
    background: linear-gradient(135deg, #4d61f4, #cb89ff, #d7fe7c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: tarqeyahCharReveal 0.8s ease-out forwards;
    animation-delay: calc(var(--i) * 0.1s);
    opacity: 0;
    transform: translateY(100px) rotateX(-90deg);
    will-change: transform, opacity;
}

@keyframes tarqeyahCharReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

.tarqeyah-reveal-tagline {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: tarqeyahFadeInUp 1s ease-out 0.8s forwards;
    opacity: 0;
}

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

/* Advanced Progress System */
.tarqeyah-progress-system {
    max-width: 500px;
    margin: 0 auto;
}

.tarqeyah-progress-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.tarqeyah-progress-track {
    position: relative;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.tarqeyah-progress-fill {
    position: relative;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #4d61f4, #cb89ff, #d7fe7c, #4d61f4);
    background-size: 300% 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
    animation: tarqeyahProgressShine 2s linear infinite;
    box-shadow: 0 0 20px rgba(77, 97, 244, 0.6);
    will-change: width;
}

@keyframes tarqeyahProgressShine {
    0% { background-position: 0% center; }
    100% { background-position: 300% center; }
}

.tarqeyah-progress-glow {
    position: absolute;
    top: -10px;
    left: 0;
    width: 100px;
    height: 26px;
    background: radial-gradient(ellipse, rgba(215, 254, 124, 0.6), transparent);
    filter: blur(15px);
    animation: tarqeyahGlowMove 2s ease-in-out infinite;
}

@keyframes tarqeyahGlowMove {
    0%, 100% { left: 0%; }
    50% { left: calc(100% - 100px); }
}

.tarqeyah-progress-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tarqeyah-stat-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.tarqeyah-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    letter-spacing: 2px;
}

.tarqeyah-stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-lime);
    min-width: 60px;
}

.tarqeyah-loading-dots {
    display: flex;
    gap: 6px;
}

.tarqeyah-loading-dots .tarqeyah-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-blue);
    border-radius: 50%;
    animation: tarqeyahDotBounce 1.4s ease-in-out infinite;
}

.tarqeyah-loading-dots .tarqeyah-dot:nth-child(1) { animation-delay: 0s; }
.tarqeyah-loading-dots .tarqeyah-dot:nth-child(2) { animation-delay: 0.2s; }
.tarqeyah-loading-dots .tarqeyah-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes tarqeyahDotBounce {
    0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
    40% { transform: scale(1.2); opacity: 1; }
}

/* Corner Decorations */
.tarqeyah-corner-decoration {
    position: absolute;
    width: 100px;
    height: 100px;
    opacity: 0.3;
}

.tarqeyah-corner-decoration::before,
.tarqeyah-corner-decoration::after {
    content: '';
    position: absolute;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
}

.tarqeyah-corner-tl {
    top: 0;
    left: 0;
}

.tarqeyah-corner-tl::before {
    top: 0;
    left: 0;
    width: 80px;
    height: 3px;
}

.tarqeyah-corner-tl::after {
    top: 0;
    left: 0;
    width: 3px;
    height: 80px;
}

.tarqeyah-corner-tr {
    top: 0;
    right: 0;
}

.tarqeyah-corner-tr::before {
    top: 0;
    right: 0;
    width: 80px;
    height: 3px;
}

.tarqeyah-corner-tr::after {
    top: 0;
    right: 0;
    width: 3px;
    height: 80px;
}

.tarqeyah-corner-bl {
    bottom: 0;
    left: 0;
}

.tarqeyah-corner-bl::before {
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
}

.tarqeyah-corner-bl::after {
    bottom: 0;
    left: 0;
    width: 3px;
    height: 80px;
}

.tarqeyah-corner-br {
    bottom: 0;
    right: 0;
}

.tarqeyah-corner-br::before {
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
}

.tarqeyah-corner-br::after {
    bottom: 0;
    right: 0;
    width: 3px;
    height: 80px;
}

/* ========== ULTRA PREMIUM HEADER ========== */
.tarqeyah-ultra-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    z-index: 9000;
    transition: transform 0.4s var(--transition);
}

.tarqeyah-ultra-header.tarqeyah-scrolled {
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
}

.tarqeyah-ultra-header.tarqeyah-hidden {
    transform: translateY(-100%);
}

.tarqeyah-header-dynamics {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.tarqeyah-header-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.95) 10%, rgba(255, 255, 255, 0.95) 90%, transparent 100%),
            radial-gradient(ellipse at top, rgba(77, 97, 244, 0.1), transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.tarqeyah-nav-supreme {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    height: 90px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Magnetic Logo */
.tarqeyah-magnetic-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.tarqeyah-logo-sphere {
    position: relative;
    width: 60px;
    height: 60px;
}

.tarqeyah-sphere-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4d61f4, #cb89ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
            0 8px 32px rgba(77, 97, 244, 0.4),
            inset 0 4px 16px rgba(255, 255, 255, 0.2);
    animation: tarqeyahSpherePulse 3s ease-in-out infinite;
    overflow: hidden;
}

@keyframes tarqeyahSpherePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.tarqeyah-sphere-logo {
    width: 36px;
    height: 36px;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 0 10px rgba(215, 254, 124, 0.6));
    position: relative;
    z-index: 2;
}

.tarqeyah-sphere-glow {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(215, 254, 124, 0.4), transparent 60%);
    animation: tarqeyahSphereGlow 4s ease-in-out infinite;
}

@keyframes tarqeyahSphereGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.tarqeyah-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 2px solid;
    border-radius: 50%;
    animation: tarqeyahOrbitSpin 8s linear infinite;
}

.tarqeyah-orbit-1 {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    border-color: rgba(77, 97, 244, 0.3) transparent transparent transparent;
}

.tarqeyah-orbit-2 {
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-color: transparent rgba(203, 137, 255, 0.3) transparent transparent;
    animation-direction: reverse;
    animation-duration: 12s;
}

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

.tarqeyah-logo-identity {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.tarqeyah-identity-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: var(--primary-dark);
    letter-spacing: 1px;
}

.tarqeyah-identity-slogan {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Premium Navigation */
.tarqeyah-supreme-nav {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tarqeyah-supreme-link {
    text-decoration: none;
    position: relative;
}

.tarqeyah-link-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.tarqeyah-supreme-link:hover .tarqeyah-link-wrapper {
    transform: translateY(-2px);
}

.tarqeyah-link-icon {
    font-size: 16px;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.tarqeyah-supreme-link:hover .tarqeyah-link-icon {
    transform: scale(1.2) rotate(-10deg);
    color: var(--secondary-purple);
}

.tarqeyah-link-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-dark);
    position: relative;
}

.tarqeyah-link-underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-purple));
    border-radius: 2px;
    transition: width 0.4s var(--transition);
}

.tarqeyah-supreme-link:hover .tarqeyah-link-underline {
    width: 100%;
}

/* Explosive CTA */
.tarqeyah-explosive-cta {
    position: relative;
    display: flex;
    align-items: center;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 50px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tarqeyah-explosive-cta:hover {
    transform: translateY(-3px) scale(1.02);
}

.tarqeyah-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4d61f4, #cb89ff);
    z-index: 0;
}

.tarqeyah-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tarqeyah-cta-icon-wrap {
    font-size: 20px;
    color: var(--text-white);
    animation: tarqeyahCtaIconBounce 2s ease-in-out infinite;
}

@keyframes tarqeyahCtaIconBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.tarqeyah-cta-label {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-white);
}

.tarqeyah-cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    z-index: 1;
    transition: left 0.6s ease;
}

.tarqeyah-explosive-cta:hover .tarqeyah-cta-shine {
    left: 100%;
}

.tarqeyah-cta-ripples {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.tarqeyah-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-lime);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
}

.tarqeyah-explosive-cta:hover .tarqeyah-ripple {
    animation: tarqeyahRippleEffect 1.5s ease-out;
}

.tarqeyah-ripple:nth-child(2) { animation-delay: 0.3s; }
.tarqeyah-ripple:nth-child(3) { animation-delay: 0.6s; }

@keyframes tarqeyahRippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Advanced Burger */
.tarqeyah-advanced-burger {
    display: none;
    position: relative;
    width: 50px;
    height: 50px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.tarqeyah-burger-layer {
    position: absolute;
    left: 50%;
    width: 28px;
    height: 3px;
    background: var(--primary-dark);
    border-radius: 2px;
    transform: translateX(-50%);
    transition: all 0.3s var(--transition);
}

.tarqeyah-burger-layer.tarqeyah-layer-1 { top: 16px; }
.tarqeyah-burger-layer.tarqeyah-layer-2 { top: 24px; }
.tarqeyah-burger-layer.tarqeyah-layer-3 { top: 32px; }

.tarqeyah-advanced-burger.tarqeyah-active .tarqeyah-burger-layer.tarqeyah-layer-1 {
    top: 24px;
    transform: translateX(-50%) rotate(45deg);
    background: var(--primary-blue);
}

.tarqeyah-advanced-burger.tarqeyah-active .tarqeyah-burger-layer.tarqeyah-layer-2 {
    opacity: 0;
    transform: translateX(-50%) scale(0);
}

.tarqeyah-advanced-burger.tarqeyah-active .tarqeyah-burger-layer.tarqeyah-layer-3 {
    top: 24px;
    transform: translateX(-50%) rotate(-45deg);
    background: var(--primary-blue);
}

.tarqeyah-burger-circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.tarqeyah-advanced-burger:hover .tarqeyah-burger-circle {
    border-color: var(--primary-blue);
    transform: scale(1.1);
}

/* Scroll Indicator */
.tarqeyah-scroll-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    overflow: hidden;
}

.tarqeyah-indicator-line {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-purple), var(--primary-lime));
    transition: width 0.1s linear;
    will-change: width;
}

/* ========== IMMERSIVE FULLSCREEN MENU ========== */
.tarqeyah-fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.tarqeyah-fullscreen-menu.tarqeyah-active {
    opacity: 1;
    visibility: visible;
}

.tarqeyah-menu-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0f;
}

.tarqeyah-menu-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
            radial-gradient(circle at 20% 20%, rgba(77, 97, 244, 0.2), transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(203, 137, 255, 0.2), transparent 50%);
}

.tarqeyah-menu-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.tarqeyah-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

.tarqeyah-menu-logo-area {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tarqeyah-menu-logo-area img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.tarqeyah-menu-logo-area span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--text-white);
}

.tarqeyah-menu-closer {
    position: relative;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tarqeyah-menu-closer:hover {
    background: rgba(77, 97, 244, 0.2);
    border-color: var(--primary-blue);
    transform: rotate(90deg);
}

.tarqeyah-closer-line {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 3px;
    background: var(--text-white);
    border-radius: 2px;
}

.tarqeyah-closer-line:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
}

.tarqeyah-closer-line:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.tarqeyah-closer-circle {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--primary-lime);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tarqeyah-menu-closer:hover .tarqeyah-closer-circle {
    opacity: 1;
    animation: tarqeyahCloserPulse 1.5s ease-in-out infinite;
}

@keyframes tarqeyahCloserPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Menu Navigation */
.tarqeyah-menu-navigation {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.tarqeyah-menu-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.4s var(--transition);
    opacity: 0;
    transform: translateX(-100px);
}

.tarqeyah-fullscreen-menu.tarqeyah-active .tarqeyah-menu-item {
    animation: tarqeyahMenuItemSlide 0.6s ease-out forwards;
}

.tarqeyah-fullscreen-menu.tarqeyah-active .tarqeyah-menu-item:nth-child(1) { animation-delay: 0.1s; }
.tarqeyah-fullscreen-menu.tarqeyah-active .tarqeyah-menu-item:nth-child(2) { animation-delay: 0.2s; }
.tarqeyah-fullscreen-menu.tarqeyah-active .tarqeyah-menu-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes tarqeyahMenuItemSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tarqeyah-menu-item:hover {
    background: rgba(77, 97, 244, 0.1);
    border-color: var(--primary-blue);
    transform: translateX(20px);
}

.tarqeyah-item-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-lime);
    min-width: 60px;
}

.tarqeyah-item-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 20px;
}

.tarqeyah-item-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-purple));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 24px;
    transition: transform 0.3s ease;
}

.tarqeyah-menu-item:hover .tarqeyah-item-icon {
    transform: scale(1.1) rotate(5deg);
}

.tarqeyah-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tarqeyah-item-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-white);
}

.tarqeyah-item-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.tarqeyah-item-arrow {
    color: var(--primary-blue);
    font-size: 28px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.tarqeyah-menu-item:hover .tarqeyah-item-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Menu CTA Section */
.tarqeyah-menu-cta-section {
    margin-bottom: 40px;
}

.tarqeyah-menu-cta-button {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 30px;
    background: linear-gradient(135deg, #4d61f4, #cb89ff);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(77, 97, 244, 0.4);
}

.tarqeyah-menu-cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(77, 97, 244, 0.6);
}

.tarqeyah-menu-cta-icon {
    font-size: 36px;
    color: var(--text-white);
}

.tarqeyah-menu-cta-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tarqeyah-menu-cta-title {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.tarqeyah-menu-cta-phone {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-white);
}

/* Menu Footer */
.tarqeyah-menu-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.tarqeyah-menu-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.tarqeyah-menu-contact a:hover {
    color: var(--primary-lime);
}

.tarqeyah-menu-social {
    display: flex;
    gap: 12px;
}

.tarqeyah-social-bubble {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.tarqeyah-social-bubble:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .tarqeyah-nav-supreme {
        padding: 0 30px;
    }

    .tarqeyah-supreme-nav {
        gap: 8px;
    }

    .tarqeyah-link-wrapper {
        padding: 10px 16px;
    }
}

@media (max-width: 768px) {
    .tarqeyah-ultra-header {
        height: 70px;
    }

    .tarqeyah-nav-supreme {
        height: 70px;
        padding: 0 20px;
    }

    .tarqeyah-supreme-nav,
    .tarqeyah-explosive-cta {
        display: none;
    }

    .tarqeyah-advanced-burger {
        display: block;
    }

    .tarqeyah-logo-identity {
        display: none;
    }

    .tarqeyah-logo-sphere {
        width: 50px;
        height: 50px;
    }

    .tarqeyah-sphere-logo {
        width: 30px;
        height: 30px;
    }

    .tarqeyah-reveal-text {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .tarqeyah-logo-3d-container {
        width: 200px;
        height: 200px;
    }

    .tarqeyah-logo-platform {
        width: 150px;
        height: 150px;
    }

    .tarqeyah-showcase-logo {
        width: 100px;
        height: 100px;
    }

    .tarqeyah-menu-container {
        padding: 30px 20px;
    }

    .tarqeyah-menu-navigation {
        gap: 15px;
    }

    .tarqeyah-menu-item {
        padding: 20px;
        gap: 20px;
    }

    .tarqeyah-item-title {
        font-size: 24px;
    }

    .tarqeyah-item-number {
        font-size: 24px;
        min-width: 50px;
    }

    .tarqeyah-item-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .tarqeyah-reveal-text {
        font-size: 36px;
        gap: 4px;
    }

    .tarqeyah-reveal-tagline {
        font-size: 12px;
    }

    .tarqeyah-logo-3d-container {
        width: 180px;
        height: 180px;
    }

    .tarqeyah-logo-platform {
        width: 130px;
        height: 130px;
    }

    .tarqeyah-showcase-logo {
        width: 90px;
        height: 90px;
    }

    .tarqeyah-progress-system {
        max-width: 300px;
    }

    .tarqeyah-stat-value {
        font-size: 20px;
    }

    .tarqeyah-menu-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .tarqeyah-item-content {
        width: 100%;
    }

    .tarqeyah-item-title {
        font-size: 20px;
    }

    .tarqeyah-menu-footer {
        flex-direction: column;
        gap: 20px;
    }
}