/* ---------- GLOBAL RESET & VARIABLES ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --light-yellow: #fff9e6;
  --pinkish: #ffc0cb;
  --pink-dark: #f8a5b0;
  --pink-deep: #e88d9e;
  --text-dark: #4a3b2c;
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.05);
  --radius: 24px;
}

body {
  font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: var(--light-yellow);
  color: var(--text-dark);
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  background: rgba(255, 245, 220, 0.96);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 2px solid var(--pinkish);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 12px 24px;
}

.logo a {
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: bold;
}

.logo-pink { color: var(--pink-deep); }
.logo-yellow { color: #d4a373; }

.nav-menu {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  transition: all 0.3s;
}

.nav-menu li a {
  text-decoration: none;
  font-weight: 600;
  color: #5e4b3a;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: 0.2s;
}

.nav-menu li a:hover {
  border-bottom-color: var(--pink-dark);
  color: #c25d6e;
}

.mobile-menu-btn {
  display: none;
  background: var(--pinkish);
  border: none;
  font-size: 1.8rem;
  padding: 6px 14px;
  border-radius: 40px;
  cursor: pointer;
  color: #7a4e3a;
}

/* responsive nav */
@media (max-width: 900px) {
  .mobile-menu-btn {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 80%;
    height: calc(100vh - 70px);
    background: #fffaf2;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    transition: 0.3s ease-in-out;
    box-shadow: 4px 0 20px rgba(0,0,0,0.1);
    z-index: 99;
    gap: 1.8rem;
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-menu li a {
    font-size: 1.2rem;
  }
}

/* ---------- HERO SLIDER ---------- */
.hero-slider {
  position: relative;
  height: 520px;
  overflow: hidden;
  border-radius: 0 0 48px 48px;
  margin-bottom: 40px;
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.7s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-content {
  max-width: 700px;
  padding: 20px;
  background: rgba(255, 250, 235, 0.7);
  backdrop-filter: blur(4px);
  border-radius: 48px;
  animation: fadeUp 0.6s;
}

@keyframes fadeUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.slide-content h1, .slide-content h2 {
  font-size: 2.6rem;
  color: #b34e62;
  margin-bottom: 1rem;
}
.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.btn-pink {
  background: var(--pink-dark);
  color: white;
  border: none;
  padding: 12px 32px;
  border-radius: 60px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
}
.btn-pink:hover {
  background: var(--pink-deep);
  transform: scale(1.02);
}

.slider-prev, .slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,215,180,0.7);
  border: none;
  font-size: 2rem;
  width: 44px;
  border-radius: 60px;
  cursor: pointer;
  z-index: 10;
  color: #bf6c7a;
}
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}
.dot {
  width: 12px;
  height: 12px;
  background: #ffe0b5;
  border-radius: 50%;
  cursor: pointer;
}
.dot.active-dot {
  background: #e6788b;
  width: 28px;
  border-radius: 12px;
}

/* ---------- WHY CHOOSE + FACTS ---------- */
.choose-us {
  padding: 60px 0 40px;
}
.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 40px;
}
.section-title span {
  color: #dd7e92;
  border-bottom: 3px solid pink;
}
.choose-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
}
.choose-card {
  background: white;
  border-radius: 32px;
  padding: 30px 24px;
  flex: 1 1 280px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.choose-card i {
  font-size: 2.8rem;
  color: #eb8c9e;
  margin-bottom: 16px;
}
.choose-card h3 {
  margin-bottom: 12px;
}
.facts-effect {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  background: #ffe9db;
  padding: 40px 30px;
  border-radius: 48px;
  margin-top: 20px;
}
.facts {
  flex: 2;
}
.facts h3 {
  margin-bottom: 20px;
  color: #b35164;
}
.facts ul {
  list-style: none;
}
.facts li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}
.effect-cta {
  flex: 1.5;
  background: white;
  padding: 28px;
  border-radius: 38px;
  font-style: italic;
}

/* PRICE SECTION */
.price-section {
  background: #fff5ea;
  padding: 60px 20px;
  margin: 40px 0;
}
.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.price-card {
  background: white;
  border-radius: 32px;
  padding: 28px;
  width: 250px;
  text-align: center;
  transition: 0.2s;
}
.price-card.featured {
  background: #ffe1e6;
  transform: scale(1.02);
  border: 2px solid #f3acbb;
}
.price-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: #c96276;
  margin: 18px 0;
}
.price-card ul {
  text-align: left;
  list-style: none;
  margin-top: 16px;
}
.price-card li {
  margin: 10px 0;
}
.price-card i {
  color: #e68496;
  margin-right: 8px;
}

/* subpages layout: two images left + price list */
.subpage-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 40px 0 60px;
}
.subpage-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.subpage-images img {
  width: 100%;
  border-radius: 28px;
  object-fit: cover;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.subpage-content {
  flex: 1.3;
}
.benefits-text p {
  margin-bottom: 18px;
  line-height: 1.5;
}

/* footer */
.footer-simple {
  background: #f5e6da;
  text-align: center;
  padding: 32px;
  font-size: 0.9rem;
}

/* back to top */
.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  background: var(--pink-dark);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 60px;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 99;
  display: none;
  transition: 0.2s;
}
.back-to-top.show {
  display: block;
}

/* social drawer */
.social-drawer {
  position: fixed;
  bottom: 100px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}
.social-drawer a {
  background: #25d366;
  color: white;
  padding: 10px 18px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: 0.2s;
}
.social-drawer a:hover {
  background: #128C7E;
  transform: scale(1.02);
}

.social-drawer a:first-child {
  background: #25D366;  /* WhatsApp green */
}
.social-drawer a:last-child {
  background: #26A5E4;  /* Telegram blue */
}
.social-drawer a:hover:last-child {
  background: #1e8bc0;
}

@media (max-width: 680px) {
  .hero-slider { height: 440px; }
  .slide-content h1 { font-size: 1.8rem; }
  .choose-grid { flex-direction: column; align-items: center; }
}


/* Two model images side by side (left + right) */
.two-models-grid {
  display: flex;
  gap: 30px;
  margin: 40px 0 30px;
  flex-wrap: wrap;
}
.model-img {
  flex: 1;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.model-img img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.model-img img:hover {
  transform: scale(1.02);
}
/* price section inside subpage */
.price-section-inline {
  background: #fff5ea;
  padding: 30px 20px;
  border-radius: 48px;
  margin: 20px 0 40px;
}
.location-description-bottom {
  margin-top: 20px;
  margin-bottom: 50px;
  background: white;
  padding: 32px 28px;
  border-radius: 48px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.03);
}
.location-description-bottom h1 {
  color: #b34e62;
  margin-bottom: 20px;
  font-size: 2rem;
}
.benefits-text p {
  margin-bottom: 1.2rem;
  line-height: 1.55;
}
@media (max-width: 680px) {
  .two-models-grid {
    flex-direction: column;
    gap: 18px;
  }
  .model-img img {
  }
  .location-description-bottom h1 {
    font-size: 1.6rem;
  }
}