/* Video Background - WORKING VERSION */
.video-background {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: -2 !important;
    overflow: hidden !important;
}

.video-background video {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    width: auto !important;
    height: auto !important;
    transform: translate(-50%, -50%) !important;
    object-fit: cover !important;
    display: block !important;
}

.video-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    z-index: 1 !important;
}

body {
    position: relative;
    z-index: 0;
}

.hero, .services, .stats-modern, .why-us, .clients, .team, .contact, .footer, .dubai-showcase, .cta-section {
    position: relative;
    z-index: 1;
}
:root {
    --burgundy: #8B1538;
    --burgundy-dark: #6B0F28;
    --burgundy-light: #A52045;
    --gold: #D4AF37;
    --gold-dark: #B8941F;
    --silver: #C0C0C0;
    --dark: #0d0d0d;
    --darker: #000000;
    --light: #ffffff;
    --gray: #f8f9fa;
    --gray-dark: #6c757d;
}

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

body {
    font-family: 'Tajawal', sans-serif;
    background: #0d0d0d;
    color: var(--light);
    overflow-x: hidden;
    line-height: 1.7;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Page Progress */
.page-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--burgundy), var(--gold));
    z-index: 10000;
    transition: width 0.3s ease;
}

/* Particles Canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.3);
    background: rgba(13, 13, 13, 0.98);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(139, 21, 56, 0.5));
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05) rotate(2deg);
}

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

.logo-ar {
    font-size: 20px;
    font-weight: 800;
    color: var(--light);
    letter-spacing: 1px;
}

.logo-en {
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a:hover {
    background: rgba(139, 21, 56, 0.2);
    color: var(--gold);
    transform: translateY(-2px);
}

.nav-links .cta-btn {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--light);
    box-shadow: 0 5px 20px rgba(139, 21, 56, 0.4);
}

.nav-links .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.6);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--light);
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(139, 21, 56, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(139, 21, 56, 0.2);
    border: 1px solid var(--burgundy);
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
}

.title-ar {
    display: block;
    background: linear-gradient(135deg, var(--light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-en {
    display: block;
    font-size: 42px;
    color: var(--burgundy);
    letter-spacing: 3px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--silver);
    margin-bottom: 10px;
    font-weight: 600;
}

.hero-subtitle-en {
    font-size: 18px;
    color: var(--gray-dark);
    margin-bottom: 40px;
    font-weight: 500;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--light);
    transition: all 0.3s ease;
}

.badge-premium {
    border-color: var(--gold);
}

.badge:hover {
    background: rgba(139, 21, 56, 0.3);
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--light);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--dark);
    transform: translateY(-3px);
}

.btn-glow {
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% { box-shadow: 0 10px 30px rgba(139, 21, 56, 0.4); }
    50% { box-shadow: 0 10px 40px rgba(139, 21, 56, 0.8), 0 0 30px rgba(212, 175, 55, 0.5); }
}

.btn-shine::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.btn-large {
    padding: 20px 50px;
    font-size: 20px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-arrow {
    font-size: 24px;
    color: var(--gold);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-slide-up {
    animation: slideUp 1s ease-out;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 15px;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--light);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--silver);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: #0d0d0d;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card-modern {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(139, 21, 56, 0.3);
}

.service-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-modern:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.9), rgba(212, 175, 55, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card-modern:hover .service-overlay {
    opacity: 1;
}

.service-icon-large {
    font-size: 80px;
    color: var(--light);
    animation: iconFloat 3s infinite ease-in-out;
}

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

.service-content {
    padding: 30px;
}

.service-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-icon-small {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--gold);
    flex-shrink: 0;
}

.service-titles {
    flex: 1;
}

.service-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 5px;
}

.service-title-en {
    font-size: 12px;
    color: var(--gold);
    letter-spacing: 1px;
    font-weight: 600;
}

.service-desc {
    color: var(--silver);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    color: var(--silver);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--gold);
    font-size: 16px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 15px;
    color: var(--light);
}

/* Stats Section */
.stats-modern {
    background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
    position: relative;
    overflow: hidden;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.05) 35px, rgba(255,255,255,.05) 70px);
    opacity: 0.3;
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-card-modern {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.stat-icon-wrapper {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 20px;
}

.stat-number-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 56px;
    font-weight: 900;
    color: var(--light);
    line-height: 1;
}

.stat-suffix {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    font-size: 18px;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 5px;
}

.stat-label-en {
    font-size: 13px;
    color: var(--silver);
    letter-spacing: 1px;
}

/* Why Us Section */
.why-us {
    background: #000000;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.why-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    background: rgba(139, 21, 56, 0.1);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.2);
}

.why-icon {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--gold);
    z-index: 2;
}

.why-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 3s infinite;
}

.why-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 15px;
}

.why-desc {
    color: var(--silver);
    line-height: 1.8;
}

/* Clients Section */
.clients {
    background: #0d0d0d;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
}

.client-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    min-height: 150px;
}

.client-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    transform: scale(1.05);
}

.client-card img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%) brightness(1.5);
    transition: filter 0.3s ease;
}

.client-card:hover img {
    filter: grayscale(0%) brightness(1);
}

/* Team Section */
.team {
    background: #000000;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(139, 21, 56, 0.3);
}

.team-image-wrapper {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image {
    transform: scale(1.1);
}

.team-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.95), rgba(212, 175, 55, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover .team-overlay {
    opacity: 1;
}

.team-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-size: 20px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--light);
    color: var(--burgundy);
    transform: translateY(-5px);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 5px;
}

.team-position {
    font-size: 16px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 3px;
}

.team-position-en {
    font-size: 13px;
    color: var(--silver);
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.03) 35px, rgba(255,255,255,.03) 70px);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--light);
    margin-bottom: 20px;
}

.cta-text {
    font-size: 22px;
    color: var(--silver);
    margin-bottom: 40px;
}

/* Contact Section */
.contact {
    background: #0d0d0d;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(139, 21, 56, 0.1);
    border-color: var(--gold);
    transform: translateX(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 700;
}

.info-content p {
    color: var(--silver);
    margin: 5px 0;
}

.info-content a {
    color: var(--silver);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: var(--gold);
}

.info-en {
    font-size: 13px;
    color: var(--gray-dark);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    color: var(--silver);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    color: var(--light);
    font-family: 'Tajawal', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 60px 0 40px;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(139, 21, 56, 0.5));
}

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

.footer-desc {
    color: var(--silver);
    margin-bottom: 25px;
    line-height: 1.8;
}

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

.footer-social .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-social .social-link:hover {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--light);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139, 21, 56, 0.4);
}

.footer-col h4 {
    color: var(--light);
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: var(--silver);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover {
    color: var(--gold);
    padding-right: 10px;
}

.footer-col p {
    color: var(--silver);
    margin-bottom: 15px;
    line-height: 1.8;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50px;
    color: var(--light);
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-form button {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    border: none;
    border-radius: 50%;
    color: var(--light);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(139, 21, 56, 0.5);
}

.footer-bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--silver);
    font-size: 14px;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    border: none;
    border-radius: 50%;
    color: var(--light);
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(139, 21, 56, 0.4);
}

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

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.6);
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

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

    .mobile-menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 42px;
    }

    .title-en {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 36px;
    }

    .services-grid,
    .why-us-grid,
    .clients-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-wrapper {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .logo-img {
        height: 40px;
    }

    .logo-ar {
        font-size: 16px;
    }

    .logo-en {
        font-size: 9px;
    }

    .footer-logo-img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .title-en {
        font-size: 22px;
    }

    .section-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 42px;
    }

    .cta-title {
        font-size: 36px;
    }
}
/* Metallic Black Override */
body {
    background: #0a0a0a;
    background-image: 
        radial-gradient(at 40% 20%, rgba(139, 21, 56, 0.05) 0px, transparent 50%),
        radial-gradient(at 80% 0%, rgba(212, 175, 55, 0.03) 0px, transparent 50%),
        radial-gradient(at 0% 50%, rgba(192, 192, 192, 0.02) 0px, transparent 50%);
}

.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

.services {
    background: #0d0d0d;
}

.why-us {
    background: #000000;
}

.clients {
    background: #0d0d0d;
}

.team {
    background: #000000;
}

.contact {
    background: #0d0d0d;
}

.footer {
    background: #000000;
}

.navbar {
    background: rgba(10, 10, 10, 0.95);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
}

/* Video Background */
.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(2px);
    z-index: 1;
}

/* Sidebar Styles */
.sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    z-index: 9999;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sidebar.active {
    right: 0;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: -1;
}

.sidebar.active .sidebar-overlay {
    opacity: 1;
    visibility: visible;
}

.sidebar-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    box-shadow: -10px 0 50px rgba(139, 21, 56, 0.5);
    padding: 30px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    border-left: 2px solid var(--gold);
    animation: sidebarSlideIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes sidebarSlideIn {
    0% {
        transform: translateX(100%) rotateY(90deg);
        opacity: 0;
    }
    50% {
        transform: translateX(50%) rotateY(45deg);
        opacity: 0.5;
    }
    100% {
        transform: translateX(0) rotateY(0deg);
        opacity: 1;
    }
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    animation: fadeInDown 0.8s ease 0.2s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
    animation: logoFloat 3s ease-in-out infinite;
}

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

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

.sidebar-close {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    border: none;
    border-radius: 50%;
    color: var(--light);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(139, 21, 56, 0.4);
}

.sidebar-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 8px 30px rgba(139, 21, 56, 0.7);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 40px;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    color: var(--light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    animation: fadeInRight 0.6s ease backwards;
}

.sidebar-link:nth-child(1) { animation-delay: 0.3s; }
.sidebar-link:nth-child(2) { animation-delay: 0.4s; }
.sidebar-link:nth-child(3) { animation-delay: 0.5s; }
.sidebar-link:nth-child(4) { animation-delay: 0.6s; }
.sidebar-link:nth-child(5) { animation-delay: 0.7s; }

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.sidebar-link::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: right 0.6s ease;
}

.sidebar-link:hover::before {
    right: 100%;
}

.sidebar-link:hover {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.3), rgba(212, 175, 55, 0.2));
    border-color: var(--gold);
    transform: translateX(-10px) scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.sidebar-link i {
    font-size: 22px;
    color: var(--gold);
    transition: all 0.3s ease;
}

.sidebar-link:hover i {
    transform: scale(1.2) rotate(360deg);
}

.sidebar-link span {
    flex: 1;
}

.sidebar-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background: rgba(139, 21, 56, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

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

.sidebar-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--silver);
    font-size: 14px;
}

.sidebar-info-item i {
    color: var(--gold);
    font-size: 18px;
    width: 25px;
    text-align: center;
}

.sidebar-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.9s both;
}

.sidebar-social a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sidebar-social a:hover {
    background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
    color: var(--light);
    transform: translateY(-10px) rotate(360deg) scale(1.2);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.6);
}

/* Update mobile menu toggle */
.mobile-menu-toggle {
    display: block;
    position: relative;
    z-index: 1001;
}

/* Responsive */
@media (max-width: 768px) {
    .sidebar {
        width: 320px;
        right: -320px;
    }
    
    .sidebar-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .sidebar {
        width: 90%;
        right: -90%;
    }
}

/* Add glow effect to sidebar */
.sidebar-content::before {
    content: '';
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    background: linear-gradient(45deg, var(--burgundy), var(--gold), var(--burgundy));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
    animation: borderGlow 3s linear infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.sidebar.active .sidebar-content::before {
    opacity: 1;
}

/* Sidebar toggle button enhanced */
.nav-links .cta-btn,
.mobile-menu-toggle {
    animation: pulse 2s infinite;
}

/* Dubai Showcase Section */
.dubai-showcase {
    background: #000000;
    padding: 100px 0;
}

.dubai-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.dubai-card {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
    box-shadow: 0 10px 40px rgba(139, 21, 56, 0.3);
}

.dubai-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
}

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

.dubai-card:hover img {
    transform: scale(1.2) rotate(2deg);
}

.dubai-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    padding: 40px 30px;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.dubai-card:hover .dubai-overlay {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.95), rgba(212, 175, 55, 0.85));
    padding: 50px 30px;
}

.dubai-overlay h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--light);
    margin-bottom: 10px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.dubai-card:hover .dubai-overlay h3 {
    transform: translateY(-5px);
}

.dubai-overlay p {
    font-size: 16px;
    color: var(--silver);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .dubai-gallery {
        grid-template-columns: 1fr;
    }

    .dubai-card {
        height: 300px;
    }
}
