

:root {
    color-scheme: dark;
    
    --color-bg-deep: #10171e;
    --color-dark: #10171e;
    --color-dark-alt: #080c10;
    --color-light: #e6f7f9;
    --color-accent: #C8F0F5;
    --color-accent-qi: #FFD400;
    
    --color-accent-glow: rgba(200, 240, 245, 0.4);
    --color-white: #FFFFFF;
    
    --glass-bg: rgba(10, 15, 20, 0.7);
    --glass-border: rgba(200, 240, 245, 0.08);
    --glass-blur: blur(24px);
    --shadow-lux: 0 30px 60px rgba(0, 0, 0, 0.85);
    --shadow-glow: 0 0 30px var(--color-accent-glow);
    
    --font-arabic: 'Changa', sans-serif;
    
    --spacing-sm: clamp(0.5rem, 1vw, 1rem);
    --spacing-md: clamp(1rem, 2vw, 2rem);
    --spacing-lg: clamp(2rem, 4vw, 4rem);
    --spacing-xl: clamp(4rem, 8vw, 8rem);
    --spacing-xxl: clamp(6rem, 12vw, 12rem);
    --container-max: 1280px;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-arabic) !important;
}

html,
body {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    background-color: var(--color-bg-deep) !important;
}

::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

html.lenis {
    height: auto;
}

.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis-stopped {
    overflow: hidden;
}

body {
    color: var(--color-white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-x pan-y; 
}


@media screen and (max-width: 768px) {
    input, textarea, select {
        font-size: 16px !important;
    }
}


a {
    text-decoration: none !important;
    position: relative;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

.interactive-particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}




.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.en-text {
    direction: ltr;
    text-align: left;
}

.accent-color-qi {
    color: var(--color-accent-qi) !important;
}

.accent-color {
    color: var(--color-accent) !important;
}




#cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10000;
    transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s ease, border-radius 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    mix-blend-mode: normal;
    transform: translate(-50%, -50%);
}

#cursor-outline.gallery-hover-cursor {
    opacity: 1;
    visibility: visible;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

#cursor-outline.gallery-hover-cursor::after {
    content: '+';
    position: absolute;
    bottom: 8px;
    right: 12px;
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 300;
    line-height: 1;
}

.cursor-main-svg {
    width: 100%;
    height: 100%;
    stroke: var(--color-accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: absolute;
    transform-origin: center center;
}

.cursor-hover .cursor-main-svg {
    transform: scale(1.6) rotate(90deg);
    stroke-width: 1;
}

@media (max-width: 1024px) {
    body {
        cursor: auto;
    }
    .cursor-plus {
        display: none;
    }
}




.back-to-top-btn {
    position: fixed;
    left: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease, background 0.3s, border-color 0.3s;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
}

.back-to-top-btn svg {
    width: 20px;
    height: 20px;
}



#main-contact-form {
    transition: opacity 0.4s ease;
}

button.submit-btn-lux span {
    color: #10171e !important;
}

.success-state-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: opacity 0.4s ease;
    padding: 2rem 0;
    box-sizing: border-box;
}

.success-state-container.active {
    pointer-events: auto;
}

.success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 100%;
    position: relative; 
    --success-color: #ffffff; 
}

#qi-success-state .success-content {
    --success-color: var(--color-accent-qi); 
}


.success-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    box-shadow: 0 0 15px var(--success-color);
    opacity: 0;
    transition: opacity 0.4s ease-out 0.9s;
    pointer-events: none;
    z-index: -1;
}

.success-state-container.active .success-content::before {
    opacity: 1;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    
}

.success-checkmark-circle {
    stroke: var(--success-color);
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
}

.success-state-container.active .success-checkmark-circle {
    animation: drawStroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark-check {
    stroke: var(--success-color);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
}

.success-state-container.active .success-checkmark-check {
    animation: drawStroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.6s forwards;
}

@keyframes drawStroke {
    100% {
        stroke-dashoffset: 0;
    }
}



.success-state-container .success-message {
    color: var(--color-white);
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease 0.9s, transform 0.6s ease 0.9s;
    word-wrap: break-word;
}

.success-state-container.active .success-message {
    opacity: 1;
    transform: translateY(0);
}



.preloader-container {
    position: fixed;
    inset: 0;
    z-index: 10010;
    background-color: transparent;
    overflow: hidden;
}

.preloader-main-black-bg {
    position: absolute;
    inset: 0;
    background-color: #000000;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.preloader-curtain-accent {
    position: absolute;
    inset: 0;
    background-color: #C8F0F5;
    z-index: 2;
    transform: translateY(0);
}

.preloader-curtain-deep {
    position: absolute;
    inset: 0;
    background-color: #10171E;
    z-index: 1;
    transform: translateY(0);
}

.preloader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo {
    width: 120px;
    height: auto;
    opacity: 0;
    display: block;
    animation: fadeLogo 1.2s ease-out 0.2s forwards;
}

@keyframes fadeLogo {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

.logo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loading-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeText 1.2s ease-out 0.4s forwards;
}

@keyframes fadeText {
    0% { opacity: 0; transform: translateX(-50%) translateY(10px); }
    100% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.loading-text {
    color: #FFFFFF;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.progress-bar-container {
    width: 180px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background-color: #C8F0F5;
    transition: none;
}




.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.premium-scroll-indicator {
    position: fixed;
    z-index: 999;
    pointer-events: none;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    height: 120px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.premium-scroll-indicator.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-track {
    position: relative;
    width: 2px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.scroll-fill {
    width: 100%;
    height: 0%;
    background-color: var(--color-accent);
    border-radius: 4px;
    box-shadow: var(--shadow-glow);
}

.scroll-percentage {
    position: absolute;
    left: 15px;
    top: 0%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-accent);
    opacity: 0.8;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .premium-scroll-indicator {
        left: 0;
        bottom: 0;
        top: auto;
        transform: none;
        width: 100vw;
        height: 2px;
    }
    .scroll-track {
        width: 100%;
        height: 100%;
        direction: ltr !important;
    }
    .scroll-fill {
        height: 100%;
        width: 0%;
    }
    .scroll-percentage {
        position: fixed;
        left: 15px !important;
        right: auto !important;
        bottom: 8px;
        top: auto;
        transform: none;
    }
}




.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                -webkit-backdrop-filter 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-bottom-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid transparent;
    background-color: transparent;
}


.navbar.scrolled {
    background-color: rgba(10, 15, 20, 0.6) !important;
    backdrop-filter: blur(24px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(180%) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}


.page-outro-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    pointer-events: none;
    overflow: hidden;
    display: none; 
}

.outro-curtain-deep, .outro-curtain-accent, .outro-curtain-black {
    pointer-events: none;
}

.outro-curtain-deep {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-deep); 
    z-index: 1;
}

.outro-curtain-black {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    z-index: 3;
}

.outro-curtain-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent); 
    z-index: 2;
}


@keyframes pulseGlow {
    0% { filter: drop-shadow(0 0 0px rgba(200, 240, 245, 0)); }
    50% { filter: drop-shadow(0 0 8px rgba(200, 240, 245, 0.8)); }
    100% { filter: drop-shadow(0 0 0px rgba(200, 240, 245, 0)); }
}

@keyframes iconShine {
    0% { transform: translateX(-150%) translateY(150%) rotate(45deg); }
    15% { transform: translateX(150%) translateY(-150%) rotate(45deg); }
    100% { transform: translateX(150%) translateY(-150%) rotate(45deg); }
}

.mobile-header-actions {
    display: none;
}

@media (max-width: 1024px) {
    .mobile-header-actions {
        display: flex;
        gap: 12px;
        align-items: center;
        justify-content: center;
        animation: pulseGlow 5s infinite ease-in-out;
    }
    
    .mobile-header-actions a.nav-call-icon::after {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
            to right, 
            rgba(255, 255, 255, 0) 0%, 
            rgba(255, 255, 255, 0.6) 50%, 
            rgba(255, 255, 255, 0) 100%
        );
        transform: translateX(-150%) translateY(150%) rotate(45deg);
        animation: iconShine 5s infinite ease-in-out;
        pointer-events: none;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: transform 0.3s ease;
}

.logo-glow-sm {
    position: relative;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, rgba(200, 240, 245, 0.3), transparent);
}

.logo-img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    display: block;
}

.logo-text {
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--color-white);
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.5rem 0;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.nav-link-active {
    color: var(--color-white);
    opacity: 1;
}

.nav-links a.nav-call-icon,
.mobile-header-actions a.nav-call-icon {
    background-color: var(--color-accent);
    color: var(--color-dark);
    width: 45px;
    height: 45px;
    padding: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(200, 240, 245, 0.2);
}

.nav-links a.nav-call-icon svg,
.mobile-header-actions a.nav-call-icon svg {
    width: 20px;
    height: 20px;
}

.nav-links a.nav-call-icon:hover,
.mobile-header-actions a.nav-call-icon:hover {
    background-color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 240, 245, 0.4);
}




.hamburger-btn {
    display: none;
    position: relative;
    width: 30px;
    height: 30px; 
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
    padding: 0;
}

.hamburger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 4px;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -1px;
}


.hamburger-btn span:nth-child(1) { 
    transform: rotate(0deg); 
}

.hamburger-btn span:nth-child(2) { 
    transform: rotate(90deg); 
}


.hamburger-btn.is-active span:nth-child(1) {
    transform: rotate(315deg);
}

.hamburger-btn.is-active span:nth-child(2) {
    transform: rotate(405deg);
}

@media (max-width: 1024px) {
    .hamburger-btn {
        display: flex;
    }
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    
    background-color: rgba(10, 15, 20, 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    height: 100%;
    width: 100%;
}

.menu-links-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    height: 100%;
}

.mobile-menu-close-btn {
    position: absolute;
    top: 30px;
    left: 30px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 3.5rem;
    line-height: 0.5;
    cursor: pointer;
}

.menu-links-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.menu-links-container a {
    font-size: 2rem;
    font-weight: 800;
    color: var(--color-white);
}

.nav-contact-btn.mobile {
    margin-top: 1rem;
    border: 1.5px solid var(--color-accent);
    background-color: transparent;
    color: var(--color-accent);
    padding: 0.8rem 2.5rem;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.nav-contact-btn.mobile:hover {
    background-color: var(--color-accent);
    color: var(--color-dark);
}

@media (max-width: 1024px) {
    .nav-links.desktop-only {
        display: none;
    }
}




.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-color: var(--color-bg-deep);
}

.brutalist-arch {
    position: absolute;
    right: -5%;
    top: 0;
    height: 100%;
    width: 65%;
    background-image: url('/سقفك وين صورة.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    mix-blend-mode: luminosity;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
    filter: contrast(1.15);
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--color-bg-deep) 35%, transparent 100%);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: var(--spacing-xl);
    position: relative;
    z-index: 2;
}

.hero-content {
    flex: 1.2;
    max-width: 650px;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: var(--spacing-md);
    color: var(--color-white) !important;
    position: relative;
    z-index: 10 !important;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: var(--spacing-xl);
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.primary-btn {
    background-color: var(--color-white);
    color: var(--color-dark);
    padding: 1rem 2.5rem;
    border-radius: 40px;
    font-weight: 800;
    font-size: 1.05rem;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.25);
    background-color: var(--color-light);
}

.geometric-scroll-indicator {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.geometric-scroll-indicator:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
}

.scroll-anim-desktop {
    display: block;
}

.scroll-mouse {
    width: 16px;
    height: 26px;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
    border-radius: 8px;
    position: relative;
    display: flex;
    justify-content: center;
}

.scroll-wheel {
    width: 3px;
    height: 6px;
    background-color: var(--color-accent);
    border-radius: 1px;
    position: absolute;
    top: 4px;
    animation: wheel-spin 1.6s infinite ease-in-out;
}

@keyframes wheel-spin {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(8px);
        opacity: 0;
    }
}

.scroll-anim-mobile {
    display: none;
}

.scroll-finger {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.scroll-finger svg {
    width: 100%;
    height: 100%;
    animation: swipe-move 1.6s infinite ease-in-out;
}

@keyframes swipe-move {
    0% {
        transform: translateY(4px);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-4px);
        opacity: 1;
    }
    100% {
        transform: translateY(4px);
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .scroll-anim-desktop {
        display: none;
    }
    .scroll-anim-mobile {
        display: block;
    }
}

.hero-visuals {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.mockup-cards-wrapper {
    position: relative;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.mockup-card {
    background: rgba(15, 20, 25, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    padding: 24px;
    width: 100%;
    box-shadow: var(--shadow-lux);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
}

.mockup-cards-wrapper:hover .mockup-card {
    opacity: 0.35;
    filter: blur(2px);
    transform: scale(0.98);
}

.mockup-cards-wrapper .mockup-card:hover {
    opacity: 1 !important;
    filter: blur(0px);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(200, 240, 245, 0.4);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(200, 240, 245, 0.15);
    z-index: 2;
}

.mockup-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(200, 240, 245, 0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.mockup-card:hover::before {
    opacity: 1;
}

.mockup-card:hover {
    border-color: rgba(200, 240, 245, 0.35) !important;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.9), 0 0 30px rgba(200, 240, 245, 0.15) !important;
}

.card-3 {
    top: -80px;
    left: 10px;
    z-index: 1;
}

.card-1 {
    top: 40px;
    right: -10px;
    z-index: 2;
}

.card-2 {
    bottom: -40px;
    left: 10px;
    z-index: 1;
}

.card-svg-placeholder {
    height: 150px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.minimal-svg-icon {
    width: 50px;
    height: 50px;
}

.card-info h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 800;
    line-height: 1.4;
}

.card-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
        padding-top: 8rem;
    }
    .mockup-cards-wrapper {
        grid-template-columns: 1fr;
    }
    .hero-content {
        max-width: 100%;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-actions {
        justify-content: center;
    }
    .brutalist-arch {
        width: 100%;
        opacity: 0.15;
    }
    .gradient-overlay {
        background: linear-gradient(to top, var(--color-bg-deep) 40%, transparent 100%);
    }
    .mockup-cards-wrapper {
        margin-top: 3rem;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3rem !important;
        width: 100%;
        perspective: none;
        margin-bottom: 6rem !important;
    }
    .mockup-card {
        position: relative !important;
        inset: auto !important;
        transform: none !important;
        width: 100%;
        max-width: 320px;
    }
}




.marquee-section {
    padding: 3rem 0;
    background-color: transparent;
    overflow: hidden;
    border: none;
}

.marquee-wrapper {
    display: flex;
    overflow: hidden;
    width: 100vw;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
}

.marquee-track span {
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
    padding: 0 2rem;
}




.space-gallery-section {
    padding: 8rem 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 100vh;
}

.gallery-header-overlay {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    pointer-events: none;
    width: 90%;
    justify-content: center;
}

.gallery-title {
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    font-weight: 800;
    color: var(--color-white);
}

.gallery-fade-arrow {
    position: absolute;
    bottom: 5%;
    right: 5%;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background-color: rgba(10, 15, 20, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    z-index: 15;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), background 0.3s;
}

.gallery-fade-arrow:hover {
    background-color: var(--color-accent);
    color: var(--color-dark);
    border-color: var(--color-accent);
}

.gallery-fade-arrow.visible {
    opacity: 1;
    transform: scale(1);
}

.gallery-fade-arrow svg {
    width: 24px;
    height: 24px;
}

.space-gallery-container {
    width: 100vw;
    height: 100vh;
    min-height: 700px;
    position: relative;
}

.space-canvas {
    width: 100%;
    height: 100%;
    position: relative;
}

.floating-img {
    position: absolute;
    overflow: hidden;
    background: var(--color-dark);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.floating-img:hover::after {
    opacity: 0.1;
}

.floating-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.center-img {
    top: 50%;
    left: 50%;
    width: 420px;
    height: 520px;
    z-index: 2;
}

.top-right-img {
    top: 12%;
    right: 15%;
    width: 300px;
    height: 400px;
    z-index: 3;
}

.bottom-left-img {
    bottom: 12%;
    left: 10%;
    width: 360px;
    height: 260px;
    z-index: 4;
}

@media (max-width: 1024px) {
    .space-gallery-container {
        height: 70vh;
        min-height: auto;
    }
    .center-img {
        width: 320px;
        height: 420px;
    }
    .top-right-img {
        width: 230px;
        height: 320px;
        right: 5%;
        top: 5%;
    }
    .bottom-left-img {
        width: 260px;
        height: 190px;
        left: 5%;
        bottom: 5%;
    }
}

@media (max-width: 768px) {
    .space-gallery-container {
        height: 85vh;
    }
    .center-img {
        width: 68%;
        height: 45%;
    }
    .top-right-img {
        width: 48%;
        height: 30%;
        top: 5%;
        right: 5%;
    }
    .bottom-left-img {
        width: 55%;
        height: 26%;
        bottom: 5%;
        left: 5%;
    }
}




.services-section {
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
}

.services-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(200, 240, 245, 0.03) 0%, transparent 60%);
    filter: blur(80px);
}

.section-header-centered {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-subtitle {
    color: var(--color-accent);
    font-size: 0.95rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--color-accent);
    border-radius: 4px;
}

.services-grid-lux {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.service-card-lux {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-lux:hover {
    border-color: rgba(200, 240, 245, 0.25);
    background-color: rgba(255, 255, 255, 0.04);
}

.service-icon-wrapper {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: rgba(200, 240, 245, 0.05);
    border: 1.5px solid rgba(200, 240, 245, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: var(--color-accent);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-lux:hover .service-icon-wrapper {
    background-color: var(--color-accent);
    color: var(--color-dark);
    transform: scale(1.08) rotate(-5deg);
}

.service-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.service-content-lux h3 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.service-en-title-lux {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 600;
    display: block;
    margin-bottom: 1.5rem;
}

.service-divider-lux {
    width: 40px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.1);
    margin-bottom: 1.5rem;
}

.service-texts-lux {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ar-text-lux {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.en-body-lux {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 1024px) {
    .services-grid-lux {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .service-card-lux {
        padding: 2rem 1.5rem;
    }
}




.partnership-section {
    position: relative;
    padding: var(--spacing-xxl) 0;
    overflow: hidden;
}

.top-divider,
.bottom-divider {
    position: absolute;
    left: 0;
    width: 100%;
}

.top-divider {
    top: 0;
}

.bottom-divider {
    bottom: 0;
}

.partnership-container-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.qi-hero-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
}

@media (max-width: 1024px) {
    .qi-hero-grid {
        grid-template-columns: 1fr;
    }
}

.partnership-side-en {
    direction: ltr;
    text-align: left;
    padding: 1.5rem;
}

.brand-badge-en {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent-qi);
    border: 1px solid var(--color-accent-qi);
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.partner-en-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.partner-en-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
}

.partnership-side-ar {
    direction: rtl;
    text-align: right;
    padding: 1.5rem;
}

.brand-badge-ar {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent-qi);
    border: 1px solid var(--color-accent-qi);
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.brand-badge-lands {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    border: 1px solid var(--color-accent);
    padding: 4px 10px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.partner-ar-title {
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.partner-ar-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.partnership-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 360px;
}

.neon-glow-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    background: radial-gradient(circle, rgba(255, 212, 0, 0.12) 0%, transparent 60%);
    filter: blur(40px);
}

.lux-frame {
    padding: 2.5rem;
    background: rgba(10, 15, 20, 0.45);
    border: 1.5px solid rgba(255, 212, 0, 0.25);
    border-radius: 30px;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-lux);
}

.q-symbol {
    width: 100%;
    height: auto;
    border-radius: 24px;
}

.slogan-badge-wrapper {
    position: absolute;
    bottom: -35px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slogan-badge {
    background: rgba(10, 15, 20, 0.8);
    border: 2px solid rgba(255, 212, 0, 0.3);
    padding: 1.2rem 2.2rem;
    border-radius: 20px;
    backdrop-filter: var(--glass-blur);
    display: flex;
    flex-direction: column;
    transform: skewX(-15deg);
    transform-origin: center center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    margin: 0;
}

.slogan-badge:hover {
    border-color: rgba(255, 212, 0, 0.6);
}

.slogan-badge span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
}

.slogan-badge .highlight {
    font-size: 1.7rem;
}

.cta-button-gold {
    background-color: transparent;
    color: var(--color-accent-qi);
    border: 1.5px solid var(--color-accent-qi);
    padding: 0.9rem 2.2rem;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-button-gold:hover {
    background-color: var(--color-accent-qi);
    color: var(--color-dark);
    box-shadow: 0 10px 25px rgba(255, 212, 0, 0.25);
}

@media (max-width: 1024px) {
    .partnership-container-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .partnership-side-en,
    .partnership-side-ar {
        text-align: center;
        padding: 1rem 0;
    }
    .slogan-badge {
        right: 50%;
        transform: translateX(50%) translateY(20px) rotate(0);
    }
}




.about-section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.about-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    gap: var(--spacing-lg);
}

.ios-tabs-nav {
    position: relative;
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: var(--glass-blur);
}

.ios-tab-btn {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.55);
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.05rem;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.4s ease;
}

.ios-tab-btn.active {
    color: var(--color-dark);
}

.ios-tab-indicator {
    position: absolute;
    top: 4px;
    bottom: 4px;
    width: calc(33.333% - 2.66px);
    background: var(--color-accent);
    border-radius: 10px;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 15px rgba(200, 240, 245, 0.3);
}

.pos-about {
    transform: translateX(0);
}

.pos-vision {
    transform: translateX(-100%);
}

.pos-mission {
    transform: translateX(-200%);
}


.lux-wrapper {
    position: relative;
    min-height: 380px;
}

.ambient-glow-about {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    background: radial-gradient(circle, rgba(200, 240, 245, 0.05) 0%, transparent 70%);
    filter: blur(60px);
}

.tab-cards-container {
    position: relative;
    width: 100%;
}

.tab-card-lux {
    background: rgba(10, 15, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 4rem;
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-lux);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.tab-card-lux.active-tab {
    position: relative;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.tab-card-header-lux {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tab-card-header-lux h3 {
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800;
}

.en-title-lux {
    color: var(--color-accent);
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 700;
}

.tab-card-body-lux {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 3rem;
    align-items: center;
}

.ar-text-lux {
    font-size: clamp(1.1rem, 1.8vw, 1.35rem);
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.9);
}

.tab-divider-lux {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.en-body-lux {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
    .about-header {
        flex-direction: column;
        align-items: center;
    }
    .ios-tabs-nav {
        width: 100%;
        justify-content: space-between;
    }
    .ios-tab-btn {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        flex: 1;
        text-align: center;
    }
    .tab-card-lux {
        padding: 2.5rem 1.5rem;
    }
    .tab-card-body-lux {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .tab-divider-lux {
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
    }
}




.marquee-section {
    position: relative;
    padding: 3rem 0;
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
    white-space: nowrap;
    position: relative;
    direction: ltr;
}

.marquee-track {
    display: flex;
    flex: 0 0 auto;
    min-width: 100%;
    align-items: center;
    justify-content: space-around;
    gap: 3rem;
    padding-right: 3rem;
    animation: marqueeLoop 25s linear infinite;
    direction: rtl;
}

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

.marquee-track span {
    font-family: 'Outfit', 'Cairo', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
    text-transform: uppercase;
}




.site-footer {
    background-color: var(--color-bg-deep);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.liquid-glass-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.liquid-blob {
    position: absolute;
    filter: blur(95px);
    border-radius: 50%;
    opacity: 0.25;
    will-change: transform;
}

.blob-1 {
    width: 50vw;
    height: 50vw;
    background-color: var(--color-accent);
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 40vw;
    height: 40vw;
    background-color: #00a8ff;
    bottom: -10%;
    right: -10%;
}

.blob-3 {
    width: 35vw;
    height: 35vw;
    background-color: var(--color-accent);
    top: 30%;
    left: 40%;
}

.liquid-glass-overlay {
    position: absolute;
    inset: 0;
    backdrop-filter: blur(60px);
    -webkit-backdrop-filter: blur(60px);
    background: rgba(16, 23, 30, 0.2);
}

.contact-section {
    padding-top: var(--spacing-xxl);
    padding-bottom: var(--spacing-xl);
    position: relative;
    z-index: 2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}




.contact-header-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    padding: 0 var(--spacing-md);
    width: 100%;
}

.contact-header-ar {
    flex: 1;
    text-align: right !important;
    direction: rtl;
}

.contact-header-ar .title-underline {
    margin: 1rem 0 2rem auto !important;
}

.contact-header-en {
    flex: 1;
    text-align: left !important;
    direction: ltr;
}

.contact-header-en .title-underline-en {
    margin: 1rem auto 2rem 0 !important;
    background-color: var(--color-accent);
    width: 80px;
    height: 4px;
    border-radius: 4px;
}

.contact-subtitle {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.15rem;
    margin-top: 0.5rem;
    line-height: 1.8;
}

.contact-subtitle-en {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    margin-top: 0.5rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .contact-header-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    .contact-header-ar,
    .contact-header-en {
        width: 100%;
    }
}




.glass-panel {
    background: rgba(10, 15, 20, 0.6) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 24px !important;
    padding: 3rem !important;
    backdrop-filter: var(--glass-blur) !important;
    -webkit-backdrop-filter: var(--glass-blur) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25) !important;
}




@media (max-width: 768px) {
    .glass-panel {
        padding: 2rem 1.5rem !important;
        border-radius: 24px !important;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-top: var(--spacing-xl);
}

.form-title {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 2.5rem;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.form-group label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 700;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.25);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.1rem;
    color: var(--color-white);
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 15px rgba(200, 240, 245, 0.2);
}

.form-group textarea {
    resize: none;
}

.submit-btn-lux {
    background: var(--grad-accent, linear-gradient(135deg, var(--color-accent), #a0d8e0));
    color: #FFFFFF;
    padding: 1.1rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(200, 240, 245, 0.15);
    transition: all 0.3s ease;
}

.submit-btn-lux:hover {
    box-shadow: 0 15px 30px rgba(200, 240, 245, 0.3);
}

.submit-btn-qi {
    background: linear-gradient(135deg, var(--color-accent-qi), #f1c453);
    box-shadow: 0 10px 20px rgba(220, 169, 58, 0.2);
    color: #10171E;
}

.submit-btn-qi:hover {
    box-shadow: 0 15px 30px rgba(220, 169, 58, 0.4);
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    width: 100%;
}

.info-icon {
    background-color: var(--color-accent);
    color: var(--color-dark);
    width: 45px;
    height: 45px;
    padding: 0;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(200, 240, 245, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
}

.info-icon:hover {
    background-color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 240, 245, 0.4);
}

.info-icon svg {
    width: 22px;
    height: 22px;
}

.info-text h4 {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
}

.info-text p {
    font-size: 1.15rem;
    font-weight: 700;
}

.map-glass-card {
    margin-top: 1.5rem;
    width: 100%;
}

.map-header {
    margin-bottom: 1.5rem;
}

.map-header h4 {
    font-size: 1.2rem;
    font-weight: 800;
}

.map-header p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.map-container {
    height: 240px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
}

.map-container iframe {
    filter: grayscale(1) contrast(1.1) brightness(0.7);
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5, 8, 10, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-container:hover .map-overlay {
    opacity: 1;
}

.map-hover-content {
    background-color: var(--color-accent);
    color: var(--color-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img-large {
    width: 64px;
    height: 64px;
    border-radius: 50%;
}

.brand-titles h3 {
    font-size: 1.6rem;
    font-weight: 800;
}

.brand-subtitle {
    font-size: 0.8rem;
    color: var(--color-accent);
    letter-spacing: 2px;
}

.brand-desc {
    color: rgba(255, 255, 255, 0.55);
    margin-top: 1.5rem;
    max-width: 90%;
}

.social-links-lux {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icon-lux {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon-lux svg {
    width: 18px;
    height: 18px;
}

.social-icon-lux:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 25px rgba(200, 240, 245, 0.25);
    opacity: 1 !important;
}

.social-icon-lux.tiktok:hover {
    background: linear-gradient(135deg, #25F4EE, #FE2C55);
    border-color: #FE2C55;
    color: #fff;
}

.social-icon-lux.instagram:hover {
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
    border-color: #FD1D1D;
    color: #fff;
}

.social-icon-lux.facebook:hover {
    background: linear-gradient(135deg, #1877F2, #4267B2);
    border-color: #1877F2;
    color: #fff;
}

.footer-heading-lux {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.footer-title-underline {
    width: 40px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

.contact-header-en .title-underline-en {
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

#contact-section-title-en {
    color: var(--color-accent) !important;
}

.footer-links-lux ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links-lux a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

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

.footer-bottom-lux {
    background: #080c10;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 2rem 0;
}

.bottom-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-dummy-btn {
    color: #FFFFFF !important;
    font-size: 0.95rem;
    font-weight: 500;
    pointer-events: none;
    cursor: default;
    display: inline-block;
    padding: 0;
    margin: 0;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1000;
}

.bottom-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bottom-links a {
    color: #FFFFFF !important;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.bottom-links a:hover {
    color: var(--color-accent) !important;
}

.dot {
    width: 4px;
    height: 4px;
    background: #FFFFFF !important;
    border-radius: 50%;
}




@media (max-width: 1024px) {
    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .footer-logo {
        justify-content: center;
    }
    .social-links-lux {
        justify-content: center;
    }
    .bottom-container {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    
    .contact-section .container,
    .contact-grid {
        box-sizing: border-box !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        margin: 0 auto !important;
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2.5rem; 
        overflow-x: hidden;
    }

    .contact-info-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2.5rem;
        width: 100% !important;
    }

    
    .contact-form-wrapper,
    .info-card,
    .map-glass-card {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 2rem 1.5rem !important;
        border-radius: 24px !important;
        background: rgba(10, 15, 20, 0.6) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25) !important;
    }
    .map-glass-card {
        margin-bottom: 3rem !important; 
    }
    .form-row {
        grid-template-columns: 1fr;
        box-sizing: border-box !important;
        width: 100% !important;
        margin: 0 !important;
    }
    .form-group,
    .lux-input {
        box-sizing: border-box !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 0 1.5rem 0 !important;
    }
    .submit-btn-lux {
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .contact-header.text-right-desktop {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 0 2rem 0 !important;
    }
    
    .contact-header.text-right-desktop h2,
    .contact-header.text-right-desktop .section-title {
        text-align: right !important;
        direction: rtl !important;
        width: 100% !important;
    }
    
    .contact-header.text-right-desktop .en-title-lux,
    .contact-header.text-right-desktop .en-text {
        text-align: left !important;
        direction: ltr !important;
        width: 100% !important;
        unicode-bidi: embed;
    }
    .contact-header .title-underline.underline-right {
        margin: 0.75rem 0 1.5rem auto !important;
    }
    
    .bottom-container {
        flex-direction: column-reverse;
        align-items: center;
        text-align: center;
        gap: 0;
    }
    .copyright-dummy-btn {
        margin-top: 1.5rem !important;
        text-align: center;
    }
    .bottom-links {
        justify-content: center;
    }
    
    .footer-brand {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }
    .footer-logo {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
    .brand-titles {
        text-align: center !important;
        margin: 0 auto !important;
    }
    .brand-titles h3,
    .brand-subtitle {
        text-align: center !important;
        display: block !important;
        width: 100% !important;
    }
    .brand-desc {
        text-align: center !important;
        margin: 1.5rem auto !important;
        padding: 0 !important;
        max-width: 90% !important;
        width: 90% !important;
        line-height: 1.8 !important;
        font-size: 0.95rem !important;
    }
    .social-links-lux {
        display: flex !important;
        justify-content: center !important;
        margin: 1.5rem auto 0 auto !important;
        width: 100% !important;
    }
    .footer-title-underline {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}




.liquid-glass-overlay-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(5, 8, 10, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 10005;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.glass-panel-modal {
    background: rgba(16, 24, 30, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    width: 100%;
    max-width: 580px;
    padding: 3rem;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lux);
}

.close-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: var(--color-accent);
    color: var(--color-dark);
}

.modal-header {
    margin-bottom: 2rem;
    text-align: center;
}

.modal-header h2 {
    font-size: 2rem;
    font-weight: 800;
}

.modal-header .en-text {
    color: var(--color-accent);
    font-size: 0.9rem;
}

.form-group-modal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
}

.form-group-modal label {
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.form-group-modal input,
.form-group-modal textarea {
    background-color: rgba(0, 0, 0, 0.25);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    color: var(--color-white);
    outline: none;
    transition: all 0.3s ease;
}

.form-group-modal input:focus,
.form-group-modal textarea:focus {
    border-color: var(--color-accent);
}

.submit-btn-modal {
    width: 100%;
    background: var(--grad-accent);
    border: none;
    padding: 1.1rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
}

.contact-info-modal {
    margin-top: 2rem;
    background-color: rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item-modal h4 {
    color: var(--color-accent);
    font-size: 0.95rem;
}

.info-item-modal p {
    font-weight: 700;
}

.mobile-gallery-btn {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--color-dark);
    border: 1.5px solid rgba(200, 240, 245, 0.2);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    z-index: 998;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.mobile-gallery-btn.show-btn {
    display: flex;
}

.mobile-gallery-btn svg {
    width: 22px;
    height: 22px;
}

.form-success-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 0;
}

.success-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(200, 240, 245, 0.08);
    border: 2px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.success-icon-wrapper svg {
    width: 35px;
    height: 35px;
}

@keyframes section-flash-animation {
    0% {
        box-shadow: 0 0 0px transparent;
        border-color: rgba(255, 255, 255, 0.08);
        background-color: rgba(10, 15, 20, 0.6);
    }
    50% {
        box-shadow: 0 0 50px rgba(200, 240, 245, 0.5);
        border-color: var(--color-accent);
        background-color: rgba(200, 240, 245, 0.08);
    }
    100% {
        box-shadow: 0 0 0px transparent;
        border-color: rgba(255, 255, 255, 0.08);
        background-color: rgba(10, 15, 20, 0.6);
    }
}

.section-glow-active {
    animation: section-flash-animation 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.char-container {
    display: inline-block;
    overflow: hidden;
    vertical-align: bottom;
    padding-top: 0.3em;
    padding-bottom: 0.3em;
    margin-top: -0.3em;
    margin-bottom: -0.3em;
}
.char-reveal {
    display: inline-block;
    transform: translateY(110%) rotate(3deg);
    opacity: 0;
}





.page-hotel-apartments {
    background-color: var(--color-bg-deep);
    color: var(--color-text);
}


.hotel-hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px; 
}

.hotel-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%; 
    z-index: 0;
}

.hotel-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.hotel-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 23, 30, 0.4) 0%, rgba(16, 23, 30, 0.8) 100%);
}

.hotel-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
}

.cta-button-accent {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--color-accent);
    color: var(--color-bg-deep);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 40px;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button-accent:hover {
    background-color: #A0DDE5; 
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(200, 240, 245, 0.3);
}

.hotel-badge {
    padding: 0.5rem 1.5rem;
    background: rgba(200, 240, 245, 0.1);
    border: 1px solid rgba(200, 240, 245, 0.3);
    border-radius: 30px;
    color: var(--color-accent);
    font-size: 1rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hotel-hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hotel-hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.6;
}


.hotel-amenities-section {
    padding: 100px 0;
    background-color: var(--color-bg-deep);
    position: relative;
    z-index: 2;
}

.hotel-amenities-section .title-underline {
    margin-top: 20px;
}

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

.amenity-card {
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.amenity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.1);
}

.amenity-card h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.amenity-card p {
    color: var(--color-text);
    line-height: 1.6;
}


.ghost-scroll-container {
    width: 100%;
    height: 300vh; 
    position: relative;
    z-index: 2;
}

.sticky-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.sticky-wrapper::-webkit-scrollbar {
    display: none;
}

.horizontal-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    width: 300vw !important;
    height: 100% !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    will-change: transform;
}

.image-item {
    width: 100vw !important;
    height: 100vh !important;
    flex-shrink: 0 !important;
    display: block !important;
    position: relative !important;
}

.image-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}


.horizontal-progress-bar {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    z-index: 10;
    overflow: hidden;
}

.horizontal-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--color-gold);
    border-radius: 3px;
    will-change: transform;
}

.horizontal-panel .panel-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    max-width: 500px;
    margin-top: 20vh; 
    text-align: right;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-left: 4px solid var(--color-gold);
}

.horizontal-panel .panel-content h3 {
    color: var(--color-gold);
    font-size: 2rem;
    margin-bottom: 15px;
}

.horizontal-panel .panel-content p {
    color: var(--color-white);
    font-size: 1.1rem;
    line-height: 1.6;
}


.hotel-cta-section {
    padding: 100px 0;
    background-color: var(--color-bg-deep);
    position: relative;
    z-index: 2;
}

.cta-glass-banner {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 60px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.cta-banner-content h2 {
    font-size: 2.5rem;
    color: var(--color-white);
    margin-bottom: 10px;
}

.cta-banner-content p {
    font-size: 1.2rem;
    color: var(--color-text);
}

@media (max-width: 768px) {
    .cta-glass-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

}


:root {
    --color-qi-emerald: #00E676; 
    --color-qi-cyan: #00BFA5;
    --color-qi-dark: #002B24;
    --qi-gradient: linear-gradient(135deg, var(--color-gold) 0%, var(--color-qi-cyan) 100%);
    --qi-glow: 0 10px 30px rgba(0, 191, 165, 0.2);
}


.qi-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.qi-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.qi-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.qi-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    background: linear-gradient(to bottom, rgba(16, 23, 30, 0.4) 0%, rgba(16, 23, 30, 0.9) 100%),
                linear-gradient(to right, rgba(0, 43, 36, 0.4) 0%, rgba(16, 23, 30, 0.4) 100%);
    z-index: -1;
}

.qi-hero-content {
    text-align: center;
    z-index: 1;
    max-width: 800px;
}

.qi-badge {
    background: rgba(0, 191, 165, 0.1);
    border-color: rgba(0, 191, 165, 0.3);
    color: var(--color-qi-cyan);
}

.qi-hero-title {
    background: var(--qi-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none; 
}

.qi-btn {
    background: var(--qi-gradient);
    color: var(--color-white);
    box-shadow: var(--qi-glow);
    border: none;
}

.qi-btn:hover {
    box-shadow: 0 15px 40px rgba(0, 191, 165, 0.4);
    transform: translateY(-3px);
}

.qi-mouse {
    border-color: var(--color-qi-cyan);
}
.qi-mouse::before {
    background-color: var(--color-qi-cyan);
}


.qi-partnership-section {
    padding: 100px 0;
    background-color: var(--color-bg-deep);
    position: relative;
}

.qi-partnership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(0, 191, 165, 0.03), transparent 40%),
                radial-gradient(circle at bottom right, rgba(212, 175, 55, 0.03), transparent 40%);
    pointer-events: none;
}

.qi-partnership-card {
    padding: 60px 40px;
    border-radius: 20px;
    background: rgba(20, 28, 36, 0.6);
    border: 1px solid rgba(0, 191, 165, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.qi-logos-merge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.qi-merge-logo {
    height: 80px;
    object-fit: contain;
}

.q-logo-placeholder {
    width: 80px;
    border-radius: 50%;
    background: var(--color-qi-emerald);
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 2rem;
    font-family: Arial, sans-serif;
}

.qi-x-divider {
    font-size: 2rem;
    color: var(--color-gray);
    font-weight: 300;
}

.qi-part-title {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.qi-line {
    background: var(--qi-gradient);
}

.qi-text-content {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: right;
}

.qi-text-content p {
    color: var(--color-light);
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: justify;
}


.qi-form-section {
    padding: 50px 0 100px;
    background-color: var(--color-bg-deep);
}

.qi-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 50px;
    border-radius: 20px;
    background: rgba(20, 28, 36, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    overflow: hidden;
}

.qi-form-header {
    text-align: center;
    margin-bottom: 10px;
}

.qi-subtitle {
    color: var(--color-qi-cyan);
    letter-spacing: 2px;
}

.qi-form-title {
    color: var(--color-white);
    font-size: 2rem;
    margin-top: 10px;
}

.qi-form-subtitle {
    text-align: center;
    color: var(--color-gray);
    margin-bottom: 40px;
}

.qi-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.qi-input-group label {
    color: var(--color-light);
    font-weight: 500;
}

.qi-input-group input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.qi-input-group input:focus {
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.qi-submit-btn {
    margin-top: 10px;
    background: var(--qi-gradient);
    box-shadow: var(--qi-glow);
    border: none;
}

.qi-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 191, 165, 0.3);
}


.qi-state-active {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

.qi-state-hidden {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    text-align: center;
    padding: 40px 0;
}


.qi-success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--color-qi-emerald);
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--color-white);
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px var(--color-qi-emerald);
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}
@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}
@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 50px var(--color-qi-emerald);
    }
}

.qi-success-title {
    color: var(--color-white);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.qi-success-desc {
    color: var(--color-light);
    font-size: 1.1rem;
    line-height: 1.6;
}


@media (max-width: 768px) {
    .qi-partnership-card {
        padding: 40px 20px;
    }
    .qi-form-wrapper {
        padding: 40px 20px;
    }
    .qi-logos-merge {
        gap: 15px;
    }
    .qi-merge-logo, .q-logo-placeholder {
        height: 60px;
        width: 60px;
    }
    .qi-x-divider {
        font-size: 1.5rem;
    }
    .qi-part-title {
        font-size: 1.8rem;
    }
}


.ijaza-container {
    margin-top: 100px;
    position: relative;
    z-index: 10;
    padding-bottom: 20px;
    margin-bottom: -30px;
}

.ijaza-card {
    position: relative;
    padding: 60px 50px;
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(20, 28, 36, 0.9), rgba(10, 15, 20, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(0, 191, 165, 0.1);
    text-align: center;
}

.ijaza-bilingual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.ijaza-bilingual-grid:hover .mockup-card {
    opacity: 0.35;
    filter: blur(2px);
    transform: scale(0.98);
}

.ijaza-bilingual-grid .mockup-card:hover {
    opacity: 1 !important;
    filter: blur(0px);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(200, 240, 245, 0.4) !important;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.9), 0 0 30px rgba(200, 240, 245, 0.15) !important;
    z-index: 2;
}

.ijaza-text-box {
    position: relative;
    border-bottom: 4px solid var(--color-primary); 
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.ijaza-box-icon {
    color: var(--color-primary);
    margin-bottom: 20px;
    display: flex;
    justify-content: flex-start;
}

.ijaza-text-box.en {
    direction: ltr;
    text-align: left;
}

.ijaza-text-box.ar {
    direction: rtl;
    text-align: right;
}

.ijaza-text-box.ar .ijaza-box-icon {
    justify-content: flex-start;
}

@media (max-width: 900px) {
    .ijaza-bilingual-grid {
        grid-template-columns: 1fr;
    }
}

.ijaza-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg width="20" height="20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(212,175,55,0.05)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
    border-radius: 24px;
}

.ijaza-header {
    margin-bottom: 40px;
    position: relative;
}

.ijaza-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.ijaza-icon svg {
    width: 32px;
    height: 32px;
}

.ijaza-brand-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ijaza-brand-title .miqdam-text,
.ijaza-brand-title .qi-text {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--color-white);
    background: none;
    -webkit-text-fill-color: initial;
}

.ijaza-brand-title .plus-icon {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--color-accent-qi); 
}

@media (max-width: 768px) {
    .ijaza-card {
        padding: 40px 20px;
    }
    
    .ijaza-brand-title .miqdam-text,
    .ijaza-brand-title .qi-text {
        font-size: 1.6rem;
    }
    
    .ijaza-brand-title .plus-icon {
        font-size: 2.5rem;
    }
    
    .ijaza-bilingual-grid {
        gap: 20px;
    }
    
    .ijaza-text-box {
        padding: 25px;
    }
    
    .ijaza-text-box.en p, 
    .ijaza-text-box.en .highlight-quote {
        text-align: left !important;
        direction: ltr !important;
        width: 100%;
        display: block;
    }
}

.ijaza-content {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ijaza-text {
    color: var(--color-light);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ijaza-text-box.en,
.ijaza-text-box.en .ijaza-text,
.ijaza-text-box.en h3 {
    text-align: left !important;
    direction: ltr;
}

.ijaza-text-box.ar,
.ijaza-text-box.ar .ijaza-text,
.ijaza-text-box.ar h3 {
    text-align: right !important;
    direction: rtl;
}

.ijaza-text.lead-text {
    font-size: 1.25rem;
    color: var(--color-white);
    font-weight: 600;
}

.highlight-quote {
    font-size: 1.4rem;
    color: var(--color-gold);
    font-weight: 700;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px dashed rgba(212, 175, 55, 0.3);
}

.ijaza-stamp {
    position: absolute;
    bottom: 30px;
    left: 40px;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(0, 191, 165, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-15deg);
    opacity: 0.8;
}

.stamp-circle {
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px dashed rgba(0, 191, 165, 0.6);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.stamp-text {
    color: var(--color-qi-cyan);
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

@media (max-width: 768px) {
    .ijaza-card {
        padding: 40px 20px;
    }
    .ijaza-title {
        font-size: 1.4rem;
    }
    .ijaza-stamp {
        position: relative;
        bottom: 0;
        left: 0;
        margin: 40px auto 0;
    }

}


.magic-logos-container {
    width: auto !important;
    max-width: 400px;
    height: 100px !important;
    background: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    margin: 0 auto 30px;
    padding: 0 40px;
}

.magic-particles-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 250px;
    height: 120px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.15) 0%, rgba(0, 191, 165, 0.1) 40%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    animation: magicPulseGlow 4s infinite alternate;
}

@keyframes magicPulseGlow {
    0% { opacity: 0.6; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.ijaza-logo {
    height: 55px;
    object-fit: contain;
    z-index: 1;
    position: relative;
    filter: drop-shadow(0 0 15px rgba(255,255,255,0.1));
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ijaza-logo:hover {
    transform: scale(1.15) translateY(-5px);
    filter: drop-shadow(0 15px 25px rgba(212, 175, 55, 0.4));
}

.qi-side {
    height: 45px;
    filter: drop-shadow(0 0 15px rgba(0, 191, 165, 0.2));
}

.qi-side:hover {
    filter: drop-shadow(0 15px 25px rgba(0, 191, 165, 0.4));
}

.miqdam-side {
    height: 75px;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2));
}

.miqdam-side:hover {
    filter: drop-shadow(0 15px 25px rgba(212, 175, 55, 0.4));
}

.ijaza-plus {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-gray);
    z-index: 1;
    text-shadow: 0 0 20px rgba(255,255,255,0.2);
    animation: floatPlus 3s ease-in-out infinite;
}

@keyframes floatPlus {
    0%, 100% { transform: translateY(0); color: var(--color-gray); }
    50% { transform: translateY(-5px); color: var(--color-white); text-shadow: 0 0 30px rgba(212, 175, 55, 0.6); }
}

@media (max-width: 768px) {
    .magic-logos-container {
        gap: 15px;
        padding: 0 10px;
    }
    .ijaza-logo {
        height: 35px;
    }
    .qi-side {
        height: 30px;
    }
    .miqdam-side {
        height: 50px;
    }
    .ijaza-plus {
        font-size: 1.8rem;
    }
    .magic-particles-bg {
        width: 180px;
    }
}


.page-lands {
    padding-top: 0;
}

.lands-grid-container {
    width: 100%;
}

.land-card {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(16, 23, 30, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}

.land-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(200, 240, 245, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.land-card:hover {
    transform: translateY(-10px);
    border-color: rgba(200, 240, 245, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(200, 240, 245, 0.1);
}

.land-card:hover::before {
    opacity: 1;
}

.land-card > * {
    position: relative;
    z-index: 1;
}

.land-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
    flex-wrap: wrap;
}

.land-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    line-height: 1.2;
}

.land-badge {
    background: rgba(200, 240, 245, 0.1);
    color: var(--color-accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(200, 240, 245, 0.2);
    white-space: nowrap;
}

.land-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-box {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 4px;
}

.stat-lbl {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.land-desc {
    margin-bottom: 25px;
    flex-grow: 1;
}

.land-desc p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.land-history {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border-right: 3px solid var(--color-accent);
}

.land-history svg {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.land-history span {
    font-size: 0.9rem;
    color: var(--color-white);
    line-height: 1.5;
}

.land-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.land-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-white);
    font-size: 0.95rem;
}

.feature-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-accent);
    flex-shrink: 0;
}

.land-action {
    margin-top: auto;
}

.whatsapp-btn {
    background: #25D366 !important;
    color: #FFF !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.whatsapp-btn:hover {
    background: #128C7E !important;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4) !important;
}

@media (max-width: 768px) {
    .lands-grid-container {
        grid-template-columns: 1fr !important;
    }
    .land-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
