/* ============================================
   JAZAN SECRET GLASS — Ultra-Premium Styles
   Dark Mode · Glassmorphism · Neon Cyan
   ============================================ */

/* ===== CSS Variables ===== */
:root {
    --cyan: #00e5ff;
    --cyan-dark: #00b8d4;
    --cyan-light: #80ffff;
    --cyan-glow: rgba(0, 229, 255, 0.25);
    --cyan-ultra: rgba(0, 229, 255, 0.08);

    --bg-base: #080d14;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.07);
    --charcoal: #0f1923;
    --charcoal-2: #131e2b;

    --silver: #c0c8d8;
    --silver-light: #e2e8f0;
    --silver-dim: #7a8a9e;

    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);

    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --gold: #d4af37;
    --success: #10b981;

    --font-ar: 'Tajawal', sans-serif;
    --font-en: 'Outfit', sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;
    --radius-full: 50%;

    --transition: 0.3s ease;
    --transition-slow: 0.6s ease;
    --section-pad: 110px 0;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-ar);
    background: var(--bg-base);
    color: var(--silver);
    line-height: 1.75;
    overflow-x: hidden;
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.25;
    color: #fff;
    font-family: var(--font-ar);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Text Cyan Gradient ===== */
.text-cyan {
    background: linear-gradient(135deg, var(--cyan-light), var(--cyan), var(--cyan-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Custom Cursor ===== */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--cyan);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    width: 36px;
    height: 36px;
    border: 1.5px solid var(--cyan);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: all 0.18s ease;
    opacity: 0.5;
}

@media (max-width:768px) {

    .cursor,
    .cursor-follower {
        display: none;
    }
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-base);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.logo-diamond {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: diamondPulse 1.5s ease-in-out infinite;
}

.diamond-inner {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

@keyframes diamondPulse {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
        box-shadow: 0 0 0 0 var(--cyan-glow);
    }

    50% {
        transform: scale(1.1) rotate(45deg);
        box-shadow: 0 0 30px 10px var(--cyan-glow);
    }
}

.preloader-bars {
    display: flex;
    gap: 6px;
    align-items: flex-end;
}

.preloader-bars span {
    display: block;
    width: 6px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--cyan-light), var(--cyan));
    animation: barPulse 1.2s ease-in-out infinite;
}

.preloader-bars span:nth-child(1) {
    height: 20px;
}

.preloader-bars span:nth-child(2) {
    height: 35px;
    animation-delay: .15s;
}

.preloader-bars span:nth-child(3) {
    height: 28px;
    animation-delay: .3s;
}

.preloader-bars span:nth-child(4) {
    height: 42px;
    animation-delay: .45s;
}

.preloader-bars span:nth-child(5) {
    height: 24px;
    animation-delay: .6s;
}

@keyframes barPulse {

    0%,
    100% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }

    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

.preloader-text {
    font-family: var(--font-en);
    color: var(--cyan);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 4px;
    animation: textGlow 1.5s ease-in-out infinite;
}

@keyframes textGlow {

    0%,
    100% {
        text-shadow: 0 0 10px var(--cyan-glow);
    }

    50% {
        text-shadow: 0 0 30px var(--cyan), 0 0 60px var(--cyan-glow);
    }
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-family: var(--font-ar);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    transition: left 0.5s ease;
}

.btn:hover::after {
    left: 100%;
}

.btn-cyan {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: #000;
    box-shadow: 0 4px 20px var(--cyan-glow);
}

.btn-cyan:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px var(--cyan-glow), 0 0 60px rgba(0, 229, 255, 0.15);
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.btn-cyan:hover .btn-glow {
    opacity: 1;
}

.btn-glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    color: #fff;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
}

.btn-outline-cyan {
    background: transparent;
    border: 2px solid var(--cyan);
    color: var(--cyan);
}

.btn-outline-cyan:hover {
    background: var(--cyan);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--cyan-glow);
}

.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.4);
}

.btn-lg {
    padding: 17px 40px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 22px 0;
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(8, 13, 20, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 14px 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1001;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--cyan-glow);
}

.logo-icon i {
    color: #000;
    font-size: 1.2rem;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: var(--font-en);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: 2px;
}

.logo-sub {
    font-family: var(--font-en);
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--cyan);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 9px 18px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--silver-dim);
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 4px;
    right: 50%;
    left: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
}

.nav-link:hover::before,
.nav-link.active::before {
    right: 16px;
    left: 16px;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-nav-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: #000;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 15px var(--cyan-glow);
}

.btn-nav-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--cyan-glow);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.menu-toggle span {
    width: 26px;
    height: 2.5px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 130px 0 90px;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.12), transparent 70%);
    top: -200px;
    right: -100px;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 200, 0.08), transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.06), transparent 70%);
    top: 30%;
    left: 40%;
    animation: orbFloat 6s ease-in-out infinite;
}

@keyframes orbFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -40px);
    }
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 229, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 229, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 80%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

.hero-content {
    position: relative;
    text-align: center;
    z-index: 2;
    max-width: 950px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--glass-bg);
    border: 1px solid rgba(0, 229, 255, 0.2);
    backdrop-filter: blur(12px);
    padding: 10px 26px;
    border-radius: 50px;
    margin-bottom: 32px;
    font-size: 0.85rem;
    color: var(--cyan);
    font-family: var(--font-en);
    font-weight: 600;
    letter-spacing: 1px;
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan);
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}

@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

.hero h1 {
    font-size: clamp(2.6rem, 6vw, 5.5rem);
    font-weight: 900;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.1;
}

.hero-line-1 {
    display: block;
    font-family: var(--font-en);
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.4em;
    letter-spacing: 12px;
    margin-bottom: 8px;
}

.hero-line-2 {
    display: block;
    font-family: var(--font-en);
}

.hero-line-3 {
    display: block;
    font-family: var(--font-ar);
    font-size: 0.38em;
    color: var(--silver-dim);
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 14px;
    text-transform: none;
}

.hero-desc {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--silver-dim);
    max-width: 680px;
    margin: 0 auto 44px;
    line-height: 1.9;
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    padding: 28px 50px;
    border-radius: var(--radius-lg);
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    padding: 0 30px;
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--cyan);
    line-height: 1;
    font-family: var(--font-en);
    text-shadow: 0 0 20px var(--cyan-glow);
}

.stat-number::after {
    content: '+';
    font-size: 0.6em;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--silver-dim);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--glass-border);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--silver-dim);
    font-size: 0.75rem;
    transition: var(--transition);
}

.hero-scroll-indicator a:hover {
    color: var(--cyan);
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: var(--cyan);
    border-radius: 2px;
    animation: scrollAnim 2s infinite;
}

@keyframes scrollAnim {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(14px);
    }
}

/* ===== Features Strip ===== */
.features-strip {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(0, 229, 255, 0.04), transparent);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 24px 22px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    cursor: default;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(0, 229, 255, 0.05);
}

.feature-icon-wrap {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(0, 229, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--cyan);
    transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: #000;
    box-shadow: 0 0 20px var(--cyan-glow);
}

.feature-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.feature-body p {
    font-size: 0.8rem;
    color: var(--silver-dim);
    line-height: 1.4;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.18);
    padding: 7px 22px;
    border-radius: 50px;
    margin-bottom: 18px;
    font-size: 0.82rem;
    color: var(--cyan);
    font-weight: 600;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 900;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.05rem;
    color: var(--silver-dim);
    max-width: 580px;
    margin: 0 auto;
}

/* ===== About ===== */
.about {
    padding: var(--section-pad);
    position: relative;
    overflow: hidden;
}

.about-bg-glow {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.06), transparent 70%);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    position: relative;
}

.about-img-main img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.img-scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    animation: scanLine 3s linear infinite;
}

@keyframes scanLine {
    0% {
        top: 0;
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.about-img-secondary {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 3px solid var(--bg-base);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px var(--cyan-glow);
    text-align: center;
}

.exp-ring {
    position: absolute;
    inset: -6px;
    border: 2px dashed rgba(0, 229, 255, 0.4);
    border-radius: 50%;
    animation: rotateRing 8s linear infinite;
}

@keyframes rotateRing {
    to {
        transform: rotate(360deg);
    }
}

.exp-number {
    font-size: 1.7rem;
    font-weight: 900;
    color: #000;
    line-height: 1;
    font-family: var(--font-en);
}

.exp-text {
    font-size: 0.6rem;
    color: rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

.about-float-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: var(--glass-shadow);
}

.about-float-card i {
    font-size: 1.4rem;
    color: var(--gold);
}

.float-card-num {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.float-card-label {
    font-size: 0.7rem;
    color: var(--silver-dim);
}

.about-content .section-label {
    display: inline-flex;
}

.about-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    margin: 14px 0 20px;
}

.about-desc {
    color: var(--silver-dim);
    margin-bottom: 14px;
    font-size: 1rem;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0 36px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.highlight-item i {
    color: var(--cyan);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ===== Services ===== */
.services {
    padding: var(--section-pad);
    position: relative;
    overflow: hidden;
}

.services-bg {
    position: absolute;
    inset: 0;
}

.services-orb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.05), transparent 65%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 229, 255, 0.25);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 229, 255, 0.06);
}

.service-img {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(8, 13, 20, 0.85));
}

.service-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: #000;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
}

.service-content {
    padding: 26px;
}

.service-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(0, 229, 255, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--cyan);
    margin-bottom: 14px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: #000;
    box-shadow: 0 0 20px var(--cyan-glow);
}

.service-content h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 0.87rem;
    color: var(--silver-dim);
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--cyan);
    font-size: 0.87rem;
    font-weight: 700;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.btn-service:hover {
    border-bottom-color: var(--cyan);
    gap: 12px;
}

/* ===== CTA ===== */
.cta-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.06), rgba(0, 180, 200, 0.02));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cta-glass {
    background: var(--glass-bg);
    border: 1px solid rgba(0, 229, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-xl);
    padding: 60px 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden;
}

.cta-glass::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.cta-icon-wrap {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #000;
    box-shadow: 0 0 40px var(--cyan-glow);
}

.cta-content {
    flex: 1;
    min-width: 200px;
}

.cta-content h2 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 900;
    margin-bottom: 8px;
}

.cta-content p {
    color: var(--silver-dim);
}

.cta-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ===== Gallery ===== */
.gallery {
    padding: var(--section-pad);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 26px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: var(--silver-dim);
    font-family: var(--font-ar);
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: #000;
    border-color: transparent;
    box-shadow: 0 4px 20px var(--cyan-glow);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item.large {
    grid-column: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.8));
    opacity: 0;
    transition: all var(--transition);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.gallery-info p {
    font-size: 0.78rem;
    color: var(--silver-dim);
}

.gallery-zoom {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.gallery-zoom:hover {
    background: var(--cyan);
    color: #000;
}

.gallery-item.hidden {
    display: none;
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    z-index: 1;
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    z-index: 2;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--cyan);
    color: #000;
}

.lightbox-close {
    top: 20px;
    left: 20px;
}

.lightbox-prev {
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.lightbox-next {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}

.lightbox-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--silver-dim);
    font-size: 0.85rem;
    z-index: 2;
}

/* ===== Testimonials ===== */
.testimonials {
    padding: var(--section-pad);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 255, 0.3), transparent);
    opacity: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 229, 255, 0.2);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-card.featured {
    border-color: rgba(0, 229, 255, 0.25);
    background: rgba(0, 229, 255, 0.05);
}

.testimonial-card.featured::before {
    opacity: 1;
}

.testimonial-quote {
    font-size: 1.5rem;
    color: rgba(0, 229, 255, 0.2);
    margin-bottom: 12px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    color: #f59e0b;
    margin-bottom: 14px;
    font-size: 0.85rem;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--silver-dim);
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.2), rgba(0, 229, 255, 0.05));
    border: 1px solid rgba(0, 229, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
}

.author-info span {
    font-size: 0.78rem;
    color: var(--silver-dim);
}

/* ===== Contact ===== */
.contact {
    padding: var(--section-pad);
    position: relative;
    overflow: hidden;
}

.contact-bg-glow {
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(0, 229, 255, 0.05), transparent 70%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 50px;
    margin-bottom: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 22px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.04), transparent);
    opacity: 0;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateX(-6px);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-card.whatsapp:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark)) !important;
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.15), rgba(0, 229, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--cyan);
    transition: var(--transition);
}

.contact-card:hover .contact-card-icon {
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: #000;
    box-shadow: 0 0 20px var(--cyan-glow);
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h3 {
    font-size: 0.85rem;
    color: var(--silver-dim);
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-card-content a,
.contact-card-content p,
.contact-card-content span {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    direction: ltr;
    display: block;
}

.contact-card-content a:hover {
    color: var(--cyan);
}

.contact-card-arrow {
    color: var(--silver-dim);
    font-size: 0.85rem;
}

.contact-form-wrapper {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-xl);
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}

.form-header {
    margin-bottom: 28px;
}

.form-header h3 {
    font-size: 1.3rem;
    font-weight: 800;
}

.form-header p {
    color: var(--silver-dim);
    font-size: 0.88rem;
    margin-top: 4px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--silver);
    margin-bottom: 8px;
}

.input-wrap {
    position: relative;
}

.input-wrap input,
.input-wrap textarea,
.input-wrap select {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-ar);
    font-size: 0.92rem;
    transition: all var(--transition);
    outline: none;
    direction: rtl;
}

.input-wrap select {
    appearance: none;
    cursor: pointer;
}

.input-wrap textarea {
    padding: 14px 16px 14px 44px;
    resize: none;
}

.input-wrap input:focus,
.input-wrap textarea:focus,
.input-wrap select:focus {
    border-color: rgba(0, 229, 255, 0.4);
    background: rgba(0, 229, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.08);
}

.input-wrap i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--silver-dim);
    font-size: 0.9rem;
    pointer-events: none;
}

.input-wrap textarea~i {
    top: 18px;
    transform: none;
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
    color: var(--silver-dim);
}

.input-wrap select option {
    background: var(--charcoal);
    color: #fff;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.map-wrapper iframe {
    display: block;
    filter: grayscale(40%) invert(5%) hue-rotate(180deg);
}

/* ===== Footer ===== */
.footer {
    background: var(--charcoal);
    position: relative;
    padding: 70px 0 0;
}

.footer-top-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-about p {
    font-size: 0.88rem;
    color: var(--silver-dim);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all var(--transition);
    border: 1px solid var(--glass-border);
}

.social-btn.whatsapp {
    color: var(--whatsapp);
}

.social-btn.whatsapp:hover {
    background: var(--whatsapp);
    color: #fff;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.social-btn.phone {
    color: var(--cyan);
}

.social-btn.phone:hover {
    background: var(--cyan);
    color: #000;
    box-shadow: 0 0 20px var(--cyan-glow);
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-title-line {
    display: inline-block;
    width: 24px;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--cyan-dark));
}

.footer-links ul li,
.footer-services ul li {
    margin-bottom: 10px;
}

.footer-links ul a,
.footer-services ul a {
    font-size: 0.87rem;
    color: var(--silver-dim);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links ul a:hover,
.footer-services ul a:hover {
    color: var(--cyan);
    padding-right: 4px;
}

.footer-links ul a i,
.footer-services ul a i {
    font-size: 0.7rem;
    color: var(--cyan);
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.87rem;
    color: var(--silver-dim);
}

.footer-contact ul li i {
    color: var(--cyan);
    width: 16px;
    flex-shrink: 0;
}

.footer-contact ul li a {
    color: var(--silver-dim);
    direction: ltr;
}

.footer-contact ul li a:hover {
    color: var(--cyan);
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.83rem;
    color: var(--silver-dim);
}

.footer-bottom strong {
    color: var(--cyan);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.78rem;
}

.footer-tagline i {
    color: #e74c3c;
    margin: 0 4px;
}

/* ===== Floating Buttons ===== */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    left: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 500;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
}

.float-tooltip {
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .float-tooltip {
    opacity: 1;
}

.float-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.4);
    animation: ringPulse 2s ease-out infinite;
}

.call-float .float-ring {
    border-color: rgba(0, 229, 255, 0.4);
}

@keyframes ringPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.call-float {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 500;
    box-shadow: 0 4px 20px var(--cyan-glow);
    transition: all var(--transition);
}

.call-float:hover {
    transform: scale(1.12);
}

.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    color: var(--cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 500;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    box-shadow: var(--glass-shadow);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--cyan);
    color: #000;
    transform: translateY(-3px);
}

/* ===== Animations ===== */
[data-animate] {
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-down"] {
    transform: translateY(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(-40px);
}

[data-animate="fade-right"] {
    transform: translateX(40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

/* ===== Responsive ===== */
@media (max-width:1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-glass {
        flex-direction: column;
        text-align: center;
    }

    .hero-stats {
        padding: 20px 30px;
        gap: 0;
    }

    .stat-item {
        padding: 10px 16px;
    }
}

@media (max-width:768px) {
    .navbar {
        padding: 16px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(8, 13, 20, 0.97);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 12px;
        transition: right var(--transition-slow);
        z-index: 999;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 14px 24px;
    }

    .btn-nav-call {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
    }

    .stat-divider {
        display: none;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large,
    .gallery-item.tall {
        grid-column: auto;
        grid-row: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn-lg {
        padding: 13px 24px;
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width:480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    .video-card.featured-video {
        grid-column: auto;
        grid-row: auto;
    }
}

/* ===== Logo text size fix ===== */
.logo-main {
    font-size: 0.95rem !important;
    letter-spacing: 0 !important;
}

.logo-sub {
    font-size: 0.5rem !important;
    letter-spacing: 1px !important;
}

/* ===== Social btn extra colors ===== */
.social-btn.instagram {
    color: #e1306c;
}

.social-btn.instagram:hover {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
    border-color: transparent;
}

.social-btn.tiktok {
    color: #69c9d0;
}

.social-btn.tiktok:hover {
    background: #010101;
    color: #fff;
    border-color: transparent;
}

.social-btn.facebook {
    color: #1877f2;
}

.social-btn.facebook:hover {
    background: #1877f2;
    color: #fff;
    border-color: transparent;
}

.social-btn.linkedin {
    color: #0a66c2;
}

.social-btn.linkedin:hover {
    background: #0a66c2;
    color: #fff;
    border-color: transparent;
}

.social-btn.youtube {
    color: #ff0000;
}

.social-btn.youtube:hover {
    background: #ff0000;
    color: #fff;
    border-color: transparent;
}

.social-btn.pinterest {
    color: #e60023;
}

.social-btn.pinterest:hover {
    background: #e60023;
    color: #fff;
    border-color: transparent;
}

/* ===== Social Sidebar ===== */
.social-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 490;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar-social {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: rgba(8, 13, 20, 0.8);
    border: 1px solid var(--glass-border);
    border-left: none;
    border-radius: 0 8px 8px 0;
    color: var(--silver-dim);
    transition: all var(--transition);
    transform: translateX(-100%);
    opacity: 0;
    animation: slideInSidebar 0.5s ease forwards;
}

.sidebar-social:nth-child(1) {
    animation-delay: 0.2s;
}

.sidebar-social:nth-child(2) {
    animation-delay: 0.3s;
}

.sidebar-social:nth-child(3) {
    animation-delay: 0.4s;
}

.sidebar-social:nth-child(4) {
    animation-delay: 0.5s;
}

.sidebar-social:nth-child(5) {
    animation-delay: 0.6s;
}

.sidebar-social:nth-child(6) {
    animation-delay: 0.7s;
}

@keyframes slideInSidebar {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.sidebar-social.instagram:hover {
    background: #e1306c;
    color: #fff;
    border-color: #e1306c;
}

.sidebar-social.tiktok:hover {
    background: #010101;
    color: #69c9d0;
    border-color: #69c9d0;
}

.sidebar-social.facebook:hover {
    background: #1877f2;
    color: #fff;
    border-color: #1877f2;
}

.sidebar-social.youtube:hover {
    background: #ff0000;
    color: #fff;
    border-color: #ff0000;
}

.sidebar-social.linkedin:hover {
    background: #0a66c2;
    color: #fff;
    border-color: #0a66c2;
}

.sidebar-social.pinterest:hover {
    background: #e60023;
    color: #fff;
    border-color: #e60023;
}

@media (max-width:768px) {
    .social-sidebar {
        display: none;
    }
}

/* ===== Video Section ===== */
.video-section {
    padding: var(--section-pad);
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--bg-base) 100%);
    border-top: 1px solid var(--glass-border);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: 18px;
}

.video-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--charcoal-2);
    border: 1px solid var(--glass-border);
    transition: all var(--transition);
}

.video-card:hover {
    border-color: rgba(0, 229, 255, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 229, 255, 0.06);
}

.video-card.featured-video {
    grid-column: span 2;
    grid-row: span 2;
}

.video-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.video-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(0deg, rgba(8, 13, 20, 0.9), transparent);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}

.video-label i {
    color: var(--cyan);
}

@media (max-width:900px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

    .video-card.featured-video {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width:600px) {
    .video-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 220px;
    }

    .video-card.featured-video {
        grid-column: auto;
        grid-row: auto;
    }
}

/* ===== Designer Credit ===== */
.designer-credit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 10px 22px;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.07), rgba(0, 180, 200, 0.03));
    border: 1px solid rgba(0, 229, 255, 0.18);
    border-radius: 50px;
    transition: all var(--transition);
}

.designer-credit:hover {
    background: rgba(0, 229, 255, 0.12);
    border-color: rgba(0, 229, 255, 0.35);
    box-shadow: 0 0 24px rgba(0, 229, 255, 0.08);
}

.designer-label {
    font-size: 0.78rem;
    color: var(--silver-dim);
    display: flex;
    align-items: center;
    gap: 6px;
}

.designer-label i {
    color: var(--cyan);
    font-size: 0.8rem;
}

.designer-name {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--cyan);
    transition: all var(--transition);
    direction: rtl;
}

.designer-name:hover {
    color: var(--cyan-light);
    text-shadow: 0 0 14px var(--cyan-glow);
}

.designer-phone {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.22);
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--cyan);
    font-family: var(--font-en);
    direction: ltr;
    letter-spacing: 0.5px;
    transition: all var(--transition);
}

.designer-name:hover .designer-phone {
    background: rgba(0, 229, 255, 0.2);
    border-color: rgba(0, 229, 255, 0.5);
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2);
}

/* footer-bottom flex fix for designer line */
.footer-bottom {
    flex-wrap: wrap;
    row-gap: 12px;
}

/* ===== FAQ Section ===== */
.faq-section {
    padding: var(--section-pad);
    background: linear-gradient(180deg, var(--bg-base) 0%, var(--charcoal) 100%);
    border-top: 1px solid var(--glass-border);
}

.faq-grid {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    backdrop-filter: blur(12px);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:hover,
.faq-item.open {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), 0 0 12px rgba(0, 229, 255, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: #e8f4f8;
    font-family: var(--font-ar);
    font-size: 1rem;
    font-weight: 700;
    text-align: right;
    cursor: pointer;
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--cyan);
}

.faq-item.open .faq-question {
    color: var(--cyan);
}

.faq-icon {
    font-size: 0.85rem;
    color: var(--cyan);
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer div {
    padding: 0 24px 20px;
    border-top: 1px solid var(--glass-border);
}

.faq-answer p {
    color: var(--silver-dim);
    font-size: 0.93rem;
    line-height: 1.85;
    padding-top: 16px;
}

.faq-answer a {
    color: var(--cyan);
    font-weight: 700;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    .faq-question {
        padding: 16px 18px;
        font-size: 0.92rem;
    }

    .faq-answer div {
        padding: 0 18px 16px;
    }
}