/* HERO ABOUT */
.about-hero-luxury {
    padding: 180px 0 120px;
    background: linear-gradient(rgba(15, 20, 30, 0.85), rgba(15, 20, 30, 0.85)), 
                url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover;
    position: relative;
}

/* IMAGE STACK */
.about-image-stack {
    position: relative;
    padding-bottom: 50px;
}

.img-main {
    width: 90%;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.experience-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #0f141e;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #d4af37;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* VALUES */
.value-item {
    padding: 20px;
    background: #fdfdfd;
    border-radius: 12px;
    transition: 0.3s;
    text-align: center;
}

.value-item:hover {
    background: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

/* VISION MISSION CARD */
.vision-card {
    background: #0f141e;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
}

.icon-circle.dark {
    background: #0f141e;
    color: #d4af37;
}

.mission-list {
    color: #555;
    line-height: 1.8;
}

/* Gaya untuk list misi jika dari database berupa <ul> */
.mission-list ul {
    padding-left: 0;
    list-style: none;
}

.mission-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
}

.mission-list li::before {
    content: "\F633"; /* Bootstrap Icon Check */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}