body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #ff00cc;
  color: #333;
}
.service-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 8px 0;
  padding: 5px 10px;
  background-color: #ffeaf5;
  border-radius: 5px;
}

.service-row label {
  flex: 1;
  margin-left: 8px;
}

.service-row input[type="number"] {
  width: 60px;
  margin: 0 10px;
}

.price-text {
  min-width: 60px;
  text-align: right;
  color: #a00060;
  font-weight: bold;
}

.total-section {
  background-color: #ffe0f0;
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
}

.button-row {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.button-row button {
  padding: 10px 20px;
  font-weight: bold;
  background-color: #d63384;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.button-row button:hover {
  background-color: #ad2167;
}






.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

header, footer {
  text-align: center;
  background: #e60073;
  padding: 10px;
  color: white;
}

#hero {
  text-align: center;
  padding: 40px 20px;
  background: #ff33cc;
  color: white;
}

.cta-btn {
  padding: 10px 20px;
  background: orange;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.booking-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  background: #ffe6f0;
  padding: 30px;
  border-radius: 10px;
  border: 3px solid #ff66b2;
  gap: 30px;
}

.left-column, .right-column {
  width: 48%;
}

.left-column {
  background: #ffd6e7;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #ff4da6;
}

.left-column h3 {
  text-align: center;
  margin-bottom: 20px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.price-list label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: bold;
}

.price-list input[type="number"] {
  width: 60px;
  margin-left: 10px;
}

.total-section {
  background: #fff0f5;
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
  border: 2px solid #ff80bf;
  text-align: center;
}

.total-section h4 {
  margin-bottom: 10px;
}

.total-section ul {
  text-align: left;
  margin: 0 auto 10px;
  padding: 0;
  list-style-position: inside;
}

.total-section button {
  margin: 10px;
  padding: 10px 20px;
  background: #ff3399;
  border: none;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

.total-section button:hover {
  background: #e60073;
}

form input, form select, form button {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
}

form button {
  background: #e60073;
  color: white;
  border: none;
  cursor: pointer;
}


.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 35px;
  width: 50px;
  height: 50px;
  z-index: 999;
}

.whatsapp-btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background-color: #25d366;
  padding: 10px;
  box-shadow: 0 4px 6px rgba(190, 5, 5, 0.3);
  transition: transform 0.3s ease;
}

.whatsapp-btn img:hover {
  transform: scale(1.1);
}





