:root {
  --navy: #071f3d;
  --navy-2: #0b315d;
  --gold: #f7b719;
  --gold-2: #f59e0b;
  --white: #ffffff;
  --soft: #f5f7fb;
  --text: #10233f;
  --muted: #5d6b7c;
  --border: #d9e2ef;
  --shadow: 0 15px 40px rgba(7, 31, 61, 0.14);
  --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Cairo", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

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

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

.header {
  background:#ffffff;
  color: #020e1e;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
}

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

.logo img {
  height: 72px;
  width: auto;
  object-fit: contain;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu a {
  font-weight: 800;
  font-size: 14px;
  opacity: .92;
  position: relative;
}

.menu a:hover,
.menu a.active { color: var(--gold); }

.menu a.active::after,
.menu a:hover::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -12px;
  height: 3px;
  background: var(--gold);
  border-radius: 20px;
}

.header-call {
  background: var(--gold);
  color: var(--navy);
  border-radius: 8px;
  padding: 8px 18px;
  min-width: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(247,183,25,.25);
}

.header-call small { display: block; font-size: 12px; line-height: 1; }
.phone-icon { font-size: 22px; }

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.2);
  background: #0257a3;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 23px;
  height: 3px;
  background: #fff;
  border-radius: 999px;
  transition: .25s;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.hero-slider {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background: var(--navy);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-slide > img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,31,61,.95) 0%, rgba(7,31,61,.78) 48%, rgba(7,31,61,.25) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  max-width: 1180px;
  right: 50%;
  transform: translateX(50%);
  padding: 30px 16px;
}

.hero-label {
  color: var(--gold);
  font-weight: 900;
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  background: rgba(247,183,25,.13);
  border: 1px solid rgba(247,183,25,.34);
  border-radius: 999px;
  padding: 8px 16px;
  margin-bottom: 14px;
}

.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(35px, 5vw, 62px);
  line-height: 1.2;
  font-weight: 900;
  max-width: 700px;
  text-shadow: 0 6px 18px rgba(0,0,0,.22);
}

.hero p {
  margin: 0 0 24px;
  color: rgba(255,255,255,.9);
  font-size: 19px;
  font-weight: 700;
  max-width: 650px;
}

.hero-call {
  background: var(--gold);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 34px;
  border-radius: 10px;
  width: max-content;
  min-width: 300px;
  justify-content: center;
  box-shadow: 0 12px 25px rgba(247,183,25,.25);
}

.hero-call span { font-size: 28px; }
.hero-call strong { font-size: 30px; line-height: 1; font-weight: 900; }
.hero-call small { display: block; font-size: 15px; font-weight: 800; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.88);
  color: var(--navy);
  font-size: 34px;
  cursor: pointer;
}

.hero-arrow.prev { right: 22px; }
.hero-arrow.next { left: 22px; }

.hero-dots {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  right: 50%;
  transform: translateX(50%);
  display: flex;
  gap: 9px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.55);
  cursor: pointer;
}

.hero-dot.active {
  width: 34px;
  background: var(--gold);
}

.trust-bar {
  background: var(--navy-2);
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  min-height: 48px;
  align-items: center;
  gap: 20px;
  text-align: center;
  font-weight: 800;
}

.trust-grid span {
  color: var(--gold);
  margin-left: 8px;
}

.section {
  padding: 70px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 34px;
}

.section-heading.right {
  text-align: right;
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.3;
}

.section-heading > span {
  width: 110px;
  height: 4px;
  background: var(--gold);
  display: block;
  margin: 10px auto 0;
  border-radius: 20px;
  position: relative;
}

.section-heading.right > span { margin-right: 0; }

.section-heading > span::after {
  content: "";
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border: 3px solid #fff;
}

.section-heading p {
  color: var(--muted);
  margin: 14px 0 0;
  font-weight: 700;
}

.services { background: linear-gradient(180deg, #fff, #f7f9fc); }

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

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(7,31,61,.08);
  transition: .25s;
}

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

.service-card img {
  height: 210px;
  width: 100%;
  object-fit: cover;
}

.service-content {
  position: relative;
  padding: 24px 24px 26px;
  text-align: center;
}

.service-icon {
  position: absolute;
  top: -28px;
  left: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #f1f4f8;
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: 28px;
  border: 5px solid #fff;
}

.service-content h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
}

.service-content p {
  margin: 0;
  color: #233753;
  font-size: 15px;
  font-weight: 600;
}

.about { background: #fff; }

.about-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

.about-text p {
  margin: 0 0 12px;
  font-weight: 700;
  color: #243650;
}

.mini-call {
  background: var(--navy-2);
  color: #fff;
  display: inline-flex;
  padding: 10px 28px;
  border-radius: 7px;
  font-weight: 900;
  margin-top: 8px;
}

.about-single-image img {
  height: 410px;
  width: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.specialists {
  background: var(--soft);
}

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

.specialists-grid article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(7,31,61,.06);
}

.specialists-grid strong {
  color: var(--navy);
  display: block;
  font-size: 19px;
  font-weight: 900;
  margin-bottom: 8px;
}

.specialists-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.areas { background: #f7f9fc; }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.areas-grid div {
  background: #fff;
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 12px;
  text-align: center;
  font-weight: 900;
  color: var(--navy);
  box-shadow: 0 7px 18px rgba(7,31,61,.06);
}

.testimonials { background: #fff; }

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

.testimonial {
  background: #f8fafc;
  border: 1px solid var(--border);
  padding: 26px;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(7,31,61,.06);
}

.testimonial p {
  color: #243650;
  margin: 0 0 16px;
  font-weight: 700;
}

.testimonial strong {
  color: var(--navy);
  font-weight: 900;
}

.privacy {
  background: #f7f9fc;
}

.privacy-box {
  max-width: 920px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px;
  box-shadow: 0 8px 22px rgba(7,31,61,.06);
}

.privacy-box p {
  color: #243650;
  font-weight: 700;
}

.contact-cta {
  padding: 48px 0;
  background: #fff;
}

.contact-box {
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  color: #fff;
  border-radius: 18px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  box-shadow: var(--shadow);
}

.contact-box h2 {
  margin: 0 0 6px;
  font-size: 32px;
  font-weight: 900;
}

.contact-box p {
  margin: 0;
  color: rgba(255,255,255,.82);
  font-weight: 700;
}

.contact-box a {
  background: var(--gold);
  color: var(--navy);
  padding: 13px 28px;
  border-radius: 9px;
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
}

.footer {
  background: var(--navy);
  color: #fff;
  padding-top: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 34px;
  align-items: start;
}

.footer-brand img {
  height: 76px;
  width: auto;
  margin-bottom: 12px;
}

.footer p {
  color: rgba(255,255,255,.75);
  margin: 0 0 8px;
  font-weight: 700;
}

.footer h3 {
  margin: 0 0 12px;
  color: #fff;
}

.footer a {
  display: block;
  color: rgba(255,255,255,.78);
  margin-bottom: 8px;
  font-weight: 700;
}

.copyright {
  text-align: center;
  padding: 14px 0;
  margin-top: 30px;
  background: rgba(0,0,0,.18);
  color: rgba(255,255,255,.8);
  font-weight: 700;
}

.floating-call {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 999;
  background: var(--gold);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 900;
  box-shadow: 0 15px 34px rgba(0,0,0,.2);
}

@media (max-width: 1000px) {
  .header-call { display: none; }
  .menu-toggle { display: flex; }
  .nav { position: relative; }

  .menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    background: var(--navy);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    box-shadow: var(--shadow);
  }

  .menu.active { display: flex; }

  .menu a {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color:white;
  }

  .menu a:last-child { border-bottom: 0; }
  .menu a::after { display: none; }

  .trust-grid,
  .about-grid,
  .services-grid,
  .testimonial-grid,
  .footer-grid,
  .specialists-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-box {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    justify-content: flex-end;
    padding-bottom: 70px;
  }

  .hero-slide > img {
    height: 560px;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 22px, 1180px); }
  .logo img { height: 58px; }
  .hero-call { min-width: 0; width: 100%; }
  .hero-call strong { font-size: 24px; }
  .section { padding: 52px 0; }
  .areas-grid { grid-template-columns: 1fr; }
  .floating-call {
    right: 12px;
    left: 12px;
    justify-content: center;
  }

  .about-single-image img {
    height: 280px;
  }

  .hero-arrow {
    display: none;
  }
}
