:root {
  --navy: #071b33;
  --navy-2: #0d2b4d;
  --orange: #f58220;
  --orange-dark: #df6f10;
  --white: #ffffff;
  --gray: #f4f6f8;
  --gray-2: #e6ebf0;
  --text: #1d2a35;
  --muted: #667789;
  --shadow: 0 20px 50px rgba(7, 27, 51, 0.12);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

html[dir="rtl"] body {
  font-family: "Cairo", Arial, sans-serif;
}

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

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-2);
}

.nav-wrapper {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--orange);
  font-weight: 800;
  font-size: 24px;
}

.logo strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.1;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 600;
}

.nav-menu a:hover {
  color: var(--orange);
}

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

.lang-toggle,
.mobile-menu-btn {
  border: 1px solid var(--gray-2);
  background: var(--white);
  color: var(--navy);
  height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.mobile-menu-btn {
  display: none;
  font-size: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 15px;
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(245, 130, 32, 0.25);
}

.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--navy);
}

.btn-light:hover {
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
}

.btn-whatsapp:hover {
  background: #1ebc59;
  transform: translateY(-2px);
}

.full-width {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(245, 130, 32, 0.22), transparent 34%),
    linear-gradient(135deg, var(--navy), #061426);
  color: var(--white);
  padding: 96px 0 80px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--orange);
  background: rgba(245, 130, 32, 0.1);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  max-width: 780px;
  margin-bottom: 22px;
}

.hero p {
  font-size: 18px;
  color: #d7e0ea;
  max-width: 690px;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
  max-width: 620px;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.hero-stats strong {
  display: block;
  color: var(--orange);
  font-size: 28px;
}

.hero-stats span {
  color: #d7e0ea;
  font-size: 14px;
}

.hero-card {
  background: var(--white);
  color: var(--text);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.hero-card-top {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--gray-2);
  margin-bottom: 20px;
}

.hero-card-top span {
  color: var(--muted);
  font-weight: 700;
}

.hero-card-top strong {
  display: block;
  font-size: 30px;
  color: var(--navy);
  margin-top: 6px;
}

.hero-card ul {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-card li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 600;
}

html[dir="rtl"] .hero-card li {
  padding-left: 0;
  padding-right: 28px;
}

.hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 900;
}

html[dir="rtl"] .hero-card li::before {
  left: auto;
  right: 0;
}

.trust-section {
  background: var(--gray);
  padding: 24px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-item {
  background: var(--white);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(7, 27, 51, 0.05);
}

.trust-item span {
  color: var(--orange);
  font-weight: 900;
}

.section {
  padding: 90px 0;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 46px;
}

.section-heading h2,
.about-section h2,
.request-section h2,
.cta-section h2 {
  color: var(--navy);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-heading p,
.about-section p,
.request-section p,
.cta-section p {
  color: var(--muted);
  font-size: 17px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  padding: 30px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid var(--gray-2);
  box-shadow: 0 10px 28px rgba(7, 27, 51, 0.06);
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(245, 130, 32, 0.1);
  font-size: 28px;
  margin-bottom: 20px;
}

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

.service-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.service-card a {
  color: var(--orange);
  font-weight: 900;
}

.about-section {
  background: var(--gray);
}

.about-grid,
.request-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.about-points {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.about-points div {
  background: var(--white);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--gray-2);
}

.about-points strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  margin-bottom: 5px;
}

.about-points span {
  color: var(--muted);
}

.about-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  border-radius: 28px;
  padding: 38px;
  box-shadow: var(--shadow);
}

.about-box h3 {
  font-size: 34px;
  line-height: 1.15;
  margin-bottom: 14px;
}

.about-box p {
  color: #d7e0ea;
  margin-bottom: 24px;
}

.about-box .btn + .btn {
  margin-top: 12px;
}

.contact-card {
  margin-top: 28px;
  padding: 24px;
  border-radius: 20px;
  background: var(--gray);
  border: 1px solid var(--gray-2);
}

.contact-card p {
  margin-bottom: 10px;
}

.contact-card a {
  color: var(--orange);
  font-weight: 800;
}

.service-form {
  background: var(--white);
  border: 1px solid var(--gray-2);
  box-shadow: var(--shadow);
  padding: 32px;
  border-radius: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

label {
  display: block;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 7px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--gray-2);
  background: var(--gray);
  border-radius: 14px;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  background: var(--white);
}

.form-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 14px;
}

.cta-section {
  padding: 70px 0;
  background: var(--gray);
}

.cta-box {
  background: linear-gradient(135deg, var(--navy), #061426);
  color: var(--white);
  border-radius: 30px;
  padding: 44px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

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

.cta-section p {
  color: #d7e0ea;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  min-width: max-content;
}

.site-footer {
  background: #061426;
  color: var(--white);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 36px;
}

.footer-logo strong {
  color: var(--white);
}

.footer-logo small,
.site-footer p {
  color: #b8c6d4;
}

.site-footer h4 {
  color: var(--orange);
  margin-bottom: 14px;
}

.site-footer a,
.site-footer span {
  display: block;
  color: #d7e0ea;
  margin-bottom: 8px;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 34px;
  padding-top: 22px;
  text-align: center;
  color: #b8c6d4;
}

@media (max-width: 980px) {
  .mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-menu {
    position: absolute;
    top: 82px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 20px;
    border: 1px solid var(--gray-2);
  }

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

  html[dir="rtl"] .nav-menu {
    align-items: flex-end;
  }

  .header-actions .btn-outline {
    display: none;
  }

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

  .services-grid,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .nav-wrapper {
    height: 74px;
  }

  .nav-menu {
    top: 74px;
  }

  .hero {
    padding: 70px 0 56px;
  }

  .hero-stats,
  .services-grid,
  .trust-grid,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-card,
  .service-form,
  .about-box,
  .cta-box {
    padding: 24px;
  }

  .hero-buttons,
  .cta-actions {
    width: 100%;
  }

  .hero-buttons .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .section {
    padding: 64px 0;
  }

  .logo strong {
    font-size: 16px;
  }

  .logo small {
    font-size: 11px;
  }
}
