/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  /* prevent horizontal scroll */
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f7f9f9;
  color: #333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  padding: 4rem 0;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* NAVBAR */
.navbar {
  background: linear-gradient(90deg, #a8edea, #fed6e3);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2f3e46;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  padding: 0.5rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #2f3e46;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #fff;
  transition: 0.3s;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* HERO */
.hero {
  background: #f7f9f9;
  padding: 4rem 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #2f3e46;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
}

.hero-image img {
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  height: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn-outline {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  border: 2px solid #5fb49c;
  border-radius: 50px;
  background: transparent;
  color: #5fb49c;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  line-height: 1.2;
}

.btn-outline:hover {
  background: #5fb49c;
  color: #fff;
}

.btn-primary {
  padding: 0.9rem 1.8rem;
  background: #5fb49c;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  position: relative;
  cursor: pointer;
  z-index: 1;
  overflow: visible;
  transition: background 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 12px rgba(95, 180, 156, 0.4);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 120%;
  border-radius: 50px;
  background: rgba(95, 180, 156, 0.3);
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  z-index: -1;
  animation: pulseButton 2s infinite;
}

@keyframes pulseButton {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }

  70% {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 0;
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

.btn-primary:hover {
  background: #4a9984;
  color: #fff;
  box-shadow: 0 6px 16px rgba(74, 153, 132, 0.5);
}

.btn-secondary {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #ffc857;
  color: #333;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #e6a600;
  color: #fff;
}

/* HOW IT WORKS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step-card {
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.step-card i {
  font-size: 2.5rem;
  color: #5fb49c;
  margin-bottom: 1rem;
}

.step-card:hover {
  transform: translateY(-8px) scale(1.05);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: scale(1.05);
}

.service-card img {
  height: 180px;
  object-fit: cover;
}

.service-info {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-info h3 {
  margin-bottom: 0.5rem;
}

.service-info p {
  flex-grow: 1;
  margin-bottom: 1rem;
}

/* TESTIMONIALS */
.testimonials-section {
  background: #f0fafa;
}

.testimonials-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.testimonials-carousel {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem;
}

.testimonial {
  flex: 0 0 300px;
  background: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1rem;
}

.testimonial span {
  display: block;
  margin-top: 1rem;
  font-weight: 600;
  color: #5fb49c;
}

.arrow {
  background: #5fb49c;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.arrow:hover {
  background: #4a9984;
}

.arrow.left {
  position: absolute;
  left: -20px;
}

.arrow.right {
  position: absolute;
  right: -20px;
}

/* BOOKING */
.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.booking-form input,
.booking-form select {
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 1rem;
  background: #f9f9f9;
  transition: all 0.3s ease;
  width: 100%;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: #5fb49c;
  box-shadow: 0 0 8px rgba(95, 180, 156, 0.4);
  outline: none;
  background: #fff;
}

/* Service + Date full width */
.booking-form select,
.booking-form input[type="datetime-local"] {
  grid-column: span 2;
}

/* Button full width */
.booking-form button {
  grid-column: span 2;
  padding: 1rem;
  font-size: 1.2rem;
  border: none;
  border-radius: 50px;
  background: #5fb49c;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.booking-form button:hover {
  background: #4a9984;
  transform: translateY(-2px);
}

.booking-cta {
  text-align: center;
  margin-top: 2rem;
}

/* FOOTER */
.footer {
  background: linear-gradient(90deg, #5fb49c, #2f3e46);
  color: #fff;
  padding: 3rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer h4 {
  margin-bottom: 1rem;
}

.footer i {
  margin-right: 8px;
}

.footer a {
  color: #fff;
  transition: 0.3s;
}

.footer a:hover {
  color: #ffc857;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 2rem;
}

/* RESPONSIVE NAV */
@media(max-width:768px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    flex-direction: column;
    width: 220px;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .nav-links a {
    color: #333;
  }

  .nav-links.active {
    display: flex;
    animation: fadeIn 0.4s ease;
  }

  .hamburger {
    display: flex;
  }

  .booking-form {
    grid-template-columns: 1fr;
  }

  .booking-form select,
  .booking-form input[type="datetime-local"],
  .booking-form button {
    grid-column: span 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Force hero buttons visible */
.hero-cta a {
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
}



/* Wizard container */
.booking-section {
  max-width: 700px;
  margin: auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.booking-section {
  margin-bottom: 60px; /* add breathing room */
}

/* Inputs */
.booking-section input,
.booking-section select {
  width: 100%;
  padding: 14px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

/* Buttons */
.booking-section button {
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  background: #2ea78c;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
.booking-section button:hover {
  background: #248a72;
}

/* Progress bar */
.progressbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 0;
}
.progressbar li {
  list-style: none;
  flex: 1;
  text-align: center;
  position: relative;
  font-size: 14px;
  color: #bbb;
}
.progressbar li.active {
  color: #2ea78c;
  font-weight: bold;
}
.progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border: 2px solid #bbb;
  display: block;
  text-align: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: #fff;
}
.progressbar li.active:before {
  border-color: #2ea78c;
  color: #2ea78c;
}

/* Step transitions */
.step {
  display: none;
}
.step.active {
  display: block;
  animation: fadeIn 0.5s;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile */
@media(max-width:600px) {
  .booking-section {
    padding: 20px;
  }
  .progressbar li {
    font-size: 12px;
  }
  .booking-section input,
  .booking-section select {
    font-size: 14px;
  }
}




