

:root {
  --navy: #25355d;
  --navy-dark: #1a2540;
  --navy-deeper: #0f1827;
  --navy-mid: #2e3f70;
  --navy-light: #3d5080;
  --navy-soft: #4a6299;
  --gold: #c9a96e;
  --gold-light: #e2c99a;
  --gold-dim: #a07840;
  --white: #ffffff;
  --off-white: #f5f2ee;
  --cream: #ece8e0;
  --text-muted: #a8a8a8;
  --overlay: rgba(15,24,39,0.7);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Tajawal', sans-serif;
  background: var(--navy-deeper);
  color: var(--white);
  overflow-x: hidden;
  direction: rtl;
}

body.lang-en { direction: ltr; }





/* SVG Logo sizing */
.logo-wrap svg, .logo-wrap a svg {
  height: 88px;
  width: auto;
  transition: height 0.3s;
}
.navbar.scrolled .logo-wrap svg { height: 68px; }
.footer-logo-svg svg { height: 80px; width: auto; margin-bottom: 16px; display: block; }
.footer-brand { display: flex; flex-direction: column; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy-deeper); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background: rgba(15,24,39,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  height: 68px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}




.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
  font-family: 'Tajawal', sans-serif;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  right: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
body.lang-en .nav-links a::after { right: auto; left: 0; }

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-toggle {
  background: none;
  border: 1px solid rgba(201,169,110,0.5);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 2px;
  cursor: pointer;
  font-size: 13px;
  font-family: 'Tajawal', sans-serif;
  letter-spacing: 1px;
  transition: all 0.3s;
}
.lang-toggle:hover { background: var(--gold); color: var(--navy-deeper); }

.nav-cta {
  background: var(--gold);
  color: var(--navy-deeper);
  padding: 10px 24px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  font-family: 'Tajawal', sans-serif;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,24,39,0.92) 0%, rgba(37,53,93,0.7) 50%, rgba(15,24,39,0.85) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 5%;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.3s forwards;
  font-family: 'Tajawal', sans-serif;
}

.hero-title {
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-title .gold { color: var(--gold); }

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 48px;
  font-weight: 300;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-deeper);
  padding: 16px 40px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  font-family: 'Tajawal', sans-serif;
  border: 2px solid var(--gold);
}
.btn-primary:hover { background: transparent; color: var(--gold); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(201,169,110,0.3); }

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 16px 40px;
  border-radius: 2px;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all 0.3s;
  font-family: 'Tajawal', sans-serif;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  border-top: 1px solid rgba(201,169,110,0.2);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  padding: 40px 5%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.stat-item { padding: 20px; }

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
  direction: ltr;
  display: block;
}

.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 1px;
  font-weight: 300;
}

/* ── SECTION COMMON ── */
.section { padding: 100px 5%; }

.section-tag {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}
body.lang-en .section-tag::before { display: none; }
body.lang-en .section-tag::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
  font-weight: 300;
  max-width: 600px;
}

/* ── ABOUT ── */
.about-section {
  background: linear-gradient(160deg, var(--navy-deeper) 0%, var(--navy) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-visual {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 4px;
}

.about-img-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-dark) 100%);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--gold);
  color: var(--navy-deeper);
  padding: 30px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.about-badge .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  display: block;
}
.about-badge .lbl { font-size: 12px; font-weight: 700; letter-spacing: 1px; margin-top: 4px; }

.about-features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.15);
  border-radius: 4px;
  transition: all 0.3s;
}
.feature-chip:hover { background: rgba(201,169,110,0.08); border-color: rgba(201,169,110,0.4); }

.feature-chip i { color: var(--gold); font-size: 18px; width: 20px; flex-shrink: 0; }
.feature-chip span { font-size: 14px; color: rgba(255,255,255,0.8); }

/* ── SERVICES ── */
.services-section {
  background: var(--navy-deeper);
}

.services-header {
  max-width: 1200px;
  margin: 0 auto 60px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--navy);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s ease;
  border: 1px solid rgba(255,255,255,0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
body.lang-en .service-card::before { transform-origin: left; }

.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--navy-mid); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }

.service-icon {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: all 0.3s;
  font-size: 26px;
  color: var(--gold);
}
.service-card:hover .service-icon { background: var(--gold); color: var(--navy-deeper); border-color: var(--gold); }

.service-num {
  position: absolute;
  top: 30px;
  left: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 60px;
  font-weight: 300;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  direction: ltr;
}
body.lang-en .service-num { left: auto; right: 40px; }

.service-title {
  font-family: 'Tajawal', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
  transition: color 0.3s;
}
.service-card:hover .service-title { color: var(--gold); }

.service-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  font-weight: 300;
}

.service-arrow {
  position: absolute;
  bottom: 30px;
  left: 40px;
  color: var(--gold);
  font-size: 18px;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s;
}
body.lang-en .service-arrow { left: auto; right: 40px; transform: translateX(10px); }
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ── PROJECTS ── */
.projects-section {
  background: linear-gradient(180deg, var(--navy-deeper) 0%, var(--navy) 100%);
  padding: 100px 0;
}

.projects-header {
  padding: 0 5%;
  max-width: 1200px;
  margin: 0 auto 60px;
}

.projects-slider {
  display: flex;
  gap: 24px;
  padding: 0 5%;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.projects-slider::-webkit-scrollbar { display: none; }

.project-card {
  min-width: 380px;
  height: 500px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  flex-shrink: 0;
  cursor: pointer;
}

.project-bg {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
}
.project-card:hover .project-bg { transform: scale(1.05); }

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,24,39,0.95) 0%, rgba(15,24,39,0.2) 60%, transparent 100%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s;
}

.project-cat {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.project-name {
  font-family: 'Tajawal', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.project-loc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── WHY US ── */
.whyus-section {
  background: var(--navy-deeper);
  position: relative;
  overflow: hidden;
}

.whyus-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,53,93,0.4) 0%, transparent 70%);
  pointer-events: none;
}

.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.whyus-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.why-item {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border-radius: 4px;
  border-right: 3px solid transparent;
  transition: all 0.3s;
}
body.lang-en .why-item { border-right: none; border-left: 3px solid transparent; }
.why-item:hover { background: rgba(201,169,110,0.06); border-right-color: var(--gold); }
body.lang-en .why-item:hover { border-left-color: var(--gold); border-right-color: transparent; }

.why-icon {
  width: 50px;
  height: 50px;
  background: rgba(201,169,110,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 20px;
  transition: all 0.3s;
}
.why-item:hover .why-icon { background: var(--gold); color: var(--navy-deeper); }

.why-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.why-item p { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.8; font-weight: 300; }

.whyus-visual {
  position: relative;
}

.why-quote-block {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 60px 50px;
  border-radius: 4px;
  position: relative;
  border: 1px solid rgba(201,169,110,0.15);
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 120px;
  color: var(--gold);
  opacity: 0.15;
  line-height: 0.6;
  position: absolute;
  top: 40px;
  right: 40px;
}
body.lang-en .quote-mark { right: auto; left: 40px; }

.quote-text {
  font-family: 'Tajawal', sans-serif;
  font-size: 22px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  color: var(--navy-deeper);
}

.author-name { font-weight: 700; font-size: 15px; }
.author-title { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ── CONTACT ── */
.contact-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.contact-section::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 700px;
  margin: 0 auto;
  align-items: start;
}

.contact-info {
  padding-top: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,169,110,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item h4 { font-size: 13px; color: rgba(255,255,255,0.5); letter-spacing: 1px; margin-bottom: 6px; }
.contact-item p, .contact-item a {
  font-size: 16px;
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.contact-item a:hover { color: var(--gold); }

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 17px;
  transition: all 0.3s;
}
.social-btn:hover { background: var(--gold); color: var(--navy-deeper); border-color: var(--gold); transform: translateY(-3px); }










body.lang-en 










/* ── FOOTER ── */
.footer {
  background: var(--navy-deeper);
  border-top: 1px solid rgba(201,169,110,0.1);
  padding: 60px 5% 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.footer-brand img { height: 48px; margin-bottom: 20px; }

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── WHATSAPP ── */
.wa-fab {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
  transition: all 0.3s;
  z-index: 999;
  animation: waPulse 2s ease-in-out infinite;
}
body.lang-en .wa-fab { left: 32px; right: auto; }
.wa-fab:hover { transform: scale(1.15); box-shadow: 0 12px 40px rgba(37,211,102,0.6); animation: none; }

.wa-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(15,24,39,0.95);
  color: white;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 13px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  border: 1px solid rgba(201,169,110,0.3);
}
body.lang-en .wa-tooltip { right: auto; left: 70px; }
.wa-fab:hover .wa-tooltip { opacity: 1; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

@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; }
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 50px rgba(37,211,102,0.7); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,16,30,0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 24px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-family: 'Tajawal', sans-serif;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 30px;
  left: 30px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
}
body.lang-en .mobile-close { left: auto; right: 30px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid, .whyus-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-badge { bottom: -20px; left: -10px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .project-card { min-width: 300px; height: 400px; }
  .about-features { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  
  .why-quote-block { padding: 40px 30px; }
}



/* ── HERO ANIMATED BG ── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: slideShow 24s infinite;
  transform: scale(1.08);
  transition: transform 0.1s;
}
.hero-slide:nth-child(1) {
  animation-delay: 0s;
  background-image: url('../images/hero/hero-interior-01.jpg');
}
.hero-slide:nth-child(2) {
  animation-delay: 6s;
  background-image: url('../images/hero/hero-interior-02.jpg');
}
.hero-slide:nth-child(3) {
  animation-delay: 12s;
  background-image: url('../images/hero/hero-interior-03.jpg');
}
.hero-slide:nth-child(4) {
  animation-delay: 18s;
  background-image: url('../images/hero/hero-interior-04.jpg');
}

@keyframes slideShow {
  0%   { opacity: 0; transform: scale(1.08); }
  5%   { opacity: 1; transform: scale(1.05); }
  22%  { opacity: 1; transform: scale(1.0); }
  27%  { opacity: 0; transform: scale(1.0); }
  100% { opacity: 0; transform: scale(1.08); }
}

/* Hero overlay - richer gradient for text legibility */
.hero-overlay {
  background: linear-gradient(
    160deg,
    rgba(10,16,30,0.88) 0%,
    rgba(37,53,93,0.55) 45%,
    rgba(10,16,30,0.82) 100%
  ) !important;
}

/* Slide dots indicator */
.slide-dots {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}
.slide-dot {
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
}
.slide-dot.active {
  background: var(--gold);
  width: 40px;
}


@media (max-width: 768px) {
  .lang-toggle {
    padding: 5px 13px;
    font-size: 12px;
    border-radius: 2px;
  }
  .nav-right {
    gap: 10px;
  }
}


/* ── STICKY NAVBAR ENHANCED ── */
.navbar {
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.navbar.scrolled {
  box-shadow: 0 2px 40px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(201,169,110,0.25);
}
.nav-links a.active {
  color: var(--gold) !important;
}
.nav-links a.active::after {
  width: 100% !important;
}

/* ── SCROLL PROGRESS BAR ── */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 2000;
  transition: width 0.1s linear;
}

/* ── BACK TO TOP BUTTON ── */
#backToTop {
  position: fixed;
  bottom: 110px;
  left: 32px;
  width: 46px;
  height: 46px;
  background: var(--navy);
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 4px;
  color: var(--gold);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  text-decoration: none;
}
#backToTop.visible {
  opacity: 1;
  transform: translateY(0);
}
#backToTop:hover {
  background: var(--gold);
  color: var(--navy-deeper);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ── QUICK NAV FLOATING DOTS (section jump) ── */
#quickNav {
  position: fixed;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 997;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.qnav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(201,169,110,0.3);
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.qnav-dot:hover, .qnav-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}
.qnav-dot .qnav-label {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(15,24,39,0.92);
  color: var(--gold);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  border: 1px solid rgba(201,169,110,0.2);
  font-family: 'Tajawal', sans-serif;
}
.qnav-dot:hover .qnav-label {
  opacity: 1;
}

@media (max-width: 768px) {
  #quickNav { display: none; }
  #backToTop { left: 20px; bottom: 100px; width: 40px; height: 40px; font-size: 16px; }
}

/* ── LINE ART VISUAL ── */
.about-img-placeholder {
  border: 1px solid rgba(201,169,110,0.15) !important;
  border-radius: 8px !important;
}

/* ── STATS 4 columns fix ── */
.stats-grid {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
}


/* ── CONSULTATION FAB ── */
.consult-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.consult-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  border: 1px solid rgba(201,169,110,0.5);
  color: var(--white);
  padding: 14px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Tajawal', sans-serif;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: all 0.3s;
  white-space: nowrap;
  animation: consultPulse 3s ease-in-out infinite;
}
.consult-btn:hover {
  background: var(--gold);
  color: var(--navy-deeper);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(201,169,110,0.35);
  animation: none;
}
.consult-btn i { font-size: 18px; color: var(--gold); transition: color 0.3s; }
.consult-btn:hover i { color: var(--navy-deeper); }
.consult-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 14px; height: 14px;
  background: #25d366;
  border-radius: 50%;
  border: 2px solid var(--navy-deeper);
  animation: badgePing 1.5s ease-in-out infinite;
}
@keyframes consultPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 0 rgba(201,169,110,0.2); }
  50% { box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 8px rgba(201,169,110,0); }
}
@keyframes badgePing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
@media (max-width: 768px) {
  .consult-fab { bottom: 24px; right: 20px; }
  .consult-btn { padding: 12px 18px; font-size: 13px; }
  .consult-btn .btn-text { display: none; }
  .consult-btn { border-radius: 50%; width: 54px; height: 54px; justify-content: center; padding: 0; }
  .consult-btn i { font-size: 22px; }
}


/* ── EXTERNAL LOGO IMG (replaces inline SVG) ── */
.nav-logo-img {
  height: 88px !important;
  width: auto !important;
  max-width: 300px;
  display: block;
  transition: height 0.3s;
}
.navbar.scrolled .nav-logo-img {
  height: 68px !important;
}
.footer-logo-img {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}


/* ── CONTACT CONSULT BUTTON ── */
.contact-consult-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #25d366;
  color: #fff;
  padding: 16px 32px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Tajawal', sans-serif;
  text-decoration: none;
  margin-bottom: 40px;
  transition: all 0.3s;
  box-shadow: 0 6px 30px rgba(37,211,102,0.3);
}
.contact-consult-btn:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,0.5);
}
.contact-consult-btn i { font-size: 20px; }
.contact-arrow { font-size: 14px !important; }
body.lang-en .contact-arrow { transform: rotate(180deg); }

/* ── FOOTER REDESIGN ── */




.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 24px;
  text-align: center;
}





.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,169,110,0.15);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: 100%;
  margin: 0;
  padding: 24px 5%;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 10px;
  text-align: center;
}
.footer-bottom-center {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 768px) {
  
  .footer-bottom { flex-direction: column; gap: 6px; }
  .contact-consult-btn { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
  
}


/* ── FOOTER REDESIGNED ── */
.footer {
  background: var(--navy-deeper);
  border-top: 1px solid rgba(201,169,110,0.12);
}
.footer-main-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 5% 50px;
  align-items: start;
}
.footer-brand-col .footer-logo-img {
  height: 70px !important;
  width: auto;
  display: block;
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 28px;
}



.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201,169,110,0.12);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 13px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.3s, padding 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col ul li a:hover { color: rgba(255,255,255,0.85); }
.footer-li-icon {
  font-size: 9px;
  color: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
  transition: opacity 0.3s;
}
body.lang-en .footer-li-icon { transform: rotate(180deg); }
.footer-col ul li a:hover .footer-li-icon { opacity: 1; }
.footer-contact-icon {
  width: 28px;
  height: 28px;
  background: rgba(201,169,110,0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 11px;
  flex-shrink: 0;
  transition: background 0.3s;
}
.footer-col ul li a:hover .footer-contact-icon {
  background: rgba(201,169,110,0.18);
}
/* bottom bar */
.footer-bottom-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 5%;
  border-top: 1px solid rgba(255,255,255,0.05);
  max-width: 100%;
}
.footer-bottom-right, .footer-bottom-left {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}
.footer-bottom-center-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.2);
}
.footer-dot {
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.4;
}
.footer-back-top {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s;
}
.footer-back-top:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,169,110,0.08);
}
@media (max-width: 1024px) {
  .footer-main-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 640px) {
  .footer-main-grid { grid-template-columns: 1fr; gap: 32px; padding: 50px 5% 30px; }
  .footer-bottom-bar { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-center-line { display: none; }
}


/* ══════════════════════════════════════════
   LUXURY WHITESPACE & BREATHING ROOM
   ══════════════════════════════════════════ */

/* ── Section spacing ── */
.section {
  padding: 140px 8% !important;
}
.stats-bar {
  padding: 60px 8% !important;
}
.services-section {
  padding: 140px 8% !important;
}
.about-section {
  padding: 140px 8% !important;
}
.whyus-section {
  padding: 140px 8% !important;
}
.contact-section {
  padding: 140px 8% !important;
}
.projects-section {
  padding: 140px 0 !important;
}

/* ── Section headings — more breathing ── */
.section-tag {
  margin-bottom: 22px !important;
  letter-spacing: 6px !important;
  font-size: 10px !important;
}
.section-title {
  font-size: clamp(36px, 5vw, 64px) !important;
  line-height: 1.15 !important;
  margin-bottom: 28px !important;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: 18px !important;
  line-height: 2 !important;
  max-width: 580px;
  color: rgba(255,255,255,0.5) !important;
}

/* ── About grid wider gap ── */
.about-grid {
  gap: 100px !important;
}
.about-content {
  padding-top: 20px;
}
.about-features {
  margin-top: 50px !important;
  gap: 16px !important;
}
.feature-chip {
  padding: 20px !important;
}

/* ── Services cards more padding ── */
.services-header {
  margin-bottom: 80px !important;
}
.service-card {
  padding: 60px 48px 60px !important;
}
.service-icon {
  margin-bottom: 36px !important;
  width: 72px !important;
  height: 72px !important;
  font-size: 28px !important;
}
.service-title {
  font-size: 24px !important;
  margin-bottom: 18px !important;
  letter-spacing: 0.3px;
}
.service-desc {
  font-size: 15px !important;
  line-height: 2 !important;
  color: rgba(255,255,255,0.45) !important;
}

/* ── Stats more breathing ── */
.stat-item {
  padding: 30px 20px !important;
}
.stat-num {
  font-size: 68px !important;
  margin-bottom: 12px !important;
}
.stat-label {
  font-size: 12px !important;
  letter-spacing: 2px !important;
}

/* ── Why us ── */
.whyus-grid {
  gap: 100px !important;
}
.whyus-items {
  gap: 24px !important;
  margin-top: 50px !important;
}
.why-item {
  padding: 32px !important;
  gap: 28px !important;
}
.why-item h4 {
  font-size: 20px !important;
  margin-bottom: 12px !important;
  letter-spacing: 0.2px;
}
.why-item p {
  font-size: 15px !important;
  line-height: 1.95 !important;
}
.why-quote-block {
  padding: 70px 60px !important;
}
.quote-text {
  font-size: 24px !important;
  line-height: 2 !important;
  margin-bottom: 40px !important;
}

/* ── Contact section ── */
.contact-grid {
  gap: 100px !important;
}
.contact-info {
  padding-top: 30px !important;
}
.contact-item {
  margin-bottom: 44px !important;
  padding-bottom: 44px !important;
  gap: 24px !important;
}
.contact-item h4 {
  font-size: 11px !important;
  letter-spacing: 2px !important;
  margin-bottom: 8px !important;
}
.contact-item p, .contact-item a {
  font-size: 17px !important;
}
.contact-consult-btn {
  margin-bottom: 50px !important;
  padding: 18px 36px !important;
  font-size: 17px !important;
}

/* ── Hero more generous ── */
.hero-title {
  font-size: clamp(48px, 8vw, 96px) !important;
  line-height: 1.05 !important;
  margin-bottom: 28px !important;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 22px) !important;
  margin-bottom: 60px !important;
  line-height: 2 !important;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-eyebrow {
  letter-spacing: 8px !important;
  margin-bottom: 32px !important;
}
.btn-primary, .btn-outline {
  padding: 18px 48px !important;
  font-size: 16px !important;
  letter-spacing: 1px !important;
}
.hero-btns {
  gap: 20px !important;
}

/* ── Navbar more generous ── */
.navbar {
  height: 90px !important;
  padding: 0 8% !important;
}
.navbar.scrolled {
  height: 72px !important;
}
.nav-links {
  gap: 50px !important;
}
.nav-links a {
  font-size: 14px !important;
  letter-spacing: 1px !important;
}

/* ── Footer ── */
.footer-main-grid {
  padding: 90px 8% 60px !important;
  gap: 60px !important;
}
.footer-col h4 {
  margin-bottom: 28px !important;
  padding-bottom: 16px !important;
  letter-spacing: 4px !important;
}
.footer-col ul li {
  margin-bottom: 16px !important;
}
.footer-col ul li a {
  font-size: 14px !important;
}

/* ── General refinements ── */
body {
  font-size: 16px;
}
p {
  line-height: 1.95;
}

/* ── Responsive: maintain proportions on mobile ── */
@media (max-width: 1024px) {
  .section { padding: 100px 6% !important; }
  .services-section, .about-section, .whyus-section, .contact-section { padding: 100px 6% !important; }
  .about-grid, .whyus-grid, .contact-grid { gap: 60px !important; }
  .navbar { padding: 0 6% !important; }
}
@media (max-width: 768px) {
  .section { padding: 80px 5% !important; }
  .services-section, .about-section, .whyus-section, .contact-section { padding: 80px 5% !important; }
  .service-card { padding: 44px 32px 44px !important; }
  .why-quote-block { padding: 50px 36px !important; }
  .navbar { padding: 0 5% !important; height: 76px !important; }
  .hero-btns { gap: 14px !important; }
}


/* ── SVG Icons ── */
.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
}
.svg-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
/* Size overrides for common contexts */
.service-icon .svg-icon { width: 28px; height: 28px; }
.why-icon .svg-icon { width: 22px; height: 22px; }
.contact-icon .svg-icon { width: 22px; height: 22px; }
.social-btn .svg-icon { width: 18px; height: 18px; }
.wa-fab .svg-icon { width: 26px; height: 26px; }
.consult-btn .svg-icon { width: 20px; height: 20px; }
.footer-contact-icon .svg-icon { width: 13px; height: 13px; }
.footer-li-icon.svg-icon { width: 10px; height: 10px; }
.top-social-links .svg-icon { width: 14px; height: 14px; }
.footer-back-top .svg-icon { width: 14px; height: 14px; }
#backToTop .svg-icon { width: 16px; height: 16px; }
.mobile-close .svg-icon { width: 22px; height: 22px; }
.nav-cta .svg-icon, .contact-consult-btn .svg-icon { width: 18px; height: 18px; }


/* ══════════════════════════════════════════
   NEW PROFESSIONAL SECTIONS
   ══════════════════════════════════════════ */

/* ── PROCESS / TIMELINE ── */
.process-section { background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deeper) 100%); }
.process-header { max-width: 1200px; margin: 0 auto 80px; text-align: center; }
.process-header .section-tag { justify-content: center; }
.process-header .section-sub { margin: 0 auto; }
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.process-step { position: relative; text-align: center; }
.process-num {
  width: 80px; height: 80px;
  margin: 0 auto 28px;
  border: 1px solid rgba(201,169,110,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; color: var(--gold);
  background: var(--navy-deeper);
  position: relative; z-index: 2;
  transition: all 0.4s;
}
.process-step:hover .process-num { background: var(--gold); color: var(--navy-deeper); transform: scale(1.05); }
.process-line {
  position: absolute;
  top: 40px; right: -50%;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, rgba(201,169,110,0.3), rgba(201,169,110,0.05));
  z-index: 1;
}
body.lang-en .process-line { right: auto; left: -50%; }
.process-content h3 { font-size: 20px; font-weight: 700; margin-bottom: 14px; color: var(--white); }
.process-content p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.9; font-weight: 300; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: linear-gradient(160deg, var(--navy-deeper) 0%, var(--navy) 100%); }
.testimonials-header { max-width: 1200px; margin: 0 auto 70px; text-align: center; }
.testimonials-header .section-tag { justify-content: center; }
.testimonials-header .section-sub { margin: 0 auto; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 30px; max-width: 1200px; margin: 0 auto;
}
.testimonial-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,169,110,0.12);
  border-radius: 8px; padding: 44px 36px;
  transition: all 0.4s; position: relative;
}
.testimonial-card:hover {
  background: rgba(201,169,110,0.05);
  border-color: rgba(201,169,110,0.3);
  transform: translateY(-6px);
}
.testimonial-stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 24px; }
.testimonial-text {
  font-size: 16px; line-height: 2; color: rgba(255,255,255,0.7);
  font-weight: 300; margin-bottom: 32px; min-height: 130px;
}
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 20px; color: var(--navy-deeper);
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 16px; color: var(--white); margin-bottom: 4px; }
.testimonial-role { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ── FAQ ── */
.faq-section { background: var(--navy-deeper); }
.faq-header { max-width: 800px; margin: 0 auto 60px; text-align: center; }
.faq-header .section-tag { justify-content: center; }
.faq-header .section-sub { margin: 0 auto; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px; margin-bottom: 16px;
  overflow: hidden; transition: all 0.3s;
  background: rgba(255,255,255,0.02);
}
.faq-item.active { border-color: rgba(201,169,110,0.3); background: rgba(201,169,110,0.04); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 26px 30px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; text-align: right;
  font-family: 'Tajawal', sans-serif; font-size: 17px; font-weight: 600;
  color: var(--white); transition: color 0.3s;
}
body.lang-en .faq-question { text-align: left; }
.faq-question:hover { color: var(--gold); }
.faq-icon {
  flex-shrink: 0; width: 30px; height: 30px;
  border: 1px solid rgba(201,169,110,0.3); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold); transition: all 0.3s;
}
.faq-item.active .faq-icon { background: var(--gold); color: var(--navy-deeper); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 30px;
}
.faq-item.active .faq-answer { max-height: 300px; padding: 0 30px 26px; }
.faq-answer p { font-size: 15px; line-height: 2; color: rgba(255,255,255,0.5); font-weight: 300; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 50px 30px; }
  .process-line { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; }
}
@media (max-width: 640px) {
  .process-timeline { grid-template-columns: 1fr; }
  .testimonial-text { min-height: auto; }
  .faq-question { font-size: 15px; padding: 22px; }
}


/* ══════════════════════════════════════════
   PROFESSIONAL VISUAL FEATURES
   ══════════════════════════════════════════ */

/* ── Simple hero spacing — keep scroll motion intact ── */
.hero-content { padding-bottom: 40px; }



      .st0 { fill: none; stroke: #c9a96e; stroke-miterlimit: 10; stroke-width: .51px; }
      .st1 { font-family: Roboto-Bold, Roboto; font-weight: 700; }
      .st1, .st2, .st3 { fill: #c9a96e; }
      .st1, .st3 { font-size: 7.82px; }
      .st3 { font-family: Roboto-Medium, Roboto; font-weight: 500; }
    
/* ══════════════════════════════════════
   NAVBAR DROPDOWN
   ══════════════════════════════════════ */
.nav-has-dropdown { position: relative !important; }
.nav-dropdown-arrow {
  font-size: 9px; margin-right: 4px;
  display: inline-block; transition: transform .3s; vertical-align: middle;
}
.nav-has-dropdown.open .nav-dropdown-arrow { transform: rotate(180deg); }

/* HIDDEN by default */
.nav-dropdown {
  display: none !important;
  position: absolute !important;
  top: calc(100% + 12px) !important;
  right: 0 !important; left: auto !important;
  width: 265px !important;
  background: rgba(8,14,28,.97) !important;
  border: 1px solid rgba(201,169,110,.22) !important;
  border-top: 2px solid var(--gold) !important;
  border-radius: 0 0 8px 8px !important;
  padding: 8px 0 !important;
  z-index: 99999 !important;
  box-shadow: 0 20px 50px rgba(0,0,0,.75) !important;
  flex-direction: column !important;
}
/* SHOWN when JS adds .open class */
.nav-has-dropdown.open .nav-dropdown {
  display: flex !important;
}
/* Dropdown links — override nav-links a completely */
.nav-links li.nav-has-dropdown .nav-dropdown a,
.nav-dropdown a {
  all: unset !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 11px 18px !important;
  color: rgba(255,255,255,.6) !important;
  font-size: 13px !important;
  font-family: 'Tajawal', sans-serif !important;
  cursor: pointer !important;
  border-bottom: 1px solid rgba(255,255,255,.05) !important;
  transition: background .2s, color .2s, padding .2s !important;
  width: 100% !important;
  box-sizing: border-box !important;
  white-space: nowrap !important;
  text-decoration: none !important;
  position: static !important;
}
.nav-dropdown a:last-child { border-bottom: none !important; }
.nav-dropdown a:hover {
  background: rgba(201,169,110,.1) !important;
  color: #fff !important;
  padding-right: 26px !important;
}
.nav-dropdown a:hover .nav-dd-num { color: var(--gold) !important; }
.nav-dd-num {
  font-family: 'Cormorant Garamond', serif !important;
  font-size: 17px !important; font-weight: 300 !important;
  color: rgba(201,169,110,.4) !important;
  min-width: 26px !important; flex-shrink: 0 !important;
}
/* Service card link reset */
a.service-card {
  text-decoration: none !important; color: inherit !important;
  display: block !important; cursor: pointer !important;
}
/* Mobile sub-menu */
.mobile-sub-menu {
  border-right: 2px solid rgba(201,169,110,.2);
  margin: 2px 0 10px 18px; padding: 4px 0;
  display: flex; flex-direction: column;
}
.mobile-sub-menu a {
  display: block !important; padding: 9px 16px !important;
  font-size: 13px !important; color: rgba(255,255,255,.5) !important;
  font-family: 'Tajawal', sans-serif; text-decoration: none !important;
  transition: color .2s;
}
.mobile-sub-menu a:hover { color: var(--gold) !important; }
