body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: linear-gradient(135deg, #ffe6f0, #e6ccff);
  color: #333;
}

header {
  background: #d36cff;
  color: white;
  padding: 20px;
  text-align: center;
}

nav {
  background: #ff99cc;
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.container {
  max-width: 900px;
  margin: 20px auto;
  background: white;
  padding: 20px;
  border-radius: 12px;
}

button {
  background: #d36cff;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
}

img {
  width: 100%;
  border-radius: 10px;
  margin-top: 10px;
}
.book-btn {
  font-size: 18px;
  padding: 15px 25px;
  background: #ff4da6;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.book-btn:hover {
  background: #cc007a;
}

img {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-top: 15px;
}

.image-box {
  text-align: center;
  margin-top: 20px;
}

.caption {
  font-weight: bold;
  margin-top: 5px;
  color: #cc007a;
}

.services-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.image-box {
  width: 250px;
  text-align: center;
}

.image-box img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.caption {
  font-weight: bold;
  margin-top: 8px;
  color: #cc007a;
}

.review-box {
  background: white;
  padding: 15px;
  margin-top: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 5px;
}

.star-rating input {
  display: none;
}

.star-rating label {
  font-size: 35px;
  color: #ccc;
  cursor: pointer;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
  color: #ff4da6;
}

.review-slider {
  overflow: hidden;
  width: 100%;
}

.review-track {
  display: flex;
  animation: slideReviews 24s infinite;
}

.slide {
  width: 100%;
  flex-shrink: 0;
  box-sizing: border-box;
}

@keyframes slideReviews {
  0% { transform: translateX(0); }
  28% { transform: translateX(0); }

  33% { transform: translateX(-100%); }
  61% { transform: translateX(-100%); }

  66% { transform: translateX(-200%); }
  94% { transform: translateX(-200%); }

  100% { transform: translateX(0); }
}

.review-box {
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
  background: white;
  border-radius: 12px;
  margin: 10px;
  font-size: 16px;
  line-height: 1.6;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.price-card {
  background: #ffe6f0;
  border: 2px solid #d36cff;
  border-radius: 12px;
  padding: 15px;
  width: 220px;
  text-align: center;
}

.price-card h3 {
  color: #cc007a;
  margin-bottom: 5px;
}

.disclaimer {
  background: #fff0f7;
  border-left: 5px solid #d36cff;
  padding: 15px;
  margin-top: 25px;
  border-radius: 10px;
}

a {
  color: #cc007a;
  font-weight: bold;
}

.services-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  padding: 10px;
}

.image-box img {
  width: 100%;
  border-radius: 10px;
}

.service-images {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.service-images div {
  text-align: center;
}

.service-images img {
  width: 100%;
  max-width: 200px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

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

.gallery-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  transition: 0.3s;
}

.gallery-grid a {
  display: inline-block;
  margin: 5px;
}

form {
  background: #fff0f7;
  padding: 20px;
  border-radius: 15px;
  border: 2px solid #d36cff;
}

form label {
  font-weight: bold;
  color: #cc007a;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #d36cff;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 15px;
}

form textarea {
  resize: vertical;
}

form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: #ff4da6;
  box-shadow: 0 0 5px #ff99cc;
}