/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #D4A017;
  --gold-light: #F0C040;
  --gold-dark: #A07810;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #2a2a2a;
  --light: #f7f7f4;
  --white: #ffffff;
  --gray: #777777;
  --border: #e8e8e0;
  --font: 'Heebo', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--light);
  color: var(--dark);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, background 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); background: rgba(212,160,23,0.08); }

.btn-full { width: 100%; text-align: center; }
.btn-nav {
  background: var(--gold);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--gold-light); }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--dark);
  padding: 7px 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #888;
  gap: 1rem;
}
.topbar-right, .topbar-left { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #888; transition: color 0.2s; display: flex; align-items: center; gap: 5px; }
.topbar a:hover { color: var(--gold); }
.topbar i { color: var(--gold); font-size: 13px; }
.topbar-left i { color: var(--gold); }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid var(--border);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-icon {
  width: 44px; height: 44px;
  background: var(--dark);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 900;
  color: var(--gold);
  letter-spacing: 1px;
  flex-shrink: 0;
}
.nav-logo-text { line-height: 1.2; }
.nav-brand { font-size: 14px; font-weight: 700; color: var(--dark); display: block; }
.nav-logo-text small { font-size: 10px; color: var(--gray); font-weight: 400; }

.nav-center { display: flex; gap: 20px; }
.nav-center a { font-size: 13px; color: #555; transition: color 0.2s; font-weight: 500; }
.nav-center a:hover { color: var(--gold); }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--dark);
  padding: 4px;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  gap: 4px;
  position: sticky;
  top: 68px;
  z-index: 99;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark);
  padding: 10px 0;
  border-bottom: 0.5px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-phone { color: var(--gold) !important; }

/* ===== HERO ===== */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: url('logo.jpeg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 55%;
  opacity: 0.07;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 4rem 1.5rem 3rem;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  flex: 1;
}

.hero-content { flex: 1; max-width: 520px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  color: var(--gold);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.5s ease both;
}
.hero-badge i { font-size: 13px; }

.hero-title {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 1rem;
  animation: fadeUp 0.55s 0.1s ease both;
}
.hero-title .gold { color: var(--gold); }

.hero-sub {
  font-size: 14px;
  color: #aaa;
  line-height: 1.8;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.55s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.55s 0.3s ease both;
}

.hero-phones {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  animation: fadeUp 0.55s 0.4s ease both;
}
.hero-phone-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 0.5px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  color: #ccc;
  transition: border-color 0.2s, color 0.2s;
  direction: ltr;
}
.hero-phone-pill:hover { color: var(--gold); border-color: var(--gold); }
.hero-phone-pill i { font-size: 14px; color: var(--gold); }

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-logo-card {
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}
.hero-logo-emblem { border-radius: 16px; overflow: hidden; }
.hero-logo-name { font-size: 14px; font-weight: 700; color: #fff; }
.hero-logo-tagline { font-size: 11px; color: #777; }

.hero-stats-grid { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.hero-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 10px 14px;
}
.hero-stat i { font-size: 20px; color: var(--gold); flex-shrink: 0; }
.hero-stat strong { font-size: 13px; font-weight: 700; color: #fff; display: block; }
.hero-stat span { font-size: 11px; color: #777; }

.hero-scroll-hint {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-bottom: 1.25rem;
  color: #555;
  font-size: 20px;
  animation: bounce 2s infinite;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== WHY BANNER ===== */
.why-banner {
  background: var(--gold);
  padding: 1.1rem 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 1rem;
  border-left: 0.5px solid rgba(255,255,255,0.3);
}
.why-item:last-child { border-left: none; }
.why-item i { font-size: 22px; color: #fff; flex-shrink: 0; }
.why-item strong { font-size: 12px; color: #fff; font-weight: 700; display: block; }
.why-item span { font-size: 11px; color: rgba(255,255,255,0.8); }

/* ===== SECTIONS ===== */
.section { padding: 4rem 0; }
.section-alt { background: var(--white); }

.section-header { text-align: center; margin-bottom: 2.5rem; }
.section-tag {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}
.section-title { font-size: 26px; font-weight: 900; color: var(--dark); margin-bottom: 8px; }
.section-sub { font-size: 14px; color: var(--gray); max-width: 480px; margin: 0 auto; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.about-text p { font-size: 14px; color: #555; line-height: 1.8; margin-bottom: 1rem; }

.about-points { display: flex; flex-direction: column; gap: 12px; }
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--light);
  border-radius: var(--radius);
  border: 0.5px solid var(--border);
  transition: border-color 0.2s;
}
.about-point:hover { border-color: var(--gold); }
.ap-icon {
  width: 40px; height: 40px;
  background: rgba(212,160,23,0.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ap-icon i { font-size: 20px; color: var(--gold); }
.about-point strong { font-size: 13px; font-weight: 700; color: var(--dark); display: block; margin-bottom: 2px; }
.about-point p { font-size: 12px; color: var(--gray); margin: 0; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.service-card {
  background: var(--light);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: var(--shadow); }
.svc-icon {
  width: 50px; height: 50px;
  background: rgba(212,160,23,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.svc-icon i { font-size: 24px; color: var(--gold); }
.service-card h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.service-card p { font-size: 13px; color: var(--gray); line-height: 1.7; }
.svc-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  background: rgba(212,160,23,0.1);
  color: var(--gold-dark);
  padding: 3px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* ===== PROCESS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
}
.step-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: center;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.step-card:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.step-num {
  position: absolute;
  top: -13px;
  right: 50%;
  transform: translateX(50%);
  background: var(--gold);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  width: 26px; height: 26px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-card i { font-size: 28px; color: var(--gold); margin-bottom: 10px; display: block; }
.step-card h4 { font-size: 13px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.step-card p { font-size: 11px; color: var(--gray); line-height: 1.6; }
.step-arrow { font-size: 20px; color: var(--gold); opacity: 0.5; text-align: center; }

/* ===== PROJECTS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.project-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.project-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.project-img {
  height: 180px;
  overflow: hidden;
  background: var(--dark2);
}
.project-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.project-card:hover .project-img img { transform: scale(1.04); }
.placeholder-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #555;
}
.placeholder-img i { font-size: 36px; color: var(--gold); }
.placeholder-img span { font-size: 12px; }
.project-info { padding: 14px 16px; }
.project-info strong { font-size: 14px; font-weight: 700; color: var(--dark); display: block; margin-bottom: 8px; }
.project-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag-gold { font-size: 11px; background: rgba(212,160,23,0.1); color: var(--gold-dark); padding: 3px 10px; border-radius: 20px; }
.tag-gray { font-size: 11px; background: #f0f0ea; color: #666; padding: 3px 10px; border-radius: 20px; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}
.review-card {
  background: var(--white);
  border: 0.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.review-card:hover { border-color: var(--gold); }
.review-stars { color: var(--gold); font-size: 16px; margin-bottom: 10px; }
.review-card p { font-size: 13px; color: #555; line-height: 1.75; margin-bottom: 1rem; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(212,160,23,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  color: var(--gold-dark);
  flex-shrink: 0;
}
.review-author strong { font-size: 13px; font-weight: 700; color: var(--dark); display: block; }
.review-author span { font-size: 11px; color: var(--gray); }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--dark);
  padding: 3rem 1.5rem;
  text-align: center;
}
.cta-band h2 { font-size: 22px; font-weight: 900; color: #fff; margin-bottom: 8px; }
.cta-band p { font-size: 14px; color: #888; margin-bottom: 1.5rem; }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 16px;
  border: 0.5px solid #ddd;
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  background: var(--light);
  color: var(--dark);
  width: 100%;
  direction: rtl;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; }

.form-success {
  display: none;
  background: rgba(39,170,80,0.1);
  color: #1a7a3a;
  border: 0.5px solid rgba(39,170,80,0.3);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  align-items: center;
  gap: 8px;
}
.form-success.show { display: flex; }

.contact-info-box {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.contact-info-box h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 1.25rem; }
.cinfo-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.cinfo-row i { font-size: 18px; color: var(--gold); flex-shrink: 0; }
.cinfo-row a, .cinfo-row span { font-size: 13px; color: #aaa; direction: ltr; transition: color 0.2s; }
.cinfo-row a:hover { color: var(--gold); }

.social-row { display: flex; gap: 10px; margin-top: 1.5rem; }
.soc-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.soc-btn:hover { background: rgba(212,160,23,0.15); }
.soc-btn i { font-size: 18px; color: var(--gold); }

/* ===== FOOTER ===== */
.footer {
  background: #0d0d0d;
  padding: 1.25rem 0;
  border-top: 0.5px solid #222;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-logo span { font-size: 13px; font-weight: 700; color: #555; }
.footer-copy { font-size: 11px; color: #444; }
.footer-links { display: flex; gap: 16px; }
.footer-links a { font-size: 11px; color: #444; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav-center, .nav-left { display: none; }
  .nav-hamburger { display: block; }

  .hero-inner { flex-direction: column; padding: 2.5rem 1.5rem 2rem; }
  .hero-visual { width: 100%; }
  .hero-stats-grid { flex-direction: row; flex-wrap: wrap; }
  .hero-stat { flex: 1; min-width: 140px; }
  .hero-logo-card { width: 100%; flex-direction: row; flex-wrap: wrap; justify-content: center; }

  .why-banner { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .why-item { border-left: none; padding: 8px; }

  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .topbar { flex-direction: column; gap: 4px; text-align: center; }
  .topbar-right { justify-content: center; }
  .hero-title { font-size: 24px; }
  .projects-grid { grid-template-columns: 1fr; }
  .why-banner { grid-template-columns: 1fr 1fr; }
}
