.tt-services-carousel-wrap .tt-section-head p {
  max-width: 780px;
}

.tt-services-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .8rem;
  align-items: center;
}

.tt-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.tt-carousel-track {
  display: flex;
  will-change: transform;
}

.tt-carousel-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #ececec;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .06);
  padding: 1rem;
  margin: .25rem;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}

.tt-carousel-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 4px;
  width: 100%;
  background: #FF8C42;
  border-radius: 14px 14px 0 0;
}

.tt-carousel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

.tt-carousel-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #fff4ed;
  color: #FF8C42;
  display: grid;
  place-items: center;
  margin-bottom: .8rem;
}

.tt-carousel-card-icon .dashicons {
  font-size: 30px;
  width: 30px;
  height: 30px;
}

.tt-carousel-card h3 {
  margin: 0 0 .5rem;
  color: #4A4A4A;
}

.tt-carousel-link {
  display: inline-block;
  margin-top: .6rem;
  color: #E67333;
  font-weight: 700;
}

.tt-carousel-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid #ddd;
  background: #fff;
  color: #4A4A4A;
  cursor: pointer;
  font-size: 1.35rem;
}

.tt-carousel-arrow:hover {
  border-color: #FF8C42;
  color: #FF8C42;
}

.tt-carousel-dots {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: .45rem;
  margin-top: .5rem;
}

.tt-carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #cfcfcf;
  cursor: pointer;
}

.tt-carousel-dots button.is-active {
  background: #FF8C42;
}

.tt-home-hero-slider {
  position: relative;
  min-height: 64vh;
  overflow: hidden;
}

.tt-home-hero-track {
  position: relative;
  min-height: 64vh;
}

.tt-home-hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
}

.tt-home-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.tt-home-hero-nav {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .8rem;
  z-index: 3;
}

.tt-hero-arrow {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .5);
  background: rgba(0, 0, 0, .35);
  color: #fff;
  cursor: pointer;
}

.tt-hero-dots {
  display: flex;
  gap: .5rem;
}

.tt-hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
}

.tt-hero-dot.is-active {
  background: #FF8C42;
}

.tt-home-booking-quick-wrap {
  margin-top: -36px;
  position: relative;
  z-index: 5;
}

.tt-home-booking-quick {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  padding: .9rem;
}

.tt-home-booking-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: .7rem;
}

.tt-home-about-image img {
  width: 100%;
  border-radius: 12px;
}

.tt-testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  margin-bottom: .6rem;
}

.tt-home-faq-item {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: .75rem .9rem;
  margin-bottom: .65rem;
}

.tt-home-faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

@media (max-width: 1024px) {
  .tt-home-booking-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .tt-home-about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .tt-services-carousel {
    grid-template-columns: 1fr;
  }

  .tt-carousel-arrow {
    display: none;
  }

  .tt-home-booking-grid {
    grid-template-columns: 1fr;
  }
}