:root {
  --pink:        #f4547a;
  --pink-dark:   #d43060;
  --pink-light:  #ffe4ec;
  --pink-border: #fce4ec;
  --dark:        #1f1f1f;
  --gray:        #464646;
  --light:       #ffffff;
  --white:       #ffffff;
  --green:       #25d366;
  --orange:      #ff6b35;
  --shadow-sm:   0 2px 12px rgba(244,84,122,0.08);
  --shadow-md:   0 4px 24px rgba(244,84,122,0.13);
  --shadow-lg:   0 8px 32px rgba(244,84,122,0.20);
  --radius-sm:   12px;
  --radius-md:   16px;
  --radius-lg:   20px;
  --transition:  0.2s ease;
  --font-display: 'Outfit',  sans-serif;
  --font-body:    'Outfit', sans-serif;
  --font-main: "Outfit", sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  background: var(--light);
  color: var(--dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: #A30057; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

img.lazy { opacity: 0; transition: opacity 0.4s ease; }
img.lazy.loaded { opacity: 1; }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 60px;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #ff1493;
  letter-spacing: -0.5px;
  text-shadow: 0 1px 0 rgba(0,0,0,0.08);
  -webkit-text-stroke: 0.3px #ff1493;
}

.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--gray); font-size: 0.9rem; font-weight: 300; transition: color var(--transition); }
.nav-links a:hover { color: var(--pink); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span { display: block; width: 22px; height: 2px; background: var(--dark); border-radius: 2px; }

.hero { background: #fce8ef; }
.hero-img-wrap { width: 100%; max-height: 520px; overflow: hidden; }
.hero-img-wrap .hero-img { width: 100%; height: 520px; object-fit: cover; object-position: center top; display: block; }

.hero-intro {
  background: var(--white);
  padding: 48px 48px 52px;
}
.hero-intro-inner {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}
.hero-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.2rem);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.18;
  margin-bottom: 16px;
}
.hero-intro p { color: var(--gray); font-size: 1rem; line-height: 1.7; max-width: 900px; margin: 0 auto; margin-bottom: -70px; }

.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 100%);
  color: var(--pink);
  font-size: 0.75rem;
  font-weight: 300;
  text-align: center;
  letter-spacing: 0.03em;
  user-select: none;
  overflow: hidden;
  position: relative;
}
.placeholder-img svg { opacity: 0.22; }
.placeholder-img span { opacity: 0.7; }

.long-desc {
  background: var(--white);
  border: 1px solid var(--pink-border);
  border-radius: var(--radius-lg);
  box-shadow: -1px .1px 12px var(--pink-border);
  padding: 52px 40px;
  max-width: 1300px;
  margin: 0 auto;
  width: calc(100% - 96px);  /* matches container side padding */
}
.long-desc-inner { max-width: 1400px; margin: 0 auto; text-align: center; }
.long-desc h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; margin-bottom: 14px; line-height: 1.2; color: var(--dark); }
.long-desc p { color: var(--gray); font-size: 1rem; line-height: 1.7; margin-bottom: 14px; max-width: 1400px;}

.gallery-section { margin-bottom: 56px; }
.gallery-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; margin-bottom: 5px; text-align: center; margin-top: 50px; }
.gallery-sub { color: var(--gray); font-size: 0.99rem; margin-bottom: 18px; text-align: center; margin-bottom: 35px; }

.slider-wrap { overflow: hidden; border-radius: 16px; }
.slider-track { display: flex; gap: 14px; transition: transform 0.38s cubic-bezier(.4,0,.2,1); will-change: transform;  }

.slide {
  flex: 0 0 calc(33.333% - 10px);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
  background: var(--pink-light);
}
.slide .placeholder-img { width: 100%; height: 100%; font-size: 0.8rem; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(244,84,122,0.72), transparent);
  color: #fff;
  padding: 22px 14px 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

.slider-controls { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: 16px; }
.slider-btn {
  background: var(--white);
  border: 2px solid var(--pink);
  color: var(--pink);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.slider-btn:hover { background: var(--pink); color: #fff; }
.slider-dots { display: flex; gap: 7px; }
.dot { width: 9px; height: 9px; border-radius: 50%; background: #f0c0cf; cursor: pointer; transition: background var(--transition); border: none; padding: 0; }
.dot.active { background: var(--pink); }

.trust-stats.clean {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 0;
  padding: 45px 48px;
  margin-bottom: 45px;
  flex-wrap: wrap;
  border: 1.5px solid var(--pink-border);
  border-radius: var(--radius-lg);
  box-shadow: 2px 10px 14px var(--pink-border);
  margin-top: 35px;
  margin-bottom: 80px;
}

.stat-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex: 1;
  max-width: 200px;
}

.stat-icon {
  width: 45px;
  height: 45px;
  stroke: #3f3f3f;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.stat-card:hover .stat-icon { stroke: var(--pink); }
.stat-card h3 { font-size: 1.6rem; font-weight: 700; margin: 0; line-height: 1; }
.stat-card p { font-size: 0.88rem; color: #464646; margin: 0; line-height: 1.4; }

.disclaimer {
  background: #fffbea;
  border-left: 4px solid #f4c430;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin-bottom: 40px;
}
.disclaimer h5 { font-weight: 400; font-size: 0.93rem; margin-bottom: 5px; color: #92740a; }
.disclaimer p { color: #7a6010; font-size: 0.87rem; line-height: 1.5; }

.footer {
  background: #000000;
  padding: 40px 48px 24px;
  text-align: center;
  border-top: 3px solid #f4547a;
  margin-top: 15px;
}
.footer .footer-inner { max-width: 1400px; margin: 0 auto; }
.footer .footer-social { display: flex; justify-content: center; gap: 16px; margin-bottom: 20px; }
.footer .footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: transparent;
  border: 1.5px solid #f4547a;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: #f4547a;
  transition: all 0.2s ease;
}
.footer .footer-social a:hover { background: #f4547a; color: #fff; transform: translateY(-2px); }
.footer hr { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 16px auto; width: 100%; max-width: 500px; }
.footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 8px;
}
.footer .footer-bottom p { color: rgba(255,255,255,1); margin: 0; }
.footer .footer-bottom a { color: rgba(255,255,255,1); transition: color 0.2s; }
.footer .footer-bottom a:hover { color: #f4547a; }
.footer-links { display: flex; gap: 20px; }

.overlay-btns {
  position: fixed;
  right: 20px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}

.overlay-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: transform var(--transition);
}
.overlay-btn:hover { transform: scale(1.12); }
.overlay-call { background: var(--orange); }
.overlay-chat { background: var(--green); }

.float-btns {
  position: fixed;
  right: 20px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 200;
}

.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  transition: transform var(--transition);
}
.float-btn:hover { transform: scale(1.12); }
.float-call { background: var(--orange); }
.float-chat { background: var(--green); }

@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--white);
    padding: 18px 24px;
    gap: 16px;
    border-bottom: 1px solid #eee;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    z-index: 99;
  }
  .nav-hamburger { display: flex; }
  .hero-img-wrap .hero-img { height: 320px; }
  .footer { padding: 32px 20px 20px; margin-top: 25px; }
}

@media (max-width: 480px) {
  .hero-img-wrap .hero-img { height: 240px; }
  .footer .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 768px) {
  .long-desc {
    width: calc(100% - 40px);
    padding: 36px 24px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .long-desc {
    width: calc(100% - 32px);
    padding: 28px 18px;
  }
}