html,
body {
  height: 100%;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

.hero-section {
  background: linear-gradient(rgba(0, 150, 150, 0.8), rgba(0, 150, 150, 0.8));

  background-size: cover;
  background-position: center;

  padding: 120px 0;
}

/* ============================= */
/* SERVICES PAGE */
/* ============================= */

.services-section {
  background: #f8fbfb;
  justify-content: center;
}

.services-title {
  font-size: 34px;
  font-weight: 700;
  color: #2c8f8f;
  position: relative;
}

.services-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #2c8f8f;
  display: block;
  margin: 10px auto;
  border-radius: 3px;
}

.service-row {
  display: flex;
  gap: 20px;
}

.service-row .service-card {
  flex: 1;
}

@media (max-width: 992px) {
  .service-row {
    flex-wrap: wrap;
  }

  .service-row .service-card {
    flex: 1 1 45%;
  }
}

@media (max-width: 576px) {
  .service-row .service-card {
    flex: 1 1 100%;
  }
}

/* ============================= */
/* SERVICE CARD */
/* ============================= */

.service-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-left: 5px solid #2c8f8f;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* ============================= */
/* ICON */
/* ============================= */

.service-icon {
  font-size: 35px;
  margin-bottom: 10px;
}

/* ============================= */
/* TEXT */
/* ============================= */

.service-text {
  color: #666;
  font-size: 15px;
  margin-bottom: 10px;
}

.problem-title {
  font-weight: 600;
  font-size: 18px;
  color: #1f3a3a;
  margin-top: 25px;
  margin-bottom: 10px;
}

/* ============================= */
/* TAGS */
/* ============================= */

.service-tags .badge {
  margin-right: 6px;
}

/* ============================= */
/* DROPDOWN CONTENT */
/* ============================= */

.service-dropdown {
  display: none;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  margin-top: 30px;
  text-align: left;
  outline: none;
}

.service-dropdown.active {
  display: block;
}

.service-dropdown h4 {
  color: #2c8f8f;
  margin-bottom: 15px;
}

.service-dropdown ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

/* ============================= */
/* END DIVIDER */
/* ============================= */

.service-end-divider {
  position: relative;
  margin: 30px 0;
  height: 1px;
  background: #e5e5e5;
}

.service-end-divider::after {
  content: "\f21e";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 8px;
  color: #2c8f8f;
  font-size: 14px;
}

/* ============================= */
/* IP Content Images Style */
/* ============================= */

.room-slider {
  position: relative;
  width: 100%;
  margin: 35px auto;
}

.room-slider img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border: none;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.slider-arrow.left {
  left: 20px;
}

.slider-arrow.right {
  right: 20px;
}

.slider-arrow:hover {
  background: #2c8f8f;
  transform: translateY(-50%) scale(1.1);
}
