/* ===== BASE & RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  color: #2d0d33;
  background: #faf5fb;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250, 245, 251, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123, 45, 142, 0.08);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(123, 45, 142, 0.1); }
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo { display: flex; align-items: center; gap: 0.6rem; }
.logo-icon { flex-shrink: 0; }
.logo-text { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1.15rem; color: #7B2D8E; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: #4a1752;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: #F59E0B; transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: #7B2D8E; }
.nav-cta {
  display: flex; align-items: center; gap: 0.4rem;
  background: #7B2D8E; color: #fff !important; padding: 0.5rem 1rem;
  border-radius: 50px; font-weight: 600; font-size: 0.85rem;
  transition: background 0.2s, transform 0.2s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #5e1f6a; transform: translateY(-1px); }

/* Mobile Toggle */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-toggle span {
  width: 24px; height: 2.5px; background: #7B2D8E; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(250, 245, 251, 0.98); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(123, 45, 142, 0.1);
  padding: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem;
  transform: translateY(-120%); transition: transform 0.35s ease;
  z-index: 999;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-link {
  padding: 0.75rem 1rem; border-radius: 12px; font-weight: 500;
  color: #4a1752; transition: background 0.2s;
}
.mobile-link:hover { background: rgba(123, 45, 142, 0.06); }
.mobile-cta {
  display: flex; align-items: center; gap: 0.5rem;
  background: #7B2D8E; color: #fff; border-radius: 12px;
  justify-content: center; margin-top: 0.5rem;
}

/* ===== HERO ===== */
.hero {
  padding-top: 72px; min-height: 100vh;
  background: linear-gradient(135deg, #faf5fb 0%, #f3eaf5 50%, #e8cff0 100%);
  display: flex; align-items: center; overflow: hidden;
}
.hero-container {
  max-width: 1200px; margin: 0 auto; padding: 3rem 1.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(123, 45, 142, 0.08); color: #7B2D8E;
  padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700; line-height: 1.15; color: #2d0d33;
  margin-bottom: 1.25rem;
}
.hero-title span { color: #7B2D8E; }
.hero-desc {
  font-size: 1.1rem; color: #4a1752; line-height: 1.7;
  margin-bottom: 2rem; max-width: 500px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 1.5rem; align-items: center; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: #7B2D8E; }
.stat-label { font-size: 0.78rem; color: #5e1f6a; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; }
.stat-divider { width: 1px; height: 40px; background: rgba(123, 45, 142, 0.2); }

/* Hero Image */
.hero-image { position: relative; }
.hero-img-wrapper {
  position: relative; border-radius: 24px; overflow: hidden;
  box-shadow: 0 25px 60px rgba(123, 45, 142, 0.2);
}
.hero-img-wrapper img { width: 100%; height: 700px; object-fit: cover; }
.hero-img-accent {
  position: absolute; bottom: -20px; right: -20px;
  width: 120px; height: 120px; border-radius: 50%;
  background: #F59E0B; opacity: 0.15;
}
.hero-float-card {
  position: absolute; bottom: 2rem; left: -2rem;
  background: #fff; border-radius: 16px; padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
  box-shadow: 0 10px 40px rgba(123, 45, 142, 0.15);
  animation: float 3s ease-in-out infinite;
}
.hero-float-card strong { display: block; font-size: 0.9rem; color: #2d0d33; }
.hero-float-card span { font-size: 0.78rem; color: #5e1f6a; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem; border-radius: 50px; font-weight: 600;
  font-size: 0.95rem; border: none; cursor: pointer;
  transition: all 0.25s ease; font-family: 'DM Sans', sans-serif;
}
.btn-primary {
  background: #7B2D8E; color: #fff;
  box-shadow: 0 4px 15px rgba(123, 45, 142, 0.3);
}
.btn-primary:hover { background: #5e1f6a; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(123, 45, 142, 0.35); }
.btn-secondary {
  background: transparent; color: #7B2D8E;
  border: 2px solid rgba(123, 45, 142, 0.3);
}
.btn-secondary:hover { background: rgba(123, 45, 142, 0.06); border-color: #7B2D8E; }
.btn-outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ===== SECTION COMMON ===== */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: #F59E0B;
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700; color: #2d0d33; line-height: 1.2; margin-bottom: 1rem;
}
.section-desc { font-size: 1.05rem; color: #5e1f6a; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* ===== SERVICES ===== */
.services { padding: 6rem 0; background: #fff; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
  background: #faf5fb; border-radius: 20px; padding: 2rem;
  border: 1px solid rgba(123, 45, 142, 0.06);
  transition: all 0.3s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(123, 45, 142, 0.1);
  border-color: rgba(123, 45, 142, 0.15);
}
.service-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, #7B2D8E, #a84bb0);
  display: flex; align-items: center; justify-content: center;
  color: #fff; margin-bottom: 1.25rem;
}
.service-card h3 {
  font-size: 1.1rem; font-weight: 700; color: #2d0d33; margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.9rem; color: #5e1f6a; line-height: 1.65; }

/* ===== ABOUT ===== */
.about { padding: 6rem 0; background: linear-gradient(180deg, #faf5fb 0%, #f3eaf5 100%); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-images { position: relative; }
.about-img-main { border-radius: 24px; overflow: hidden; box-shadow: 0 20px 50px rgba(123, 45, 142, 0.15); }
.about-img-main img { width: 100%; height: 600px; object-fit: cover; }
.about-img-float {
  position: absolute; bottom: -2rem; right: -2rem;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 15px 40px rgba(123, 45, 142, 0.2);
  border: 4px solid #fff;
}
.about-img-float img { width: 400px; height: 300px; object-fit: cover; }
.about-experience-badge {
  position: absolute; top: -1rem; left: -1rem;
  background: #7B2D8E; color: #fff; border-radius: 16px;
  padding: 1rem 1.25rem; display: flex; align-items: center; gap: 0.5rem;
}
.about-experience-badge .exp-num { font-family: 'Playfair Display', serif; font-size: 1.75rem; font-weight: 700; color: #F59E0B; }
.about-experience-badge .exp-label { font-size: 0.75rem; font-weight: 600; line-height: 1.3; }
.about-content .section-tag { text-align: left; }
.about-content .section-title { text-align: left; }
.about-text { font-size: 1rem; color: #4a1752; line-height: 1.75; margin-bottom: 1rem; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin-top: 1.5rem; }
.about-feature {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.88rem; font-weight: 500; color: #4a1752;
}

/* ===== GALLERY ===== */
.gallery { padding: 6rem 0; background: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery-item {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 5/4; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45, 13, 51, 0.75) 0%, transparent 60%);
  display: flex; align-items: flex-end; padding: 1.5rem;
  opacity: 0; transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: #fff; font-weight: 600; font-size: 0.95rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 6rem 0; background: linear-gradient(135deg, #7B2D8E 0%, #4a1752 100%); }
.testimonials .section-tag { color: #F59E0B; }
.testimonials .section-title { color: #fff; }
.testimonials .section-desc { color: rgba(255,255,255,0.7); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: rgba(255,255,255,0.08); border-radius: 20px; padding: 2rem;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px); transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-4px); }
.testimonial-stars { display: flex; gap: 0.2rem; margin-bottom: 1.25rem; }
.testimonial-text { font-size: 0.95rem; color: rgba(255,255,255,0.88); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(245, 158, 11, 0.2);
  display: flex; align-items: center; justify-content: center;
}
.testimonial-author strong { display: block; font-size: 0.9rem; color: #fff; }
.testimonial-author span { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ===== CTA BANNER ===== */
.cta-banner { padding: 5rem 0; background: linear-gradient(135deg, #faf5fb 0%, #f3eaf5 100%); }
.cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700; color: #2d0d33; margin-bottom: 0.5rem;
}
.cta-desc { font-size: 1rem; color: #5e1f6a; max-width: 480px; }
.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== CONTACT ===== */
.contact { padding: 6rem 0; background: #fff; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-info .section-tag { text-align: left; }
.contact-info .section-title { text-align: left; }
.contact-desc { font-size: 1rem; color: #5e1f6a; line-height: 1.7; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(123, 45, 142, 0.06);
  display: flex; align-items: center; justify-content: center;
}
.contact-item strong { display: block; font-size: 0.85rem; color: #2d0d33; margin-bottom: 0.15rem; }
.contact-item span, .contact-item a { font-size: 0.9rem; color: #5e1f6a; }
.contact-item a:hover { color: #7B2D8E; }

/* Form */
.contact-form-wrap {
  background: #faf5fb; border-radius: 24px; padding: 2.5rem;
  border: 1px solid rgba(123, 45, 142, 0.08);
}
.form-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #2d0d33; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block; font-size: 0.82rem; font-weight: 600;
  color: #4a1752; margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.04em;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 12px;
  border: 1.5px solid rgba(123, 45, 142, 0.15);
  background: #fff; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
  color: #2d0d33; transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: #7B2D8E; box-shadow: 0 0 0 3px rgba(123, 45, 142, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input::placeholder, .form-group textarea::placeholder { color: #c074d6; }

/* Success State */
.form-success {
  display: none; text-align: center; padding: 2rem 1rem;
}
.form-success.show { display: block; }
.success-icon { margin-bottom: 1rem; }
.form-success h4 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #2d0d33; margin-bottom: 0.5rem; }
.form-success p { color: #5e1f6a; margin-bottom: 1.5rem; }

/* ===== FOOTER ===== */
.footer { background: #2d0d33; color: rgba(255,255,255,0.7); padding: 4rem 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-top: 1rem; max-width: 280px; }
.footer-links h4, .footer-contact h4 {
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: #F59E0B; margin-bottom: 1rem;
}
.footer-links ul, .footer-contact ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links li a, .footer-contact li {
  font-size: 0.88rem; transition: color 0.2s;
  display: flex; align-items: flex-start; gap: 0.5rem;
}
.footer-links li a:hover { color: #F59E0B; }
.footer-contact li { color: rgba(255,255,255,0.6); }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: #F59E0B; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 0.5rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: #F59E0B; }

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { max-width: 500px; margin: 0 auto; }
  .hero-float-card { left: 1rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-images { max-width: 500px; margin: 0 auto; }
  .about-content .section-tag, .about-content .section-title { text-align: center; }
  .about-text { text-align: center; }
  .about-features { max-width: 400px; margin: 1.5rem auto 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info .section-tag, .contact-info .section-title { text-align: center; }
  .contact-desc { text-align: center; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .hero { padding-top: 72px; }
  .hero-img-wrapper img { height: 450px; }
  .hero-float-card { left: 0.5rem; bottom: 1rem; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-img-float { right: 0; bottom: -1rem; }
  .about-img-float img { width: 260px; height: 200px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .stat-divider { width: 40px; height: 1px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
}
