/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
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 { list-style: none; }

/* ===== NAVBAR ===== */
#navbar { background: transparent; }
#navbar.scrolled {
  background: rgba(255, 248, 240, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(139, 26, 77, 0.08);
}
.nav-link { position: relative; }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #8B1A4D;
  transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

/* Mobile menu */
#mobileMenu.open { opacity: 1; pointer-events: all; }
#mobileMenu.closed { opacity: 0; pointer-events: none; }
.mobile-link { transition: transform 0.3s ease; }
.mobile-link:hover { transform: translateX(8px); }
.menu-line { transition: all 0.3s ease; }
#menuBtn.active .menu-line:nth-child(1) { transform: rotate(45deg) translate(3px, 3px); }
#menuBtn.active .menu-line:nth-child(2) { opacity: 0; }
#menuBtn.active .menu-line:nth-child(3) { width: 24px; transform: rotate(-45deg) translate(3px, -3px); }

/* ===== HERO ===== */
.hero-left { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s 0.3s forwards; }
.hero-right { opacity: 0; transform: translateX(30px); animation: fadeRight 0.8s 0.5s forwards; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  to { opacity: 1; transform: translateX(0); }
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #8B1A4D;
  color: #fff;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(139, 26, 77, 0.3);
}
.hero-btn-primary:hover {
  background: #721540;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 26, 77, 0.4);
}
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #8B1A4D;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid #8B1A4D;
  transition: all 0.3s ease;
}
.hero-btn-secondary:hover {
  background: #8B1A4D;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== SERVICE CARDS ===== */
.service-card { transform: translateY(0); }
.service-card:hover { transform: translateY(-8px); }

/* ===== GALLERY ===== */
.gallery-item {
  box-shadow: 0 4px 20px rgba(139, 26, 77, 0.08);
  transition: box-shadow 0.3s ease;
}
.gallery-item:hover { box-shadow: 0 8px 40px rgba(139, 26, 77, 0.15); }

/* ===== TESTIMONIAL CARDS ===== */
.testimonial-card { transform: translateY(0); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.testimonial-card:hover { transform: translateY(-4px); }

/* ===== CTA BUTTONS ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #8B1A4D;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
}
.cta-btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

/* ===== FORM INPUTS ===== */
.form-input {
  border: 1.5px solid #f0d4e0;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  color: #1a1a1a;
  background: #fff;
  transition: all 0.25s ease;
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: #b0a0a8; }
.form-input:focus {
  border-color: #8B1A4D;
  box-shadow: 0 0 0 3px rgba(139, 26, 77, 0.1);
}
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #8B1A4D;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  transition: all 0.3s ease;
  width: 100%;
}
.form-submit:hover {
  background: #721540;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 26, 77, 0.35);
}
.form-submit:active { transform: translateY(0); }

/* ===== SCROLL REVEAL ===== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal:nth-child(2) { transition-delay: 0.1s; }
.scroll-reveal:nth-child(3) { transition-delay: 0.2s; }
.scroll-reveal:nth-child(4) { transition-delay: 0.3s; }
.scroll-reveal:nth-child(5) { transition-delay: 0.35s; }
.scroll-reveal:nth-child(6) { transition-delay: 0.4s; }

/* ===== DECORATIVE SHAPES ===== */
.geometric-star {
  position: absolute;
  pointer-events: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-btn-primary, .hero-btn-secondary {
    padding: 12px 22px;
    font-size: 14px;
  }
}
