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

:root {
  --gold: #C2A65B;
  --gold-light: #E9E4D9;
  --gold-dark: #917E45;
  --dark: #162639;
  --dark-2: #0E1A27;
  --dark-3: #070D14;
  --dark-4: #000000;
  --white: #FFFFFF;
  --white-80: rgba(233, 228, 217, 0.8);
  --white-60: rgba(233, 228, 217, 0.6);
  --white-20: rgba(233, 228, 217, 0.2);
  --white-10: rgba(233, 228, 217, 0.1);
  --white-05: rgba(233, 228, 217, 0.05);
  --gold-10: rgba(194, 166, 91, 0.1);
  --gold-20: rgba(194, 166, 91, 0.2);
  --gold-30: rgba(194, 166, 91, 0.3);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 40px rgba(194, 166, 91, 0.15);
  --transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Alexandria', sans-serif;
  background: var(--dark);
  color: var(--white);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

body.ltr { direction: ltr; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* WP Admin Bar Fix */
body.admin-bar .navbar {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  body.admin-bar .navbar {
    top: 46px !important;
  }
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

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

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

.section-tag {
  display: inline-block;
  background: var(--gold-10);
  border: 1px solid var(--gold-30);
  color: var(--gold);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
.section-header p { color: var(--white-60); font-size: 16px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--white-10);
  box-shadow: 0 4px 30px rgba(22,38,57,0.06);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.logo-img {
  height: 55px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: var(--transition);
}
.nav-logo:hover .logo-img {
  transform: scale(1.03);
}

.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 14px; color: var(--dark);
  letter-spacing: 1px;
  box-shadow: 0 4px 15px var(--gold-30);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-ar { font-size: 16px; font-weight: 800; }
.logo-sub { font-size: 11px; color: var(--gold); font-weight: 500; }

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

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--white-80);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: var(--transition);
}

.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { left: 16px; right: 16px; }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  background: var(--white-10);
  border: 1px solid var(--white-20);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'Alexandria', sans-serif;
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.lang-toggle:hover { background: var(--gold-10); border-color: var(--gold-30); color: var(--gold); }

.btn-nav {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 14px; font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 4px 15px var(--gold-30);
}

.btn-nav:hover { transform: translateY(-2px); box-shadow: 0 8px 25px var(--gold-30); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}

.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 1px; transition: var(--transition); }

.mobile-menu {
  display: none; flex-direction: column;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  padding: 20px 24px;
  border-top: 1px solid var(--white-10);
}

.mobile-menu a { padding: 14px 0; border-bottom: 1px solid var(--white-05); font-size: 16px; font-weight: 500; color: var(--white-80); transition: var(--transition); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
}

.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: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; }

.particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-100px) scale(1); }
}

.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-10); border: 1px solid var(--gold-30);
  color: var(--gold-light);
  padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900; line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .line-1, .hero-title .line-2 { display: block; }

.hero-desc {
  font-size: 16px; color: var(--white-60);
  line-height: 1.8; margin-bottom: 36px;
  max-width: 520px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 16px 32px; border-radius: 12px;
  font-size: 15px; font-weight: 700;
  transition: var(--transition);
  box-shadow: 0 8px 30px var(--gold-30);
  display: inline-flex; align-items: center; gap: 8px;
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px var(--gold-30); }

.btn-ghost {
  background: var(--white-05);
  border: 1px solid var(--white-20);
  color: var(--white);
  padding: 16px 32px; border-radius: 12px;
  font-size: 15px; font-weight: 600;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover { background: var(--white-10); border-color: var(--gold-30); color: var(--gold); transform: translateY(-3px); }

.hero-stats { display: flex; align-items: center; gap: 32px; animation: fadeInUp 0.8s ease 0.8s both; }

.stat-item { display: flex; flex-direction: column; align-items: center; text-align: center; }

.stat-num { font-size: 36px; font-weight: 900; color: var(--gold); line-height: 1; }
.stat-plus { font-size: 24px; font-weight: 900; color: var(--gold); }
.stat-label { font-size: 12px; color: var(--white-60); margin-top: 4px; font-weight: 500; }
.stat-divider { width: 1px; height: 40px; background: var(--white-20); }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  height: 500px;
  animation: fadeInRight 1s ease 0.4s both;
}

/* ===== 3D LOGO ROTATION ANIMATION ===== */
.logo-3d-wrap {
  position: relative;
  width: 350px;
  height: 450px;
  perspective: 1000px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  z-index: 2;
}

.logo-3d-card {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(20deg) rotateY(-20deg);
  animation: floatAndRotate3d 8s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-3d-layer {
  position: absolute;
  width: auto;
  height: 390px;
  object-fit: contain;
  pointer-events: none;
  transition: transform 0.1s ease;
  backface-visibility: hidden;
}

/* Make the front-most layer glow slightly */
.logo-3d-layer:last-child {
  filter: drop-shadow(0 10px 30px rgba(194, 166, 91, 0.45)) brightness(1.15);
}

.logo-3d-shadow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) rotateX(90deg);
  width: 220px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0,0,0,0.6) 0%, transparent 70%);
  filter: blur(10px);
  animation: shadowPulse 8s ease-in-out infinite;
}

/* 3D Animations */
@keyframes floatAndRotate3d {
  0% {
    transform: rotateX(16deg) rotateY(-18deg) translateY(0px);
  }
  50% {
    transform: rotateX(24deg) rotateY(-8deg) translateY(-20px);
  }
  100% {
    transform: rotateX(16deg) rotateY(-18deg) translateY(0px);
  }
}

@keyframes shadowPulse {
  0% {
    transform: translateX(-50%) rotateX(90deg) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateX(-50%) rotateX(90deg) scale(0.85);
    opacity: 0.4;
  }
  100% {
    transform: translateX(-50%) rotateX(90deg) scale(1);
    opacity: 0.8;
  }
}

.hero-card {
  position: absolute;
  background: rgba(14, 26, 39, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid var(--gold-30);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-gold);
  z-index: 3;
}

.floating { top: 60px; right: -20px; animation: floatCard 3s ease-in-out infinite; }
.floating-2 { bottom: 80px; left: -20px; animation: floatCard 3s ease-in-out infinite 1.5s; }

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

.card-icon { font-size: 28px; display: flex; align-items: center; justify-content: center; }
.card-icon .icon-svg { color: var(--gold) !important; }
.card-info { display: flex; flex-direction: column; }
.card-info span { font-size: 13px; font-weight: 700; color: var(--white) !important; }
.card-info small { font-size: 11px; color: var(--gold) !important; }

.card-badge {
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--dark); font-weight: 900;
}

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--white-60); font-size: 12px; z-index: 2;
  animation: fadeIn 1s ease 1.5s both;
}

.scroll-indicator {
  width: 24px; height: 40px;
  border: 2px solid var(--white-20);
  border-radius: 12px;
  display: flex; justify-content: center; padding-top: 6px;
}

.scroll-dot {
  width: 4px; height: 8px;
  background: var(--gold); border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: var(--dark-2);
  position: relative; overflow: hidden;
}

.about::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold-10) 0%, transparent 70%);
  pointer-events: none;
}

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

.about-img-wrap { position: relative; }

.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gold-20); box-shadow: var(--shadow);
}

.about-featured-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-4));
  border: 1px solid var(--gold-30); border-radius: var(--radius);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-gold);
}

.badge-icon { font-size: 32px; }
.about-badge-float strong { display: block; font-size: 14px; font-weight: 700; color: var(--gold); }
.about-badge-float small { font-size: 12px; color: var(--white-60); }

.about-exp-float {
  position: absolute; top: -20px; left: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: var(--radius); padding: 16px 20px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 8px 30px var(--gold-30);
}

.exp-num { font-size: 28px; font-weight: 900; color: var(--dark); line-height: 1; }
.about-exp-float span:last-child { font-size: 12px; color: var(--dark); font-weight: 600; }

.about-content > p { color: var(--white-60); font-size: 15px; line-height: 1.8; margin-bottom: 32px; }

.about-pillars { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }

.about-pillars.full-width-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
  margin-bottom: 0;
  width: 100%;
}

.pillar {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.pillar:hover {
  background: #ffffff;
  border-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(197, 160, 89, 0.12);
}

.pillar-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.pillar h4 {
  font-size: 18px;
  font-weight: 700;
  color: #162639; /* Deep brand color */
  margin-bottom: 8px;
}

.pillar p {
  font-size: 14px;
  color: #4a5568; /* Dark gray for excellent contrast */
  line-height: 1.6;
}

@media (max-width: 767px) {
  .about-pillars.full-width-pillars {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
  }
}

.about-goals { display: flex; flex-direction: column; gap: 12px; }

.goal-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--white-80); }

.goal-check {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--dark); font-weight: 900; flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services { padding: 120px 0; background: var(--dark); position: relative; }

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

.service-card {
  background: var(--dark-3); border: 1px solid var(--white-10);
  border-radius: var(--radius-lg); padding: 36px 28px;
  position: relative; overflow: hidden;
  transition: var(--transition); cursor: pointer;
  opacity: 0; transform: translateY(30px);
}

.service-card.visible { opacity: 1; transform: translateY(0); }

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0); transform-origin: right; transition: var(--transition);
}

.service-card:hover { border-color: var(--gold-30); background: var(--dark-4); transform: translateY(-8px); box-shadow: var(--shadow-gold); }
.service-card:hover::before { transform: scaleX(1); }

.service-card.featured {
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(201,168,76,0.05));
  border-color: var(--gold-30);
}

.service-card.featured::before { transform: scaleX(1); }

.service-icon-wrap {
  width: 64px; height: 64px;
  background: var(--gold-10); border: 1px solid var(--gold-20);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; transition: var(--transition);
}

.service-card:hover .service-icon-wrap { background: var(--gold-20); transform: scale(1.1); }
.service-icon { font-size: 28px; }
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--white-60); line-height: 1.7; margin-bottom: 20px; }
.service-arrow { color: var(--gold); font-size: 20px; transition: var(--transition); }
.service-card:hover .service-arrow { transform: translateX(-8px); }

.featured-badge {
  position: absolute; top: 20px; left: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); padding: 4px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 700;
}

/* ===== PROJECTS ===== */
.projects { padding: 120px 0; background: var(--dark-2); }

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

.project-card {
  background: var(--dark-3); border: 1px solid var(--white-10);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition);
}

.project-card:hover { border-color: var(--gold-30); transform: translateY(-8px); box-shadow: var(--shadow-gold); }

.project-img {
  height: auto;
  overflow: hidden;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-featured-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: var(--transition);
}

.project-card:hover .project-featured-img {
  transform: none;
}

.proj-visual {
  height: 220px; display: flex; align-items: flex-end;
  justify-content: center; gap: 6px; padding: 0 16px;
}

.v1 { background: linear-gradient(180deg, #0d1520, #1a2535); }
.v2 { background: linear-gradient(180deg, #0d1a20, #1a2d35); }
.v3 { background: linear-gradient(180deg, #150d20, #2a1a35); }

.pv-building {
  border-radius: 4px 4px 0 0;
  border: 1px solid var(--gold-20); border-bottom: none;
  position: relative; overflow: hidden;
}

.pv-building::before {
  content: '';
  position: absolute; inset: 4px;
  background: repeating-linear-gradient(0deg, transparent, transparent 6px, var(--gold-10) 6px, var(--gold-10) 7px);
}

.pb1 { width: 50px; height: 100px; background: var(--dark-4); }
.pb2 { width: 70px; height: 150px; background: var(--dark-3); }
.pb3 { width: 50px; height: 120px; background: var(--dark-4); }

.project-info { padding: 24px; }

.proj-tag {
  display: inline-block;
  background: var(--gold-10); border: 1px solid var(--gold-20);
  color: var(--gold); padding: 4px 12px; border-radius: 50px;
  font-size: 11px; font-weight: 600; margin-bottom: 12px;
}

.project-info h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.project-info p { font-size: 13px; color: var(--white-60); line-height: 1.6; }

.projects-cta { text-align: center; }

.btn-outline {
  display: inline-block;
  border: 2px solid var(--gold); color: var(--gold);
  padding: 14px 36px; border-radius: 12px;
  font-size: 15px; font-weight: 700; transition: var(--transition);
}

.btn-outline:hover { background: var(--gold); color: var(--dark); transform: translateY(-3px); box-shadow: 0 8px 30px var(--gold-30); }

/* ===== WHY US ===== */
.why-us { padding: 120px 0; background: var(--dark); position: relative; overflow: hidden; }

.why-us::before {
  content: '';
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--gold-10) 0%, transparent 60%);
  pointer-events: none;
}

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

.why-card {
  background: var(--dark-3); border: 1px solid var(--white-10);
  border-radius: var(--radius-lg); padding: 36px 24px;
  text-align: center; transition: var(--transition);
  position: relative; overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0); transition: var(--transition);
}

.why-card:hover { border-color: var(--gold-30); transform: translateY(-8px); box-shadow: var(--shadow-gold); }
.why-card:hover::after { transform: scaleX(1); }

.why-num { font-size: 48px; font-weight: 900; color: var(--gold-10); line-height: 1; margin-bottom: 16px; }
.why-icon { font-size: 36px; margin-bottom: 16px; display: flex; align-items: center; justify-content: center; }
.why-icon svg { width: 36px; height: 36px; color: var(--gold); }
.why-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; }
.why-card p { font-size: 13px; color: var(--white-60); line-height: 1.7; }

/* Target Banner Style */
.why-target-banner {
  margin-top: 56px;
  background: rgba(14, 26, 39, 0.6);
  border: 1px solid var(--gold-30);
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-gold);
  z-index: 2;
  position: relative;
}

.target-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.target-icon {
  width: 24px;
  height: 24px;
  color: var(--gold);
}

.target-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

.target-desc {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-target-banner {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 12px;
    padding: 20px;
  }
  .target-title-wrap {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===== CONTACT ===== */
.contact { padding: 120px 0; background: var(--dark-2); position: relative; overflow: hidden; }

.contact::before {
  content: '';
  position: absolute; top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold-10) 0%, transparent 70%);
  pointer-events: none;
}

.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info > p { color: var(--white-60); font-size: 15px; line-height: 1.8; margin-bottom: 40px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; }

.contact-item { display: flex; align-items: flex-start; gap: 16px; }

.ci-icon {
  width: 44px; height: 44px;
  background: var(--gold-10); border: 1px solid var(--gold-20);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}

.contact-item > div { display: flex; flex-direction: column; gap: 4px; }
.contact-item span { font-size: 12px; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item a, .contact-item p { font-size: 14px; color: var(--white-80); transition: var(--transition); }
.contact-item a:hover { color: var(--gold); }

.contact-form-wrap {
  background: var(--dark-3); border: 1px solid var(--white-10);
  border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow);
}

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

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--white-80); }

.form-group input,
.form-group select {
  background: var(--dark-4); border: 1px solid var(--white-10);
  border-radius: 10px; padding: 14px 16px;
  font-family: 'Alexandria', sans-serif;
  font-size: 14px; color: var(--white);
  transition: var(--transition); outline: none; width: 100%;
}

.form-group input:focus,
.form-group select:focus { border-color: var(--gold-30); background: var(--dark-3); box-shadow: 0 0 0 3px var(--gold-10); }

.form-group input::placeholder { color: var(--white-60); }

.select-wrap { position: relative; }
.select-wrap select { appearance: none; cursor: pointer; }
.select-arrow { position: absolute; top: 50%; left: 16px; transform: translateY(-50%); color: var(--gold); font-size: 10px; pointer-events: none; }

.btn-submit {
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  color: var(--dark); border: none;
  padding: 16px 32px; border-radius: 12px;
  font-family: 'Alexandria', sans-serif;
  font-size: 16px; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  box-shadow: 0 8px 30px var(--gold-30); width: 100%;
}

.btn-submit:hover { transform: translateY(-3px); box-shadow: 0 16px 40px var(--gold-30); }
.btn-arrow { font-size: 20px; transition: var(--transition); }
.btn-submit:hover .btn-arrow { transform: translateX(-6px); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8); backdrop-filter: blur(10px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: var(--transition);
}

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

.modal-box {
  background: var(--dark-3); border: 1px solid var(--gold-30);
  border-radius: var(--radius-lg); padding: 60px 48px;
  max-width: 520px; width: 90%; text-align: center;
  box-shadow: var(--shadow-gold);
  transform: scale(0.8); transition: var(--transition);
}

.modal-overlay.active .modal-box { transform: scale(1); }

.modal-icon { font-size: 64px; margin-bottom: 20px; animation: bounceIn 0.6s ease; }

@keyframes bounceIn {
  0% { transform: scale(0); }
  60% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.modal-box h2 { font-size: 32px; font-weight: 900; color: var(--gold); margin-bottom: 8px; }
.modal-box h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.modal-box p { font-size: 14px; color: var(--white-60); line-height: 1.8; margin-bottom: 32px; }

.modal-close {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark); border: none;
  padding: 14px 36px; border-radius: 12px;
  font-family: 'Alexandria', sans-serif;
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: var(--transition);
}

.modal-close:hover { transform: translateY(-2px); box-shadow: 0 8px 25px var(--gold-30); }

/* ===== FOOTER ===== */
.footer { background: var(--dark); border-top: 1px solid var(--white-10); padding: 80px 0 0; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 48px; margin-bottom: 60px; }

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand > p { font-size: 14px; color: var(--white-60); line-height: 1.7; margin-bottom: 20px; }

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

.social-link {
  width: 40px; height: 40px;
  background: var(--white-05); border: 1px solid var(--white-10);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; transition: var(--transition);
}

.social-link:hover { background: var(--gold-10); border-color: var(--gold-30); transform: translateY(-3px); }

.footer-links h4, .footer-services h4, .footer-contact h4 {
  font-size: 15px; font-weight: 700; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid var(--white-10);
}

.footer-links ul, .footer-services ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a, .footer-services li { font-size: 14px; color: var(--white-60); transition: var(--transition); cursor: pointer; }
.footer-links a:hover, .footer-services li:hover { color: var(--gold); }

.footer-contact p { font-size: 14px; color: var(--white-60); margin-bottom: 8px; }
.footer-contact a { color: var(--white-60); transition: var(--transition); }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--white-10); padding: 24px 0;
  display: flex; justify-content: space-between; align-items: center;
}

.footer-bottom p { font-size: 13px; color: var(--white-60); }

/* ===== GENERAL PAGES (e.g. PRIVACY POLICY) ===== */
.page-header {
  padding: 160px 0 60px;
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 100%);
  border-bottom: 1px solid var(--white-10);
  text-align: center;
}

.page-content {
  padding: 80px 0;
  background: var(--dark-2);
}

.page-content-inner {
  max-width: 800px;
  margin: 0 auto;
}

.page-content h2, .page-content h3 {
  color: var(--gold-light);
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-content h2 { font-size: 24px; }
.page-content h3 { font-size: 20px; }

.page-content p {
  color: var(--white-80);
  margin-bottom: 24px;
  line-height: 1.8;
  font-size: 15px;
}

.page-content ul {
  margin-bottom: 24px;
  padding-right: 20px;
}

.page-content li {
  color: var(--white-80);
  margin-bottom: 12px;
  font-size: 15px;
  position: relative;
}

.page-content li::before {
  content: "•";
  color: var(--gold);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-right: -1em;
}/* ===== SVG ICON STYLING ===== */
.icon-svg {
  width: 1.2em;
  height: 1.2em;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: inline-block;
  vertical-align: middle;
  transition: var(--transition);
}

.hero-badge .icon-svg {
  margin-left: 8px;
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.hero-card .icon-svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
}

.about-badge-float .icon-svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.pillar-icon .icon-svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.service-icon .icon-svg {
  width: 32px;
  height: 32px;
  color: var(--gold);
}

.why-icon .icon-svg {
  width: 40px;
  height: 40px;
  color: var(--gold);
}

.ci-icon .icon-svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.social-link .icon-svg {
  width: 18px;
  height: 18px;
  color: var(--white-60);
  fill: none;
}

.social-link:hover .icon-svg {
  color: var(--gold);
}

.modal-icon .icon-svg {
  width: 64px;
  height: 64px;
  color: var(--gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .btn-nav { display: none; }
  .hamburger { display: flex; }
  .services-grid, .projects-grid, .contact-grid, .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-stats { gap: 16px; }
  .contact-form-wrap { padding: 24px; }
}

@media (max-width: 480px) {
  .hero { padding: 100px 16px 60px; }
  .hero-cta { flex-direction: column; }
  .modal-box { padding: 40px 24px; }
}

/* ===== LOGO VISIBILITY CONTROLS ===== */
.logo-img { display: none !important; }

/* Arabic Top (Not Scrolled) */
html[lang^="ar"] .navbar:not(.scrolled) .logo-ar-light { display: block !important; }
/* Arabic Scrolled */
html[lang^="ar"] .navbar.scrolled .logo-ar-dark { display: block !important; }

/* English Top (Not Scrolled) */
html[lang^="en"] .navbar:not(.scrolled) .logo-en-light { display: block !important; }
/* English Scrolled */
html[lang^="en"] .navbar.scrolled .logo-en-dark { display: block !important; }

/* Footer Logos */
html[lang^="ar"] .footer .footer-logo-ar { display: block !important; }
html[lang^="en"] .footer .footer-logo-en { display: block !important; }

/* ===== SCROLLED NAVBAR LINKS OVERRIDES (LIGHT BAR) ===== */
.navbar.scrolled .nav-links a {
  color: #162639 !important;
}
.navbar.scrolled .nav-links a:hover {
  color: var(--gold) !important;
}
.navbar.scrolled .lang-toggle {
  color: #162639 !important;
  border-color: rgba(22, 38, 57, 0.15) !important;
}
.navbar.scrolled .lang-toggle:hover {
  color: var(--gold) !important;
  border-color: var(--gold-30) !important;
}
.navbar.scrolled .hamburger span {
  background: #162639 !important;
}

/* ===== LIGHT SECTIONS OVERRIDES ===== */
.light-section {
  background: #FFFFFF !important;
  color: #162639 !important;
}

.light-section .section-title {
  color: #162639 !important;
}

.light-section p, 
.light-section .section-desc, 
.light-section .goal-item span {
  color: #334356 !important;
}

.light-section .section-tag {
  background: rgba(194, 166, 91, 0.08) !important;
  color: var(--gold) !important;
}

/* Specific styling for Light About Section */
.about.light-section {
  background: #FFFFFF !important;
}

.about.light-section .about-badge-float {
  background: #FFFFFF !important;
  border-color: var(--gold-20) !important;
  box-shadow: 0 10px 30px rgba(22, 38, 57, 0.06) !important;
}

.about.light-section .about-badge-float small {
  color: #66788F !important;
}

/* Specific styling for Light Projects Section */
.projects.light-section {
  background: #F7F7F9 !important;
}

.projects.light-section .project-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(22, 38, 57, 0.06) !important;
  box-shadow: 0 10px 30px rgba(22, 38, 57, 0.04) !important;
}

.projects.light-section .project-info h4 {
  color: #162639 !important;
}

.projects.light-section .project-info p {
  color: #66788F !important;
}

/* Specific styling for Light Contact Section */
.contact.light-section {
  background: #FFFFFF !important;
}

.contact.light-section .contact-item {
  border-bottom: 1px solid rgba(22, 38, 57, 0.06) !important;
}

.contact.light-section .contact-item p,
.contact.light-section .contact-item a {
  color: #162639 !important;
}

.contact.light-section .contact-item a:hover {
  color: var(--gold) !important;
}

.contact.light-section .contact-form-wrap {
  background: #162639 !important;
  border: 1px solid var(--gold-30) !important;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(22, 38, 57, 0.25) !important;
}

.contact.light-section .form-group label {
  color: #FFFFFF !important;
}

.contact.light-section .form-group input, 
.contact.light-section .form-group select {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #FFFFFF !important;
}

.contact.light-section .form-group select option {
  background: #162639 !important;
  color: #FFFFFF !important;
}

.contact.light-section .form-group input::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

.contact.light-section .form-group input:focus, 
.contact.light-section .form-group select:focus {
  border-color: var(--gold) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 0 0 3px rgba(194, 166, 91, 0.2) !important;
}

.contact.light-section .select-arrow {
  color: var(--gold) !important;
}

/* ===== WHATSAPP BUTTONS ===== */
.btn-whatsapp-header {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366 !important;
  color: #FFFFFF !important;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
  border: none;
}

.btn-whatsapp-header:hover {
  background: #20BA5C !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-header .icon-svg {
  width: 16px;
  height: 16px;
  color: #FFFFFF !important;
}

@media (max-width: 991px) {
  .btn-whatsapp-header span { display: none; }
  .btn-whatsapp-header { padding: 8px; border-radius: 50%; }
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  background: #25D366 !important;
  color: #FFFFFF !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 9999;
  text-decoration: none;
  animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float-btn:hover {
  background: #20BA5C !important;
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  color: #FFFFFF !important;
}

.whatsapp-float-btn .icon-svg {
  width: 28px;
  height: 28px;
  color: #FFFFFF !important;
}

@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
