/* Definisi Warna */
:root {
  --primary-color: #25b5a4; /* Teal sesuai dengan logo */
  --secondary-color: #ffa836; /* Oranye sesuai dengan logo */
  --primary-hover: #1e9285; /* Teal lebih gelap untuk hover */
  --secondary-hover: #e89728; /* Oranye lebih gelap untuk hover */
  --light-teal: #e6f5f3; /* Background warna teal yang sangat ringan */
  --light-orange: #fff6e9; /* Background warna oranye yang sangat ringan */
  --white: #ffffff;
  --dark: #212529;
  --gray: #6c757d;
  --light-gray: #f8f9fa;
}

/* Section Lokasi */
.map-section {
  background-color: var(--light-teal);
  padding: 60px 0;
}

.section-title {
  color: var(--primary-color);
  position: relative;
  margin-bottom: 30px;
  font-weight: 600;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 60px;
  height: 3px;
  background-color: var(--secondary-color);
  transform: translateX(-50%);
}

.maps-container-wrapper {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.maps-container-wrapper iframe {
  width: 100%;
  height: 450px;
  display: block;
}

.alamat-info {
  background-color: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
  border-top: 3px solid var(--secondary-color);
}

.alamat-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.location-icon {
  color: var(--primary-color);
  font-size: 24px;
  margin-right: 10px;
}

.alamat-header h3 {
  color: var(--primary-color);
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.facility-name {
  color: var(--dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.address-line,
.phone-line,
.hours-line {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--gray);
}

.address-line i,
.phone-line i,
.hours-line i {
  margin-right: 10px;
  color: var(--primary-color);
}

.phone-line a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.phone-line a:hover {
  color: var(--primary-hover);
}

.maps-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.btn-custom-secondary {
  background-color: var(--secondary-color);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  transition: all 0.3s;
  font-weight: 500;
  text-decoration: none;
}

.btn-custom-secondary:hover {
  background-color: var(--secondary-hover);
  color: var(--white);
}

.btn-custom-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  transition: all 0.3s;
  font-weight: 500;
  text-decoration: none;
}

.btn-custom-primary:hover {
  background-color: var(--primary-hover);
  color: var(--white);
}

.btn-custom-outline-primary {
  background-color: transparent;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 8px 16px;
  border-radius: 5px;
  transition: all 0.3s;
  font-weight: 500;
  text-decoration: none;
}

.btn-custom-outline-primary:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.rating-section {
  margin-top: 20px;
}

.stars {
  display: flex;
  align-items: center;
}

.stars i {
  color: var(--secondary-color); /* Bintang warna oranye */
  margin-right: 2px;
}

.rating-text {
  margin-left: 5px;
  font-weight: 600;
  color: var(--dark);
}

.review-count {
  color: var(--gray);
  font-size: 0.85rem;
}

/* Footer Styles */
footer {
  background-color: var(--primary-color) !important;
  color: var(--white);
}

footer h5 {
  position: relative;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--white);
  padding-bottom: 10px;
}

footer h5::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--secondary-color);
}

footer p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
  padding: 3px 0;
}

.footer-links ul li a:hover {
  color: var(--secondary-color);
  transform: translateX(3px);
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: all 0.3s;
}

.social-icons a:hover {
  background-color: var(--secondary-color);
  color: var(--white);
}

footer hr {
  background-color: rgba(255, 255, 255, 0.1);
}

.logo-img {
  height: 60px;
  width: auto;
}

/* Hero Section Styles */
.hero-section {
  padding: 60px 0;
  background-color: var(--light-teal);
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark);
}

.hero-subtitle {
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.feature-icon {
  width: 32px;
  height: 32px;
  background-color: var(--light-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.feature-icon i {
  color: var(--primary-color);
}

.feature-text {
  font-weight: 500;
}

/* Service Section Styles */
.service-section {
  padding: 60px 0;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 20px;
}

.service-title {
  color: var(--primary-color);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-description {
  color: var(--gray);
  margin-bottom: 15px;
}

/* Facilities Section Styles */
.facilities-section {
  padding: 60px 0;
  background-color: var(--light-teal);
}

.facility-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  height: 100%;
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.facility-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-teal);
  border-radius: 50%;
}

.facility-icon i {
  font-size: 30px;
  color: var(--primary-color);
}

.facility-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.facility-description {
  color: var(--gray);
  font-size: 0.9rem;
}

/* Navigation Active & Hover Styles */
.nav-item .nav-link {
  position: relative;
  color: var(--dark);
  font-weight: 500;
  padding: 8px 15px;
  transition: all 0.3s;
}

.nav-item .nav-link:hover {
  color: var(--primary-color);
}

.nav-item .nav-link.active {
  color: var(--primary-color);
}

.nav-item .nav-link.active::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0;
  height: 2px;
  background-color: var(--primary-color);
}

/* Badge Styles */
.custom-badge {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.custom-badge i {
  font-size: 16px;
}
