:root {
    /* Brand Colors */
    --c-dark: #09152A;
    --c-cyan: #0CBDE3;
    --c-blue: #1C6BEF;
    --c-purple: #7638EC;
    --c-orange: #FC9F02;
    
    /* Layout */
    --max-width: 1200px;
    --padding-x: 5%;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-glow: rgba(12, 189, 227, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* For custom cursor */
}

body {
    font-family: 'Outfit', sans-serif;
}
html[dir="rtl"] body {
    font-family: 'Cairo', sans-serif;
}
html[dir="rtl"] .logo-text {
    font-family: 'Cairo', sans-serif;
}
html[dir="rtl"] .slide-in-left { transform: translateX(50px); }
html[dir="rtl"] .slide-in-right { transform: translateX(-50px); }
html[dir="rtl"] .visible { transform: translate(0, 0); }
html[dir="rtl"] .dir-icon { transform: rotate(180deg); display: inline-block; }
html[dir="rtl"] .ltr-text { direction: ltr; display: inline-block; }

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--c-dark);
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
    line-height: 1.6;
}
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--c-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--c-purple);
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--c-cyan);
}

/* Typography & Utilities */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}
p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}
a {
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
}
.gradient-text {
    background: linear-gradient(90deg, var(--c-cyan), var(--c-purple), var(--c-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.c-cyan { color: var(--c-cyan); }
.c-blue { color: var(--c-blue); }
.c-purple { color: var(--c-purple); }
.c-orange { color: var(--c-orange); }

/* Ambient Background Glows */
.ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.5;
    animation: float 20s infinite alternate;
}
.glow-1 {
    width: 500px;
    height: 500px;
    background: var(--c-purple);
    top: -10%;
    left: -10%;
}
.glow-2 {
    width: 600px;
    height: 600px;
    background: var(--c-blue);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}
.glow-3 {
    width: 400px;
    height: 400px;
    background: var(--c-cyan);
    top: 40%;
    left: 40%;
    opacity: 0.3;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 100px) scale(1.2); }
}

/* Custom Cursor */
.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--c-cyan);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
}
.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--c-purple);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Glass Panel Component */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}
.glass-panel::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255,255,255, 0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
    pointer-events: none;
}
.glass-panel:hover::after {
    opacity: 1;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    font-family: inherit;
    transition: all 0.3s ease;
    cursor: none;
}
.btn-primary {
    background: linear-gradient(45deg, var(--c-blue), var(--c-purple));
    border: none;
    box-shadow: 0 4px 15px rgba(118, 56, 236, 0.4);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(118, 56, 236, 0.6);
}
.btn-secondary {
    background: transparent;
    border: 1px solid var(--c-cyan);
    color: var(--c-cyan);
}
.btn-secondary:hover {
    background: rgba(12, 189, 227, 0.1);
    transform: translateY(-3px);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.4s ease;
    padding: 20px 0;
}
header.scrolled {
    background: rgba(9, 21, 42, 0.8);
    backdrop-filter: blur(20px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}
.logo img {
    height: 40px;
    width: auto;
}
.logo-text {
    font-family: 'PT Serif Caption', serif;
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    font-weight: 500;
    position: relative;
    color: rgba(255,255,255,0.8);
}
.nav-links a:hover {
    color: var(--c-cyan);
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--c-cyan);
    transition: 0.3s;
}
.nav-links a:hover::after {
    width: 100%;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.btn-lang {
    background: transparent;
    border: 1px solid var(--c-cyan);
    color: var(--c-cyan);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
    cursor: none;
}
.btn-lang:hover {
    background: var(--c-cyan);
    color: var(--c-dark);
}
.desktop-only { display: inline-block; }
.mobile-only { display: none; }
.mobile-menu-close { display: none; }

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 120px var(--padding-x) 0;
    position: relative;
    perspective: 1000px;
}
.hero-content {
    flex: 1.2;
    z-index: 10;
}
.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(12, 189, 227, 0.05);
    border: 1px solid rgba(12, 189, 227, 0.3);
    border-radius: 50px;
    color: var(--c-cyan);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.hero h1 {
    font-size: 5.5rem;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.hero p {
    font-size: 1.2rem;
    max-width: 500px;
    margin-bottom: 40px;
}
.hero-actions {
    display: flex;
    gap: 20px;
}
.hero-visual {
    flex: 1;
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.glass-orb {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(118, 56, 236, 0.4), rgba(28, 107, 239, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pulseOrb 4s infinite alternate;
}
.orb-inner {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c-cyan), var(--c-blue));
    box-shadow: 0 0 50px var(--c-cyan);
    animation: rotateOrb 10s linear infinite;
}
@keyframes pulseOrb {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}
@keyframes rotateOrb {
    100% { transform: rotate(360deg); }
}
.floating-badge {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: floatBadge 6s infinite ease-in-out;
}
.floating-badge i { font-size: 1.2rem; }
.fb-1 { top: 20%; left: 0; color: var(--c-orange); animation-delay: 0s; }
.fb-2 { bottom: 20%; right: 0; color: var(--c-cyan); animation-delay: 2s; }
.fb-3 { top: 70%; left: 10%; color: var(--c-purple); animation-delay: 4s; }
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Sections Common */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 100px var(--padding-x);
}
.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(45deg, rgba(28, 107, 239, 0.1), rgba(118, 56, 236, 0.1));
    overflow: hidden;
}
.tech-circle {
    font-size: 6rem;
    color: rgba(255,255,255,0.1);
    animation: rotateOrb 20s linear infinite;
}
.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, var(--c-orange), #ff6b00);
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(252, 159, 2, 0.4);
}
.experience-badge .number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}
.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
}
.about-list {
    list-style: none;
    margin-top: 30px;
}
.about-list li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}
.about-list i {
    color: var(--c-cyan);
    font-size: 1.2rem;
}

/* Services Section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-inline: auto;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}
.service-card {
    padding: 50px 40px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    z-index: 1;
    border-radius: 30px;
}
/* Stagger middle and edge cards for masonry feel */
.service-card:nth-child(2), .service-card:nth-child(5) {
    margin-top: 60px;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(12, 189, 227, 0.15), transparent 40%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(12, 189, 227, 0.5);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px var(--glass-glow);
}
.service-card:hover::before {
    opacity: 1;
}
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.stat-box {
    text-align: center;
    padding: 40px 20px;
}
.stat-box h3 {
    display: inline-block;
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--c-cyan), var(--c-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-box span {
    font-size: 2rem;
    font-weight: 800;
    color: var(--c-purple);
}
.stat-box p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
}

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.process-step {
    padding: 50px 40px;
    position: relative;
    text-align: center;
    border-radius: 30px;
    transition: 0.4s ease;
}
.process-step:hover {
    transform: translateY(-10px);
    border-color: rgba(118, 56, 236, 0.5);
    box-shadow: 0 20px 40px rgba(118, 56, 236, 0.15);
}
.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}
.process-step h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--c-cyan);
    position: relative;
    z-index: 1;
}
.process-step p {
    position: relative;
    z-index: 1;
}

/* Technologies Marquee */
.technologies-section {
    padding-bottom: 100px;
    overflow: hidden;
}
.tech-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
.tech-marquee-wrapper::before,
.tech-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}
.tech-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--c-dark), transparent);
}
.tech-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--c-dark), transparent);
}
.tech-marquee {
    display: flex;
    gap: 50px;
    white-space: nowrap;
    animation: scrollTech 20s linear infinite;
    width: max-content;
}
.tech-marquee span {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    padding: 15px 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    transition: 0.3s;
}
.tech-marquee span:hover {
    color: var(--c-cyan);
    border-color: var(--c-cyan);
    background: rgba(12, 189, 227, 0.1);
}
.tech-marquee i {
    font-size: 2rem;
}
@keyframes scrollTech {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Contact Section */
.contact-section {
    padding-bottom: 100px;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.contact-info h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}
.info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 1.2rem;
}
.info-item i {
    width: 50px;
    height: 50px;
    background: rgba(12, 189, 227, 0.1);
    color: var(--c-cyan);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}
.contact-form-wrapper {
    padding: 50px 40px;
}
.form-group {
    margin-bottom: 25px;
}
.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    transition: 0.3s;
    outline: none;
    font-family: inherit;
    cursor: none;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--c-cyan);
    background: rgba(255,255,255,0.1);
    box-shadow: 0 0 15px rgba(12, 189, 227, 0.2);
}

/* Footer */
footer {
    background: #040a15;
    padding-top: 80px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-x);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.footer-brand p {
    margin-top: 20px;
    max-width: 350px;
}
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.social-links a:hover {
    background: var(--c-blue);
    transform: translateY(-3px);
}
.footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}
.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255,255,255,0.6);
}
.footer-links a:hover {
    color: var(--c-cyan);
    padding-left: 5px;
}
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.4);
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: #060b19;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hide {
    opacity: 0;
    visibility: hidden;
}
.loader-content {
    text-align: center;
}
.logo-pulse img {
    width: 80px;
    animation: pulse 1.5s infinite alternate;
    margin-bottom: 20px;
}
@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    100% { transform: scale(1.1); opacity: 1; filter: drop-shadow(0 0 15px rgba(12, 189, 227, 0.8)); }
}
.loading-bar {
    width: 200px; height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin: 0 auto 15px auto;
    overflow: hidden;
}
.loading-bar .progress {
    width: 0%; height: 100%;
    background: linear-gradient(90deg, #0cbde3, #8a2be2);
    animation: loadProgress 2s ease-in-out forwards;
}
@keyframes loadProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}
#preloader p {
    color: #0cbde3;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
}

/* --- Trusted By --- */
.trusted-by {
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
}
.trusted-title {
    text-align: center;
    color: #8892b0;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}
.trusted-logos .brand {
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
    cursor: default;
}
.trusted-logos .brand:hover {
    color: #0cbde3;
}

/* --- Portfolio --- */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.portfolio-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.port-image {
    height: 200px;
    background: rgba(0,0,0,0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.placeholder-visual {
    font-size: 60px;
    color: #0cbde3;
    opacity: 0.8;
}
.placeholder-visual.c-purple { color: #8a2be2; }
.placeholder-visual.c-orange { color: #ff6b6b; }
.port-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.port-content h3 { margin-bottom: 10px; font-size: 20px; }
.port-content p { font-size: 14px; color: #8892b0; margin-bottom: 20px; flex: 1; }
.tech-tags {
    display: flex; gap: 10px; flex-wrap: wrap;
}
.tech-tags span {
    background: rgba(12, 189, 227, 0.1);
    color: #0cbde3;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* --- Testimonials --- */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testi-card {
    padding: 30px;
    position: relative;
}
.quote-icon {
    font-size: 30px;
    color: rgba(12, 189, 227, 0.2);
    position: absolute;
    top: 25px;
    right: 25px;
}
.testi-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}
.testi-author {
    display: flex;
    align-items: center;
    gap: 15px;
}
.author-avatar {
    width: 45px; height: 45px;
    background: linear-gradient(135deg, #0cbde3, #8a2be2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    color: #fff;
}
.testi-author h4 {
    margin: 0; font-size: 16px;
}
.testi-author span {
    font-size: 12px; color: #8892b0;
}

/* --- FAQ Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
}
.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}
.faq-question:hover {
    background: rgba(255, 255, 255, 0.06);
}
.faq-question h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}
.faq-question i {
    color: #0cbde3;
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}
.faq-answer p {
    padding: 0 25px 20px 25px;
    margin: 0;
    color: #8892b0;
    font-size: 15px;
    line-height: 1.7;
}

/* Animations (To be triggered by JS) */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.visible {
    opacity: 1;
    transform: translate(0, 0);
}
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Floating Actions (WhatsApp & Phone) */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}
html[dir="rtl"] .floating-actions {
    right: auto;
    left: 30px;
}
.float-btn {
    width: 60px;
    height: 60px;
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
.float-btn i {
    margin-top: 2px;
}
.float-btn:hover {
    transform: scale(1.1) translateY(-5px);
}
.whatsapp-btn {
    background-color: #25d366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    animation: pulse-whatsapp 2s infinite;
}
.whatsapp-btn:hover {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}
.phone-btn {
    background: linear-gradient(45deg, var(--c-blue), var(--c-cyan));
    box-shadow: 0 4px 15px rgba(28, 107, 239, 0.4);
}
.phone-btn:hover {
    box-shadow: 0 8px 25px rgba(28, 107, 239, 0.6);
}
@keyframes pulse-whatsapp {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card:nth-child(2), .service-card:nth-child(5) { margin-top: 0; }
    .hero h1 { font-size: 4rem; }
}
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { margin-bottom: 40px; height: 350px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .desktop-only { display: none !important; }
    .mobile-only { display: inline-block !important; }
    .mobile-menu-btn { display: block; }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(9, 21, 42, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
        z-index: 1001;
        display: flex;
    }
    html[dir="rtl"] .nav-links { right: auto; left: -100%; }
    .nav-links.active { right: 0; }
    html[dir="rtl"] .nav-links.active { left: 0; }
    
    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        cursor: none;
    }
    html[dir="rtl"] .mobile-menu-close { right: auto; left: 20px; }
    
    .hero { flex-direction: column; text-align: center; padding-top: 150px; }
    .hero-actions { justify-content: center; }
    .hero-visual { height: 400px; margin-top: 50px; }
    .glass-orb { width: 300px; height: 300px; }
    .orb-inner { width: 150px; height: 150px; }
    .footer-container { grid-template-columns: 1fr; }
    .stat-box h3 { font-size: 2.5rem; }
    .floating-badge { display: none; }
    
    .floating-actions {
        bottom: 25px;
        right: 15px;
        gap: 12px;
    }
    html[dir="rtl"] .floating-actions {
        right: auto;
        left: 15px;
    }
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    .float-btn:active {
        transform: scale(0.95);
    }
    .whatsapp-btn {
        box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
        animation: none;
    }
}
