:root {
  --primary: #0b1d36;
  --secondary: #173153;
  --gold: #caa45c;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #f8fafc;
  --shadow: 0 15px 35px rgba(0,0,0,0.08);
}

* {
  font-family: "Tajawal", sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
}

/* ================== TOPBAR ================== */
.topbar {
  background: #08101f;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  padding: 10px 0;
}

.topbar .info-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.topbar .contact-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.topbar i {
  color: var(--gold);
  margin-left: 8px;
}

/* ================== NAVBAR ================== */
.navbar {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff !important;
  font-weight: 800;
}

.navbar-brand img {
  height: 58px !important;
  width: auto !important;
  object-fit: contain;
  background: #fff;
  padding: 6px;
  border-radius: 8px;
}

.navbar-brand span {
  display: block;
  line-height: 1.2;
}

.navbar-brand small {
  display: block;
  font-size: 0.72rem;
  opacity: 0.78;
  margin-top: 4px;
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.88) !important;
  font-weight: 600;
  margin-inline-start: 10px;
  transition: 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #fff !important;
}

.lang-btn {
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff !important;
  background: transparent;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
}

/* ================== HERO ================== */
.hero {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(200,164,93,0.18), transparent 30%),
    linear-gradient(135deg, rgba(8,16,31,0.98), rgba(15,23,42,0.94));
  color: #fff;
  padding: 80px 0;
}

.hero h1 {
  color: #fff;
  font-weight: 800;
}

.hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.btn-main {
  background: var(--gold);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

.btn-outline-pro {
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
}

/* HERO CARD */
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 24px;
  backdrop-filter: blur(12px);
  border-radius: 28px;
  box-shadow: 0 22px 38px rgba(0,0,0,0.18);
}

.hero-card p {
  color: rgba(255,255,255,0.82);
}

.mini-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.mini-stat {
  background: rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.mini-stat strong {
  font-size: 1.2rem;
}

.mini-stat span {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

/* ================== SECTIONS ================== */
.section-padding {
  padding: 55px 0;
}

.section-title {
  font-weight: 800;
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--muted);
}

/* SERVICES */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 26px;
  box-shadow: var(--shadow);
  height: 100%;
}

.service-icon {
  font-size: 26px;
  color: var(--primary);
  margin-bottom: 10px;
}

/* PROJECTS */
.project-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-visual img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.project-body {
  padding: 20px;
}

.project-tag {
  display: inline-block;
  background: #eef2ff;
  color: #1e3a8a;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

/* CLIENTS */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.client-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  text-align: center;
  box-shadow: var(--shadow);
}

/* CTA */
.cta-box {
  background: linear-gradient(135deg, #0b1d36, #173153);
  color: #fff;
  padding: 40px;
  border-radius: 18px;
}

/* FOOTER */
.footer {
  background: #08101f;
  color: #fff;
  padding: 30px 0;
  margin-top: 20px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #25d366;
  color: #fff;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* MOBILE */
@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 80px 0 70px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}