:root{
  --brand:#0f766e;
  --brand2:#6b0f76;
  --text:#0f172a;
  --muted:#475569;
  --bg:#f3f4f6;
  --card:#ffffff;
  --danger:#ff3b5c;
}
body{ font-family:'Cairo',sans-serif; background:var(--bg); color:var(--text); }
a{ text-decoration:none; }
.navbar{ background: linear-gradient(90deg, var(--brand), var(--brand2)); }
.navbar .nav-link{ opacity:.95; }
.navbar .nav-link:hover{ opacity:1; }

.hero{
  padding: 92px 0;
  color:#fff;
  background:
    linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.62)),
    url('https://danazhra.com/dana.webp');
  background-size:cover;
  background-position: center;
}

.btn-call{
  background:var(--danger);
  color:#fff;
  font-weight:800;
  border-radius:999px;
  padding:14px 26px;
  border:0;
}
.btn-call:hover{ filter:brightness(.95); color:#fff; }

.btn-whatsapp{
  background:#16a34a;
  color:#fff;
  font-weight:800;
  border-radius:999px;
  padding:14px 26px;
  border:0;
}
.btn-whatsapp:hover{ filter:brightness(.95); color:#fff; }

.card-soft{
  background:var(--card);
  border:1px solid #e9ecef;
  border-radius:18px;
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.feature-box{
  background:#fff;
  padding: 26px;
  border-radius:18px;
  border:1px solid #eef2f7;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  text-align:center;
  height:100%;
  transition:.25s;
}
.feature-box:hover{ transform: translateY(-6px); }
.feature-icon{ font-size: 2.4rem; color: var(--brand2); margin-bottom:14px; }

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid #e5e7eb;
  background:#fff;
  margin:6px 6px 0 0;
  font-weight:700;
  color:#0f172a;
  font-size:14px;
}

.icon-badge{
  width:44px; height:44px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: rgba(15,118,110,.12);
  color: var(--brand);
  flex: 0 0 auto;
  font-size:18px;
}

.map-wrapper{
  width:100%;
  height:380px;
  border-radius:18px;
  overflow:hidden;
  background:#e5e7eb;
  border:1px solid #e5e7eb;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  position:relative;
}
.map-wrapper iframe{ width:100%; height:100%; border:0; }

.section-title{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-bottom: 10px;
}
.section-title .dot{
  width:10px;height:10px;border-radius:50%;
  background: var(--brand2);
  box-shadow:0 0 0 6px rgba(107,15,118,.12);
}

.contact-band{
  background: linear-gradient(90deg, var(--brand2), var(--brand));
  color:#fff;
  padding: 56px 0;
  margin-top: 10px;
}
footer{
  background:#0b1220;
  color:#cbd5e1;
  padding: 18px 0;
  text-align:center;
}
.footer-links{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:14px;
  margin-top:8px;
}
.footer-links a{ color:#fff; text-decoration:none; opacity:.92; }
.footer-links a:hover{ opacity:1; }

.page-hero{
  padding: 58px 0;
  color:#fff;
  background:
    linear-gradient(rgba(2,6,23,.75), rgba(2,6,23,.75)),
    url('https://danazhra.com/dana.webp');
  background-size:cover;
  background-position:center;
}

.prose p{ line-height:2; color: var(--muted); margin-bottom: 14px; }
.prose ul{ line-height:2; color: var(--muted); }
.form-control, .form-select{ border-radius: 14px; padding: 12px 14px; }
.btn-primary{
  background: var(--brand2);
  border-color: var(--brand2);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
}
.btn-primary:hover{ filter:brightness(.95); }
.small-note{
  font-size: 13px;
  color: #64748b;
}

@media (max-width: 768px){
  .hero{ padding:70px 0; }
  .map-wrapper{ height:300px; }
}