/* --- 1. Root & Base Styles --- */
:root {
    --forest-green: #1b4332;
    --emerald: #2d6a4f;
    --sage: #95d5b2;
    --cream: #f8f9f2;
    --gold: #b7965a;
    --transition: all 0.4s ease;
}

body { 
    font-family: 'Montserrat', sans-serif; 
    color: var(--forest-green); 
    background-color: #fff; 
    overflow-x: hidden; 
}

h1, h2, h3, .nav-brand-text { 
    font-family: 'Marcellus', serif; 
}

/* --- 2. Common Components & Utilities --- */
.section-padding { padding: 60px 0; }
.bg-green-soft { background-color: var(--cream); }
.bg-cream { background-color: var(--cream); }
.bg-forest { background-color: var(--forest-green) !important; }
.bg-dark-forest { background-color: #0b1a14; }

.text-gold { color: var(--gold) !important; }
.text-forest-green { color: var(--forest-green); }

.section-tag {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 3px;
    font-size: 0.75rem;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.ls-1 { letter-spacing: 1px; }
.ls-2 { letter-spacing: 2px; }
.ls-5 { letter-spacing: 5px; }
.lh-lg { line-height: 1.8 !important; }
.italic { font-style: italic; }

.btn-forest { 
    background: var(--forest-green); 
    color: white; 
    /* Mengubah dari 0 menjadi 50px untuk bentuk kapsul sempurna */
    border-radius: 50px; 
    padding: 10px 25px; 
    border: none; 
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-forest:hover { 
    /* Menggunakan var(--gold) agar lebih senada dengan aksen Admin/Branding Anda */
    background: var(--gold); 
    color: white; 
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-gold-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 0;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
    transition: 0.3s;
}
.btn-gold-outline:hover { background: var(--gold); color: gold; }

/* --- 3. Navbar --- */
.navbar { background: white; border-bottom: 1px solid rgba(27, 67, 50, 0.1); }
.navbar-brand { padding: 0; }
.navbar-logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}
.navbar-logo:hover { transform: scale(1.05); }

.nav-link { 
    font-size: 0.8rem; 
    font-weight: 600; 
    letter-spacing: 1px; 
    text-transform: uppercase; 
    color: var(--forest-green) !important;
    padding: 10px 15px !important;
}
.nav-link:hover { color: var(--gold) !important; }

/* --- 4. Hero Slider --- */
.hero-slide-bg {
    height: 85vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    transition: all 0.3s ease-in-out;
}
.hero-title { font-size: calc(2.5rem + 3vw); }
.carousel-fade .carousel-item { transition-duration: 1.5s; }
.carousel-indicators [button] {
    width: 12px; height: 12px;
    border-radius: 50%; margin: 0 5px;
}

/* --- 5. About & Welcome Section Refined --- */
.about-image-wrapper { 
    position: relative; 
    padding-bottom: 50px; 
    padding-right: 50px; 
}

.rounded-custom {
    border-radius: 20px; /* Menyelaraskan dengan gaya In-Villa Service sebelumnya */
}

.about-image-main { 
    position: relative; 
    z-index: 2; 
    box-shadow: 30px 30px 80px rgba(27, 67, 50, 0.15); 
}

.about-image-sub {
    position: absolute; 
    bottom: -30px; 
    left: -40px; 
    width: 55%;
    z-index: 3; 
    border: 10px solid white; 
    box-shadow: 10px 10px 40px rgba(0,0,0,0.1);
    border-radius: 15px;
}

.about-experience-badge {
    position: absolute; 
    top: -20px; 
    right: 0;
    background: var(--forest-green); 
    color: var(--gold);
    padding: 35px 25px; 
    z-index: 4; 
    text-align: center; 
    min-width: 160px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(27, 67, 50, 0.2);
}

.about-experience-badge h2 { 
    font-size: 3.5rem; 
    font-weight: 700; 
    line-height: 0.8; 
    margin-bottom: 10px;
}

/* Tipografi Teks yang Lebih Rapi */
.about-text-description .lead {
    font-size: 1.2rem;
    color: var(--forest-green);
    font-weight: 500;
    line-height: 1.6;
    border-left: 3px solid var(--gold);
    padding-left: 20px;
}

.lh-relaxed {
    line-height: 1.9 !important;
    font-size: 0.95rem;
    text-align: justify; /* Membuat blok teks terlihat lebih formal */
}

.about-icon-sm {
    width: 50px; 
    height: 50px; 
    background: var(--cream);
    color: var(--gold); 
    display: flex; 
    align-items: center;
    justify-content: center; 
    font-size: 1.3rem;
    border-radius: 12px;
    transition: var(--transition);
}

.about-feature-item:hover .about-icon-sm {
    background: var(--forest-green);
    color: var(--white);
    transform: translateY(-5px);
}

/* Button Refinement */
.btn-forest {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 18px 45px !important;
}

@media (max-width: 768px) {
    .lh-relaxed { text-align: left; }
    .about-image-wrapper { padding: 0; margin-bottom: 60px; }
}

/* --- 6. Cards & Layouts --- */
.custom-card {
    border: none; border-radius: 0; transition: 0.4s; height: 100%;
    background: white; border: 1px solid rgba(27, 67, 50, 0.05);
}
.custom-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.card-img-wrap { height: 250px; overflow: hidden; }
.card-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

/* Business & Why Choose Us */
.business-icon {
    width: 70px; height: 70px; background: var(--forest-green);
    color: white; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; margin-bottom: 20px;
}
.why-icon { font-size: 2.5rem; color: var(--forest-green); }
.line-divider { height: 2px; background: var(--gold); width: 100%; }
.custom-card.bg-forest:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 37, 33, 0.3) !important;
}

/* --- 7. Who We Work With - Perbaikan Ikon & Round Square --- */
.work-card {
    background: #fff;
    border: 1px solid rgba(27, 67, 50, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    /* Memberikan sudut membulat pada kartu */
    border-radius: 30px; 
    overflow: visible; /* PENTING: Ubah ke visible agar ikon yang menonjol tidak terpotong */
    position: relative;
}

.work-card:hover .work-icon {
    background: var(--gold);
    color: #fff;
    transform: translateX(-50%) translateY(-5px) scale(1.05);
}
.work-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    /* Memberikan sudut membulat hanya pada bagian atas gambar */
    border-radius: 30px 30px 0 0; 
    overflow: hidden; /* Agar gambar terpotong mengikuti radius atas */
    z-index: 1;
}

.work-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.work-icon {
    position: absolute;
    /* Menempatkan ikon tepat di garis pemisah antara gambar dan body */
    bottom: +10px; 
    left: 50%;
    /* Gunakan translate -50% untuk center horizontal yang stabil */
    transform: translateX(-50%); 
    
    width: 60px; /* Sedikit lebih besar agar terlihat premium */
    height: 60px;
    background: #fff; /* Latar belakang putih sesuai gambar contoh */
    color: var(--green); /* Ikon menggunakan warna green */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    
    /* Border putih tebal menciptakan efek 'cut-out' pada gambar */
    border: 6px solid #fff; 
    
    /* Z-index sangat penting agar tidak tertutup gambar */
    z-index: 99; 
    
    font-size: 1.4rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.work-body {
    padding: 45px 25px 30px !important; /* Padding atas lebih besar untuk memberi ruang bagi ikon */
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    /* Memberikan sudut membulat pada bagian bawah teks */
    border-radius: 0 0 30px 30px; 
}

.btn-work-outline {
    display: inline-block;
    padding: 10px 20px;
    border: 1px solid var(--emerald);
    color: var(--emerald);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    margin-top: auto;
    border-radius: 50px; /* Tombol juga dibuat round agar selaras */
}
/* --- 9. Destinations & Gallery --- */
.dest-card-modern {
    background: white; border-radius: 25px;
    overflow: hidden; transition: var(--transition);
    height: 100%; border: 1px solid rgba(0,0,0,0.05);
}
.dest-img-container { height: 250px; position: relative; overflow: hidden; }
.dest-img-container img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.dest-label {
    position: absolute; top: 15px; left: 15px;
    background: rgba(255, 255, 255, 0.9); color: var(--forest-green);
    padding: 5px 15px; border-radius: 50px; font-size: 0.7rem;
    font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}
.dest-card-modern:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(27, 67, 50, 0.1); }
.dest-card-modern:hover img { transform: scale(1.1); }
.dest-card-modern:hover .dest-label { background: var(--gold); color: white; }

.service-gallery-item { position: relative; height: 450px; overflow: hidden; transition: var(--transition); }
.service-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.service-gallery-overlay {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 20px;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.8), transparent);
    color: white; opacity: 0; transition: var(--transition); text-align: center;
}
.service-gallery-item:hover img { transform: scale(1.1); }
.service-gallery-item:hover .service-gallery-overlay { opacity: 1; }
.gallery-img { height: 350px; background-size: cover; background-position: center; }

/* --- 10. Performance Stats Modern --- */

/* --- 11. Footer --- */
.footer-logo { max-height: 45px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.6); text-decoration: none;
    font-size: 0.85rem; transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); padding-left: 5px; }
.social-btn {
    width: 40px; height: 40px; background: rgba(255, 255, 255, 0.05);
    display: flex; align-items: center; justify-content: center;
    color: white; text-decoration: none; border-radius: 50%;
    transition: var(--transition); border: 1px solid rgba(255, 255, 255, 0.1);
}
.social-btn:hover {
    background: var(--gold); color: white;
    transform: translateY(-5px); border-color: var(--gold);
}

/* --- 12. Responsive Adjustments --- */
@media (max-width: 991px) {
    .work-img-wrap { height: 180px; }
    .social-icons { justify-content: flex-start !important; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.2rem !important; }
    .hero-slide-bg { height: 70vh; }
    .section-padding { padding: 40px 0; }
    .navbar-logo { height: 35px; }
    .about-image-wrapper { padding: 0; margin-bottom: 40px; }
    .about-experience-badge { padding: 15px; top: 10px; right: 10px; }
    .stat-item h2 { font-size: 2.5rem; }
    .performance-stats { margin-top: 2rem !important; padding-top: 2rem !important; }
    .why-icon { font-size: 2rem; }
    .custom-card { padding: 30px !important; }
    .service-gallery-item { height: 300px; }
}
/* Villa Specific Styling */
.villa-price-tag {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--forest-green);
    color: white;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-top-left-radius: 20px;
}

.villa-icons i {
    font-size: 0.9rem;
}

.dest-content-simple {
    background: white;
}

/* Memperhalus tampilan pada mobile */
@media (max-width: 576px) {
    .dest-img-container {
        height: 200px; /* Ukuran lebih kecil agar tidak memenuhi layar HP */
    }
    .villa-price-tag {
        font-size: 0.7rem;
        padding: 6px 15px;
    }
}
/* --- Fix In Villa Services Grid --- */

/* Memastikan container kartu tidak tumpang tindih */
.service-fixed-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #fff;
}

/* Mengunci rasio gambar agar semua SAMA TINGGI & LEBAR */
.service-img-box {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 135%; /* Mengunci rasio 3:4 */
    overflow: hidden;
    /* --- Tambahkan kode di bawah ini --- */
    border-radius: 30px; /* Mengatur tingkat kebulatan sudut */
    -webkit-mask-image: -webkit-radial-gradient(white, black); /* Fix untuk bug render di Safari */
}
.service-img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Gambar tidak akan gepeng */
    transition: transform 0.6s ease;
}

/* Overlay teks yang rapi di bawah/dalam gambar */
.service-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.9) 0%, transparent 100%);
    color: #fff;
    z-index: 2;
}

.service-info-overlay small {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.65rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.service-info-overlay h5 {
    font-size: 1rem;
    margin: 0;
    letter-spacing: 1px;
}

/* Hover effect minimalis */
.service-fixed-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: transparent; /* Ubah ke transparan agar bayangan mengikuti bentuk bulat */
    transition: var(--transition);
}

.service-fixed-card:hover {
    transform: translateY(-10px);
    /* Menambahkan bayangan lembut saat di-hover */
    filter: drop-shadow(0 15px 30px rgba(27, 67, 50, 0.15));
}

/* --- Modernized Booklet Button --- */
.btn-booklet-modern {
    display: inline-flex;
    align-items: center;
    background: var(--forest-green);
    color: white !important;
    padding: 16px 35px; /* Lebih tebal agar lebih premium */
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid var(--forest-green);
    border-radius: 50px; /* Round square/pill shape agar modern */
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(27, 67, 50, 0.2);
    z-index: 1;
}

.btn-booklet-modern i {
    transition: transform 0.4s ease;
}

/* Efek Hover */
.btn-booklet-modern:hover {
    background: var(--gold); /* Berubah ke warna emas saat hover */
    border-color: var(--gold);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px #044404;
}

/* Animasi Ikon saat Hover */
.btn-booklet-modern:hover i {
    transform: scale(1.2) rotate(-10deg);
}

/* Efek Cahaya (Shine) saat Hover */
.btn-booklet-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: all 0.6s;
    z-index: -1;
}

.btn-booklet-modern:hover::before {
    left: 100%;
}
/* --- Our Team Modern Section --- */
.team-card-modern {
    position: relative;
    background: transparent;
    transition: var(--transition);
}

.team-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5; /* Rasio potret yang elegan untuk profil */
    overflow: hidden;
    border-radius: 30px; /* Round square yang konsisten */
    z-index: 1;
}

.team-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%); /* Sedikit elegan, berubah saat hover */
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Social Overlay on Hover */
.team-social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 67, 50, 0.7); /* Forest green transparan */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.team-social-overlay a {
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.team-card-modern:hover .team-img-wrap img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.team-card-modern:hover .team-social-overlay {
    opacity: 1;
}

.team-card-modern:hover .team-social-overlay a {
    transform: translateY(0);
}

/* Info Box */
.team-info-box {
    padding: 25px 15px;
    text-align: center;
}

.team-role {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    font-weight: 600;
}

/* Button "Meet Full Team" */
.btn-team-more {
    color: var(--forest-green);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 1px;
    padding-bottom: 5px;
    border-bottom: 2px solid var(--gold);
    transition: var(--transition);
}

.btn-team-more:hover {
    color: var(--gold);
    padding-right: 10px;
}
/* --- Villa Management Modern Section --- */

/* Dekorasi Background Soft Glow */
.morphism-circle-sage {
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(149, 213, 178, 0.2) 0%, transparent 70%);
    top: -200px; left: -100px;
    filter: blur(80px);
    z-index: 1;
}

/* KIRI: Visual Wrapper */
.management-visual-wrapper {
    position: relative;
    padding-bottom: 50px;
}

.rounded-custom {
    border-radius: 20px;
}

.management-img-main {
    box-shadow: 25px 25px 80px rgba(27, 67, 50, 0.1);
    transition: var(--transition);
}

.management-img-main img {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/5; /* Rasio vertikal yang elegan */
}

/* Badge Pengalaman Modern */
.management-experience-badge {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--forest-green);
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(27, 67, 50, 0.2);
    z-index: 3;
    min-width: 170px;
}

/* KANAN: Konten & Kartu Layanan */
.management-service-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(0,0,0,0.03);
    transition: var(--transition);
    height: 100%;
}

.management-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(27, 67, 50, 0.08);
    border-color: var(--sage);
}

/* Ikon dengan Efek Morphism */
.card-icon-morphism {
    width: 50px;
    height: 50px;
    background: var(--cream);
    color: var(--forest-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border-radius: 12px;
    margin-right: 15px;
    flex-shrink: 0;
    transition: var(--transition);
}

.management-service-card:hover .card-icon-morphism {
    background: var(--forest-green);
    color: white;
}

.management-service-card h6 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 0.9rem;
    color: var(--forest-green);
}

/* Penyesuaian Mobile */
@media (max-width: 991px) {
    .management-visual-wrapper {
        padding-bottom: 0;
        margin-bottom: 50px;
    }
   .management-experience-badge {
    position: absolute;
    /* Geser sedikit lebih ke atas agar pas dengan rasio 16:10 */
    bottom: 10px; 
    right: -15px;
    background: var(--forest-green);
    padding: 20px 15px;
    border-radius: 15px;
    z-index: 3;
    min-width: 150px;
    box-shadow: 0 10px 30px rgba(27, 67, 50, 0.2);
}
}
/* --- Additional Detail Elements --- */
.management-detail-header {
    opacity: 0.8;
}

.line-gold {
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.ls-2 {
    letter-spacing: 2px;
}

/* Tombol Proposal Modern */
.btn-management-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--forest-green);
    color: white !important;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(27, 67, 50, 0.15);
}

.btn-management-primary:hover {
    background: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px #044404;
}

/* Mengatur spacing agar teks deskripsi tidak terlalu rapat */
.management-services-grid {
    margin-top: 10px;
}
#villa-management {
    overflow-x: hidden; /* Mencegah badge membuat scroll horizontal di mobile */
}

.management-img-main img {
    width: 100%;
    /* Ubah dari 4/5 menjadi 16/10 agar tidak terlalu memanjang ke bawah */
    aspect-ratio: 16 / 10; 
    object-fit: cover;
    border-radius: 20px; /* Konsisten dengan rounded-custom */
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Sesuaikan juga pembungkusnya agar tidak ada padding berlebih */
.management-visual-wrapper {
    position: relative;
    padding-bottom: 30px; /* Kurangi dari 50px */
}
/* --- Business Development Text Refinement --- */
.lead-text {
    font-size: 1.15rem;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}

.lh-relaxed {
    line-height: 1.8 !important;
    font-size: 0.95rem;
    letter-spacing: 0.2px;
}

/* Memperbaiki agar text-muted tidak terlalu pudar */
.text-muted {
    color: #555555 !important;
}

/* Penyesuaian khusus untuk gambar agar tidak terlalu dominan */
.management-img-main img {
    aspect-ratio: 16/11; /* Rasio yang lebih ramping */
    object-fit: cover;
    width: 100%;
}

.business-description-box {
    animation: fadeInRight 1s ease-out;
}

    .premier-member-section {
        padding: 60px 0;
        background-color: #fff; /* Background section tetap putih */
    }
    
    .member-grid-wrapper {
        max-width: 800px;
        margin: 0 auto;
    }

    .member-grid-container {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 15px;
        margin-top: 30px;
    }

    .round-square-item {
        position: relative;
        width: 100%;
        aspect-ratio: 1 / 1; 
        border-radius: 15px;
        overflow: hidden;
        /* Background Hijau pada kotak logo */
        background-color: #0B3D2E; 
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 12px; 
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .round-square-item img {
        max-width: 85%;
        max-height: 85%;
        width: auto;
        height: auto;
        object-fit: contain;
        /* Memastikan logo terlihat putih di atas background hijau */
        filter: brightness(0) invert(1); 
        transition: transform 0.3s ease;
    }

    .round-square-item:hover {
        transform: translateY(-5px) scale(1.05);
        background-color: #12523d; /* Hijau sedikit lebih terang saat hover */
        box-shadow: 0 10px 20px rgba(11, 61, 46, 0.3);
    }

    /* Teks tetap menggunakan skema warna terang karena background section putih */
    .text-gold { color: #044404; letter-spacing: 2px; }
    .serif-font { font-family: 'Playfair Display', serif; color: #222; }
    .google-reviews-section {
        padding: 80px 0;
        background-color: #fcfbf7; /* Krem pucat yang mewah */
    }
    .review-card {
        background: #fff;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        height: 100%;
        transition: transform 0.3s ease;
        border: 1px solid #f1f1f1;
    }
    .review-card:hover {
        transform: translateY(-10px);
    }
    .google-logo-small {
        width: 30px;
        margin-left: 10px;
    }
    .star-rating {
        color: #044404; /* Gold */
        font-size: 0.9rem;
    }
    .review-text {
        font-style: italic;
        color: #555;
        line-height: 1.6;
    }
    .reviewer-name {
        font-weight: 700;
        color: #222;
        margin-bottom: 0;
    }
    .google-badge {
        display: inline-flex;
        align-items: center;
        background: #fff;
        padding: 10px 20px;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        text-decoration: none;
        color: #333;
        font-weight: 600;
        transition: 0.3s;
    }
    .google-badge:hover {
        background: #4285F4;
        color: #fff;
    }
/* Mengikuti standar theme Anda */
    .section-padding { padding: 100px 0; }
    
    /* Hero Image: Round Square & Not Too Large */
    .hero-wrapper {
        max-width: 900px; /* Membatasi lebar agar tidak terlalu besar */
        margin: 0 auto 50px auto;
    }
    
    .hero-round-square {
        width: 100%;
        aspect-ratio: 16 / 9;
        border-radius: 30px; 
        overflow: hidden;
        box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    }
    
    .hero-round-square img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Deskripsi agar tag HTML dari DB rapi */
    .villa-description {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #444;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .gallery-item {
        aspect-ratio: 1 / 1;
        border-radius: 15px;
        overflow: hidden;
    }

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.3s;
    }

    .gallery-item:hover img { transform: scale(1.1); }
    .villa-description {
        width: 100% !important;
        text-align: justify;
    }

    /* Menggunakan minmax agar kolom bisa melebar jika teks panjang */
    .villa-description ul, 
    .villa-description ol { 
        display: grid !important;
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important; 
        gap: 12px 20px;
        list-style: none !important;
        padding: 0 !important;
        margin: 20px 0 !important;
        width: 100% !important;
    }

    .villa-description li {
        display: flex !important;
        align-items: flex-start;
        font-size: 0.75rem; 
        line-height: 1.4; /* Memberi sedikit ruang antar baris jika teks membungkus */
        position: relative;
        padding-left: 22px !important;
        text-align: left !important;
        /* Menghindari pemotongan kata secara paksa */
        word-break: normal; 
        overflow-wrap: break-word; 
    }

    .villa-description li::before {
        content: "\f00c"; 
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 2px;
        color: #044404;
        font-size: 0.7rem;
    }

    /* Penyesuaian Responsif */
    @media (max-width: 1300px) {
        .villa-description ul { grid-template-columns: repeat(4, 1fr) !important; }
    }
    @media (max-width: 992px) {
        .villa-description ul { grid-template-columns: repeat(3, 1fr) !important; }
    }
    @media (max-width: 768px) {
        .villa-description ul { grid-template-columns: repeat(2, 1fr) !important; }
    }
/* Pastikan class dari Quill terdeteksi di container deskripsi */
.villa-description .ql-align-justify {
    text-align: justify;
}

.villa-description .ql-align-center {
    text-align: center;
}

.villa-description .ql-align-right {
    text-align: right;
}
/* Floating Elements Styling */
.floating-container {
    position: fixed;
    bottom: 20px;
    z-index: 9999;
    width: 100%;
    pointer-events: none; /* Agar tidak menghalangi klik di luar tombol */
}

.floating-container .btn-float {
    pointer-events: auto;
}

/* 1. Cookies Left */
/* Cookies Banner Wide Version */
#cookies-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0; /* Membuat lebar penuh ke kanan */
    background: #ffffff;
    color: #333;
    padding: 15px 0;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.1);
    z-index: 10001;
    display: flex;
    align-items: center;
    border-top: 2px solid #044404; /* Aksen warna Gold PHA */
}

.cookies-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}

/* Ikon Ceklis di dalam Banner */
.cookies-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookies-info i {
    color: #C5A059;
    font-size: 1.2rem;
}

/* Responsif untuk Mobile */
@media (max-width: 768px) {
    .cookies-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    #cookies-banner { padding: 20px; }
}
/* 3. Back to Top Center */
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #044404; /* Warna Gold PHA */
    color: #fff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    opacity: 0;
    visibility: hidden;
    z-index: 10000;
    text-decoration: none;
    border: none;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: #044404;
    color: #fff;
}

/* Animasi Denyut (Pulse) untuk Icon WA */
@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wa-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    z-index: 10000;
    cursor: pointer;
    animation: wa-pulse 2s infinite; /* Animasi aktif */
    transition: 0.3s;
}

/* Chat Box Styling */
.wa-chat-box {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    display: none; /* Sembunyi awal */
    flex-direction: column;
    overflow: hidden;
    z-index: 10001;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.wa-chat-header {
    background: #128c7e;
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-chat-body {
    padding: 15px;
    background: #e5ddd5; /* Warna chat WA */
}

.wa-chat-body textarea {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 10px;
    font-size: 0.9rem;
    resize: none;
}

.wa-chat-footer {
    padding: 10px;
    background: white;
    text-align: right;
}
 /* Styling tambahan untuk kerapian */
    .border-dashed { border: 2px dashed #dee2e6; }
    .text-gold { color: #C5A059; }
    .form-control:focus, .form-select:focus {
        background-color: #fff !important;
        box-shadow: 0 0 0 0.25rem rgba(25, 135, 84, 0.1);
        border: 1px solid #198754;
    }
/* Tambahkan di file CSS Anda atau di dalam tag <style> */
.ql-container {
    cursor: text !important;
}
.ql-editor {
    -webkit-user-select: text !important;
    user-select: text !important;
    min-height: 150px;
}
 .bg-cream { background-color: #fdfaf5; }
        .text-forest-green { color: #1a3a32; }
        .serif-font { font-family: 'Playfair Display', serif; }
        
        /* Modern Team Card Style */
        .team-card-modern {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        .team-card-modern:hover {
            transform: translateY(-10px);
        }
        .team-img-wrap {
            position: relative;
            aspect-ratio: 3/4;
            overflow: hidden;
        }
        .team-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .team-social-overlay {
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            background: rgba(26, 58, 50, 0.9);
            padding: 15px;
            display: flex;
            justify-content: center;
            gap: 15px;
            transition: 0.4s ease;
        }
        .team-card-modern:hover .team-social-overlay {
            bottom: 0;
        }
        .team-social-overlay a {
            color: #fff;
            font-size: 1.1rem;
        }
        .team-info-box {
            padding: 20px;
            text-align: center;
        }
        .team-role {
            font-size: 0.85rem;
            color: #888;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .section-header {
            padding: 100px 0 60px;
            text-align: center;
        }
.blog-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: transform 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            background: #fff;
            height: 100%;
        }
        .blog-card:hover { transform: translateY(-10px); }
        .blog-img-wrap {
            height: 220px;
            overflow: hidden;
            position: relative;
        }
        .blog-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .category-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(26, 58, 50, 0.9);
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.75rem;
            text-transform: uppercase;
        }
        .blog-content { padding: 25px; }
        .blog-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.25rem;
            color: #1a3a32;
            margin-bottom: 15px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .blog-excerpt {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 20px;
        }
        .read-more {
            font-weight: bold;
            color: #1a3a32;
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }
        .blog-content { line-height: 1.8; font-size: 1.1rem; color: #333; }
        .blog-content img { max-width: 100%; height: auto; border-radius: 10px; margin: 20px 0; }
        .featured-header { height: 400px; object-fit: cover; border-radius: 15px; }
        .category-badge { background: #e9ecef; color: #495057; padding: 5px 15px; border-radius: 50px; font-weight: 600; text-transform: uppercase; font-size: 0.8rem; }
        .text-gold { color: #D4AF37; }
        .bg-gold { background-color: gold; color: #044404; }
        .btn-gold { background-color: gold; border: none; }
        .btn-gold:hover { background-color: gold; }
        .breadcrumb-item + .breadcrumb-item::before { content: "|"; color: #ccc; }
        .card-img-top { transition: transform 0.5s ease; }
        .group:hover .card-img-top { transform: scale(1.05); }
        .group:hover .card { box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important; }
        .text-gold { color: #D4AF37; }
        .bg-gold { background-color: #D4AF37; color: #fff; }
        .promo-card { transition: all 0.3s ease; }
        .promo-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important; }
        .btn-dark { background-color: #1a1a1a; border: none; }
        .btn-dark:hover { background-color: #D4AF37; color: white; }
        .text-gold { color: #D4AF37; }
    

        /* Animasi tombol saat diklik */
        .btn-dark:active {
            transform: scale(0.98);
}
.text-light-gray {
    color: #e9ecef;
}

.bg-gold-light {
    background-color: rgba(212, 175, 55, 0.1);
}

.ls-2 {
    letter-spacing: 2px;
}

.transition {
    transition: all 0.3s ease;
}

.shadow-hover:hover {
    border-color: #044404 !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.divider-gold {
    width: 50px;
    height: 3px;
    background-color: #044404;
    margin-top: 15px;
    border-radius: 2px;
}
.text-#044404 { color: #044404; }
.bg-gold-light { background-color: rgba(212, 175, 55, 0.1); }
.ls-2 { letter-spacing: 2px; }

.icon-box-sm {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.transition-hover {
    transition: all 0.3s ease-in-out;
}

.transition-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

/* Custom list styling */
ul.list-unstyled li {
    display: flex;
    align-items: flex-start;
}
ul.list-unstyled li i {
    margin-top: 4px;
}
.text-gold { color: #044404; }
    .ls-2 { letter-spacing: 2px; }
    .lh-lg { line-height: 1.8; }
    
    /* Tambahkan sedikit padding atas bawah agar section punya ruang bernapas */
    .service-intro-content {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }

    /* Membuat heading lebih responsif di mobile */
    @media (max-width: 768px) {
        .display-5 { font-size: 2rem; }
    }
/* Container Utama */
.process-steps {
    position: relative;
}

/* --- TAMPILAN DESKTOP (Horizontal) --- */
@media (min-width: 992px) {
    /* Garis dan Panah hanya muncul untuk item yang bukan di akhir baris (1, 2, 4, 5, 7, 8) */
    .process-steps [class*="col-"]:not(:nth-child(3n)):not(:last-child) {
        position: relative;
    }

    .process-steps [class*="col-"]:not(:nth-child(3n)):not(:last-child)::after {
        content: "\f061"; /* FontAwesome Right Arrow */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        top: 50%;
        right: -15px;
        transform: translateY(-50%);
        color: #044404;
        font-size: 1.2rem;
        z-index: 10;
        animation: arrowBounceSide 2s infinite;
    }

    /* Garis Penghubung Horizontal */
    .process-steps [class*="col-"]:not(:nth-child(3n)):not(:last-child)::before {
        content: "";
        position: absolute;
        top: 50%;
        right: -10%;
        width: 20%;
        height: 1px;
        border-top: 2px dashed rgba(212, 175, 55, 0.4);
        z-index: 1;
    }
}

/* --- TAMPILAN MOBILE & TABLET (Vertikal) --- */
@media (max-width: 991px) {
    .process-steps [class*="col-"]:not(:last-child) {
        position: relative;
        margin-bottom: 40px; /* Ruang untuk panah vertikal */
    }

    /* Mata Panah Vertikal */
    .process-steps [class*="col-"]:not(:last-child)::after {
        content: "\f063"; /* FontAwesome Down Arrow */
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        bottom: -35px;
        left: 50%;
        transform: translateX(-50%);
        color: #044404;
        font-size: 1.2rem;
        z-index: 10;
        animation: arrowBounceDown 2s infinite;
    }

    /* Garis Penghubung Vertikal */
    .process-steps [class*="col-"]:not(:last-child)::before {
        content: "";
        position: absolute;
        bottom: -40px;
        left: 50%;
        width: 2px;
        height: 40px;
        border-left: 2px dashed rgba(212, 175, 55, 0.4);
        transform: translateX(-50%);
    }
}

/* --- ANIMASI PANAH --- */
@keyframes arrowBounceSide {
    0%, 100% { transform: translateY(-50%) translateX(0); opacity: 0.5; }
    50% { transform: translateY(-50%) translateX(10px); opacity: 1; }
}

@keyframes arrowBounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.5; }
    50% { transform: translateX(-50%) translateY(10px); opacity: 1; }
}

/* Memperhalus tampilan Card saat Hover */
.shadow-hover {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
}

.shadow-hover:hover {
    border-color: #044404 !important;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15) !important;
}
/* Warna hijau gelap sesuai gambar Anda */
.text-dark-green {
    color: #1a4d2e !important;
}

.highlight-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
}

/* Garis pembatas vertikal hanya di desktop */
@media (min-width: 768px) {
    .border-start-md {
        border-left: 1px solid gold !important;
        height: 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

/* Animasi angka */
.counter, .counter-decimal {
    display: inline-block;
}
/* Warna Hijau Brand sesuai elemen Performance Highlights sebelumnya */
    .bg-green-brand {
        background-color: #1a4d2e; 
    }
    
    .text-gold { 
        color: #D4AF37 !important; 
    }
    
    .border-gold-subtle { 
        border: 1px solid rgba(212, 175, 55, 0.4); 
    }
    
    .ls-2 { 
        letter-spacing: 2px; 
    }

    .shadow-hover {
        transition: all 0.3s ease;
    }
    
    .shadow-hover:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px gold !important;
    }

    .shadow-hover:hover .border-gold-subtle {
        border-color: gold;
        background-color: rgba(255, 255, 255, 0.05);
    }
/* --- FAQ Custom Styling --- */
.faq-search {
    border-radius: 10px;
    padding: 15px 25px;
    border: 1px solid rgba(26, 77, 46, 0.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.faq-item {
    border: none !important;
    border-bottom: 1px solid rgba(26, 77, 46, 0.1) !important;
    background-color: transparent !important;
}

.faq-item .accordion-button {
    font-weight: 700;
    color: #1a1a1a;
    padding: 25px 0;
    background-color: transparent !important;
    box-shadow: none !important;
}

.faq-item .accordion-button:not(.collapsed) {
    color: var(--dark-green-brand);
}

.faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a4d2e'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
    background-size: 1.5rem;
}

.faq-item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a4d2e'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}

/* CTA Box specifically for FAQ */
.cta-faq-box {
    box-shadow: 0 15px 35px rgba(26, 77, 46, 0.2);
}

.btn-faq-gold {
    background-color: #fff !important;
    color: var(--dark-green-brand) !important;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-faq-gold:hover {
    background-color: var(--gold) !important;
    color: gold !important;
    transform: translateY(-3px);
}
/* --- Sidebar Mobile Strategy --- */
@media (max-width: 767.98px) {
    .sidebar {
        position: fixed;
        left: -250px; /* Sembunyikan ke kiri luar layar */
        top: 0;
        height: 100vh;
        width: 250px;
        z-index: 1050;
        transition: all 0.3s ease-in-out;
        background-color: var(--dark-green-brand);
        box-shadow: 5px 0 15px rgba(0,0,0,0.1);
    }

    /* Class saat sidebar aktif/muncul */
    .sidebar.active {
        left: 0;
    }

    .main-content {
        margin-left: 0 !important;
        padding-top: 60px; /* Ruang untuk tombol toggle */
    }

    .sidebar-toggle {
        position: fixed;
        top: 15px;
        left: 15px;
        z-index: 1100;
        background-color: var(--dark-green-brand);
        color: var(--gold);
        border-radius: 8px;
        border: 1px solid var(--gold-faded);
    }
}

/* Overlay (Layar gelap saat sidebar terbuka di HP) */
.sidebar-overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: gold;
    z-index: 1040;
    top: 0;
    left: 0;
}

.sidebar-overlay.active {
    display: block;
}
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(183, 150, 90, 0.2); /* Soft Gold border */
}

.icon-box-lg {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.card:hover .icon-box-lg {
    background: var(--gold) !important;
}

.card:hover .icon-box-lg i {
    color: white !important;
}
/* Styling tambahan untuk menyesuaikan dengan tema mewah */
    .breadcrumb-item + .breadcrumb-item::before {
        content: "•";
        color: #d4af37; /* Warna Gold */
        font-weight: bold;
    }
    
    .breadcrumb-item a:hover {
        color: #d4af37 !important;
        transition: 0.3s;
    }
.sitemap-section {
        background-color: #fdfbf7; /* Cream background */
        min-height: 80vh;
    }
    .sitemap-card {
        background: white;
        border-radius: 20px;
        border: 1px solid rgba(212, 175, 55, 0.1);
        transition: 0.3s;
    }
    .sitemap-card:hover {
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    }
    .sitemap-link {
        color: #444;
        text-decoration: none;
        transition: 0.3s;
        display: block;
        padding: 5px 0;
        font-size: 0.95rem;
    }
    .sitemap-link:hover {
        color: #d4af37;
        padding-left: 10px;
    }
    .sitemap-title {
        border-bottom: 2px solid #d4af37;
        display: inline-block;
        margin-bottom: 25px;
        padding-bottom: 5px;
    }
    .dot-indicator {
        height: 8px;
        width: 8px;
        background-color: #d4af37;
        border-radius: 50%;
        display: inline-block;
        margin-right: 10px;
    }
/* Warna emas lembut khas Premier Hospitality */
    .bg-gold-light { background-color: rgba(212, 175, 55, 0.1); }
    .text-gold { color: #d4af37; }
    .btn-gold { 
        background-color: #d4af37; 
        color: white; 
        border: none;
        font-size: 0.85rem;
    }
    .btn-gold:hover { 
        background-color: #b38f2d; 
        color: white;
    }
    
    /* Membuat modal sedikit lebih sempit dari default MD */
    @media (min-width: 576px) {
        .modal-md { max-width: 400px; } 
    }
