/* ===== ROOT & RESET ===== */
:root {
  --bg: #fdf6f0;
  --bg2: #fff8f3;
  --bg3: #fef0e6;
  --rose: #c0566b;
  --rose2: #d4748a;
  --rose-light: #f7dde4;
  --gold: #b5813a;
  --gold2: #d4a055;
  --gold-light: #f0d5a8;
  --white: #ffffff;
  --dark: #2c1a1a;
  --text: #4a3030;
  --text-muted: #8a6a6a;
  --glass: rgba(255,255,255,0.7);
  --glass-border: rgba(192,86,107,0.18);
  --shadow: rgba(192,86,107,0.12);
  --radius: 16px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 3px; }

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg2);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--rose);
  letter-spacing: 4px; margin-bottom: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}
.loader-spinner {
  width: 48px; height: 48px; margin: 0 auto;
  border: 3px solid var(--rose-light);
  border-top-color: var(--rose);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.5} }

/* ===== UTILITIES ===== */
.gold { color: var(--rose); }
.italic { font-style: italic; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section-label {
  text-align: center; color: var(--rose); font-size: 0.8rem;
  letter-spacing: 4px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center; color: var(--dark);
  margin-bottom: 60px; line-height: 1.2;
}
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  transition: var(--transition);
  box-shadow: 0 4px 24px var(--shadow);
}
.glass-card:hover {
  border-color: var(--rose);
  box-shadow: 0 8px 40px rgba(192,86,107,0.18);
  transform: translateY(-4px);
}

/* ===== BUTTONS ===== */
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--rose), var(--rose2));
  color: var(--white); font-weight: 600; font-size: 0.9rem;
  padding: 14px 28px; border-radius: 50px;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(192,86,107,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(192,86,107,0.45);
  background: linear-gradient(135deg, var(--rose2), #e08898);
}
.btn-gold.sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-gold.full-w { width: 100%; justify-content: center; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--rose); color: var(--rose);
  padding: 12px 28px; border-radius: 50px;
  font-weight: 500; font-size: 0.9rem;
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--rose); color: var(--white);
  box-shadow: 0 8px 30px rgba(192,86,107,0.35);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  background: rgba(253,246,240,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(253,246,240,0.96);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 24px rgba(192,86,107,0.1);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--dark);
  white-space: nowrap;
}
.logo-icon { color: var(--rose); font-size: 1rem; }
.nav-links {
  display: flex; gap: 28px; margin-left: auto;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 500; color: var(--text);
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--rose);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--rose); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { margin-left: 8px; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--rose); border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #fff0f3 0%, #fdf6f0 40%, #fce8d5 100%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(circle at 15% 85%, rgba(192,86,107,0.12) 0%, transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(181,129,58,0.1) 0%, transparent 45%),
    radial-gradient(circle at 50% 50%, rgba(192,86,107,0.05) 0%, transparent 60%);
}
/* decorative circles */
.hero::after {
  content: '';
  position: absolute; width: 500px; height: 500px;
  border-radius: 50%; right: -120px; top: -120px;
  background: radial-gradient(circle, rgba(192,86,107,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-bg { display: none; }
.hero-overlay { display: none; }
.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px; max-width: 800px;
}
.hero-tagline {
  color: var(--rose); font-size: 0.8rem; letter-spacing: 4px;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  color: var(--dark); line-height: 1.15; margin-bottom: 20px;
}
.hero-content h1 .gold { color: var(--rose); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted); margin-bottom: 40px; font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block; width: 2px; height: 50px;
  background: linear-gradient(to bottom, var(--rose), transparent);
  margin: 0 auto;
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine { 0%{opacity:1;transform:scaleY(1)} 100%{opacity:0;transform:scaleY(0) translateY(20px)} }

/* ===== ANIMATE UP ===== */
.animate-up { animation: animUp 1s ease forwards; }
@keyframes animUp { from{opacity:0;transform:translateY(40px)} to{opacity:1;transform:translateY(0)} }
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== ABOUT ===== */
.about-section { background: var(--white); }
.about-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: linear-gradient(90deg, transparent, var(--rose), transparent);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-text p { color: var(--text); margin-bottom: 20px; font-size: 0.95rem; }
.cert-badges { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.cert-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg3); border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 12px 16px;
  font-size: 0.8rem; line-height: 1.4; color: var(--text);
}
.cert-badge i { color: var(--rose); font-size: 1.4rem; }
.owner-card { padding: 32px; text-align: center; }
.owner-img-wrap {
  width: 160px; height: 160px; margin: 0 auto 20px;
  border-radius: 50%; overflow: hidden;
  border: 3px solid var(--rose);
  box-shadow: 0 0 30px rgba(192,86,107,0.2);
}
.owner-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.owner-info h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--dark); margin-bottom: 4px; }
.owner-title { color: var(--rose); font-size: 0.85rem; margin-bottom: 12px; }
.owner-desc { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 20px; }

/* ===== SERVICES ===== */
.services-section { background: var(--bg); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card { overflow: hidden; position: relative; background: var(--white); }
.service-img { height: 200px; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-img img { transform: scale(1.08); }
.service-icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose2));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.2rem;
  margin: -26px auto 16px; position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(192,86,107,0.35);
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--dark);
  text-align: center; margin-bottom: 10px; padding: 0 20px;
}
.service-card p { font-size: 0.85rem; color: var(--text-muted); text-align: center; padding: 0 20px 24px; }
.service-card::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.service-card:hover::after {
  border-color: var(--rose);
  box-shadow: 0 0 25px rgba(192,86,107,0.15);
}

/* ===== GALLERY ===== */
.gallery-section { background: var(--bg2); }
.gallery-filters {
  display: flex; gap: 12px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 24px; border-radius: 50px;
  border: 1px solid var(--glass-border);
  background: var(--white); color: var(--text);
  font-size: 0.85rem; cursor: pointer;
  transition: var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: linear-gradient(135deg, var(--rose), var(--rose2));
  color: var(--white); border-color: transparent;
  box-shadow: 0 4px 15px rgba(192,86,107,0.25);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery-item {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 1; cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(192,86,107,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
  color: var(--white); font-size: 1.5rem;
}
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item.hidden { display: none; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(44,26,26,0.95);
  display: none; align-items: center; justify-content: center;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 12px; object-fit: contain; }
.lb-close, .lb-prev, .lb-next {
  position: absolute; background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2); color: var(--white);
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1rem; transition: var(--transition);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--rose); color: var(--white); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--bg3); overflow: hidden; }
.testimonial-slider { overflow: hidden; position: relative; }
.testimonial-track {
  display: flex; gap: 24px;
  transition: transform 0.5s ease;
}
.testimonial-card {
  min-width: 340px; padding: 32px; flex-shrink: 0; background: var(--white);
}
.stars { color: var(--gold); font-size: 1.2rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-size: 0.9rem; color: var(--text); font-style: italic; margin-bottom: 24px; line-height: 1.8; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose2));
  color: var(--white); font-weight: 700; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviewer strong { display: block; color: var(--dark); font-size: 0.9rem; }
.reviewer span { font-size: 0.78rem; color: var(--text-muted); }
.slider-dots { display: flex; gap: 8px; justify-content: center; margin-top: 32px; }
.slider-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose-light); cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--rose); width: 24px; border-radius: 4px; }

/* ===== FAQ ===== */
.faq-section { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border-radius: 12px; overflow: hidden; border: 1px solid var(--glass-border); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; background: var(--bg);
  color: var(--dark); font-size: 0.95rem; font-weight: 500;
  cursor: pointer; border: none; text-align: left;
  transition: background 0.3s;
}
.faq-q:hover { background: var(--rose-light); }
.faq-q i { color: var(--rose); transition: transform 0.3s; flex-shrink: 0; margin-left: 12px; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  background: var(--bg2);
}
.faq-a p { padding: 0 24px 20px; font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }
.faq-item.open .faq-a { max-height: 200px; }

/* ===== CONTACT ===== */
.contact-section { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 40px; margin-bottom: 48px; }
.contact-card { padding: 32px; display: flex; flex-direction: column; gap: 24px; background: var(--white); }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item i { color: var(--rose); font-size: 1.2rem; margin-top: 3px; flex-shrink: 0; }
.contact-item strong { display: block; color: var(--dark); font-size: 0.85rem; margin-bottom: 4px; }
.contact-item span, .contact-item a { font-size: 0.88rem; color: var(--text-muted); }
.contact-item a:hover { color: var(--rose); }
.contact-form { padding: 36px; background: var(--white); }
.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: var(--dark); margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px;
  background: var(--bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px; color: var(--dark);
  font-family: 'Poppins', sans-serif; font-size: 0.88rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(192,86,107,0.1);
}
.form-group select option { background: var(--white); color: var(--dark); }
.form-group textarea { resize: vertical; }
.map-wrap { border-radius: var(--radius); overflow: hidden; height: 360px; border: 1px solid var(--glass-border); }
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark); padding: 60px 0 32px;
  border-top: 1px solid rgba(192,86,107,0.2);
  position: relative; overflow: hidden;
}
.footer-mandala {
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  border: 1px solid rgba(192,86,107,0.1);
  pointer-events: none;
}
.footer-mandala::before {
  content: ''; position: absolute; inset: 20px; border-radius: 50%;
  border: 1px solid rgba(192,86,107,0.07);
}
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.footer-logo .logo-text { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--white); }
.footer-logo p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 4px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--rose2); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(192,86,107,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose2); font-size: 1.1rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--rose); color: var(--white); border-color: var(--rose); }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.4); line-height: 1.8; }

/* ===== FLOATING BUTTONS ===== */
.float-wa {
  position: fixed; bottom: 88px; right: 24px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: floatPulse 2s ease-in-out infinite;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,0.6); }
@keyframes floatPulse {
  0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.4)}
  50%{box-shadow:0 4px 30px rgba(37,211,102,0.7)}
}
#backToTop {
  position: fixed; bottom: 24px; right: 24px; z-index: 800;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose2));
  color: var(--white); border: none; cursor: pointer;
  font-size: 1rem; display: none; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(192,86,107,0.35);
  transition: var(--transition);
}
#backToTop.visible { display: flex; }
#backToTop:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(192,86,107,0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; gap: 0;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(253,246,240,0.98);
    align-items: center; justify-content: center;
    z-index: 999;
  }
  .nav-links.open li a { font-size: 1.4rem; padding: 16px; display: block; color: var(--dark); }
  .hamburger { display: flex; z-index: 1000; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 280px; }
  .section { padding: 70px 0; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: center; }
  .cert-badges { flex-direction: column; }
}
