:root {
  --navy: #0d1b2a;
  --navy-dark: #080f17;
  --gold: #b8963e;
  --gold-dark: #a08234;
  --text: #0d1b2a;
  --muted: #6b6b60;
  --soft: #f7f7f5;
  --line: rgba(13, 27, 42, 0.08);
  --white: #ffffff;
  --font: "IBM Plex Sans Arabic", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background: var(--white);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.hero-image,
.about-image img,
.services-image-wrapper img {
  width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 48px, 1280px);
  margin-inline: auto;
}

.section-padding {
  padding: 112px 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(13, 27, 42, 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.header-container {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
  flex-shrink: 0;
}

.brand-logo {
  height: 54px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  object-position: right;
  display: block;
  flex-shrink: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-header.scrolled .desktop-nav a {
  color: rgba(255, 255, 255, 0.95);
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta,
.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  background: var(--gold);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  transition: background 0.25s ease, transform 0.25s ease;
}

.header-cta:hover,
.primary-button:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.menu-toggle {
  width: 38px;
  height: 38px;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.site-header.scrolled .menu-toggle span,
.site-header.menu-open .menu-toggle span {
  background: #fff;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 24px 22px;
}

.mobile-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}


.mobile-nav a:hover {
  color: var(--gold);
}

.mobile-nav .mobile-call {
  margin-top: 12px;
  border: 0;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
}

.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  background: var(--navy);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 27, 42, 0.88) 0%, rgba(13, 27, 42, 0.5) 60%, rgba(13, 27, 42, 0.35) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 96px;
  padding-bottom: 60px;
}

.hero-text {
  width: min(100%, 680px);
}

.hero-logo {
  width: 250px;
  max-width: 320px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 24px;
}

.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 6.5vw, 4.25rem);
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero h1 span,
.hero h1 small {
  display: block;
}

.hero h1 span {
  font-weight: 700;
}

.hero h1 small {
  color: var(--gold);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 300;
}

.hero p {
  width: min(100%, 590px);
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.95;
  margin-bottom: 38px;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 14px 30px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.outline-button:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 32px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.55);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.scroll-indicator svg {
  animation: bounce 1.4s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}

.about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(56px, 8vw, 96px);
  align-items: center;
}

.about-image {
  position: relative;
  order: 1;
}

.about-image img {
  height: 540px;
  object-fit: cover;
  background: #edecea;
}

.accent-block,
.accent-border {
  position: absolute;
  width: 112px;
  height: 112px;
  left: -24px;
  bottom: -24px;
}

.accent-block {
  background: var(--gold);
}

.accent-border {
  border: 1px solid rgba(13, 27, 42, 0.1);
  transform: translate(-12px, 12px);
}

.about-content {
  order: 2;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 38px;
}

.section-label span {
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex: 0 0 auto;
}

.section-label p {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.about h2,
.section-heading h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.45;
}

.about h2 {
  margin-bottom: 28px;
}

.about-copy {
  display: grid;
  gap: 18px;
  color: #4a4a42;
  font-size: 16px;
  font-weight: 300;
  line-height: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  margin-top: 44px;
}

.stats-grid div {
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stats-grid strong {
  color: var(--gold);
  font-size: 26px;
  font-weight: 700;
}

.stats-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.company-info {
  background: var(--soft);
}

.section-heading {
  margin-bottom: 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}

.section-heading > p {
  color: var(--muted);
  max-width: 390px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
}

.info-table {
  background: #fff;
  border: 1px solid rgba(13, 27, 42, 0.07);
}

.info-row {
  display: flex;
  align-items: stretch;
  min-height: 68px;
  border-bottom: 1px solid rgba(13, 27, 42, 0.07);
}

.info-row:last-child {
  border-bottom: 0;
}

.info-label {
  width: min(28vw, 288px);
  min-width: 220px;
  padding: 20px 32px;
  background: var(--soft);
  border-left: 1px solid rgba(13, 27, 42, 0.07);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.info-value {
  flex: 1;
  padding: 20px 32px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  line-height: 1.8;
}

.info-value a:hover {
  color: var(--gold);
}
.services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.services-card {
  background: var(--soft);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(13, 27, 42, 0.05);
}

.services-image-wrapper {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #edecea;
}

.services-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.services-card:hover .services-image-wrapper img {
  transform: scale(1.04);
}

.services-info {
  padding: 32px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-info h3 {
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  position: relative;
  padding-bottom: 12px;
}

.services-info h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.services-info p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.85;
  font-weight: 300;
}

.contact {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 1px;
  background: rgba(184, 150, 62, 0.3);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(56px, 8vw, 96px);
}

.contact-heading h2 {
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 24px;
}

.contact-heading h2 span {
  font-weight: 700;
}

.contact-heading > p {
  color: rgba(255, 255, 255, 0.5);
  max-width: 400px;
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
}

.contact-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

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

.contact-item:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(184, 150, 62, 0.42);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex: 0 0 auto;
}

.contact-item div > span {
  display: block;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-item a {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: var(--gold);
}

.contact-item p {
  color: #fff;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
}

.primary-button {
  margin-top: 12px;
  padding: 15px 30px;
  width: 100%;
}

.site-footer {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 30px 0;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-logo {
  height: 48px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  display: block;
}



.copyright {
  color: rgba(255, 255, 255, 0.34);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1024px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav.show {
    display: block;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    order: 1;
  }

  .about-image {
    order: 2;
  }

  .about-image img {
    height: 430px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .brand-logo {
    width: 145px;
    max-height: 52px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 32px, 1280px);
  }

  .section-padding {
    padding: 78px 0;
  }

  .header-container {
    height: 68px;
  }

  .brand-logo {
    height: 44px;
    width: auto;
    max-width: 130px;
  }

  .hero-content {
    padding-top: 84px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 7.5vw, 2.5rem);
    margin-bottom: 16px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .about-image img {
    height: 360px;
  }

  .accent-block,
  .accent-border {
    display: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid div {
    padding: 20px;
  }

  .info-row {
    flex-direction: column;
  }

  .info-label {
    width: 100%;
    min-width: 0;
    border-left: 0;
    border-bottom: 1px solid rgba(13, 27, 42, 0.07);
    padding: 14px 22px;
  }

  .info-value {
    padding: 16px 22px;
    font-size: 15px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-info {
    padding: 24px;
  }

  .contact-item a {
    font-size: 20px;
  }

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

@media (max-width: 390px) {
  .header-container {
    height: 64px;
  }

  .brand-logo {
    width: 120px;
    max-height: 44px;
  }

  .footer-logo {
    width: 120px;
    max-height: 44px;
  }
}

@media (max-width: 360px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    width: 112px;
    max-height: 40px;
  }

  .footer-logo {
    width: 110px;
    max-height: 40px;
  }

  .outline-button,
  .primary-button {
    width: 100%;
  }
}
