.page-title .content.text-center,
.page-title .content.text-left,
.page-title .content.text-right {
    background-image: none !important;
}
.rating .icon-star {
    color: #ccc; /* warna bintang kosong */
}
.rating .icon-star.active {
    color: #f5b301; /* warna bintang aktif (kuning keemasan) */
}
.wg-philosophy .images > .img1,
.wg-philosophy .images > .img2 {
    width: 470px !important;
    max-width: 100%; /* Supaya tetap responsif di layar kecil */
    height: auto; /* Menjaga rasio gambar */
}
.swiper-container {
	z-index: 6666 !important;
}
.portfolio-item .content .wrap {
	justify-content: center;
}
/* Pastikan alert berada sejajar dan konsisten dengan form */
.alert-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.alert {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    box-sizing: border-box;
}

/* warna alert */
.alert-success {
    background-color: #e6f9ed;
    color: #1b6533;
}

.alert-danger {
    background-color: #ffe8e8;
    color: #a12d2d;
}

/* Pastikan alert menyesuaikan grid .book-form */
.book-form .alert {
    margin-left: 0;
    margin-right: 0;
}
/* === HERO SECTION STYLE === */
.hero-section {
    position: relative;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-section.has-bg-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* JS helper kalau mau auto-apply data-bg */
.hero-section[data-bg] {
    background-image: url('');
}
.hero-section[data-bg]:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--hero-bg-url);
}

/* Overlay untuk image */
.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.549);
    z-index: 1;
}

/* Konten */
.hero-content-wrap {
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

/* Gaya teks */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.hero-subtitle {
    font-size: 1.8rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    color: #f1f1f1;
}

@media (max-width: 767px) {
    .banner-page .content .banner-text {
        font-size: 45px;
        line-height: 60px;
        letter-spacing: 7.5px;
        padding: 0px;
    }

    .hero-title { font-size: 1.6rem; }
    .hero-subtitle { font-size: 1rem; }
}