@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@200..1000&display=swap");
:root {
  --gold: #b8933e;
  --gold-light: #d4af6a;
  --gold-pale: #f5edda;
  --dark: #0d0d0d;
  --dark2: #1a1a1a;
  --dark3: #252525;
  --white: #fafaf8;
  --gray: #888;
  --light: #f0ede6;
}
::-webkit-scrollbar{
    width: 8px;
}
::-webkit-scrollbar-track{
    background-color: #fff;
}
::-webkit-scrollbar-thumb{
    background-color: var(--dark);
    cursor: pointer;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  background: var(--dark);
  color: var(--white);
  direction: rtl;
  overflow-x: hidden;
}

/* ─── HEADER ─── */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 147, 62, 0.2);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo span {
  color: var(--white);
}
.logo img {
  height: 60px;
  width: 80px;
  transform: scale(1.4);
}
.logo h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-right .btn-primary{
  padding: 10px 22px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}
.phone-num {
  color: var(--gold-light);
  font-size: 15px;
  font-weight: 500;
  direction: ltr;
}
.wa-btn {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s;
  text-decoration: none;
}
.wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

/* RESPONSIVE HEADER */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 12px 14px;
    gap: 12px;
  }
  .logo {
    width: 100%;
    justify-content: center;
  }
  .logo h5 {
    font-size: 16px;
    white-space: normal;
    text-align: center;
  }

  .header-right {
    width: 100%;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .phone-num {
    font-size: 13px;
  }
  .wa-btn {
    padding: 8px 18px;
    font-size: 13px;
  }
  .header-right .btn-primary{
    padding: 8px 18px;
    font-size: 13px;
  }
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: flex-start;
  padding: 120px 60px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 70% at 80% 50%,
    rgba(184, 147, 62, 0.07) 0%,
    transparent 70%
  );
}
.hero-img-wrap {
  position: relative;
  border-radius: 4px;
  height: 520px;
  background: var(--dark3);
  border: 1px solid rgba(184, 147, 62, 0.25);
}
@media (max-width: 767px) {
    .hero-img-wrap{
        order: 1;
        border: none;
        background-color: transparent;
    }
}
.hero-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: rgba(184, 147, 62, 0.3);
  font-size: 18px;
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%);
}
@media (max-width: 767px) {
    .hero-img-placeholder{
        display: none;
    }
}
.hero-img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to top, var(--dark) 0%, transparent 100%);
}
.hero-img-wrap .numbers{
    margin-top: 20px;
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(auto-fill,minmax(200px,1fr));
    background-color: rgb(21 21 21);
}
@media (max-width: 767px) {
    .hero-img-wrap .numbers{
      grid-template-columns: repeat(auto-fill,minmax(150px,1fr));
      background-color: transparent;
    }
}
.hero-img-wrap .numbers .num{
    text-align: center;
    padding: 10px;
    border: 1px solid var(--gold-light);
    border-radius: 6px;
}
.hero-img-wrap .numbers .num h3{
    color: var(--gold);
}
.hero-badge {
  display: inline-block;
  background: rgba(184, 147, 62, 0.12);
  border: 1px solid rgba(184, 147, 62, 0.35);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-text {
  padding-right: 60px;
}
@media (max-width: 767px) {
    .hero-text{
        order: -1;
        margin-top: 20px;
    }
}
.hero-text h1 {
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-text h1 span {
  color: var(--gold);
}
.hero-text .sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 36px;
  line-height: 1.7;
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.services-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  transition: all 0.2s;
}
.services-list li:hover {
  border-color: rgba(184, 147, 62, 0.4);
  background: rgba(184, 147, 62, 0.05);
  color: var(--white);
}
.services-list li::before {
  content: "◆";
  color: var(--gold);
  font-size: 8px;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-direction: column;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 8px;
  padding: 16px 32px;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.25s;
  text-align: center;
  text-decoration: none;
  display: block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(184, 147, 62, 0.3);
}
.btn-secondary {
  background: #25d366;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 15px 32px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transform: translateY(0);
  transition: all 0.25s;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  background: #25d365a4;
}
.hero-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  text-align: center;
  letter-spacing: 2px;
}

/* ─── SECTION BASE ─── */
section {
  padding: 80px 60px;
}
.section-title {
  font-size: 34px;
  font-weight: 900;
  text-align: center;
  margin-bottom: 10px;
  color: var(--white);
}
.section-title span {
  color: var(--gold);
}
.section-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 15px;
  margin-bottom: 50px;
  line-height: 1.7;
}
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 14px auto 40px;
  border-radius: 2px;
}

/* ─── TRUST ─── */
.trust {
  background: var(--dark2);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-card {
  background: var(--dark3);
  border: 1px solid rgba(184, 147, 62, 0.15);
  border-radius: 10px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.trust-card:hover {
  border-color: rgba(184, 147, 62, 0.4);
  transform: translateY(-4px);
}
.trust-card:hover::before {
  transform: scaleX(1);
}
.trust-icon {
  width: 56px;
  height: 56px;
  background: rgba(184, 147, 62, 0.1);
  border: 1px solid rgba(184, 147, 62, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}
.trust-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.trust-card p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
}

/* ─── PERSONAL CASES ─── */
.cases {
  background: var(--dark);
}
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 28px 22px;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}
.case-card:hover {
  border-color: var(--gold);
  background: rgba(184, 147, 62, 0.05);
  transform: translateY(-3px);
}
.case-card .arrow {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 20px;
  opacity: 0;
  transition: all 0.3s;
}
.case-card:hover .arrow {
  opacity: 1;
  left: 18px;
}
.case-icon {
  width: 44px;
  height: 44px;
  background: rgba(184, 147, 62, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
}
.case-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.case-card p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.case-cta {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── OTHER SERVICES ─── */
.other-services {
  background: var(--dark2);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-item {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 24px 20px;
  transition: all 0.3s;
  cursor: pointer;
}
.service-item:hover {
  border-color: rgba(184, 147, 62, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(184, 147, 62, 0.08);
}
.si-icon {
  font-size: 26px;
  margin-bottom: 12px;
  width: 48px;
  height: 48px;
  background: rgba(184, 147, 62, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-item h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.service-item p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 14px;
  min-height: 40px;
}
.si-cta {
  display: inline-block;
  background: rgba(184, 147, 62, 0.12);
  border: 1px solid rgba(184, 147, 62, 0.3);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.2s;
}
.si-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ─── WHY US ─── */
.why-us {
  background: var(--dark);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.why-card {
  background: var(--dark2);
  border: 1px solid rgba(184, 147, 62, 0.1);
  border-radius: 10px;
  padding: 28px 16px;
  text-align: center;
  transition: all 0.3s;
}
.why-card:hover {
  border-color: var(--gold);
  background: rgba(184, 147, 62, 0.05);
  transform: translateY(-4px);
}
.why-icon {
  font-size: 32px;
  margin-bottom: 12px;
}
.why-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

/* ─── HOW IT WORKS ─── */
.how-it-works {
  background: var(--dark2);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 38px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(to left, transparent, var(--gold), transparent);
}
.step {
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.step-num {
  width: 76px;
  height: 76px;
  background: var(--dark3);
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 1;
}
.step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}
.step p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: var(--dark);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--dark2);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 28px 24px;
  transition: all 0.3s;
}
.review-card:hover {
  border-color: rgba(184, 147, 62, 0.3);
  transform: translateY(-3px);
}
.stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
}
.reviewer-name {
  font-weight: 700;
  font-size: 15px;
}
.reviewer-role {
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
}

/* ─── FAQ ─── */
.faq {
  background: var(--dark2);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 20px 0;
  text-align: right;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--gold);
}
.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(184, 147, 62, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.8;
}
.faq-item.open .faq-a {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ─── CTA BOTTOM ─── */
.cta-bottom {
  background: linear-gradient(135deg, #1a1505 0%, var(--dark) 60%);
  border-top: 1px solid rgba(184, 147, 62, 0.25);
  text-align: center;
  padding: 100px 60px;
  position: relative;
  overflow: hidden;
}
.cta-bottom::before {
  content: "⚖";
  position: absolute;
  font-size: 400px;
  opacity: 0.02;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.cta-bottom h2 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 16px;
  position: relative;
}
.cta-bottom h2 span {
  color: var(--gold);
}
.cta-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 17px;
  margin-bottom: 40px;
  position: relative;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-buttons .btn-primary {
  display: inline-block;
  padding: 18px 48px;
  font-size: 18px;
}
.cta-buttons .btn-secondary {
  padding: 17px 40px;
  font-size: 18px;
  display: inline-flex;
}

/* ─── FOOTER ─── */
footer {
  background: #080808;
  padding: 30px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-text > * {
  animation: fadeUp 0.7s ease both;
}
.hero-text > *:nth-child(1) {
  animation-delay: 0.1s;
}
.hero-text > *:nth-child(2) {
  animation-delay: 0.2s;
}
.hero-text > *:nth-child(3) {
  animation-delay: 0.3s;
}
.hero-text > *:nth-child(4) {
  animation-delay: 0.4s;
}
.hero-text > *:nth-child(5) {
  animation-delay: 0.5s;
}
.hero-img-wrap {
  animation: fadeUp 0.9s ease 0.15s both;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  section {
    padding: 60px 20px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 20px 60px;
  }
  .hero-img-wrap {
    height: 280px;
    order: -1;
  }
  .hero-text {
    padding-right: 0;
  }
  .trust-grid,
  .cases-grid,
  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .steps::before {
    display: none;
  }
  .step {
    padding: 0 10px;
  }
  footer {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .cta-bottom h2 {
    font-size: 30px;
  }
  .cta-bottom {
    padding: 60px 20px;
  }
}

@media (max-width: 480px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section-title {
    font-size: 28px;
  }
}
