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

:root {
  --dark: #071827;
  --navy: #0c1f30;
  --navy-soft: #102d46;
  --gold: #d7b46a;
  --gold-dark: #9b6f1f;
  --white: #ffffff;
  --muted: #6b7280;
  --light: #f6f7f9;
  --border: #e7e7e7;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1d1d1d;
  background: var(--light);
  line-height: 1.7;
}

body.rtl {
  direction: rtl;
  font-family: Tahoma, Arial, sans-serif;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(7, 24, 39, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(215, 180, 106, 0.22);
}

.navbar {
  max-width: 1220px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  min-width: 0;
}

.brand img {
  height: 54px;
  width: 74px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  line-height: 1.05;
  white-space: nowrap;
}

.brand-text strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(15px, 1.45vw, 22px);
  letter-spacing: 0.8px;
}

.brand-text span {
  color: var(--gold);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 2px;
  margin-top: 4px;
}

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

.nav-links a,
.lang-btn {
  color: var(--white);
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  transition: 0.25s ease;
}

.nav-links a:hover,
.lang-btn:hover {
  color: var(--gold);
}

.lang-btn {
  border: 1px solid var(--gold);
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--gold);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--white);
  border: 0;
  font-size: 30px;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(7, 24, 39, 0.92), rgba(7, 24, 39, 0.55)),
    url("https://images.unsplash.com/photo-1541888946425-d81bb19240f5?auto=format&fit=crop&w=1800&q=85") center/cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 130px;
  background: linear-gradient(transparent, var(--light));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  padding: 150px 20px 90px;
  margin: auto;
  text-align: center;
  color: var(--white);
}

.hero-brand {
  width: min(980px, 96vw);
  margin: 0 auto 10px;
  display: grid;
  grid-template-columns: 1fr 170px 1fr;
  align-items: center;
  gap: 34px;
}

.hero-brand img {
  width: 170px;
  height: auto;
  display: block;
}

.gold-bar {
  height: 54px;
  background: linear-gradient(135deg, #f5df9b, #d7b46a, #9b6f1f);
  box-shadow: inset 0 2px 5px rgba(255,255,255,0.25);
}

.hero-company-name {
  width: min(1120px, 96vw);
  margin: 0 auto 28px;
  padding-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 4vw, 50px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 1px;
  color: var(--white);
  text-shadow: 0 6px 22px rgba(0,0,0,0.35);
  border-bottom: 2px solid rgba(255,255,255,0.7);
  white-space: normal;
  overflow: visible;
}

.tagline,
.section-label {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  margin-bottom: 12px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.08;
  margin-bottom: 22px;
  text-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.hero-text {
  max-width: 780px;
  margin: 0 auto 32px;
  font-size: 20px;
  color: #f3f4f6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 800;
  transition: 0.25s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--gold), #f1d68c);
  color: var(--dark);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(215, 180, 106, 0.25);
}

.btn.secondary {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
}

.btn.secondary:hover {
  background: rgba(255,255,255,0.18);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.quick-info {
  max-width: 1120px;
  margin: -55px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.quick-info-card {
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(7, 24, 39, 0.14);
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  color: var(--navy);
}

.quick-info-card span {
  font-size: 26px;
}

.quick-info-card a {
  text-decoration: none;
}

.section {
  padding: 95px 20px;
}

.container {
  max-width: 1180px;
  margin: auto;
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 46px;
  align-items: center;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.18;
  margin-bottom: 22px;
  color: var(--navy);
}

.about-text p,
.contact-details p {
  font-size: 18px;
  color: #4b5563;
}

.about-panel {
  background:
    linear-gradient(145deg, rgba(12,31,48,0.96), rgba(16,45,70,0.96)),
    url("https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1000&q=80") center/cover;
  color: var(--white);
  padding: 38px;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(7, 24, 39, 0.18);
}

.stat {
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}

.stat:last-child {
  border-bottom: none;
}

.stat strong {
  display: block;
  color: var(--gold);
  font-size: 46px;
  line-height: 1;
}

.stat span {
  font-size: 17px;
  font-weight: 800;
}

.services {
  background: var(--white);
}

.cards {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--light);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid var(--border);
  transition: 0.28s ease;
  min-height: 230px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(7, 24, 39, 0.1);
  border-color: rgba(215, 180, 106, 0.55);
}

.icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.card h3 {
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 21px;
}

.card p {
  color: var(--muted);
}

.projects {
  background: var(--navy);
}

.projects h2 {
  color: var(--white);
}

.project-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.project-item {
  min-height: 260px;
  border-radius: 18px;
  display: flex;
  align-items: end;
  padding: 22px;
  color: var(--white);
  font-weight: 900;
  font-size: 20px;
  background-size: cover;
  background-position: center;
  transition: 0.3s ease;
  overflow: hidden;
  position: relative;
}

.project-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 35%, rgba(0,0,0,0.76));
}

.project-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.project-item span {
  position: relative;
  z-index: 2;
  background: rgba(7,24,39,0.68);
  padding: 10px 15px;
  border-radius: 9px;
}

.villa {
  background-image: url("https://images.unsplash.com/photo-1613977257363-707ba9348227?auto=format&fit=crop&w=1200&q=85");
}

.commercial {
  background-image: url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1200&q=85");
}

.warehouse {
  background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=85");
}

.renovation {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1200&q=85");
}

.why {
  background: var(--light);
}

.why-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.why-list div {
  background: var(--white);
  border-left: 5px solid var(--gold);
  padding: 24px;
  border-radius: 14px;
  font-weight: 900;
  color: var(--navy);
  box-shadow: 0 12px 35px rgba(7, 24, 39, 0.06);
}

body.rtl .why-list div {
  border-left: none;
  border-right: 5px solid var(--gold);
}

.contact {
  background: var(--white);
  padding-bottom: 0;
}

.contact-box {
  margin-top: 26px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 26px;
}

.contact-box p {
  margin-bottom: 14px;
}

.contact-box a {
  color: var(--navy);
  font-weight: 800;
}

.map-btn {
  margin-top: 8px;
}

.contact-form {
  background: var(--navy);
  padding: 32px;
  border-radius: 20px;
  display: grid;
  gap: 14px;
  box-shadow: 0 24px 60px rgba(7,24,39,0.18);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-radius: 10px;
  font-size: 15px;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.72);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.form-message {
  color: var(--white);
  font-weight: 800;
}

.form-message.success {
  color: #8ff0a4;
}

.form-message.error {
  color: #ff9b9b;
}

.map-wrapper {
  max-width: 1180px;
  margin: 60px auto 0;
  padding: 0 20px 80px;
}

.map-wrapper iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: 22px;
  box-shadow: 0 22px 60px rgba(7,24,39,0.14);
}

.footer {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 36px 20px;
}

.footer-brand {
  display: inline-grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.footer-brand img {
  width: 120px;
}

.footer-brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 3vw, 30px);
  letter-spacing: 1px;
}

.floating-call,
.floating-whatsapp {
  position: fixed;
  right: 18px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  z-index: 1100;
  display: grid;
  place-items: center;
  color: var(--white);
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.floating-call {
  bottom: 86px;
  background: var(--gold-dark);
}

.floating-whatsapp {
  bottom: 24px;
  background: #25d366;
}

body.rtl .floating-call,
body.rtl .floating-whatsapp {
  right: auto;
  left: 18px;
}

@media (max-width: 1080px) {
  .nav-links {
    gap: 14px;
  }

  .brand-text strong {
    font-size: 15px;
  }

  .hero-company-name {
    font-size: clamp(24px, 4.5vw, 44px);
  }
}

@media (max-width: 950px) {
  .menu-toggle {
    display: block;
  }

  .brand img {
    height: 48px;
    width: 66px;
  }

  .brand-text strong {
    font-size: 14px;
  }

  .brand-text span {
    font-size: 11px;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--dark);
    flex-direction: column;
    padding: 25px;
    display: none;
    border-bottom: 1px solid rgba(215,180,106,0.25);
  }

  .nav-links.active {
    display: flex;
  }

  .quick-info,
  .about-layout,
  .contact-layout,
  .cards,
  .project-grid,
  .why-list {
    grid-template-columns: 1fr;
  }

  .quick-info {
    margin-top: 20px;
  }

  .hero-content {
    padding-top: 130px;
  }

  .hero-brand {
    grid-template-columns: 1fr 130px 1fr;
    gap: 18px;
  }

  .hero-brand img {
    width: 130px;
  }

  .gold-bar {
    height: 40px;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 650px) {
  .brand-text strong {
    max-width: 220px;
    white-space: normal;
    line-height: 1.1;
  }

  .brand-text span {
    letter-spacing: 1px;
  }

  .hero-brand {
    grid-template-columns: 1fr 100px 1fr;
    gap: 12px;
  }

  .hero-brand img {
    width: 100px;
  }

  .gold-bar {
    height: 28px;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 70px 18px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-company-name {
    font-size: 24px;
    line-height: 1.18;
  }

  .quick-info-card,
  .card,
  .contact-form,
  .contact-box,
  .about-panel {
    padding: 22px;
  }
}
