:root {
  --gold: #a9915c;
  --gold-light: #c4ab7a;
  --gold-dark: #8a7448;
  --gold-glow: rgba(169, 145, 92, 0.18);
  --bg: #0a0a0b;
  --bg2: #111113;
  --bg3: #161618;
  --bg4: #1c1c1f;
  --text: #f0ece3;
  --text-muted: #9a9488;
  --border: rgba(169, 145, 92, 0.18);
  --shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Cairo", sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 99px;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  height: 72px;
  background: rgba(10, 10, 11, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
}

.nav-logo img {
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(169, 145, 92, 0.4));
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.25s;
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover {
  color: var(--gold);
}
.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.45rem 1.2rem;
  border-radius: 4px;
  font-family: "Cairo", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s;
  text-decoration: none;
}
.nav-cta:hover {
  background: var(--gold);
  color: #000;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: 0.3s;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 100px 5vw 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 70% 60% at 80% 40%,
      rgba(169, 145, 92, 0.07) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 50% 70% at 10% 80%,
      rgba(169, 145, 92, 0.04) 0%,
      transparent 50%
    );
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(169, 145, 92, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169, 145, 92, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1240px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(169, 145, 92, 0.1);
  border: 1px solid rgba(169, 145, 92, 0.25);
  border-radius: 99px;
  padding: 0.3rem 0.9rem;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 1.4rem;
}
.hero-badge::before {
  content: "⚖";
  font-size: 1rem;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--text);
}
.hero-title span {
  display: block;
  background: linear-gradient(
    135deg,
    var(--gold) 0%,
    var(--gold-light) 50%,
    var(--gold-dark) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2.4rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0b;
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-family: "Cairo", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(169, 145, 92, 0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(169, 145, 92, 0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.8rem 2rem;
  border-radius: 5px;
  font-family: "Cairo", sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.stat-item {
  text-align: center;
}
.stat-num {
  font-size: 1.9rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero image side */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(169, 145, 92, 0.08);
}
.hero-img-frame img {
  width: 100%;
  max-width: 520px;
  height: 380px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9) contrast(1.05);
}
.hero-img-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(169, 145, 92, 0.12) 0%,
    transparent 50%,
    rgba(0, 0, 0, 0.3) 100%
  );
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: var(--shadow);
  z-index: 2;
}
.float-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.float-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.float-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ─── SECTION COMMONS ─── */
section {
  padding: 100px 5vw;
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--text);
}
.section-desc {
  color: var(--text-muted);
  max-width: 600px;
  margin: 1rem auto 0;
  font-size: 1rem;
}
.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ─── ABOUT ─── */
#about {
  background: var(--bg2);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
}
.about-visual {
  position: relative;
}
.about-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.about-img-wrap img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1) saturate(0.9);
  display: block;
}
.about-accent {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(169, 145, 92, 0.2) 0%,
    transparent 70%
  );
  border: 1px solid rgba(169, 145, 92, 0.15);
  border-radius: 50%;
}
.about-badge-float {
  position: absolute;
  bottom: 24px;
  left: -24px;
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge-float strong {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.about-badge-float span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.about-content .section-header {
  text-align: right;
}
.about-content .gold-line {
  margin-right: 0;
  margin-left: auto;
}
.about-list {
  list-style: none;
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}
.about-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

/* ─── SERVICES ─── */
#services {
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}
.service-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem 1.8rem;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold));
  transition: width 0.4s;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(169, 145, 92, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}
.service-card:hover::before {
  width: 100%;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(169, 145, 92, 0.15),
    rgba(169, 145, 92, 0.05)
  );
  border: 1px solid rgba(169, 145, 92, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.service-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.service-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── WHY US ─── */
#why {
  background: var(--bg2);
}
.why-inner {
  max-width: 1240px;
  margin: 0 auto;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}
.why-card {
  background: var(--bg4);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition:
    border-color 0.25s,
    transform 0.25s;
}
.why-card:hover {
  border-color: rgba(169, 145, 92, 0.4);
  transform: translateY(-3px);
}
.why-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
}
.why-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.why-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
.why-feat {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.2rem;
  transition: border-color 0.25s;
}
.why-feat:hover {
  border-color: rgba(169, 145, 92, 0.35);
}
.feat-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  background: rgba(169, 145, 92, 0.12);
  border: 1px solid rgba(169, 145, 92, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.feat-text strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.feat-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  background: var(--bg);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1240px;
  margin: 0 auto;
}
.testi-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.25s;
}
.testi-card:hover {
  border-color: rgba(169, 145, 92, 0.3);
}
.quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: rgba(169, 145, 92, 0.2);
  font-family: Georgia, serif;
  position: absolute;
  top: 12px;
  left: 20px;
}
.testi-text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #000;
  flex-shrink: 0;
}
.author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.author-role {
  font-size: 0.76rem;
  color: var(--text-muted);
}
.stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.9rem;
}

/* ─── CONTACT ─── */
#contact {
  background: var(--bg2);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1240px;
  margin: 0 auto;
  align-items: stretch;
}

.contact-info {
  display: flex;
  flex-direction: column;
}
.contact-info .section-header {
  text-align: right;
}
.contact-info .gold-line {
  margin-right: 0;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  text-decoration: none;
  transition: border-color 0.25s;
  color: var(--text);
}
.contact-item:hover {
  border-color: rgba(169, 145, 92, 0.4);
}
.ci-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.ci-text strong {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.1rem;
}
.ci-text span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.map-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  flex: 1 1 0;
  min-height: 220px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: block;
  border: 0;
  filter: brightness(0.85) contrast(1.1);
}

/* ─── CONTACT FORM ─── */
.contact-form-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 768px) {
  .contact-form-wrap {
    padding: 1rem;
  }
}
.form-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text);
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.45rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  background: var(--bg4);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: "Cairo", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s;
  direction: rtl;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea {
  height: 120px;
  resize: none;
  flex: 1;
}
.form-group select option {
  background: var(--bg4);
}

.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #000;
  border: none;
  border-radius: 6px;
  font-family: "Cairo", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    opacity 0.2s,
    transform 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ─── WHATSAPP FLOAT ─── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: var(--text);
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  animation: pulse-wa 2.5s infinite;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
  animation: none;
}

@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow:
      0 4px 32px rgba(37, 211, 102, 0.7),
      0 0 0 8px rgba(37, 211, 102, 0.1);
  }
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 5vw 2rem;
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo img {
  height: 40px;
  filter: brightness(0.85);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  max-width: 1240px;
  margin-right: auto;
  margin-left: auto;
}

/* ─── ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE ─── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    order: -1;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .about-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-badge-float {
    left: 10px;
  }
  .about-content .section-header {
    text-align: center;
  }
  .about-content .gold-line {
    margin: 1rem auto 0;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-features {
    grid-template-columns: 1fr;
  }
  .contact-inner {
    grid-template-columns: 1fr;
  }
  .contact-info .section-header {
    text-align: center;
  }
  .contact-info .gold-line {
    margin: 1rem auto 0;
  }
}

@media (max-width: 640px) {
  section {
    padding: 70px 5vw;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    background: rgba(10, 10, 11, 0.97);
    padding: 1.5rem 5vw;
    gap: 1.2rem;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
  .nav-cta {
    display: none;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .hero-float-card {
    right: 0;
    bottom: -15px;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── CUSTOM ALERT MODAL ─── */
.custom-alert-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.custom-alert-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.custom-alert-box {
  background: var(--bg3);
  border: 1px solid rgba(169, 145, 92, 0.35);
  border-radius: 14px;
  padding: 2.4rem 2.2rem 2rem;
  max-width: 380px;
  width: 90%;
  text-align: center;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(169, 145, 92, 0.1);
  transform: translateY(-18px) scale(0.96);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.25s;
}
.custom-alert-overlay.active .custom-alert-box {
  transform: translateY(0) scale(1);
}
.custom-alert-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(169, 145, 92, 0.2),
    rgba(169, 145, 92, 0.06)
  );
  border: 1px solid rgba(169, 145, 92, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.5rem;
  color: var(--gold);
}
.custom-alert-msg {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.6rem;
}
.custom-alert-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #0a0a0b;
  border: none;
  border-radius: 6px;
  padding: 0.65rem 2.4rem;
  font-family: "Cairo", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(169, 145, 92, 0.3);
}
.custom-alert-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(169, 145, 92, 0.45);
}
