/* ========= Fonts & Variables ========= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700&family=Poppins:wght@300;400;500;600&display=swap');

:root {
  --pink: #ffe2ee;
  --pink-deep: #f7b8d4;
  --purple: #d9c2f0;
  --purple-deep: #b98ee0;
  --white: #fffaff;
  --gold: #c9a04e;
  --gold-light: #e6cd8b;
  --text: #5a4a5e;
  --text-light: #8a778d;
  --shadow: 0 8px 24px rgba(185, 142, 224, 0.15);
  --radius: 18px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--pink) 0%, var(--white) 35%, var(--purple) 100%);
  background-attachment: fixed;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  color: var(--text);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.gold {
  color: var(--gold);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========= Decorative Flowers ========= */
.flower-decor {
  position: absolute;
  font-size: 2.5rem;
  opacity: 0.35;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ========= Header / Nav ========= */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 255, 0.85);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(185, 142, 224, 0.12);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.logo span.sub {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

nav a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--gold);
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--purple-deep);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ========= Buttons ========= */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-deep), var(--pink-deep));
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 32px rgba(185, 142, 224, 0.38);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

/* ========= Hero ========= */
.hero {
  position: relative;
  text-align: center;
  padding: 100px 24px 80px;
  overflow: hidden;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.hero .tagline {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: var(--purple-deep);
  font-weight: 500;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.hero .subtagline {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ========= Sections ========= */
section {
  padding: 70px 24px;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 12px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ========= Cards Grid ========= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.card {
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(217, 194, 240, 0.4);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.38s ease,
              border-color 0.38s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(185, 142, 224, 0.3);
  border-color: rgba(185, 142, 224, 0.65);
}

.card .icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--text-light);
  font-size: 0.95rem;
}

a.card {
  display: block;
  cursor: pointer;
  color: inherit;
}

/* ========= Image Background Cards ========= */
.card-image {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px 24px;
  border: none;
}

.card-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.65) 100%);
  border-radius: inherit;
  z-index: 0;
  transition: background 0.38s ease;
}

.card-image:hover::before {
  background: linear-gradient(to bottom, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0.55) 100%);
}

.card-image > * {
  position: relative;
  z-index: 1;
}

.card-image .icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.card-image h3 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.card-image p {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
}

.card-image .card-link-hint {
  color: var(--gold-light);
  margin-top: 12px;
}

.card-link-hint {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  transition: gap 0.2s ease;
}

a.card:hover .card-link-hint {
  text-decoration: underline;
}

/* ========= Highlight / Feature Section ========= */
.feature-band {
  background: linear-gradient(135deg, rgba(217, 194, 240, 0.4), rgba(247, 184, 212, 0.4));
  border-radius: var(--radius);
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 32px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.feature-band h2 {
  margin-bottom: 16px;
}

.feature-band p {
  max-width: 650px;
  margin: 0 auto 24px;
  color: var(--text-light);
}

/* ========= Services / Pricing ========= */
.pricing-category {
  max-width: 900px;
  margin: 0 auto 50px;
  position: relative;
  z-index: 1;
}

.pricing-category h3 {
  font-size: 1.5rem;
  color: var(--purple-deep);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-table {
  background: rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(217, 194, 240, 0.3);
  gap: 16px;
  flex-wrap: wrap;
}

.price-row:last-child {
  border-bottom: none;
}

.price-row:hover {
  background: rgba(255, 226, 238, 0.4);
}

.price-row .service-name {
  font-weight: 500;
}

.price-row .service-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  display: block;
  margin-top: 2px;
}

.price-row .price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.1rem;
  white-space: nowrap;
}

.price-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
  margin-top: 40px;
  font-style: italic;
}

/* ========= About Page ========= */
.about-wrap {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.about-photo {
  flex: 1 1 300px;
  min-width: 260px;
}

.about-photo .photo-frame {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--purple), var(--pink-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: var(--shadow);
  border: 6px solid var(--white);
}

.about-text {
  flex: 1 1 380px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 18px;
}

.about-text p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 16px;
}

.value-item {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  box-shadow: var(--shadow);
}

.value-item .icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

/* ========= Contact Page ========= */
.contact-wrap {
  display: flex;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.contact-info {
  flex: 1 1 280px;
}

.contact-info h3 {
  margin-bottom: 16px;
  color: var(--purple-deep);
}

.contact-info ul li {
  margin-bottom: 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-info .icon {
  font-size: 1.4rem;
}

.contact-form {
  flex: 2 1 400px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1.5px solid rgba(217, 194, 240, 0.5);
  background: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--purple-deep);
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
}

.map-embed {
  margin-top: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.map-embed iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* ========= Footer ========= */
footer {
  background: linear-gradient(135deg, var(--purple-deep), var(--pink-deep));
  color: var(--white);
  text-align: center;
  padding: 40px 24px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

footer .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--gold-light);
}

footer .socials {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 16px 0;
}

footer .socials a {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

footer .socials a:hover {
  transform: scale(1.2);
}

footer p {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* ========= Scroll Animation System ========= */
[data-animate] {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger grid: JS assigns delay per child */
.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
.stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ========= Hero Load Animation ========= */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim {
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-anim.d1 { animation-delay: 0.1s; }
.hero-anim.d2 { animation-delay: 0.25s; }
.hero-anim.d3 { animation-delay: 0.4s; }
.hero-anim.d4 { animation-delay: 0.55s; }

/* ========= Header Shrink on Scroll ========= */
header {
  transition: box-shadow 0.35s ease, background 0.35s ease;
}
header.scrolled {
  background: rgba(255, 250, 255, 0.98);
  box-shadow: 0 4px 28px rgba(185, 142, 224, 0.2);
}
.nav-wrapper {
  transition: padding 0.35s ease;
}
header.scrolled .nav-wrapper {
  padding: 8px 24px;
}

/* ========= Full-height Hero (index) ========= */
.hero-full {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
}

/* ========= Floating WhatsApp Button ========= */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 22px;
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.42);
  z-index: 998;
  letter-spacing: 0.3px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.float-wa:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.52);
  color: #fff;
}

/* ========= Section Divider ========= */
.section-divider {
  width: 52px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--purple-deep));
  border-radius: 2px;
  margin: 0 auto 40px;
}

/* ========= Services Page – Tab Nav ========= */
.services-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 20px 0 10px;
  max-width: 900px;
  margin: 0 auto;
}

.services-tab-nav a {
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(217, 194, 240, 0.5);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--purple-deep);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.services-tab-nav a:hover {
  background: var(--purple-deep);
  color: var(--white);
  border-color: var(--purple-deep);
}

/* ========= Services Page – Sub Sections ========= */
.sub-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
  margin: 20px 0 8px 4px;
}

.category-note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 10px;
}

/* ========= Price + Save Badge ========= */
.price-with-save {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.save-badge {
  font-size: 0.72rem;
  font-weight: 600;
  background: linear-gradient(135deg, var(--purple-deep), var(--pink-deep));
  color: var(--white);
  padding: 2px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

/* ========= Laser Package Cards Grid ========= */
.laser-packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 10px;
}

.laser-pkg {
  background: rgba(255, 255, 255, 0.75);
  border: 1.5px solid rgba(217, 194, 240, 0.4);
  border-radius: var(--radius);
  padding: 22px 20px 18px;
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.laser-pkg:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(185, 142, 224, 0.22);
}

.pkg-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-light);
}

.pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--purple-deep);
  line-height: 1.3;
}

.pkg-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin: 4px 0 2px;
}

.laser-pkg ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.laser-pkg ul li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding-left: 12px;
  position: relative;
}

.laser-pkg ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--pink-deep);
}

.pkg-saving {
  margin-top: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--purple-deep);
  background: rgba(217, 194, 240, 0.25);
  border-radius: 8px;
  padding: 5px 10px;
}

.pkg-saving span {
  font-weight: 400;
  color: var(--text-light);
}

/* ========= Mobile ========= */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  nav ul {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 250, 255, 0.97);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: 0 8px 16px rgba(185, 142, 224, 0.15);
  }

  nav ul.open {
    max-height: 320px;
  }

  nav ul li {
    width: 100%;
    text-align: center;
  }

  nav ul li a {
    display: block;
    padding: 16px;
  }

  nav a::after {
    display: none;
  }

  .logo-img {
    height: 44px;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .about-wrap,
  .contact-wrap {
    gap: 30px;
  }
}

.card-laser { background-image: url('../images/laser.webp'); }
.card-dermapen { background-image: url('../images/dermapen.webp'); }
.card-sqt { background-image: url('../images/sqt.webp'); }
.card-body { background-image: url('../images/bodycounter.webp'); }