/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ── NAV ── */
.nav {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107,58,110,0.08);
  box-shadow: 0 1px 8px rgba(107,58,110,0.06);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(107,58,110,0.12); }
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F5A623;
  border-radius: 2px;
  transition: width 0.25s;
}
.nav-link:hover::after { width: 100%; }

/* Mobile menu */
.mobile-menu { animation: slideDown 0.25s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.mobile-link { display: block; }
.menu-line { transition: all 0.3s; }
#menuBtn.active .menu-line:nth-child(1) { transform: translateY(5px) rotate(45deg); }
#menuBtn.active .menu-line:nth-child(2) { opacity: 0; }
#menuBtn.active .menu-line:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

/* ── HERO ── */
.hero-gradient {
  background: linear-gradient(135deg, #3A1C40 0%, #6B3A6E 35%, #9B6AA8 65%, #D4B5D8 100%);
}
.hero-pattern {
  background-image: radial-gradient(circle at 25% 25%, rgba(245,166,35,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.hero-title {
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
  animation: fadeUp 0.8s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Blobs */
.blob { animation: float 8s ease-in-out infinite; }
.blob-2 { animation-delay: -3s; animation-duration: 10s; }
.blob-3 { animation-delay: -5s; animation-duration: 12s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: #F5A623;
  color: #3A1C40;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 60px;
  box-shadow: 0 4px 20px rgba(245,166,35,0.4);
  transition: all 0.25s;
}
.btn-primary:hover {
  background: #FFB833;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.5);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 60px;
  border: 1.5px solid rgba(255,255,255,0.35);
  transition: all 0.25s;
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

/* ── BADGE ── */
.badge {
  display: inline-block;
  background: linear-gradient(135deg, #E8D8EC, #D4B5D8);
  color: #6B3A6E;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
}

/* ── SECTION TITLES ── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #3A1C40;
  line-height: 1.2;
}

/* ── SERVICE CARDS ── */
.service-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(107,58,110,0.06);
  border: 1px solid rgba(107,58,110,0.06);
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(107,58,110,0.12);
  border-color: rgba(245,166,35,0.2);
}

/* ── REVIEW CARDS ── */
.review-card {
  background: white;
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(107,58,110,0.06);
  border: 1px solid rgba(107,58,110,0.06);
  transition: all 0.3s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(107,58,110,0.1);
}

/* ── CTA ── */
.cta-gradient {
  background: linear-gradient(135deg, #5A3060 0%, #6B3A6E 50%, #9B6AA8 100%);
}
.cta-pattern {
  background-image: radial-gradient(circle at 20% 80%, rgba(245,166,35,0.2) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  background: #F5A623;
  color: #3A1C40;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 60px;
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
  transition: all 0.25s;
}
.btn-cta:hover {
  background: #FFB833;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.45);
}
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 32px;
  border-radius: 60px;
  border: 1.5px solid rgba(255,255,255,0.3);
  transition: all 0.25s;
}
.btn-cta-secondary:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* ── INPUTS ── */
.input-field {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #E8D8EC;
  border-radius: 14px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: #3A1C40;
  background: #FDF8FF;
  transition: all 0.2s;
  outline: none;
}
.input-field::placeholder { color: #BA8DC0; }
.input-field:focus {
  border-color: #F5A623;
  background: white;
  box-shadow: 0 0 0 3px rgba(245,166,35,0.15);
}
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6B3A6E, #9B6AA8);
  color: white;
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(107,58,110,0.3);
  transition: all 0.25s;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(107,58,110,0.4);
}

/* ── SCROLL REVEAL ── */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-title { font-size: 2.25rem; }
  .hero-title br { display: none; }
}
