:root {
  --bg: #0a0a0a;
  --surface: #121212;
  --surface-2: #161616;
  --line: rgba(255, 255, 255, 0.1);
  --muted: #b6b6b6;
  --muted-2: #858585;
  --white: #ffffff;
  --accent: #ff8c00;
  --accent-soft: rgba(255, 140, 0, 0.14);
  --accent-line: rgba(255, 140, 0, 0.34);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "Cairo", sans-serif;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 140, 0, 0.12), transparent 25%),
    radial-gradient(circle at 88% 8%, rgba(255, 255, 255, 0.055), transparent 24%),
    linear-gradient(180deg, #0d0d0d 0%, var(--bg) 42%, #070707 100%);
  color: var(--white);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 70%);
  z-index: -1;
}

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

section {
  padding: 112px 0;
  scroll-margin-top: 88px;
}

.navbar {
  padding: 18px 0;
  background: rgba(10, 10, 10, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: padding 0.25s ease, background 0.25s ease;
}

.navbar.is-scrolled {
  padding: 10px 0;
  background: rgba(10, 10, 10, 0.88);
}

.navbar-brand {
  font-weight: 900;
  letter-spacing: 0;
  color: var(--white);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-left: 10px;
  border-radius: 14px;
  color: #0a0a0a;
  background: var(--accent);
  box-shadow: 0 0 28px rgba(255, 140, 0, 0.32);
  font-weight: 900;
}

.nav-link {
  color: rgba(255, 255, 255, 0.74);
  font-weight: 700;
  padding-inline: 14px !important;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--accent);
}

.navbar-toggler {
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--white);
  padding: 9px 12px;
  box-shadow: none !important;
}

.btn-premium {
  border: 1px solid var(--accent);
  border-radius: 18px;
  background: var(--accent);
  color: #0a0a0a;
  font-weight: 900;
  padding: 13px 24px;
  box-shadow: 0 0 34px rgba(255, 140, 0, 0.22);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-premium:hover,
.btn-premium:focus {
  background: #ff9d24;
  border-color: #ff9d24;
  color: #0a0a0a;
  transform: translateY(-2px);
  box-shadow: 0 0 44px rgba(255, 140, 0, 0.36);
}

.btn-ghost {
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--white);
  font-weight: 800;
  padding: 13px 24px;
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover,
.btn-ghost:focus {
  border-color: var(--accent-line);
  color: var(--accent);
  background: var(--accent-soft);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 84px;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  border-radius: 999px;
  padding: 9px 15px;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero h1 {
  max-width: 960px;
  font-size: clamp(2.55rem, 7vw, 6.7rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 28px;
}

.hero .lead {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.32rem);
  line-height: 2;
  margin-bottom: 36px;
}

.hero-panel {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(22, 22, 22, 0.9), rgba(10, 10, 10, 0.88));
  padding: 26px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 140, 0, 0.18), transparent 38%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04) 1px, transparent 1px, transparent 54px);
  pointer-events: none;
}

.metric-card,
.service-card,
.testimonial-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

.hero-metric {
  position: relative;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
}

.section-kicker {
  color: var(--accent);
  font-weight: 900;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 18px;
}

.section-copy {
  color: var(--muted);
  line-height: 2;
  font-size: 1.08rem;
  max-width: 700px;
}

.service-card {
  height: 100%;
  padding: 34px;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-line);
  background: linear-gradient(180deg, #1a1a1a, #111);
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid var(--accent-line);
  font-size: 1.45rem;
  margin-bottom: 24px;
}

.service-card h3,
.testimonial-card h3 {
  font-size: 1.35rem;
  font-weight: 900;
  margin-bottom: 14px;
}

.service-card p,
.testimonial-card p,
.value-item p {
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 0;
}

#why-us {
  background:
    linear-gradient(90deg, rgba(255, 140, 0, 0.1), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.why-wrap {
  padding: 8px 0;
}

.value-item {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.value-item:last-child {
  border-bottom: 0;
}

.value-label {
  color: var(--white);
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.stat-tile {
  padding: 28px;
  text-align: center;
}

.stat-tile strong {
  display: block;
  color: var(--accent);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  font-weight: 900;
  margin-bottom: 12px;
}

.stat-tile span {
  color: var(--muted);
  font-weight: 700;
}

.testimonial-card {
  height: 100%;
  padding: 30px;
}

.stars {
  color: var(--accent);
  margin-bottom: 18px;
  letter-spacing: 2px;
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 46px;
  border-radius: 50%;
  color: #0a0a0a;
  background: var(--accent);
  font-weight: 900;
}

.client small {
  display: block;
  color: var(--muted-2);
  margin-top: 3px;
}

.contact-card {
  padding: clamp(26px, 5vw, 48px);
}

.form-label {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 10px;
}

.form-control {
  min-height: 56px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 16px;
  background: #0e0e0e;
  padding: 14px 16px;
}

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

.form-control::placeholder {
  color: #676767;
}

.form-control:focus {
  color: var(--white);
  background: #101010;
  border-color: var(--accent);
  box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.12);
}

.form-note {
  color: var(--muted-2);
  line-height: 1.8;
}

footer {
  padding: 30px 0;
  color: var(--muted-2);
  border-top: 1px solid var(--line);
  background: #080808;
}

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

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

@media (max-width: 991.98px) {
  section {
    padding: 84px 0;
  }

  .navbar-collapse {
    margin-top: 16px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(12, 12, 12, 0.96);
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }
}

@media (max-width: 575.98px) {
  .hero h1 {
    font-size: 2.4rem;
  }

  .hero .d-flex {
    width: 100%;
  }

  .hero .btn {
    width: 100%;
  }

  .service-card,
  .testimonial-card {
    padding: 26px;
  }
}
