:root {
  --rose: #c9748f;
  --rose-deep: #a85470;
  --blush: #f2c4ce;
  --blush-light: #fce8ed;
  --cream: #fdf5f0;
  --petal: #fde8e8;
  --mauve: #d4a0b0;
  --white: #ffffff;
  --text-dark: #2d1b20;
  --text-mid: #7a4d5c;
  --text-soft: #b07a8a;
  --shadow-soft: 0 8px 40px rgba(180, 100, 130, 0.12);
  --shadow-card: 0 4px 24px rgba(180, 100, 130, 0.1);
  --shadow-hover: 0 16px 56px rgba(180, 100, 130, 0.22);
  --radius: 20px;
  --radius-sm: 12px;
  --transition: all 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: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--petal);
}
::-webkit-scrollbar-thumb {
  background: var(--mauve);
  border-radius: 3px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253, 245, 240, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 116, 143, 0.1);
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(253, 245, 240, 0.97);
  box-shadow: 0 4px 24px rgba(180, 100, 130, 0.08);
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--rose-deep);
  letter-spacing: 0.02em;
  text-decoration: none;
}
.nav-logo span {
  color: var(--mauve);
  font-style: italic;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--rose-deep);
}

.nav-cta {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: white !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 500 !important;
  box-shadow: 0 4px 16px rgba(168, 84, 112, 0.3);
  transition: var(--transition) !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(168, 84, 112, 0.4) !important;
  color: white !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--rose-deep);
  border-radius: 2px;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 32px rgba(180, 100, 130, 0.12);
    gap: 1.25rem;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-hamburger {
    display: flex;
  }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fdf5f0 0%, #fce8ed 40%, #f9d8e2 100%);
  padding: 8rem 2rem 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 70% 40%,
      rgba(201, 116, 143, 0.15) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 50% at 20% 80%,
      rgba(242, 196, 206, 0.3) 0%,
      transparent 60%
    );
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--blush);
  top: -100px;
  right: 10%;
  animation-delay: 0s;
}
.hero-blob-2 {
  width: 300px;
  height: 300px;
  background: var(--mauve);
  bottom: 10%;
  right: 30%;
  animation-delay: 3s;
}
.hero-blob-3 {
  width: 200px;
  height: 200px;
  background: #f0b8c8;
  top: 30%;
  left: 5%;
  animation-delay: 6s;
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -20px) scale(1.05);
  }
  66% {
    transform: translate(-15px, 15px) scale(0.95);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(201, 116, 143, 0.25);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--rose-deep);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}
.hero-badge::before {
  content: "✦";
  font-size: 0.65rem;
  color: var(--rose);
}

.hero-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  animation: fadeUp 0.8s ease 0.1s both;
}
.hero-title em {
  font-style: italic;
  color: var(--rose-deep);
}

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(168, 84, 112, 0.35);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(168, 84, 112, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--rose-deep);
  border: 1.5px solid rgba(201, 116, 143, 0.5);
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-secondary:hover {
  background: var(--petal);
  border-color: var(--rose);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-stat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--rose-deep);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--text-soft);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-cards-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.hero-card-float {
  background: white;
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.hero-card-back {
  position: absolute;
  top: -16px;
  left: 16px;
  right: -16px;
  background: linear-gradient(135deg, #f9d8e2, #fce8ed);
  border-radius: var(--radius);
  height: 100%;
  z-index: -1;
}

.hero-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--blush), var(--mauve));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-card-img-placeholder {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #fce8ed 0%, #f2c4ce 50%, #d4a0b0 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
}

.hero-card-body {
  padding: 1rem 0 0;
}
.hero-card-name {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}
.hero-card-role {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-top: 2px;
}
.hero-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
}
.hero-card-price {
  font-weight: 600;
  color: var(--rose-deep);
  font-size: 0.95rem;
}
.hero-card-stars {
  color: #f5c842;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.floating-tag {
  position: absolute;
  background: white;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  box-shadow: var(--shadow-card);
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  animation: tagFloat 4s ease-in-out infinite;
}
.tag-1 {
  top: 20px;
  right: -30px;
  color: var(--rose-deep);
  animation-delay: 0s;
}
.tag-2 {
  bottom: 30px;
  left: -20px;
  color: var(--text-mid);
  animation-delay: 2s;
}

@keyframes tagFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .hero-visual {
    display: none;
  }
  .hero {
    min-height: auto;
    padding: 7rem 1.5rem 4rem;
  }
}

/* ── SECTIONS ── */
section {
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── CATEGORIES ── */
.categories-section {
  background: white;
}

.categories-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}

.category-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  border: 1.5px solid rgba(201, 116, 143, 0.25);
  background: var(--cream);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
  user-select: none;
}
.category-chip:hover,
.category-chip.active {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  border-color: transparent;
  color: white;
  box-shadow: 0 6px 20px rgba(168, 84, 112, 0.3);
  transform: translateY(-2px);
}
.category-chip .chip-icon {
  font-size: 1rem;
}

/* ── SEARCH & FILTER ── */
.search-section {
  background: linear-gradient(135deg, #fce8ed, #fdf5f0);
  border-top: 1px solid rgba(201, 116, 143, 0.1);
  border-bottom: 1px solid rgba(201, 116, 143, 0.1);
  padding: 3rem 2rem;
}

.search-container {
  max-width: 1200px;
  margin: 0 auto;
}

.search-bar-wrap {
  position: relative;
  max-width: 640px;
  margin: 0 auto 2rem;
}
.search-icon {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--mauve);
  font-size: 1.1rem;
  pointer-events: none;
}
#searchInput {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3.2rem;
  border: 2px solid rgba(201, 116, 143, 0.2);
  border-radius: 50px;
  background: white;
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(180, 100, 130, 0.08);
}
#searchInput:focus {
  border-color: var(--rose);
  box-shadow: 0 4px 24px rgba(180, 100, 130, 0.16);
}
#searchInput::placeholder {
  color: var(--text-soft);
}

.filters-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-select {
  appearance: none;
  padding: 0.65rem 2.2rem 0.65rem 1.1rem;
  border: 1.5px solid rgba(201, 116, 143, 0.25);
  border-radius: 50px;
  background: white
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9748f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat right 0.9rem center;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  color: var(--text-mid);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  min-width: 160px;
}
.filter-select:focus {
  border-color: var(--rose);
}

.sort-select {
  appearance: none;
  padding: 0.65rem 2.2rem 0.65rem 1.1rem;
  border: 1.5px solid rgba(201, 116, 143, 0.25);
  border-radius: 50px;
  background: white
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9748f' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat right 0.9rem center;
  font-family: "DM Sans", sans-serif;
  font-size: 0.85rem;
  color: var(--text-mid);
  cursor: pointer;
  outline: none;
  transition: var(--transition);
  min-width: 160px;
}

.results-count {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 1.25rem;
}
.results-count strong {
  color: var(--rose-deep);
}

/* ── PROVIDER CARDS ── */
.providers-section {
  background: var(--cream);
}

.providers-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

.provider-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  animation: cardIn 0.5s ease both;
}
.provider-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-image-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.card-image-wrap img,
.card-img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  background: linear-gradient(135deg, #fce8ed, #f2c4ce, #d4a0b0);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: white;
  border-radius: 50px;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--rose-deep);
  text-transform: uppercase;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.card-fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  border: none;
}
.card-fav:hover {
  background: var(--petal);
  transform: scale(1.1);
}
.card-fav.active {
  color: var(--rose-deep);
}

.card-avatar {
  position: absolute;
  bottom: -22px;
  left: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid white;
  object-fit: cover;
  background: linear-gradient(135deg, var(--mauve), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: "Playfair Display", serif;
  box-shadow: 0 4px 12px rgba(180, 100, 130, 0.2);
}

.card-body {
  padding: 1.75rem 1.25rem 1.25rem;
}

.card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.card-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
}
.card-name {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 2px;
}

.card-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--rose-deep);
  white-space: nowrap;
}
.card-price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--text-soft);
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0.6rem 0;
  font-size: 0.82rem;
}
.stars {
  color: #f5c842;
  letter-spacing: 1px;
}
.rating-count {
  color: var(--text-soft);
}

.card-location {
  font-size: 0.82rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.75rem;
}

.card-description {
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.card-tag {
  background: var(--blush-light);
  color: var(--rose-deep);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
}

.card-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: white;
  border: none;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-family: "DM Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.card-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
  color: var(--text-soft);
}
.no-results-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
}
.no-results-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

/* ── MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(45, 27, 32, 0.55);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: var(--radius);
  width: 100%;
  max-width: 820px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 32px 80px rgba(45, 27, 32, 0.25);
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  transition: var(--transition);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.modal-close:hover {
  background: var(--petal);
  color: var(--rose-deep);
}

.modal-hero {
  height: 260px;
  width: 100%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fce8ed, #f2c4ce, #d4a0b0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  border-radius: var(--radius) var(--radius) 0 0;
}

.modal-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(255, 255, 255, 0.6)
  );
}

.modal-body {
  padding: 1.75rem 2rem 2rem;
}

.modal-header {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.modal-avatar{
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 4px solid white;
  margin-top: -52px;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--mauve), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.75rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(180, 100, 130, 0.25);
  flex-shrink: 0;
}
.modal-title-block {
  padding-top: 0.5rem;
  flex: 1;
}
.modal-service-name {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3px;
}
.modal-provider-name {
  font-size: 0.9rem;
  color: var(--text-soft);
}
.modal-rating-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.modal-price-badge {
  margin-left: auto;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 16px rgba(168, 84, 112, 0.3);
  align-self: flex-start;
  flex-shrink: 0;
}

.modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
@media (max-width: 600px) {
  .modal-grid {
    grid-template-columns: 1fr;
  }
}

.modal-info-card {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
}
.modal-info-label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  margin-bottom: 0.4rem;
}
.modal-info-value {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
}

.modal-section-title {
  font-family: "Playfair Display", serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.modal-section-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 116, 143, 0.15);
}

.modal-description {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.modal-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.gallery-thumb {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, var(--blush-light), var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  transition: var(--transition);
  position: relative;
}
.gallery-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(180, 100, 130, 0.2);
}
.gallery-thumb::after {
  content: "🔍";
  position: absolute;
  inset: 0;
  background: rgba(168, 84, 112, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: 10px;
}
.gallery-thumb:hover::after {
  opacity: 1;
}

/* BOOKING FORM */
.booking-form {
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.form-group.full {
  grid-column: 1/-1;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-mid);
}

.form-input,
.form-select,
.form-textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(201, 116, 143, 0.2);
  border-radius: var(--radius-sm);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--rose);
  background: white;
  box-shadow: 0 0 0 3px rgba(201, 116, 143, 0.12);
}
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #e05f7f;
  background: #fff8f9;
}
.form-textarea {
  resize: vertical;
  min-height: 80px;
}
.form-select {
  appearance: none;
  cursor: pointer;
}

.form-error {
  font-size: 0.75rem;
  color: #d94068;
  display: none;
  align-items: center;
  gap: 0.3rem;
}
.form-error.show {
  display: flex;
}

.form-submit {
  width: 100%;
  margin-top: 1.25rem;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: white;
  border: none;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-family: "DM Sans", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(168, 84, 112, 0.3);
}
.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(168, 84, 112, 0.4);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* SUCCESS MESSAGE */
.booking-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
  animation: fadeUp 0.5s ease both;
}
.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f2c4ce, var(--rose));
  color: white;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 28px rgba(168, 84, 112, 0.3);
}
.success-title {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.success-sub {
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ── FEATURED SECTION ── */
.featured-section {
  background: white;
}
.featured-banner {
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(135deg, #fce8ed 0%, #fdf5f0 50%, #fce8ed 100%);
  border-radius: var(--radius);
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}
.featured-banner::before {
  content: "✦";
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12rem;
  opacity: 0.06;
  color: var(--rose);
  font-family: "Playfair Display", serif;
}

.featured-text {
  flex: 1;
}
.featured-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.featured-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.featured-sub {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--cream);
}

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  color: var(--blush);
  line-height: 1;
  opacity: 0.5;
}
.testimonial-stars {
  color: #f5c842;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.testimonial-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mauve), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
}
.testimonial-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
}
.testimonial-service {
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* ── STATS ── */
.stats-section {
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  padding: 4rem 2rem;
  color: white;
}
.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ── FOOTER ── */
footer {
  background: #1e1014;
  color: rgba(255, 255, 255, 0.6);
  padding: 4rem 2rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}
.footer-brand-name span {
  color: var(--blush);
  font-style: italic;
}
.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 240px;
}
.footer-col-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--blush);
}

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  text-decoration: none;
  transition: var(--transition);
}
.footer-social:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: white;
}

/* ── BACK TO TOP ── */
#backToTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  box-shadow: 0 6px 20px rgba(168, 84, 112, 0.4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
}
#backToTop:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(168, 84, 112, 0.5);
}

/* ── WHATSAPP ── */
#whatsappBtn {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}
#whatsappBtn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.5);
}

/* ── LOADING ── */
.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
.loading-logo {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--rose-deep);
  margin-bottom: 2rem;
}
.loading-logo span {
  font-style: italic;
  color: var(--mauve);
}
.loading-bar {
  width: 200px;
  height: 3px;
  background: var(--blush-light);
  border-radius: 2px;
  overflow: hidden;
}
.loading-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--rose-deep));
  animation: loadProgress 1.6s ease forwards;
}
@keyframes loadProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* gallery lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  visibility: visible;
}
.lightbox-content {
  max-width: 600px;
  max-height: 80vh;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, var(--blush-light), var(--blush));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  font-size: 8rem;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.lightbox.open .lightbox-content {
  transform: scale(1);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
}




/* ========================= */
/* HERO VISUAL */
/* ========================= */

.hero-visual{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

/* Image Container */
.hero-image-wrapper{
    position:relative;
    width:420px;
    height:520px;
}

/* Main Image */
.hero-main-image{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:32px;
    box-shadow:0 20px 60px rgba(0,0,0,0.18);
    position:relative;
    z-index:2;
}

/* Soft Background Glow */
.hero-glow{
    position:absolute;
    width:300px;
    height:300px;
    background:linear-gradient(
        135deg,
        rgba(255,192,203,0.45),
        rgba(176,122,138,0.25)
    );
    filter:blur(80px);
    border-radius:50%;
    top:-40px;
    right:-50px;
    z-index:1;
}

/* Floating Info Card */
.hero-floating-card{
    position:absolute;
    bottom:25px;
    left:-40px;
    width:260px;
    background:rgba(255,255,255,0.82);
    backdrop-filter:blur(18px);
    padding:1.2rem;
    border-radius:24px;
    box-shadow:0 10px 40px rgba(0,0,0,0.12);
    z-index:3;
    animation:floatCard 4s ease-in-out infinite;
}

/* Card Top */
.hero-card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:10px;
}

.verified-badge{
    background:#f4dbe3;
    color:#9c5c72;
    padding:6px 12px;
    border-radius:50px;
    font-size:0.75rem;
    font-weight:600;
}

.rating{
    color:#f5b400;
    font-size:0.9rem;
}

/* Text */
.hero-floating-card h3{
    font-family:'Playfair Display', serif;
    color:#2d1b20;
    margin-bottom:4px;
    font-size:1.1rem;
}

.hero-floating-card p{
    color:#9c6c7d;
    font-size:0.9rem;
    margin-bottom:14px;
}

/* Footer */
.hero-card-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-size:0.85rem;
    color:#555;
}

.price{
    color:#b07a8a;
    font-weight:700;
}

/* Floating Animation */
@keyframes floatCard{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0px);
    }
}

/* Mobile */
@media(max-width:900px){

    .hero-image-wrapper{
        width:100%;
        max-width:360px;
        height:460px;
    }

    .hero-floating-card{
        left:20px;
        bottom:20px;
        width:220px;
    }
}