:root {
 --gold: #C9A84C;
 --gold-light: #E8C97A;
 --gold-dark: #8A6B2E;
 --silver: #A8B4C0;
 --silver-light: #D4DCE4;
 --blue: #1A3A5C;
 --blue-bright: #2A7DD4;
 --blue-glow: #4CA3FF;
 --black: #080A0D;
 --black-2: #0D1117;
 --black-3: #111820;
 --black-4: #161E28;
 --white: #F0F4F8;
 --glass-bg: rgba(255,255,255,0.04);
 --glass-border: rgba(201,168,76,0.2);
 --glass-border-blue: rgba(74,163,255,0.2);
 --font-display: 'Cormorant Garamond', serif;
 --font-body: 'Outfit', sans-serif;
 --font-arabic: 'Noto Kufi Arabic', sans-serif;
 --spotlight-size: 0%;
 --mouse-x: 50%;
 --mouse-y: 50%;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
 background: var(--black);
 color: var(--white);
 font-family: var(--font-body);
 overflow-x: hidden;
 cursor: none;
}

body.ar {
 direction: rtl;
 font-family: var(--font-arabic);
}

/* CUSTOM CURSOR */
#cursor {
 width: 12px; height: 12px;
 background: var(--gold);
 border-radius: 50%;
 position: fixed;
 top: 0; left: 0;
 pointer-events: none;
 z-index: 9999;
 transform: translate(-50%,-50%);
 transition: width .2s, height .2s, background .2s;
 mix-blend-mode: difference;
}
#cursor-ring {
 width: 40px; height: 40px;
 border: 1px solid rgba(201,168,76,0.5);
 border-radius: 50%;
 position: fixed;
 top: 0; left: 0;
 pointer-events: none;
 z-index: 9998;
 transform: translate(-50%,-50%);
 transition: width 0.12s ease, height 0.12s ease, border-color 0.12s ease;
}
body:hover #cursor { opacity: 1; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black-2); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 2px; }

/* NAV */
nav {
 position: fixed;
 top: 0; left: 0; right: 0;
 z-index: 1000;
 padding: 20px 60px;
 display: flex;
 align-items: center;
 justify-content: space-between;
 background: linear-gradient(180deg, rgba(8,10,13,0.95) 0%, transparent 100%);
 backdrop-filter: blur(10px);
 border-bottom: 1px solid rgba(201,168,76,0.08);
 transition: padding 0.4s ease, background 0.4s ease, border-color 0.4s ease;
}
nav.scrolled {
 padding: 14px 60px;
 background: rgba(8,10,13,0.98);
 border-bottom-color: rgba(201,168,76,0.15);
}
.nav-logo {
 display: flex; align-items: center; gap: 14px;
}
.nav-logo-icon {
 width: 44px; height: 44px;
 background: linear-gradient(135deg, var(--gold), var(--gold-dark));
 border-radius: 8px;
 display: flex; align-items: center; justify-content: center;
 font-size: 18px;
 position: relative;
 overflow: hidden;
}
.nav-logo-icon::after {
 content: '';
 position: absolute; inset: 0;
 background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
}
.nav-logo-text { line-height: 1.2; }
.nav-logo-main {
 font-family: var(--font-display);
 font-size: 15px;
 font-weight: 600;
 color: var(--gold-light);
 letter-spacing: 0.5px;
}
.nav-logo-sub {
 font-size: 10px;
 color: var(--silver);
 letter-spacing: 2px;
 text-transform: uppercase;
 font-weight: 300;
}
.nav-links {
 display: flex;
 align-items: center;
 gap: 36px;
 list-style: none;
}
.nav-links a {
 color: var(--silver-light);
 text-decoration: none;
 font-size: 13px;
 font-weight: 300;
 letter-spacing: 1px;
 text-transform: uppercase;
 position: relative;
 transition: color 0.3s;
}
.nav-links a::after {
 content: '';
 position: absolute;
 bottom: -4px; left: 0; right: 0;
 height: 1px;
 background: var(--gold);
 transform: scaleX(0);
 transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-btn {
 background: var(--glass-bg);
 border: 1px solid var(--glass-border);
 color: var(--gold);
 padding: 8px 16px;
 border-radius: 4px;
 font-family: var(--font-body);
 font-size: 12px;
 cursor: pointer;
 letter-spacing: 1px;
 transition: background 0.3s, color 0.3s;
}
.lang-btn:hover { background: rgba(201,168,76,0.1); }

.btn-primary {
 background: linear-gradient(135deg, var(--gold), var(--gold-dark));
 color: var(--black);
 border: none;
 padding: 10px 24px;
 border-radius: 4px;
 font-family: var(--font-body);
 font-size: 12px;
 font-weight: 600;
 cursor: pointer;
 letter-spacing: 1px;
 text-transform: uppercase;
 text-decoration: none;
 transition: transform 0.3s, box-shadow 0.3s;
 display: inline-flex; align-items: center; gap: 8px;
 position: relative; overflow: hidden;
}
.btn-primary::before {
 content: '';
 position: absolute; inset: 0;
 background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
 opacity: 0;
 transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.3); }

.btn-outline {
 background: transparent;
 color: var(--gold);
 border: 1px solid var(--gold-dark);
 padding: 10px 24px;
 border-radius: 4px;
 font-family: var(--font-body);
 font-size: 12px;
 font-weight: 500;
 cursor: pointer;
 letter-spacing: 1px;
 text-transform: uppercase;
 text-decoration: none;
 transition: background 0.3s, border-color 0.3s, transform 0.3s;
 display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover {
 background: rgba(201,168,76,0.08);
 border-color: var(--gold);
 transform: translateY(-2px);
}

.btn-ghost {
 background: transparent;
 color: var(--silver-light);
 border: 1px solid rgba(255,255,255,0.1);
 padding: 10px 24px;
 border-radius: 4px;
 font-family: var(--font-body);
 font-size: 12px;
 cursor: pointer;
 letter-spacing: 1px;
 text-transform: uppercase;
 text-decoration: none;
 transition: border-color 0.3s, color 0.3s;
 display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.3); color: var(--white); }

/* HAMBURGER */
.hamburger {
 display: none;
 flex-direction: column;
 gap: 5px;
 cursor: pointer;
 padding: 4px;
 background: none;
 border: none;
}
.hamburger span {
 width: 24px; height: 1.5px;
 background: var(--gold);
 transition: transform 0.3s, opacity 0.3s, background 0.3s;
}

/* MOBILE NAV */
.mobile-nav {
 display: none;
 position: fixed;
 top: 0; left: 0; right: 0; bottom: 0;
 background: rgba(8,10,13,0.98);
 z-index: 999;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 gap: 32px;
 backdrop-filter: blur(20px);
 opacity: 0;
 transform: translateY(-20px);
 transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}
.mobile-nav.open {
 opacity: 1;
 transform: translateY(0);
 display: flex;
}
.mobile-nav a {
 color: var(--white);
 text-decoration: none;
 font-size: 28px;
 font-family: var(--font-display);
 font-weight: 300;
 letter-spacing: 2px;
 transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold-light); }
.mobile-nav-close {
 position: absolute;
 top: 24px; right: 24px;
 background: none;
 border: none;
 color: var(--gold);
 font-size: 28px;
 cursor: pointer;
}

/* HERO */
#hero {
 height: 100vh;
 position: relative;
 overflow: hidden;
 display: flex;
 align-items: center;
 justify-content: center;
}

.hero-bg {
 position: absolute; inset: 0;
 background:
 radial-gradient(ellipse at 20% 50%, rgba(26,58,92,0.4) 0%, transparent 60%),
 radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.15) 0%, transparent 50%),
 linear-gradient(135deg, #0A1628 0%, #080A0D 50%, #0D1117 100%);
 z-index: 0;
}

/* Animated glass panels in bg */
.hero-glass-panels {
 position: absolute; inset: 0;
 z-index: 1;
 pointer-events: none;
}
.glass-panel {
 position: absolute;
 border: 1px solid rgba(201,168,76,0.1);
 background: rgba(201,168,76,0.02);
 backdrop-filter: blur(2px);
}
.glass-panel-1 {
 width: 300px; height: 500px;
 top: -50px; right: 10%;
 transform: rotate(12deg);
 animation: floatPanel1 8s ease-in-out infinite;
}
.glass-panel-2 {
 width: 200px; height: 350px;
 bottom: -30px; right: 18%;
 transform: rotate(-5deg);
 animation: floatPanel2 10s ease-in-out infinite;
 border-color: rgba(74,163,255,0.1);
 background: rgba(74,163,255,0.02);
}
.glass-panel-3 {
 width: 150px; height: 400px;
 top: 100px; left: 5%;
 transform: rotate(-8deg);
 animation: floatPanel3 12s ease-in-out infinite;
 border-color: rgba(168,180,192,0.08);
}

@keyframes floatPanel1 {
 0%,100%{ transform: rotate(12deg) translateY(0); }
 50%{ transform: rotate(12deg) translateY(-20px); }
}
@keyframes floatPanel2 {
 0%,100%{ transform: rotate(-5deg) translateY(0); }
 50%{ transform: rotate(-5deg) translateY(15px); }
}
@keyframes floatPanel3 {
 0%,100%{ transform: rotate(-8deg) translateY(0); }
 50%{ transform: rotate(-8deg) translateY(-25px); }
}

/* Grid lines */
.hero-grid {
 position: absolute; inset: 0;
 background-image:
 linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
 linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
 background-size: 80px 80px;
 z-index: 1;
 mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

/* Spotlight overlay */
#spotlight-overlay {
 position: absolute; inset: 0;
 z-index: 5;
 pointer-events: none;
 background: radial-gradient(
 circle var(--spotlight-size) at var(--mouse-x) var(--mouse-y),
 transparent 0%,
 rgba(8,10,13,0.97) 100%
 );
 transition: --spotlight-size 0.05s;
}

.hero-content {
 position: relative;
 z-index: 10;
 text-align: center;
 max-width: 900px;
 padding: 0 24px;
}

.hero-badge {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 background: rgba(201,168,76,0.08);
 border: 1px solid rgba(201,168,76,0.2);
 padding: 8px 20px;
 border-radius: 100px;
 margin-bottom: 32px;
 font-size: 11px;
 letter-spacing: 3px;
 text-transform: uppercase;
 color: var(--gold);
 animation: fadeInDown 1s ease 0.2s both;
}
.hero-badge-dot {
 width: 6px; height: 6px;
 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(0.8); }
}

.hero-title {
 font-family: var(--font-display);
 font-size: clamp(40px, 7vw, 96px);
 font-weight: 300;
 line-height: 1.05;
 color: var(--white);
 margin-bottom: 8px;
 animation: fadeInUp 1s ease 0.4s both;
 letter-spacing: -1px;
}
.hero-title em {
 font-style: normal;
 background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.hero-title-ar {
 display: none;
 font-family: var(--font-arabic);
 font-size: clamp(28px, 5vw, 64px);
 font-weight: 300;
 line-height: 1.4;
 color: var(--white);
 margin-bottom: 8px;
 animation: fadeInUp 1s ease 0.4s both;
}
.hero-title-ar em {
 font-style: normal;
 background: linear-gradient(135deg, var(--gold-light), var(--gold));
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}

.hero-subtitle {
 font-size: clamp(13px, 1.5vw, 16px);
 color: var(--silver);
 font-weight: 300;
 letter-spacing: 2px;
 margin-bottom: 48px;
 animation: fadeInUp 1s ease 0.6s both;
 text-transform: uppercase;
}

.hero-cta {
 display: flex;
 gap: 16px;
 justify-content: center;
 flex-wrap: wrap;
 animation: fadeInUp 1s ease 0.8s both;
}

.hero-scroll {
 position: absolute;
 bottom: 40px;
 left: 50%;
 transform: translateX(-50%);
 z-index: 10;
 display: flex;
 flex-direction: column;
 align-items: center;
 gap: 8px;
 color: var(--silver);
 font-size: 10px;
 letter-spacing: 3px;
 text-transform: uppercase;
 animation: fadeIn 2s ease 1.5s both;
}
.hero-scroll-line {
 width: 1px; height: 50px;
 background: linear-gradient(to bottom, var(--gold), transparent);
 animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
 0%{ transform: scaleY(0); transform-origin: top; }
 50%{ transform: scaleY(1); transform-origin: top; }
 51%{ transform: scaleY(1); transform-origin: bottom; }
 100%{ transform: scaleY(0); transform-origin: bottom; }
}

/* SECTION BASE */
section {
 position: relative;
 padding: 100px 0;
}
.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 60px;
}
.section-header {
 text-align: center;
 margin-bottom: 72px;
}
.section-label {
 font-size: 11px;
 letter-spacing: 4px;
 text-transform: uppercase;
 color: var(--gold);
 margin-bottom: 16px;
 display: block;
}
.section-title {
 font-family: var(--font-display);
 font-size: clamp(32px, 4vw, 56px);
 font-weight: 300;
 line-height: 1.1;
 color: var(--white);
 margin-bottom: 20px;
}
.section-title em {
 font-style: normal;
 color: var(--gold-light);
}
.section-desc {
 font-size: 15px;
 color: var(--silver);
 font-weight: 300;
 max-width: 560px;
 margin: 0 auto;
 line-height: 1.8;
}
.section-divider {
 width: 60px;
 height: 1px;
 background: linear-gradient(90deg, transparent, var(--gold), transparent);
 margin: 24px auto 0;
}

/* ABOUT */
#about {
 background: var(--black-2);
}
.about-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 80px;
 align-items: center;
}
.about-visual {
 position: relative;
}
.about-main-card {
 background: linear-gradient(135deg, var(--black-3), var(--black-4));
 border: 1px solid var(--glass-border);
 border-radius: 2px;
 padding: 48px;
 position: relative;
 overflow: hidden;
}
.about-main-card::before {
 content: '';
 position: absolute;
 top: 0; left: 0; right: 0;
 height: 2px;
 background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.about-main-card::after {
 content: '';
 position: absolute;
 bottom: -80px; right: -80px;
 width: 200px; height: 200px;
 background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.about-stat-grid {
 display: grid;
 grid-template-columns: 1fr 1fr;
 gap: 24px;
 margin-top: 32px;
}
.about-stat {
 text-align: center;
 padding: 24px;
 background: rgba(255,255,255,0.02);
 border: 1px solid rgba(255,255,255,0.05);
 border-radius: 2px;
 transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.about-stat:hover {
 border-color: rgba(201,168,76,0.2);
 background: rgba(201,168,76,0.04);
 transform: translateY(-4px);
}
.about-stat-number {
 font-family: var(--font-display);
 font-size: 40px;
 font-weight: 600;
 color: var(--gold-light);
 line-height: 1;
 margin-bottom: 8px;
}
.about-stat-label {
 font-size: 11px;
 color: var(--silver);
 letter-spacing: 2px;
 text-transform: uppercase;
}
.about-badge-float {
 position: absolute;
 bottom: -20px; right: -20px;
 background: linear-gradient(135deg, var(--gold), var(--gold-dark));
 color: var(--black);
 padding: 16px 20px;
 border-radius: 2px;
 text-align: center;
 box-shadow: 0 20px 60px rgba(201,168,76,0.3);
 z-index: 2;
}
.about-badge-float-num {
 font-family: var(--font-display);
 font-size: 28px;
 font-weight: 700;
 line-height: 1;
 display: block;
}
.about-badge-float-text {
 font-size: 9px;
 letter-spacing: 2px;
 text-transform: uppercase;
 font-weight: 600;
}
.about-content { padding-left: 20px; }
.about-content p {
 font-size: 15px;
 color: var(--silver);
 line-height: 1.9;
 font-weight: 300;
 margin-bottom: 24px;
}
.about-features {
 margin-top: 40px;
 display: flex;
 flex-direction: column;
 gap: 16px;
}
.about-feature {
 display: flex;
 align-items: center;
 gap: 16px;
 padding: 16px 20px;
 background: var(--glass-bg);
 border: 1px solid rgba(255,255,255,0.05);
 border-radius: 2px;
 transition: border-color 0.3s, transform 0.3s;
}
.about-feature:hover {
 border-color: var(--glass-border);
 transform: translateX(8px);
}
.about-feature-icon {
 width: 40px; height: 40px;
 background: rgba(201,168,76,0.1);
 border: 1px solid rgba(201,168,76,0.2);
 border-radius: 2px;
 display: flex; align-items: center; justify-content: center;
 font-size: 18px;
 flex-shrink: 0;
}
.about-feature-text {
 font-size: 13px;
 color: var(--silver-light);
 font-weight: 400;
 letter-spacing: 0.5px;
}

/* SERVICES */
#services {
 background: var(--black);
}
.services-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 2px;
}
.service-card {
 background: var(--black-3);
 padding: 48px 36px;
 position: relative;
 overflow: hidden;
 cursor: pointer;
 transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
 border: 1px solid rgba(255,255,255,0.04);
}
.service-card::before {
 content: '';
 position: absolute; inset: 0;
 background: linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 60%);
 opacity: 0;
 transition: opacity 0.4s;
}
.service-card::after {
 content: '';
 position: absolute;
 bottom: 0; left: 0; right: 0;
 height: 2px;
 background: linear-gradient(90deg, transparent, var(--gold), transparent);
 transform: scaleX(0);
 transition: transform 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); border-color: var(--glass-border); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.service-card:hover .service-icon { transform: scale(1.1) rotate(5deg); }

.service-number {
 font-family: var(--font-display);
 font-size: 64px;
 font-weight: 700;
 color: rgba(201,168,76,0.06);
 line-height: 1;
 position: absolute;
 top: 20px; right: 24px;
}
.service-icon {
 font-size: 36px;
 margin-bottom: 24px;
 display: block;
 transition: transform 0.4s;
}
.service-title {
 font-family: var(--font-display);
 font-size: 22px;
 font-weight: 500;
 color: var(--white);
 margin-bottom: 12px;
 line-height: 1.2;
}
.service-desc {
 font-size: 13px;
 color: var(--silver);
 line-height: 1.8;
 font-weight: 300;
}
.service-link {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 margin-top: 24px;
 color: var(--gold);
 font-size: 11px;
 letter-spacing: 2px;
 text-transform: uppercase;
 text-decoration: none;
 opacity: 0;
 transform: translateY(8px);
 transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-link { opacity: 1; transform: translateY(0); }

/* PROJECTS */
#projects {
 background: var(--black-2);
}
.projects-tabs {
 display: flex;
 gap: 4px;
 margin-bottom: 48px;
 justify-content: center;
}
.tab-btn {
 padding: 12px 28px;
 background: transparent;
 border: 1px solid rgba(255,255,255,0.08);
 color: var(--silver);
 font-family: var(--font-body);
 font-size: 12px;
 letter-spacing: 2px;
 text-transform: uppercase;
 cursor: pointer;
 transition: background 0.3s, border-color 0.3s, color 0.3s;
 border-radius: 2px;
}
.tab-btn.active {
 background: var(--gold);
 border-color: var(--gold);
 color: var(--black);
 font-weight: 600;
}
.tab-btn:not(.active):hover { border-color: rgba(201,168,76,0.3); color: var(--gold); }

.projects-privacy-wrapper {
 position: relative;
}
.projects-grid.privacy-blurred {
 filter: blur(12px);
 pointer-events: none;
 user-select: none;
 opacity: 0.4;
}
.privacy-overlay-message {
 position: absolute;
 inset: 0;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: center;
 z-index: 10;
 text-align: center;
}
.privacy-overlay-icon { font-size: 48px; margin-bottom: 16px; }
.privacy-overlay-title { font-family: var(--font-display); font-size: 28px; color: var(--gold-light); margin-bottom: 8px; }
.privacy-overlay-desc { color: var(--silver); font-size: 14px; }

.projects-grid {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 20px;
}
.project-card {
 background: var(--black-3);
 border: 1px solid rgba(255,255,255,0.05);
 border-radius: 2px;
 overflow: hidden;
 transition: transform 0.4s, box-shadow 0.4s, border-color 0.4s;
 cursor: pointer;
}
.project-card:hover { transform: translateY(-8px); box-shadow: 0 40px 80px rgba(0,0,0,0.6); border-color: var(--glass-border); }
.project-visual {
 height: 220px;
 position: relative;
 overflow: hidden;
}
.project-visual-inner {
 width: 100%; height: 100%;
 display: flex; align-items: center; justify-content: center;
 font-size: 60px;
 transition: transform 0.4s;
}
.project-card:hover .project-visual-inner { transform: scale(1.1); }
.project-visual-overlay {
 position: absolute; inset: 0;
 background: linear-gradient(to top, var(--black-3) 0%, transparent 50%);
}
.project-badge {
 position: absolute;
 top: 16px; right: 16px;
 padding: 4px 12px;
 border-radius: 100px;
 font-size: 9px;
 letter-spacing: 2px;
 text-transform: uppercase;
 font-weight: 600;
}
.project-badge.ongoing {
 background: rgba(74,163,255,0.15);
 border: 1px solid rgba(74,163,255,0.3);
 color: var(--blue-glow);
}
.project-badge.completed {
 background: rgba(201,168,76,0.15);
 border: 1px solid rgba(201,168,76,0.3);
 color: var(--gold-light);
}
.project-info { padding: 24px; }
.project-title {
 font-family: var(--font-display);
 font-size: 18px;
 font-weight: 500;
 color: var(--white);
 margin-bottom: 8px;
}
.project-meta {
 font-size: 12px;
 color: var(--silver);
 margin-bottom: 16px;
 display: flex; align-items: center; gap: 8px;
}
.project-meta::before {
 content: '';
 width: 20px; height: 1px;
 background: var(--gold-dark);
}
.project-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.project-tag {
 padding: 4px 10px;
 background: rgba(255,255,255,0.04);
 border: 1px solid rgba(255,255,255,0.08);
 border-radius: 2px;
 font-size: 10px;
 color: var(--silver);
 letter-spacing: 1px;
}

/* MAINTENANCE */
#maintenance {
 background: var(--black);
}
.maintenance-wrapper {
 display: grid;
 grid-template-columns: 1fr 1.4fr;
 gap: 80px;
 align-items: start;
}
.maintenance-info { padding-top: 20px; }
.maintenance-info p {
 font-size: 15px;
 color: var(--silver);
 line-height: 1.9;
 font-weight: 300;
 margin-bottom: 40px;
}
.maintenance-steps {
 display: flex;
 flex-direction: column;
 gap: 0;
}
.m-step {
 display: flex;
 gap: 20px;
 padding-bottom: 32px;
 position: relative;
}
.m-step::before {
 content: '';
 position: absolute;
 left: 15px; top: 36px;
 bottom: 0;
 width: 1px;
 background: linear-gradient(to bottom, var(--gold-dark), transparent);
}
.m-step:last-child::before { display: none; }
.m-step-num {
 width: 32px; height: 32px;
 background: rgba(201,168,76,0.1);
 border: 1px solid rgba(201,168,76,0.3);
 border-radius: 50%;
 display: flex; align-items: center; justify-content: center;
 font-size: 11px;
 color: var(--gold);
 font-weight: 600;
 flex-shrink: 0;
}
.m-step-title {
 font-size: 14px;
 font-weight: 500;
 color: var(--white);
 margin-bottom: 4px;
}
.m-step-text {
 font-size: 12px;
 color: var(--silver);
 line-height: 1.6;
}

.maintenance-form {
 background: var(--black-3);
 border: 1px solid var(--glass-border);
 padding: 48px;
 border-radius: 2px;
 position: relative;
 overflow: hidden;
}
.maintenance-form::before {
 content: '';
 position: absolute;
 top: 0; left: 0; right: 0;
 height: 2px;
 background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-label {
 display: block;
 font-size: 10px;
 letter-spacing: 2px;
 text-transform: uppercase;
 color: var(--gold);
 margin-bottom: 8px;
}
.form-input, .form-select, .form-textarea {
 width: 100%;
 background: rgba(255,255,255,0.03);
 border: 1px solid rgba(255,255,255,0.08);
 color: var(--white);
 padding: 14px 16px;
 font-family: var(--font-body);
 font-size: 14px;
 border-radius: 2px;
 outline: none;
 transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
 appearance: none;
 -webkit-appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
 border-color: rgba(201,168,76,0.4);
 background: rgba(201,168,76,0.04);
 box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(168,180,192,0.4); }
.form-select option { background: var(--black-3); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit { width: 100%; padding: 16px; font-size: 13px; justify-content: center; }

/* CONTACT */
#contact {
 background: var(--black-2);
}
.contact-grid {
 display: grid;
 grid-template-columns: 1fr 1.6fr;
 gap: 80px;
 align-items: start;
}
.contact-cards {
 display: flex;
 flex-direction: column;
 gap: 16px;
}
.contact-card {
 background: var(--black-3);
 border: 1px solid rgba(255,255,255,0.05);
 padding: 28px;
 border-radius: 2px;
 display: flex;
 align-items: flex-start;
 gap: 20px;
 transition: all 0.3s;
 text-decoration: none;
}
.contact-card:hover {
 border-color: var(--glass-border);
 transform: translateX(8px);
}
.contact-card-icon {
 width: 48px; height: 48px;
 border-radius: 2px;
 display: flex; align-items: center; justify-content: center;
 font-size: 20px;
 flex-shrink: 0;
}
.contact-card-icon.gold {
 background: rgba(201,168,76,0.1);
 border: 1px solid rgba(201,168,76,0.2);
}
.contact-card-icon.blue {
 background: rgba(74,163,255,0.1);
 border: 1px solid rgba(74,163,255,0.2);
}
.contact-card-icon.green {
 background: rgba(52,199,89,0.1);
 border: 1px solid rgba(52,199,89,0.2);
}
.contact-card-label {
 font-size: 10px;
 letter-spacing: 2px;
 text-transform: uppercase;
 color: var(--silver);
 margin-bottom: 6px;
}
.contact-card-value {
 font-size: 14px;
 color: var(--white);
 font-weight: 400;
}
.contact-card-sub {
 font-size: 11px;
 color: var(--silver);
 margin-top: 4px;
}
.contact-hours {
 background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.02));
 border: 1px solid rgba(201,168,76,0.15);
 padding: 28px;
 border-radius: 2px;
 margin-top: 16px;
}
.contact-hours-title {
 font-size: 11px;
 letter-spacing: 3px;
 text-transform: uppercase;
 color: var(--gold);
 margin-bottom: 16px;
}
.contact-hours-item {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 10px 0;
 border-bottom: 1px solid rgba(255,255,255,0.05);
 font-size: 13px;
}
.contact-hours-item:last-child { border-bottom: none; }
.contact-hours-day { color: var(--silver); }
.contact-hours-time { color: var(--white); font-weight: 500; }
.badge-24 {
 background: rgba(52,199,89,0.15);
 border: 1px solid rgba(52,199,89,0.3);
 color: #34C759;
 padding: 4px 10px;
 border-radius: 100px;
 font-size: 10px;
 letter-spacing: 1px;
 font-weight: 600;
}

.contact-form {
 background: var(--black-3);
 border: 1px solid rgba(255,255,255,0.05);
 padding: 48px;
 border-radius: 2px;
 position: relative;
 overflow: hidden;
}
.contact-form::after {
 content: '';
 position: absolute;
 bottom: -60px; right: -60px;
 width: 200px; height: 200px;
 background: radial-gradient(circle, rgba(74,163,255,0.06) 0%, transparent 70%);
}

/* FLOATING CTA */
.floating-actions {
 position: fixed;
 right: 30px;
 bottom: 30px;
 z-index: 900;
 display: flex;
 flex-direction: column;
 gap: 12px;
 align-items: flex-end;
}
.float-btn {
 display: flex;
 align-items: center;
 gap: 12px;
 padding: 14px 20px;
 border-radius: 4px;
 text-decoration: none;
 font-size: 13px;
 font-weight: 600;
 transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
 cursor: pointer;
 box-shadow: 0 8px 30px rgba(0,0,0,0.4);
 white-space: nowrap;
}
.float-btn.whatsapp {
 background: #25D366;
 color: white;
}
.float-btn.whatsapp:hover { background: #1ebe5e; transform: translateX(-4px); box-shadow: 0 12px 40px rgba(37,211,102,0.4); }
.float-btn.phone {
 background: var(--blue-bright);
 color: white;
}
.float-btn.phone:hover { background: #1a6ec0; transform: translateX(-4px); box-shadow: 0 12px 40px rgba(42,125,212,0.4); }
.float-icon { font-size: 18px; }
.float-label { font-family: var(--font-body); letter-spacing: 0.5px; }

/* FOOTER */
footer {
 background: var(--black);
 border-top: 1px solid rgba(255,255,255,0.05);
 padding: 60px 0 30px;
}
.footer-grid {
 display: grid;
 grid-template-columns: 1.5fr 1fr 1fr 1fr;
 gap: 60px;
 margin-bottom: 60px;
}
.footer-brand {
 display: flex; align-items: center; gap: 12px;
 margin-bottom: 20px;
}
.footer-brand-icon {
 width: 40px; height: 40px;
 background: linear-gradient(135deg, var(--gold), var(--gold-dark));
 border-radius: 6px;
 display: flex; align-items: center; justify-content: center;
 font-size: 16px;
}
.footer-brand-name {
 font-family: var(--font-display);
 font-size: 16px;
 color: var(--gold-light);
 font-weight: 500;
}
.footer-tagline {
 font-size: 12px;
 color: var(--silver);
 line-height: 1.8;
 font-weight: 300;
}
.footer-col-title {
 font-size: 10px;
 letter-spacing: 3px;
 text-transform: uppercase;
 color: var(--gold);
 margin-bottom: 20px;
 font-weight: 600;
}
.footer-links {
 list-style: none;
 display: flex;
 flex-direction: column;
 gap: 12px;
}
.footer-links a {
 color: var(--silver);
 text-decoration: none;
 font-size: 13px;
 font-weight: 300;
 transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding-top: 30px;
 border-top: 1px solid rgba(255,255,255,0.05);
 font-size: 12px;
 color: rgba(168,180,192,0.5);
}
.footer-bottom-right { display: flex; gap: 24px; }
.footer-bottom a { color: rgba(168,180,192,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ANIMATIONS */
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }

.reveal {
 opacity: 0;
 transform: translateY(40px);
 transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
 opacity: 1;
 transform: translateY(0);
}
.reveal-left {
 opacity: 0;
 transform: translateX(-40px);
 transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
 opacity: 0;
 transform: translateX(40px);
 transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* FORM SUCCESS */
.form-success {
 display: none;
 text-align: center;
 padding: 40px;
}
.form-success.show { display: block; }
.form-success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success-title {
 font-family: var(--font-display);
 font-size: 28px;
 color: var(--gold-light);
 margin-bottom: 8px;
}
.form-success-text { color: var(--silver); font-size: 14px; }

/* NOTIFICATION */
.toast {
 position: fixed;
 top: 100px; right: 30px;
 background: var(--black-3);
 border: 1px solid var(--glass-border);
 padding: 16px 24px;
 border-radius: 4px;
 z-index: 9999;
 transform: translateX(200%);
 transition: transform 0.4s ease;
 font-size: 13px;
 color: var(--white);
 display: flex; align-items: center; gap: 12px;
 box-shadow: 0 20px 60px rgba(0,0,0,0.5);
 max-width: 320px;
}
.toast.show { transform: translateX(0); }
.toast-icon { font-size: 20px; }

/* ARABIC MODE */
body.ar .about-content { padding-left: 0; padding-right: 20px; }
body.ar .about-feature:hover { transform: translateX(-8px); }
body.ar .contact-card:hover { transform: translateX(-8px); }
body.ar .nav-logo-main, body.ar .nav-logo-sub { font-family: var(--font-arabic); }
body.ar .hero-title { display: none; }
body.ar .hero-title-ar { display: block; }
body.ar .section-title { font-family: var(--font-arabic); }

/* RESPONSIVE */
@media (max-width: 1024px) {
 .container { padding: 0 40px; }
 nav { padding: 20px 40px; }
 .services-grid { grid-template-columns: repeat(2, 1fr); }
 .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
 .container { padding: 0 24px; }
 nav { padding: 16px 24px; }
 .nav-links { display: none; }
 .hamburger { display: flex; }
 .nav-actions .btn-primary { display: none; }
 section { padding: 70px 0; }
 .about-grid { grid-template-columns: 1fr; gap: 40px; }
 .about-content { padding: 0; }
 .services-grid { grid-template-columns: 1fr; }
 .projects-grid { grid-template-columns: 1fr; }
 .maintenance-wrapper { grid-template-columns: 1fr; gap: 40px; }
 .contact-grid { grid-template-columns: 1fr; gap: 40px; }
 .footer-grid { grid-template-columns: 1fr; gap: 32px; }
 .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
 .hero-cta { flex-direction: column; align-items: center; }
 .form-row { grid-template-columns: 1fr; }
 .glass-panel { display: none; }
 .floating-actions { right: 16px; bottom: 16px; }
 .float-label { display: none; }
 .float-btn { padding: 14px; border-radius: 50%; }
 .float-btn.whatsapp, .float-btn.phone { width: 52px; height: 52px; justify-content: center; }
 .about-badge-float { display: none; }
 .body #cursor, #cursor-ring { display: none; }
}
