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

/* ── NAV ── */
#navbar {
  background: rgba(42, 18, 40, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
#navbar.scrolled {
  background: rgba(42, 18, 40, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #F5A623;
  transition: width 0.25s;
}
.nav-link:hover::after { width: 100%; }

/* ── HERO ── */
.hero-gradient {
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(107,58,107,0.85) 0%, transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(196,122,8,0.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(107,58,107,0.5) 0%, transparent 50%),
    linear-gradient(160deg, #1A0A1E 0%, #3A1A38 35%, #6B3A6B 65%, #8B5604 100%);
}
.hero-img { object-position: center 30%; }
.hero-pattern {
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.03) 35px, rgba(255,255,255,0.03) 36px);
}

/* Hero entrance animations */
.hero-badge { animation: fadeUp 0.7s ease both; }
.hero-title { animation: fadeUp 0.7s 0.15s ease both; }
.hero-subtitle { animation: fadeUp 0.7s 0.3s ease both; }
.hero-ctas { animation: fadeUp 0.7s 0.45s ease both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Buttons */
.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F5A623;
  color: #2A1228;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 60px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(245,166,35,0.35);
}
.cta-primary:hover {
  background: #FFD966;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.45);
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 60px;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s;
}
.cta-secondary:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
}
.cta-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #2A1228;
  color: #F5A623;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 32px;
  border-radius: 60px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cta-dark:hover {
  background: #3A1A38;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}

/* Scroll indicator */
.scroll-indicator {
  display: block;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
  40% { transform: translateY(8px) translateX(-50%); }
  60% { transform: translateY(4px) translateX(-50%); }
}

/* ── SECTION COMMON ── */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #F5A623;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #2A1228;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #6B7280;
  line-height: 1.7;
  max-width: 560px;
}

/* ── SERVICE CARDS ── */
.service-card {
  background: #fff;
  border: 1px solid #f0e6f0;
  border-radius: 20px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(107,58,107,0.1);
  border-color: #e8ccea;
}

/* ── WHY CARDS ── */
.why-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(107,58,107,0.08);
}

/* ── FORM ── */
.input-field {
  border: 1.5px solid #e5d6e5;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-family: inherit;
  color: #1f2937;
  background: #faf8fa;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  width: 100%;
  appearance: none;
}
.input-field::placeholder { color: #a090a8; }
.input-field:focus {
  border-color: #6B3A6B;
  box-shadow: 0 0 0 3px rgba(107,58,107,0.1);
  background: #fff;
}
select.input-field {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B3A6B' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #6B3A6B;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: 14px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(107,58,107,0.25);
}
.btn-primary:hover {
  background: #5A2D5A;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(107,58,107,0.3);
}
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateY(-2px) rotate(-5deg); }

/* ── MOBILE MENU ── */
#mobileMenu {
  animation: slideDown 0.25s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-link { border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 1rem; }
.mobile-link:last-child { border-bottom: none; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
