.elegant-section {
    background: linear-gradient(135deg, #f5f7fa, #eef1f4);
    padding: 120px 120px 20px 120px;
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
}

.elegant-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    margin-bottom: 70px;
}

.elegant-row.reverse {
    flex-direction: row-reverse;
}

.elegant-image {
    position: relative;
    width: 400px;
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

.elegant-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}

.elegant-image img:hover {
    transform: scale(1.05);
}

.elegant-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.45),
        rgba(0,0,0,0.05)
    );
}

.image-title {
    position: absolute;
    bottom: 25px;
    left: 30px;
    z-index: 2;
}

.image-title h3 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0;
}

.image-title h3::after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    margin-top: 8px;
    background: linear-gradient(90deg, #c9a94d, #e6c878);
}

.elegant-content {
    max-width: 520px;
}

.elegant-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.elegant-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.9;
    margin-bottom: 35px;
}

.elegant-btn {
    display: inline-block;
    padding: 13px 32px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #1a1a1a;
    border: 1px solid #c9a94d;
    transition: 0.3s ease;
}

.elegant-btn:hover {
    background: linear-gradient(90deg, #c9a94d, #e6c878);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(201,169,77,0.25);
}

/* === MULTI IMAGE ROW CLEAN VERSION === */
.multi-image-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-top: 120px;
}

/* Gallery container */
.elegant-gallery {
    display: flex;
    gap: 5px;
}

/* Bungkus gambar supaya lebih rapi */
.gallery-item {
    position: relative;
    width: 250px;
    height: 420px;
    overflow: hidden;
    border-radius: 14px;
}

/* Gambar memanjang */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

/* Overlay text kecil */
.gallery-title {
    position: absolute;
    bottom: 15px;
    left: 15px;
    font-size: 13px;      /* kecil & elegan */
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Tambahkan overlay gelap tipis agar teks terbaca */
.gallery-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
}

/* Supaya text tidak terlalu lebar */
.multi-image-row .elegant-content {
    max-width: 480px;
}

@media (max-width: 480px) {

    /* ===== SECTION ===== */
    .elegant-section {
        padding: 10px 18px 30px 18px;
    }

    /* ===== ROW ===== */
    .elegant-row,
    .multi-image-row {
        gap: 18px;
        margin-bottom: 55px;
    }

    /* Tetap kiri kanan */
    .elegant-row,
    .multi-image-row {
        flex-direction: row;
        align-items: center;
    }

    /* Reverse tetap bekerja */
    .elegant-row.reverse {
        flex-direction: row-reverse;
    }

    /* ===== IMAGE BLOCK ===== */
    .elegant-image {
        width: 42%;
        height: 260px;
        border-radius: 14px;
        box-shadow: 0 14px 30px rgba(0,0,0,0.08);
        flex-shrink: 0;
    }

    .image-title {
        bottom: 14px;
        left: 16px;
    }

    .image-title h3 {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .image-title h3::after {
        width: 34px;
        margin-top: 5px;
    }

    /* ===== CONTENT ===== */
    .elegant-content {
        max-width: 58%;
    }

    .elegant-content h2 {
        font-size: 18px;
        line-height: 1.35;
        margin-bottom: 10px;
        letter-spacing: 0.4px;
    }

    .elegant-content p {
        font-size: 12px;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .elegant-btn {
        padding: 8px 18px;
        font-size: 11px;
        letter-spacing: 0.5px;
        border-radius: 30px;
    }

    /* ===== MULTI IMAGE ROW ===== */
    .multi-image-row {
        align-items: flex-start;
    }

    /* Gallery horizontal scroll */
    .elegant-gallery {
        width: 42%;
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }

    .elegant-gallery::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        width: 150px;
        height: 230px;
        border-radius: 12px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .gallery-title {
        font-size: 10px;
        bottom: 10px;
        left: 10px;
        line-height: 1.3;
    }

    /* Konten gallery */
    .multi-image-row .elegant-content {
        max-width: 58%;
    }
}