@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");

html,
body {
  height: 100%;
  width: 100%;
  font-family: Poppins;
}

:root {
  --primary-color: #009245;
  --primary-white: #ffffff;
  --primary-dark: #1e1e1e;
}

.booking {
  padding: 3rem 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 4rem;
}

.booking-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.booking-step {
  flex: 1 1 30%;
  position: relative;
}

.booking-step img {
  width: 100%;
  max-width: 280px;
  height: 200px;
  margin: 1.5rem auto;
  object-fit: cover;
}

.step-number {
  font-size: 4rem;
  font-weight: bold;
  color: var(--primary-dark);
  display: block;
}

.booking-step p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
}

.form-wrapper {
  max-width: 400px;
  margin: 0 auto;
  padding: 24px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.05);
}

.form-pad {
  padding: 0 0 3rem;
}

.form-tabs {
  max-width: 400px;
  margin: auto;
  display: flex;
  justify-content: center;
  border-bottom: 2px solid #ddd;
  margin-bottom: 24px;
}

.tab-title {
  flex: 1;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  padding: 12px 0;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-title.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.form-page {
  display: none;
}

.form-page.active {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 80px;
}

.subtext {
  font-size: 0.875rem;
  color: #777;
  margin-top: -8px;
  margin-bottom: 4px;
}

.required {
  color: red;
  margin-left: 4px;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
}

.form-button {
  padding: 12px 24px;
  background-color: var(--primary-dark);
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.4s ease;
}

.form-button:hover {
  background-color: var(--primary-color);
}

.button-group {
  display: flex;
  justify-content: flex-end;
}

.form-button:not(:last-child) {
  margin-right: 12px;
}

.service-card {
  display: flex;
  justify-content: space-between;
  border: 3px solid var(--primary-dark);
  border-radius: 15px;
  overflow: hidden;
  padding: 1.5rem;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  transition: 0.4s ease;
}

.service-card:hover {
  border: 3px solid var(--primary-color);
}

.service-info {
  flex: 1 1 55%;
}

.service-pad {
  padding: 0 0 3rem;
}

.service-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.service-meta {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.service-tags .tag {
  background: #eee;
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.service-location {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.details-btn {
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 999px;
  border: 3px solid var(--primary-dark);
  background: white;
  cursor: pointer;
  transition: 0.3s;
}

.details-btn:hover {
  background-color: #f5f5f5;
  border: 3px solid var(--primary-color);
}

.service-image {
  position: relative;
  flex: 1 1 40%;
  max-width: 300px;
}

.service-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.price-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #f44336;
  color: white;
  padding: 8px 12px;
  font-size: 0.95rem;
  font-weight: bold;
  border-radius: 5px;
}

.price-badge em {
  font-weight: 400;
  font-size: 0.85rem;
  margin-left: 5px;
}

.enquiry-tag {
  position: absolute;
  top: 10px;
  right: -35px;
  transform: rotate(90deg);
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--primary-color);
  padding: 4px 10px;
  border-radius: 4px;
}
