:root {
  --brand-1: #c2185b;
  --brand-2: #7b1fa2;
  --brand-light: #fce4ec;
  --dark: #2a0a1a;
}

* { font-family: 'Tajawal', sans-serif; }
.font-display { font-family: 'Playfair Display', serif; }

body { color: #333; }

/* ---------- Navbar ---------- */
.site-navbar {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(123,31,162,.08);
  padding: .8rem 0;
}
.site-navbar .navbar-brand { font-weight: 900; font-size: 1.35rem; color: var(--brand-2); }
.site-logo { height: 42px; width: 42px; object-fit: cover; border-radius: 50%; }
.site-navbar .nav-link { font-weight: 600; color: #444; margin: 0 .4rem; }
.site-navbar .nav-link.active, .site-navbar .nav-link:hover { color: var(--brand-1); }

.btn-brand {
  background: linear-gradient(90deg, var(--brand-2), var(--brand-1));
  border: none; color: #fff; font-weight: 700;
}
.btn-brand:hover { color: #fff; filter: brightness(1.08); transform: translateY(-1px); }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--brand-2) 0%, var(--brand-1) 100%);
  color: #fff;
  padding: 6rem 0 8rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,255,255,.08) 0, transparent 40%),
                     radial-gradient(circle at 85% 70%, rgba(255,255,255,.1) 0, transparent 45%);
}
.hero-content { position: relative; z-index: 2; }
.hero h1 { font-weight: 900; font-size: 2.6rem; line-height: 1.3; }
.hero p.lead { font-size: 1.15rem; opacity: .92; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  border-radius: 30px; padding: .4rem 1rem; font-size: .85rem; margin-bottom: 1.2rem;
}
.hero-image-wrap {
  background: rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.25);
}
.hero-image-wrap img { border-radius: 18px; width: 100%; object-fit: cover; max-height: 420px; }
.hero-placeholder {
  border-radius: 18px; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.08);
  font-size: 5rem; color: rgba(255,255,255,.5);
}

/* section shifted up to overlap the hero curve */
.section-overlap { margin-top: -4rem; position: relative; z-index: 3; }

/* ---------- Feature cards ---------- */
.feature-card {
  background: #fff; border-radius: 18px; padding: 2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(123,31,162,.08);
  height: 100%; text-align: center; transition: transform .2s;
}
.feature-card:hover { transform: translateY(-6px); }
.feature-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-2), var(--brand-1));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem; margin: 0 auto 1rem;
}

.section-title { font-weight: 900; color: var(--dark); }
.section-subtitle { color: #888; }

/* ---------- Package cards ---------- */
.pkg-card {
  border-radius: 22px; background: #fff; overflow: hidden;
  box-shadow: 0 10px 30px rgba(123,31,162,.08);
  height: 100%; display: flex; flex-direction: column; transition: transform .2s;
  border: 2px solid transparent;
}
.pkg-card:hover { transform: translateY(-6px); border-color: var(--brand-1); }
.pkg-card .pkg-head {
  background: linear-gradient(135deg, var(--brand-2), var(--brand-1));
  color: #fff; padding: 1.6rem; text-align: center;
}
.pkg-card .pkg-price { font-size: 2.2rem; font-weight: 900; }
.pkg-card .pkg-body { padding: 1.6rem; flex-grow: 1; display: flex; flex-direction: column; }
.pkg-card ul { list-style: none; padding: 0; margin: 0 0 1.4rem; flex-grow: 1; }
.pkg-card ul li { padding: .5rem 0; border-bottom: 1px dashed #f0d9e6; color: #555; }
.pkg-card ul li:last-child { border-bottom: none; }
.pkg-card ul li i { color: var(--brand-1); margin-left: .5rem; }

/* ---------- About ---------- */
.about-hero {
  background: linear-gradient(135deg, var(--brand-2), var(--brand-1));
  color: #fff; padding: 4rem 0;
}
.about-icon-box {
  background: var(--brand-light); border-radius: 16px; padding: 1.4rem; text-align: center; height: 100%;
}
.about-icon-box i { font-size: 2rem; color: var(--brand-1); margin-bottom: .6rem; }

/* ---------- CTA ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--brand-2), var(--brand-1));
  border-radius: 28px; color: #fff; padding: 3.5rem 2rem; text-align: center;
}

/* ---------- Register form ---------- */
.register-wrap { max-width: 640px; margin: 0 auto; }
.form-card { background: #fff; border-radius: 22px; box-shadow: 0 10px 30px rgba(123,31,162,.1); padding: 2.5rem; }

/* ---------- Footer ---------- */
.site-footer { background: var(--dark); color: #eee; }
.footer-link { color: #ddd; text-decoration: none; }
.footer-link:hover { color: var(--brand-1); }
.text-light-50 { color: rgba(255,255,255,.6); }

@media (max-width: 768px) {
  .hero { padding: 4rem 0 6rem; text-align: center; }
  .hero h1 { font-size: 2rem; }
  .section-overlap { margin-top: -2.5rem; }
}
