/* Design System & Global Styles */
:root {
    --deep-navy: #071827;
    --aqua-clean: #00D4FF;
    --luxury-cyan: #4DEBFF;
    --soft-white: #F8FCFF;
    --light-silver: #EAF3F8;
    --dark-glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-glass-active: rgba(0, 212, 255, 0.35);
    --glow-cyan: rgba(0, 212, 255, 0.2);
    --glow-cyan-strong: rgba(77, 235, 255, 0.45);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-cairo: 'Cairo', sans-serif;
    --font-tajawal: 'Tajawal', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--deep-navy);
    color: var(--soft-white);
    font-family: var(--font-cairo);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--deep-navy);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.luxury-sparkle {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: radial-gradient(circle, var(--luxury-cyan) 0%, transparent 70%);
    border-radius: 50%;
    position: relative;
    animation: sparklePulse 1.5s infinite ease-in-out;
}

.luxury-sparkle::before, .luxury-sparkle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--luxury-cyan);
}

.luxury-sparkle::before {
    width: 2px;
    height: 30px;
}

.luxury-sparkle::after {
    width: 30px;
    height: 2px;
}

.preloader .logo-text {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--soft-white);
    font-family: var(--font-tajawal);
}

.preloader .logo-sub {
    font-size: 0.9rem;
    color: var(--aqua-clean);
    letter-spacing: 3px;
    margin-top: 5px;
}

.preloader-bar {
    width: 180px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 20px auto 0;
    border-radius: 10px;
    overflow: hidden;
}

.bar-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--aqua-clean), var(--luxury-cyan));
    animation: loadingBar 2.2s forwards cubic-bezier(0.1, 0.8, 0.1, 1);
}

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

@keyframes loadingBar {
    to { width: 100%; }
}

/* Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 32px;
    border-radius: 30px;
    font-family: var(--font-cairo);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--aqua-clean), var(--luxury-cyan));
    color: var(--deep-navy);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px var(--glow-cyan-strong);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: rotate(45deg);
    transition: var(--transition-smooth);
    opacity: 0;
}

.btn-glow:hover::after {
    left: 120%;
    transition: all 0.8s ease-in-out;
    opacity: 1;
}

.btn-secondary {
    background-color: var(--dark-glass);
    color: var(--soft-white);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--luxury-cyan);
    transform: translateY(-3px);
}

.btn-whatsapp-hero {
    background-color: rgba(37, 211, 102, 0.12);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-hero:hover {
    background-color: rgba(37, 211, 102, 0.22);
    border-color: #25d366;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.25);
    transform: translateY(-3px);
}

.btn-text {
    background: none;
    color: var(--light-silver);
    border-bottom: 2px solid transparent;
    border-radius: 0;
    padding: 8px 0;
}

.btn-text:hover {
    color: var(--luxury-cyan);
    border-color: var(--luxury-cyan);
}

.btn-arrow {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: var(--transition-smooth);
}

.btn:hover .btn-arrow {
    transform: translateX(-5px); /* Since page is RTL, arrow goes to the left */
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(7, 24, 39, 0.65);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

.main-header.scrolled {
    padding: 10px 0;
    background-color: rgba(7, 24, 39, 0.85);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
    height: 65px;
}

.logo {
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.logo-title {
    font-family: var(--font-tajawal);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--soft-white);
    line-height: 1.1;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--aqua-clean);
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: var(--light-silver);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--aqua-clean), var(--luxury-cyan));
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--luxury-cyan);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 10px;
}

.btn-header {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-call {
    background-color: var(--dark-glass);
    border: 1px solid var(--border-glass);
    color: var(--soft-white);
}

.btn-call:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--luxury-cyan);
    color: var(--luxury-cyan);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #25d366;
}

.btn-whatsapp:hover {
    background-color: rgba(37, 211, 102, 0.2);
    border-color: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    transform: translateY(-2px);
}

.icon-svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.burger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--soft-white);
    transition: var(--transition-smooth);
}

/* Burger Animation */
.burger-btn.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.burger-btn.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-btn.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 24, 39, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-content {
    text-align: center;
    width: 100%;
    max-width: 400px;
    padding: 0 40px;
}

.mobile-logo {
    margin-bottom: 40px;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-link {
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light-silver);
    transition: var(--transition-smooth);
}

.mobile-link:hover, .mobile-link.active {
    color: var(--luxury-cyan);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-mobile-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.mobile-call {
    background-color: var(--dark-glass);
    border: 1px solid var(--border-glass);
    color: var(--soft-white);
}

.mobile-whatsapp {
    background-color: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
}

/* Sections Global */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-subtitle {
    display: inline-block;
    color: var(--aqua-clean);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    background-color: rgba(0, 212, 255, 0.08);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.section-title {
    font-family: var(--font-tajawal);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--soft-white);
    letter-spacing: -0.5px;
}

.section-description {
    color: var(--light-silver);
    font-size: 1.1rem;
    opacity: 0.85;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 80px;
    background-color: #05121e;
    overflow: hidden;
}

.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-glow-1 {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
    filter: blur(50px);
}

.hero-glow-2 {
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(77, 235, 255, 0.1) 0%, transparent 70%);
    z-index: 2;
    pointer-events: none;
    filter: blur(50px);
}

.hero-light-beams {
    position: absolute;
    top: 0;
    left: 20%;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, rgba(77, 235, 255, 0.03) 0%, transparent 50%, rgba(0, 212, 255, 0.02) 100%);
    z-index: 2;
    pointer-events: none;
    transform: skewX(-15deg);
}

.hero-container-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 3;
}

.hero-content {
    max-width: 700px;
}

.badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--dark-glass);
    border: 1px solid var(--border-glass);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--luxury-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--luxury-cyan);
    animation: flash 1.5s infinite;
}

@keyframes flash {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--light-silver);
}

.hero-title {
    font-family: var(--font-tajawal);
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--aqua-clean) 0%, var(--luxury-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--light-silver);
    opacity: 0.9;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Sharestrips / Trust Badges in Hero */
.hero-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
}

.hero-badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-icon-wrap {
    font-size: 1.2rem;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(77, 235, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid rgba(77, 235, 255, 0.2);
}

.badge-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--light-silver);
    opacity: 0.95;
}

/* 3D Hero Visual Element */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.capsule-container {
    width: 320px;
    height: 420px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qatar-skyline-silhouette {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 420px;
    height: 180px;
    color: var(--aqua-clean);
    z-index: 1;
    pointer-events: none;
}

.floating-capsule {
    width: 200px;
    height: 280px;
    border-radius: 100px;
    position: relative;
    z-index: 3;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
                inset 0 10px 20px rgba(255, 255, 255, 0.2),
                inset 0 -10px 20px rgba(0, 212, 255, 0.15),
                0 0 40px rgba(0, 212, 255, 0.1);
    backdrop-filter: blur(8px);
    overflow: hidden;
    animation: floatAnimation 6s infinite ease-in-out;
}

.capsule-water-core {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(180deg, rgba(0, 212, 255, 0.3) 0%, rgba(7, 24, 39, 0.6) 100%);
    overflow: hidden;
}

/* Wave Animation inside Capsule */
.wave-inner {
    position: absolute;
    top: -20px;
    left: -50%;
    width: 200%;
    height: 40px;
    background: rgba(77, 235, 255, 0.3);
    border-radius: 43%;
    animation: waveRotate 8s infinite linear;
}

.wave-inner.wave-two {
    animation: waveRotate 5s infinite linear;
    background: rgba(0, 212, 255, 0.2);
    top: -15px;
}

.capsule-shine {
    position: absolute;
    top: 5%;
    left: 15%;
    width: 25px;
    height: 120px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, transparent 80%);
    border-radius: 20px;
    transform: rotate(-10deg);
}

.capsule-rim {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.2);
    pointer-events: none;
}

.floating-core-sparkle {
    position: absolute;
    top: 30%;
    left: 45%;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, #fff 0%, transparent 70%);
    animation: sparkleGlow 3s infinite ease-in-out;
}

.mini-bubble {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    pointer-events: none;
}

.mini-bubble::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 15%;
    width: 30%;
    height: 30%;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}

.b1 { width: 15px; height: 15px; bottom: 40px; left: 30px; animation: riseBubble 4s infinite linear; }
.b2 { width: 8px; height: 8px; bottom: 80px; right: 40px; animation: riseBubble 3s infinite linear 1s; }
.b3 { width: 12px; height: 12px; bottom: 20px; right: 50px; animation: riseBubble 5s infinite linear 2s; }
.b4 { width: 6px; height: 6px; bottom: 60px; left: 60px; animation: riseBubble 2.5s infinite linear 0.5s; }

/* Parallax Glass Layers */
.parallax-glass-layer {
    position: absolute;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
    pointer-events: none;
    z-index: 2;
}

.layer-back {
    width: 140px;
    height: 140px;
    top: 20px;
    left: 20px;
    transform: rotate(15deg);
    animation: floatBackLayer 8s infinite ease-in-out;
}

.layer-front {
    width: 100px;
    height: 100px;
    bottom: 30px;
    left: -10px;
    transform: rotate(-10deg);
    z-index: 4;
    animation: floatFrontLayer 7s infinite ease-in-out;
}

/* 3D Floating Icons */
.floating-3d-icon {
    position: absolute;
    width: 55px;
    height: 55px;
    z-index: 4;
}

.icon-inner-glass {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25),
                inset 0 5px 10px rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-svg {
    width: 26px;
    height: 26px;
    fill: var(--luxury-cyan);
    filter: drop-shadow(0 0 5px var(--glow-cyan-strong));
}

.icon-vacuum {
    top: 50px;
    left: -20px;
    animation: floatVacuum 7s infinite ease-in-out;
}

.icon-spray {
    bottom: 90px;
    right: -20px;
    animation: floatSpray 8s infinite ease-in-out;
}

.icon-sparkle {
    top: 130px;
    right: 20px;
    animation: floatSparkle 6s infinite ease-in-out;
}

.shiny-floor {
    position: absolute;
    bottom: 20px;
    width: 320px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    z-index: 2;
    transform: rotateX(75deg);
}

/* Animations */
@keyframes floatAnimation {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes sparkleGlow {
    0%, 100% { transform: scale(0.5); opacity: 0.2; }
    50% { transform: scale(1.3); opacity: 1; }
}

@keyframes floatBackLayer {
    0%, 100% { transform: translateY(0) rotate(15deg); }
    50% { transform: translateY(-10px) rotate(18deg); }
}

@keyframes floatFrontLayer {
    0%, 100% { transform: translateY(0) rotate(-10deg); }
    50% { transform: translateY(-14px) rotate(-15deg); }
}

@keyframes riseBubble {
    0% { transform: translateY(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-120px); opacity: 0; }
}

@keyframes floatVacuum {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}

@keyframes floatSpray {
    0%, 100% { transform: translateY(0) rotate(8deg); }
    50% { transform: translateY(-15px) rotate(-8deg); }
}

@keyframes floatSparkle {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.1); }
}

/* Services Section */
.services-section {
    background-color: var(--deep-navy);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background-color: var(--dark-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 35px 28px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    transform: skewX(-20deg);
    transition: var(--transition-smooth);
}

.service-card:hover::before {
    left: 150%;
    transition: all 0.7s ease-in-out;
}

.service-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.07);
    border-color: var(--border-glass-active);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background-color: rgba(0, 212, 255, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    color: var(--luxury-cyan);
    transition: var(--transition-smooth);
}

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

.service-card:hover .service-icon {
    background-color: var(--aqua-clean);
    color: var(--deep-navy);
    transform: scale(1.05);
    box-shadow: 0 0 15px var(--glow-cyan-strong);
}

.service-title {
    font-family: var(--font-tajawal);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--soft-white);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--light-silver);
    opacity: 0.8;
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
}

.service-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--light-silver);
    text-decoration: none;
    transition: var(--transition-smooth);
    margin-top: auto;
    width: 100%;
}

.link-arrow {
    width: 14px;
    height: 14px;
    fill: currentColor;
    margin-right: 6px;
    transition: var(--transition-smooth);
}

.service-card:hover .service-link-btn {
    background: linear-gradient(135deg, var(--aqua-clean), var(--luxury-cyan));
    color: var(--deep-navy);
    border-color: transparent;
    box-shadow: 0 5px 15px var(--glow-cyan);
}

.service-card:hover .link-arrow {
    transform: translateX(-4px); /* RTL */
}

/* Why Mutqan (Features Luxury Grid) */
.why-us-section {
    background-color: var(--deep-navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background gradient glows */
.why-us-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.features-luxury-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.luxury-feat-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 28px;
    padding: 45px 35px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), 
                border-color 0.4s ease, 
                box-shadow 0.4s ease,
                background-color 0.4s ease;
    
    /* Staggered reveal starting states */
    opacity: 0;
    transform: translateY(30px);
}

.luxury-feat-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Dynamic glow effect following cursor / touch */
.luxury-feat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        350px circle at var(--mouse-x, 0px) var(--mouse-y, 0px),
        rgba(0, 242, 254, 0.08),
        transparent 65%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.luxury-feat-card:hover::after,
.luxury-feat-card.touched::after {
    opacity: 1;
}

.luxury-feat-card:hover,
.luxury-feat-card.touched {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 254, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 
                inset 0 0 20px rgba(0, 242, 254, 0.03);
}

.feat-icon {
    font-size: 2rem;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
}

.luxury-feat-card:hover .feat-icon,
.luxury-feat-card.touched .feat-icon {
    transform: scale(1.1) rotate(8deg);
    background: rgba(0, 242, 254, 0.08);
    border-color: rgba(0, 242, 254, 0.25);
    box-shadow: 0 8px 24px rgba(0, 242, 254, 0.15);
}

.feat-title {
    font-family: var(--font-tajawal);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.luxury-feat-card:hover .feat-title,
.luxury-feat-card.touched .feat-title {
    color: var(--luxury-cyan);
}

.feat-desc {
    font-size: 0.95rem;
    color: var(--light-silver);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.luxury-feat-card:hover .feat-desc,
.luxury-feat-card.touched .feat-desc {
    opacity: 1;
}

/* Before / After Slider Section (المطور بالكامل) */
.before-after-section {
    background-color: var(--deep-navy);
}

.slider-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.tab-btn {
    background-color: var(--dark-glass);
    border: 1px solid var(--border-glass);
    color: var(--light-silver);
    padding: 12px 28px;
    border-radius: 25px;
    font-family: var(--font-cairo);
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.tab-btn:hover, .tab-btn.active {
    background: linear-gradient(135deg, var(--aqua-clean), var(--luxury-cyan));
    color: var(--deep-navy);
    border-color: transparent;
    box-shadow: 0 4px 15px var(--glow-cyan);
}

.slider-wrapper {
    position: relative;
    max-width: 900px;
    height: 550px;
    margin: 0 auto 35px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-glass);
}

.slider-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s;
    user-select: none;
}

.slider-container.active {
    opacity: 1;
    visibility: visible;
}

.image-before, .image-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-before img, .image-after img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-before {
    z-index: 1;
}

.image-after {
    z-index: 2;
    clip-path: inset(0 0 0 var(--clip-pos, 50%));
}

/* Custom Visual overlay styling for dirty vs clean */
.img-blur-dust {
    filter: saturate(0.85); /* New separate image has its own realistic dirt, filters are minimal to protect quality */
}

.img-clean-sparkle {
    filter: saturate(1.05) brightness(1.02);
}

.label-state {
    position: absolute;
    bottom: 25px;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 3;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.before-label {
    right: 25px;
    background-color: rgba(7, 24, 39, 0.8);
    color: var(--light-silver);
}

.after-label {
    left: 25px;
    background-color: rgba(0, 212, 255, 0.8);
    color: var(--deep-navy);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

/* Slider Handle Bar */
.slider-handle {
    position: absolute;
    top: 0;
    left: var(--clip-pos, 50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--aqua-clean), var(--luxury-cyan));
    z-index: 5;
    cursor: ew-resize;
    transform: translateX(-50%);
    box-shadow: 0 0 12px var(--glow-cyan-strong);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.handle-line {
    flex-grow: 1;
    width: 2px;
    background-color: rgba(255, 255, 255, 0.4);
}

.handle-button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--deep-navy);
    border: 2px solid var(--luxury-cyan);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--luxury-cyan);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.4);
    transition: transform 0.2s;
}

.handle-button svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.slider-handle:hover .handle-button {
    transform: scale(1.1);
}

/* Result Pills (نقاط النتيجة) */
.result-pills-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.result-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--dark-glass);
    border: 1px solid var(--border-glass);
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--light-silver);
}

.pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--luxury-cyan);
    box-shadow: 0 0 8px var(--luxury-cyan);
}

/* Quality Standards Section (معايير الجودة - سبليت) */
.quality-standards-section {
    background-color: #05121e;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.quality-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.quality-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 350px;
}

.quality-badge-3d {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 70%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-glass);
    animation: rotateSlow 20s infinite linear;
}

.badge-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(77, 235, 255, 0.25);
    box-shadow: 0 0 20px rgba(77, 235, 255, 0.1);
}

.badge-core {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(7, 24, 39, 0.9) 0%, rgba(5, 18, 30, 0.8) 100%);
    border: 1px solid rgba(77, 235, 255, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: inset 0 0 20px rgba(0, 212, 255, 0.15);
    animation: counterRotateSlow 20s infinite linear;
}

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

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

.badge-check {
    font-size: 2.8rem;
    color: var(--luxury-cyan);
    font-weight: 900;
    margin-bottom: 5px;
    text-shadow: 0 0 10px var(--glow-cyan-strong);
}

.badge-title {
    font-family: var(--font-tajawal);
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--soft-white);
}

.badge-sub {
    font-size: 0.75rem;
    color: var(--aqua-clean);
    margin-top: 4px;
    font-weight: 700;
    letter-spacing: 1px;
}

.quality-glowing-dots {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(77, 235, 255, 0.04) 0%, transparent 60%);
    z-index: 1;
}

.quality-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.q-step-item {
    display: flex;
    gap: 20px;
    background-color: var(--dark-glass);
    border: 1px solid var(--border-glass);
    padding: 24px 28px;
    border-radius: 16px;
    align-items: flex-start;
    transition: var(--transition-smooth);
}

.q-step-item:hover {
    border-color: var(--border-glass-active);
    transform: translateX(-5px); /* Move leftwards in RTL */
    background-color: rgba(255, 255, 255, 0.07);
}

.q-step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(77, 235, 255, 0.1);
    border: 1px solid rgba(77, 235, 255, 0.3);
    color: var(--luxury-cyan);
    font-family: var(--font-tajawal);
    font-weight: 800;
    font-size: 1.15rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.q-step-text h4 {
    font-family: var(--font-tajawal);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--soft-white);
}

.q-step-text p {
    font-size: 0.9rem;
    color: var(--light-silver);
    opacity: 0.85;
    line-height: 1.6;
}

/* Service Journey Section (رحلة الخدمة مع متقن) */
.journey-section {
    background-color: var(--deep-navy);
}

.journey-flow-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.journey-progress-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.05);
    z-index: 1;
    transform: translateY(-50%);
}

.journey-progress-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--aqua-clean), var(--luxury-cyan));
    box-shadow: 0 0 10px var(--luxury-cyan);
    transition: width 0.3s ease;
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.journey-step-card {
    background-color: var(--dark-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 25px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.journey-icon-wrap {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background-color: var(--deep-navy);
    border: 2px solid var(--border-glass);
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.3);
}

.journey-step-card.active .journey-icon-wrap {
    border-color: var(--luxury-cyan);
    color: var(--luxury-cyan);
    box-shadow: 0 0 15px var(--glow-cyan);
    background-color: rgba(0, 212, 255, 0.05);
}

.journey-step-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glass-active);
    background-color: rgba(255, 255, 255, 0.08);
}

.journey-step-title {
    font-family: var(--font-tajawal);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--soft-white);
}

.journey-step-desc {
    font-size: 0.8rem;
    color: var(--light-silver);
    opacity: 0.8;
    line-height: 1.6;
}

/* Stats Section Improved */
.stats-section {
    background: radial-gradient(100% 100% at 50% 50%, #061726 0%, #030d16 100%);
    padding: 90px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    overflow: hidden;
}

/* Background grid pattern */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 242, 254, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 40px 20px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--aqua-clean), var(--luxury-cyan));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(0, 242, 254, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    background: rgba(0, 242, 254, 0.04);
    border: 1px solid rgba(0, 242, 254, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.stat-icon {
    width: 28px;
    height: 28px;
    fill: var(--luxury-cyan);
    transition: all 0.4s ease;
}

.stat-item:hover .stat-icon-wrap {
    background: rgba(0, 242, 254, 0.1);
    border-color: rgba(0, 242, 254, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.stat-item:hover .stat-icon {
    filter: drop-shadow(0 0 8px var(--luxury-cyan));
}

.stat-number {
    font-family: var(--font-tajawal);
    font-size: 3.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 30%, var(--luxury-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
    line-height: 1;
    filter: drop-shadow(0 2px 10px rgba(0, 242, 254, 0.1));
}

.stat-item:hover .stat-number {
    background: linear-gradient(135deg, var(--aqua-clean) 0%, var(--luxury-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 1rem;
    color: var(--light-silver);
    font-weight: 600;
    opacity: 0.8;
}

.stat-item:hover .stat-label {
    color: #fff;
    opacity: 1;
}

/* Improved Areas Section */
.areas-section {
    background-color: var(--deep-navy);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Background decoration */
.areas-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.areas-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 180, 219, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.areas-section .area-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* Staggered entrance animation properties */
    opacity: 0;
    transform: translateY(35px);
}

.areas-section .area-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Glassmorphism shine effect */
.areas-section .area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: 0.75s;
    pointer-events: none;
    z-index: 3;
}

.areas-section .area-card:hover::before {
    left: 150%;
}

.areas-section .area-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.areas-section .area-card:hover .area-glow {
    opacity: 1;
}

.areas-section .area-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 242, 254, 0.4);
    box-shadow: 0 15px 30px rgba(0, 242, 254, 0.08), 
                inset 0 0 15px rgba(0, 242, 254, 0.05);
}

.areas-section .area-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.areas-section .area-pin-icon {
    width: 20px;
    height: 20px;
    fill: rgba(255, 255, 255, 0.4);
    transition: all 0.4s ease;
}

.areas-section .area-card:hover .area-icon-wrap {
    background: rgba(0, 242, 254, 0.1);
    border-color: rgba(0, 242, 254, 0.3);
    transform: scale(1.1);
}

.areas-section .area-card:hover .area-pin-icon {
    fill: var(--luxury-cyan);
    filter: drop-shadow(0 0 5px var(--luxury-cyan));
    animation: pinFloat 1.5s infinite ease-in-out;
}

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

.areas-section .area-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--soft-white);
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.areas-section .area-card:hover .area-name {
    color: #fff;
}

.areas-section .area-btn {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--luxury-cyan);
    opacity: 0.4;
    transform: translateY(3px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.areas-section .area-card:hover .area-btn {
    opacity: 1;
    transform: translateY(0);
    color: var(--aqua-clean);
}

/* Testimonials Section (محسن وأكبر) */
.testimonials-section {
    background-color: #05121e;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: var(--dark-glass);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 45px 35px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.card-quote-mark {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 5rem;
    color: rgba(77, 235, 255, 0.04);
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.testimonial-card:hover {
    border-color: var(--border-glass-active);
    background-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

.rating-stars {
    color: #ffb800;
    font-size: 1.15rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--light-silver);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.client-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(77, 235, 255, 0.05) 100%);
    border: 1px solid var(--border-glass);
    color: var(--luxury-cyan);
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--soft-white);
}

.client-role {
    font-size: 0.75rem;
    color: var(--light-silver);
    opacity: 0.6;
}

/* FAQ Section */
.faq-section {
    background-color: var(--deep-navy);
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--dark-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--border-glass-active);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: none;
    border: none;
    color: var(--soft-white);
    font-family: var(--font-cairo);
    font-weight: 700;
    font-size: 1.05rem;
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.faq-icon {
    font-size: 1.4rem;
    color: var(--luxury-cyan);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background-color: rgba(0, 0, 0, 0.1);
}

.faq-answer p {
    padding: 0 28px 22px;
    font-size: 0.95rem;
    color: var(--light-silver);
    opacity: 0.85;
    line-height: 1.7;
}

/* Final CTA Section (ترقية وتصميم أقوى) */
.final-cta-section {
    background-color: #05121e;
    overflow: hidden;
}

.cta-wave-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 350px;
    background: radial-gradient(circle, rgba(77, 235, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(50px);
}

.cta-container {
    position: relative;
    z-index: 3;
    max-width: 900px;
    text-align: center;
}

.cta-title {
    font-family: var(--font-tajawal);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-desc {
    font-size: 1.15rem;
    color: var(--light-silver);
    opacity: 0.9;
    margin-bottom: 45px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* High Conversion Form */
.quote-form {
    background-color: var(--dark-glass);
    border: 1px solid var(--border-glass);
    padding: 40px;
    border-radius: 28px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    margin-bottom: 35px;
    text-align: right;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.quote-form input, .quote-form select {
    background-color: rgba(7, 24, 39, 0.6);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 14px 20px;
    color: var(--soft-white);
    font-family: var(--font-cairo);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-smooth);
    width: 100%;
}

.quote-form input:focus, .quote-form select:focus {
    border-color: var(--luxury-cyan);
    box-shadow: 0 0 10px var(--glow-cyan);
}

.quote-form select option {
    background-color: var(--deep-navy);
    color: var(--soft-white);
}

.btn-submit-quote {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
}

.cta-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 35px 0;
}

.cta-divider::before, .cta-divider::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.08);
}

.cta-divider span {
    padding: 0 20px;
    color: var(--light-silver);
    opacity: 0.6;
    font-size: 0.9rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-call-cta {
    background-color: var(--dark-glass);
    border: 1px solid var(--border-glass);
    color: var(--soft-white);
    padding: 14px 35px;
}

.btn-call-cta:hover {
    border-color: var(--luxury-cyan);
    color: var(--luxury-cyan);
    transform: translateY(-3px);
}

.btn-whatsapp-direct {
    background-color: #25d366;
    color: var(--deep-navy);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-whatsapp-direct:hover {
    background-color: #20ba5a;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transform: translateY(-3px);
}

/* Footer Section */
.main-footer {
    background-color: #030d17;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr 0.8fr 1.2fr;
    gap: 30px;
    margin-bottom: 60px;
}

.footer-about .footer-logo {
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--light-silver);
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.8;
}

.footer-title {
    font-family: var(--font-tajawal);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--soft-white);
    margin-bottom: 25px;
    position: relative;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--light-silver);
    opacity: 0.75;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--luxury-cyan);
    opacity: 1;
    padding-right: 5px; /* RTL spacing shift */
}

.footer-contact p {
    color: var(--light-silver);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.contact-info-item {
    display: flex;
    flex-direction: column;
}

.contact-info-item a {
    color: var(--aqua-clean);
    text-decoration: none;
    font-weight: 700;
    margin-top: 4px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--dark-glass);
    border: 1px solid var(--border-glass);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light-silver);
    transition: var(--transition-smooth);
}

.social-icons svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-icons a:hover {
    background-color: var(--luxury-cyan);
    border-color: var(--luxury-cyan);
    color: var(--deep-navy);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--light-silver);
    opacity: 0.5;
}

/* Floating CTAs (Desktop) */
.floating-ctas-desktop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--soft-white);
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    position: relative;
}

.float-whatsapp {
    background-color: #25d366;
    color: var(--deep-navy);
}

.float-whatsapp:hover {
    background-color: #20ba5a;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
    transform: scale(1.1) translateY(-3px);
}

.float-call {
    background-color: var(--aqua-clean);
    color: var(--deep-navy);
}

.float-call:hover {
    background-color: var(--luxury-cyan);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
    transform: scale(1.1) translateY(-3px);
}

.float-quote {
    background-color: var(--deep-navy);
    border: 2px solid var(--border-glass-active);
    color: var(--luxury-cyan);
}

.float-quote:hover {
    background-color: rgba(0, 212, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    transform: scale(1.1) translateY(-3px);
}

/* Float Tooltip */
.float-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--deep-navy);
    border: 1px solid var(--border-glass);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--soft-white);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.float-btn:hover .float-tooltip {
    opacity: 1;
    visibility: visible;
    right: 65px;
}

/* Mobile Sticky Footer Bar */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(7, 24, 39, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-top: 1px solid var(--border-glass);
    z-index: 1000;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
}

.mobile-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--light-silver);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.mobile-bar-item svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.bar-call:hover { color: var(--aqua-clean); }
.bar-whatsapp:hover { color: #25d366; }
.bar-quote:hover { color: var(--luxury-cyan); }


/* Entrance Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

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


/* Responsive Design */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-luxury-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .quality-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .journey-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .journey-progress-line {
        display: none; /* Hide progress line on tablets */
    }
    
    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    html {
        font-size: 15px;
    }
    
    .hero-container-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }
    
    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-badges {
        justify-content: center;
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .floating-ctas-desktop {
        display: none;
    }
    
    .mobile-sticky-bar {
        display: flex;
    }
    
    body {
        padding-bottom: 75px;
    }
}

@media (max-width: 768px) {
    .nav-menu, .header-actions {
        display: none;
    }
    
    .burger-btn {
        display: flex;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .slider-wrapper {
        height: 380px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.1rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-tabs {
        flex-direction: column;
        align-items: stretch;
    }
    
    .luxury-feat-card {
        padding: 30px 20px;
    }
}

/* ====================================================
   الأنماط الإضافية لصفحات الخدمات والربط الداخلي
   ==================================================== */

/* القائمة المنسدلة للهيدر في الديسكتوب (Header Dropdown) */
.nav-menu li.has-dropdown {
    position: relative;
}

.nav-menu li.has-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-menu li.has-dropdown > a::after {
    content: '▼';
    font-size: 0.6rem;
    color: var(--aqua-clean);
    transition: transform 0.3s ease;
}

.nav-menu li.has-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu-list {
    position: absolute;
    top: 100%;
    right: -20px;
    width: 250px;
    background: rgba(7, 24, 39, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-smooth);
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav-menu li.has-dropdown:hover .dropdown-menu-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-list a {
    padding: 10px 20px;
    display: block;
    color: var(--light-silver);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    text-align: right;
}

.dropdown-menu-list a:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--luxury-cyan);
    padding-right: 25px; /* تأثير إزاحة ناعم */
}

/* القائمة المنسدلة للهواتف (Mobile Dropdown accordion) */
.mobile-nav li.has-dropdown {
    width: 100%;
}

.mobile-dropdown-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    color: var(--light-silver);
    font-size: 1.4rem;
    font-weight: 700;
    font-family: var(--font-cairo);
    cursor: pointer;
    padding: 8px 0;
    outline: none;
}

.mobile-dropdown-btn.active {
    color: var(--luxury-cyan);
}

.mobile-dropdown-list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    list-style: none;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
    margin-bottom: 5px;
    border-right: 1px solid rgba(0, 212, 255, 0.2);
}

.mobile-dropdown-list.active {
    max-height: 450px;
}

.mobile-dropdown-list a {
    font-size: 1.05rem;
    color: var(--light-silver);
    opacity: 0.8;
    text-decoration: none;
    display: block;
    transition: var(--transition-smooth);
    text-align: right;
}

.mobile-dropdown-list a:hover {
    color: var(--luxury-cyan);
    padding-right: 5px;
}

.dropdown-icon {
    font-size: 1rem;
    transition: transform 0.3s;
    color: var(--aqua-clean);
}

.mobile-dropdown-btn.active .dropdown-icon {
    transform: rotate(180deg);
}

/* مسار التصفح (Breadcrumbs) */
.breadcrumbs-container {
    padding: 15px 0;
    background-color: rgba(5, 18, 30, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    margin-top: 80px; /* لضمان نزولها تحت الهيدر الثابت */
    position: relative;
    z-index: 5;
}

.breadcrumbs {
    font-size: 0.8rem;
    font-weight: 600;
}

.breadcrumbs ol,
.breadcrumbs ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs li {
    display: inline-flex;
    align-items: center;
}

.breadcrumbs li a {
    color: var(--light-silver);
    opacity: 0.7;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.breadcrumbs li a:hover {
    color: var(--luxury-cyan);
    opacity: 1;
}

.breadcrumbs li.active,
.breadcrumbs li.current {
    color: var(--luxury-cyan);
    opacity: 1;
}

.breadcrumbs-separator,
.breadcrumbs li.separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    user-select: none;
}

/* تشيك ليست تفصيلية لشمولية الخدمة (Checklist Grid) */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 24px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--soft-white);
    transition: var(--transition-smooth);
}

.checklist-item:hover {
    border-color: var(--border-glass-active);
    background-color: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

.check-icon {
    color: var(--luxury-cyan);
    font-size: 1.1rem;
    font-weight: 900;
}

/* قسم ألم العميل والمشكلة (Customer Pain Points) */
.pain-section {
    background-color: #05121e;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.pain-card {
    background: linear-gradient(135deg, rgba(7, 24, 39, 0.8), rgba(5, 18, 30, 0.95));
    border: 1px solid rgba(255, 100, 100, 0.12); /* حدود حمراء هادئة تدل على التنبيه والمشاكل */
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.pain-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    margin-top: 20px;
}

.pain-list-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--light-silver);
}

.pain-warning-icon {
    color: #ff6b6b;
    font-size: 1.15rem;
    font-weight: 900;
}

.pain-visual {
    text-align: center;
    position: relative;
}

.pain-alert-box {
    display: inline-block;
    padding: 30px;
    background: rgba(255, 107, 107, 0.03);
    border: 1px dashed rgba(255, 107, 107, 0.2);
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.pain-alert-icon {
    font-size: 3rem;
    animation: alertShake 2s infinite ease-in-out;
    display: inline-block;
}

@keyframes alertShake {
    0%, 100% { transform: rotate(0); }
    15% { transform: rotate(-8deg); }
    30% { transform: rotate(6deg); }
    45% { transform: rotate(-4deg); }
    60% { transform: rotate(3deg); }
    75% { transform: rotate(0); }
}

/* قسم الحل من متقن (Solutions process cards) */
.solution-section {
    background-color: var(--deep-navy);
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.solution-card {
    background-color: var(--dark-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.solution-card:hover {
    border-color: var(--border-glass-active);
    background-color: rgba(255,255,255,0.06);
    transform: translateY(-5px);
}

.solution-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 212, 255, 0.08);
    color: var(--luxury-cyan);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-weight: 800;
    font-size: 1.2rem;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.solution-card-title {
    font-family: var(--font-tajawal);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.solution-card-desc {
    font-size: 0.85rem;
    color: var(--light-silver);
    opacity: 0.8;
    line-height: 1.6;
}

/* القسم البصري المخصص لكل خدمة */
.service-visual-showcase {
    background-color: #05121e;
    overflow: hidden;
}

.visual-showcase-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 28px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.visual-showcase-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.visual-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-showcase-container:hover .visual-showcase-image img {
    transform: scale(1.03);
}

.visual-showcase-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(0deg, rgba(7, 24, 39, 0.95) 0%, rgba(7, 24, 39, 0.3) 70%, transparent 100%);
    color: var(--soft-white);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.visual-showcase-caption {
    font-size: 0.95rem;
    color: var(--luxury-cyan);
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* الخدمات المرتبطة */
.related-services-section {
    background-color: #05121e;
}

/* مناطق توفر الخدمة (Pills) */
.area-pills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.area-pill-link {
    background-color: var(--dark-glass);
    border: 1px solid var(--border-glass);
    color: var(--light-silver);
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.area-pill-link:hover {
    border-color: var(--border-glass-active);
    color: var(--luxury-cyan);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.1);
}

.area-footer-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--light-silver);
    opacity: 0.7;
    margin-top: 25px;
}

/* صفحة الخدمات الرئيسية الجامعة */
.services-directory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.services-directory-grid .service-card {
    padding: 35px 24px;
}

/* التجاوب لصفحات الخدمات */
@media (max-width: 900px) {
    .breadcrumbs-container {
        margin-top: 80px; /* ليتوافق مع الجوال */
    }
    
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-directory-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .visual-showcase-image {
        height: 350px;
    }
}

@media (max-width: 550px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .services-directory-grid {
        grid-template-columns: 1fr;
    }
    
    .pain-card {
        padding: 25px;
    }
}

/* ==========================================================================
   Blog & Article Styles (نظام المدونة الفاخرة)
   ========================================================================== */

/* Blog Hero */
.blog-hero {
    position: relative;
    padding: 120px 0 80px;
    background: radial-gradient(circle at 50% 30%, rgba(0, 242, 254, 0.08) 0%, var(--deep-navy) 70%);
    text-align: center;
    border-bottom: 1px solid var(--border-glass);
}

.blog-hero-title {
    font-family: var(--font-cairo);
    font-size: 3rem;
    font-weight: 800;
    color: var(--soft-white);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--soft-white) 30%, var(--luxury-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-hero-desc {
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--light-silver);
    line-height: 1.7;
    opacity: 0.9;
}

/* Blog Search & Categories */
.blog-controls {
    margin: -30px auto 40px;
    max-width: 900px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.blog-search-bar {
    display: flex;
    background: var(--dark-glass);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    padding: 6px 10px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
}

.blog-search-input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--soft-white);
    padding: 12px 20px;
    font-size: 1rem;
    font-family: var(--font-tajawal);
}

.blog-search-btn {
    background: linear-gradient(135deg, var(--aqua-clean), var(--luxury-cyan));
    border: none;
    border-radius: 50px;
    color: var(--deep-navy);
    padding: 0 30px;
    font-weight: 700;
    font-family: var(--font-cairo);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.blog-search-btn:hover {
    box-shadow: 0 0 15px var(--glow-cyan-strong);
    transform: scale(1.02);
}

.blog-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.category-tab {
    background: var(--dark-glass);
    border: 1px solid var(--border-glass);
    color: var(--light-silver);
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.category-tab:hover, .category-tab.active {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--luxury-cyan);
    color: var(--luxury-cyan);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.15);
}

/* Blog Cards Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.blog-card {
    background: var(--dark-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.25);
    box-shadow: 0 15px 30px rgba(0, 212, 255, 0.1), 0 5px 15px rgba(0, 0, 0, 0.3);
}

.blog-card-img-wrapper {
    overflow: hidden;
    position: relative;
    height: 200px;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img {
    transform: scale(1.05);
}

.blog-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(7, 24, 39, 0.85);
    border: 1px solid var(--luxury-cyan);
    color: var(--luxury-cyan);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 2;
}

.blog-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    color: var(--light-silver);
    opacity: 0.7;
    margin-bottom: 12px;
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card-meta svg {
    width: 14px;
    height: 14px;
    fill: var(--luxury-cyan);
}

.blog-card-title {
    font-family: var(--font-cairo);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--soft-white);
    line-height: 1.5;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card-title a:hover {
    color: var(--luxury-cyan);
}

.blog-card-desc {
    font-size: 0.9rem;
    color: var(--light-silver);
    opacity: 0.85;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--luxury-cyan);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.3s;
}

.blog-card-link:hover {
    gap: 12px;
}

/* Article Hero & Layout */
.article-hero {
    position: relative;
    padding: 140px 0 60px;
    background: radial-gradient(circle at 50% 20%, rgba(0, 242, 254, 0.08) 0%, var(--deep-navy) 80%);
    border-bottom: 1px solid var(--border-glass);
}

.article-hero-title {
    font-family: var(--font-cairo);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--soft-white);
    line-height: 1.4;
    margin: 20px 0 15px;
}

.article-hero-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--light-silver);
    opacity: 0.8;
    flex-wrap: wrap;
}

.article-hero-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.article-hero-meta svg {
    width: 16px;
    height: 16px;
    fill: var(--luxury-cyan);
}

.article-hero-badge {
    display: inline-block;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--luxury-cyan);
    color: var(--luxury-cyan);
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
}

.article-layout {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 40px;
    padding: 60px 0;
}

.article-main {
    max-width: 800px;
}

.article-featured-img {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: 24px;
    border: 1px solid var(--border-glass);
    margin-bottom: 40px;
}

.article-content {
    font-size: 1.15rem;
    line-height: 1.85;
    color: var(--light-silver);
}

.article-content p {
    margin-bottom: 25px;
}

.article-content h2 {
    font-family: var(--font-cairo);
    font-size: 1.75rem;
    color: var(--soft-white);
    margin: 45px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.article-content h3 {
    font-family: var(--font-cairo);
    font-size: 1.4rem;
    color: var(--soft-white);
    margin: 35px 0 15px;
}

/* Highlight Box */
.highlight-box {
    background: rgba(0, 242, 254, 0.04);
    border-right: 4px solid var(--luxury-cyan);
    padding: 25px 30px;
    border-radius: 0 16px 16px 0;
    margin: 35px 0;
    border-left: none;
}

.highlight-box-title {
    font-family: var(--font-cairo);
    font-weight: 700;
    color: var(--luxury-cyan);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.highlight-box-title svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.highlight-box-content {
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Checklist Box */
.checklist-box {
    background: var(--dark-glass);
    border: 1px solid var(--border-glass);
    padding: 30px;
    border-radius: 20px;
    margin: 35px 0;
}

.checklist-box-title {
    font-family: var(--font-cairo);
    font-weight: 700;
    color: var(--soft-white);
    font-size: 1.25rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 10px;
}

.checklist-items {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-items li {
    position: relative;
    padding-right: 30px;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
}

.checklist-items li::before {
    content: "✓";
    position: absolute;
    right: 0;
    color: var(--luxury-cyan);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Callout Card (Inline CTA) */
.inline-cta-card {
    background: linear-gradient(135deg, rgba(7, 24, 39, 0.9) 0%, rgba(5, 18, 30, 0.8) 100%);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 24px;
    padding: 35px;
    margin: 40px 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.inline-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 242, 254, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.inline-cta-title {
    font-family: var(--font-cairo);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--soft-white);
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.inline-cta-desc {
    font-size: 1rem;
    color: var(--light-silver);
    opacity: 0.9;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.inline-cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.inline-cta-actions .btn-luxury {
    padding: 12px 28px;
    font-size: 0.95rem;
}

/* Sidebar & Sticky TOC */
.article-sidebar {
    position: relative;
}

.sticky-sidebar-content {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--dark-glass);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.widget-title {
    font-family: var(--font-cairo);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--soft-white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-item {
    margin-bottom: 12px;
}

.toc-link {
    color: var(--light-silver);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    display: block;
    line-height: 1.4;
}

.toc-link:hover {
    color: var(--luxury-cyan);
    transform: translateX(-3px);
}

.toc-item.h3-level {
    padding-right: 15px;
}

.toc-item.h3-level .toc-link {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Sidebar Quick CTA */
.sidebar-cta-widget {
    background: linear-gradient(135deg, rgba(5, 18, 30, 0.8) 0%, rgba(7, 24, 39, 0.9) 100%);
    border: 1px solid rgba(0, 212, 255, 0.15);
    text-align: center;
    padding: 30px 25px;
}

.sidebar-cta-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.4));
}

.sidebar-cta-btn {
    width: 100%;
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px;
    font-size: 0.9rem;
}

/* FAQ Accordion */
.faq-section-title {
    font-family: var(--font-cairo);
    font-size: 2rem;
    font-weight: 800;
    color: var(--soft-white);
    margin: 50px 0 30px;
    text-align: center;
}

.article-faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: var(--dark-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
}

.faq-question-btn {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: var(--soft-white);
    padding: 20px 25px;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--font-cairo);
    text-align: right;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s;
    color: var(--luxury-cyan);
}

.faq-card.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(255, 255, 255, 0.01);
}

.faq-answer-panel p {
    padding: 0 25px 20px;
    margin: 0;
    font-size: 0.95rem;
    color: var(--light-silver);
    line-height: 1.7;
    opacity: 0.9;
}

/* Related articles at bottom */
.related-articles-section {
    background: #05121e;
    padding: 80px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Media Queries */
@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sticky-sidebar-content {
        position: static;
        margin-top: 30px;
    }
    
    .article-hero-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2.2rem;
    }
    
    .article-hero-title {
        font-size: 1.8rem;
    }
    
    .highlight-box {
        padding: 20px;
        margin: 25px 0;
    }
    
    .checklist-box {
        padding: 20px;
        margin: 25px 0;
    }
    
    .inline-cta-card {
        padding: 25px;
        margin: 30px 0;
    }
}

/* ==================================================== */
/* Global Quote Modal Styles (مودال طلب عرض السعر الفاخر) */
/* ==================================================== */
.quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(3, 13, 22, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.quote-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.quote-modal-container {
    background: #05121e;
    border: 1px solid rgba(0, 242, 254, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(0, 242, 254, 0.05);
    width: 90%;
    max-width: 520px;
    border-radius: 24px;
    padding: 35px 30px;
    position: relative;
    transform: translateY(40px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Cairo', 'Tajawal', sans-serif;
    color: #fff;
    max-height: 90vh;
    overflow-y: auto;
}

.quote-modal-overlay.active .quote-modal-container {
    transform: translateY(0) scale(1);
}

.quote-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
    padding: 5px;
    outline: none;
}

.quote-modal-close:hover {
    color: var(--luxury-cyan);
}

.quote-modal-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-align: center;
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.quote-modal-desc {
    font-size: 0.9rem;
    color: var(--light-silver);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.6;
}

.quote-modal-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.quote-modal-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.quote-modal-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.quote-modal-input {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #fff;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
}

.quote-modal-input:focus {
    outline: none;
    border-color: var(--luxury-cyan);
    background: rgba(0, 242, 254, 0.02);
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.quote-modal-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

select.quote-modal-input {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 16px center;
    background-size: 20px;
    padding-left: 40px;
}

select.quote-modal-input option {
    background: #071827;
    color: #fff;
}

.quote-modal-submit-btn {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #071827;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.quote-modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.3);
}

.quote-modal-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

