/* VILLAKITA - LUXURY ELYSE THEME 
   Skema Warna: Utama (#212323) | Section/Card (#131718)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Cormorant+Garamond:wght@300;600;700&display=swap');

:root {
    --elyse-bg-main: #212323;    /* Warna background seluruh halaman */
    --elyse-bg-section: #131718; /* Warna background section/card */
    --elyse-text: #ffffff;
    --elyse-muted: #888888;
    --transition-smooth: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

/* --- Dasar --- */
body {
    background-color: var(--elyse-bg-main);
    color: var(--elyse-text);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

[data-scroll-container] {
    perspective: 1px;
    background-color: var(--elyse-bg-main);
}

/* --- Hero Section --- */
.hero-section {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--elyse-bg-main);
}

.hero-image-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 80%;
    z-index: 1;
    overflow: hidden;
    border-radius: 15px;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-title-main {
    position: relative;
    z-index: 2;
    font-family: 'Cormorant Gramamond', serif;
    font-size: clamp(5rem, 15vw, 12rem);
    text-transform: uppercase;
    line-height: 0.8;
    margin: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-title-main span {
    display: inline-block;
    transform: translateY(100%);
}
/* Container Hero Tetap Sama */
/* --- Hero Section & Container --- */
.hero-section {
    height: 130vh; /* Ruang lebih untuk scroll */
    background-color: #212323;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gambar Utama Tengah: Ukuran Megah */
.hero-image-wrapper.main-img {
    width: 42vw; 
    height: 80vh; 
    z-index: 5;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

.main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

/* Side Images Base */
.hero-side-img {
    position: absolute;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.hero-side-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-large {
    width: 25vw;
    height: 45vh;
    top: 10%;
    left: 5%;
    z-index: 1; /* Paling belakang */
    filter: brightness(0.7);
}

.img-small {
    width: 18vw;
    height: 28vh;
    bottom: 12%;
    right: 7%;
    z-index: 10; /* Paling depan */
}

/* Typography */
.hero-title-main {
    position: absolute;
    z-index: 6; /* Di depan gambar utama */
    width: 100%;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(5rem, 18vw, 15rem);
    color: #ffffff;
    pointer-events: none;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-title-main span {
    display: inline-block;
    transform: translateY(100%); /* Untuk animasi muncul */
}

.hero-description {
    position: absolute;
    top: 15%;
    right: 5%;
    z-index: 15;
    text-align: right;
    max-width: 280px;
}

.hero-description .desc-text {
    font-size: 0.85rem;
    line-height: 1.8;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 5px 20px rgba(0,0,0,0.8);
}

/* --- RESPONSIVE MOBILE (HP) --- */
@media (max-width: 768px) {
    .hero-section { height: 100vh; }
    .hero-image-wrapper.main-img { width: 85vw; height: 50vh; z-index: 2; }
    .hero-title-main { font-size: 4rem !important; z-index: 3; }
    .img-large { width: 45vw; height: 25vh; top: 5%; left: 5%; }
    .img-small { width: 35vw; height: 20vh; bottom: 15%; right: 5%; z-index: 4; }
    .hero-description { top: auto; bottom: 5%; left: 50%; transform: translateX(-50%); text-align: center; width: 90%; }
}
/* --- Section Styling --- */
section[data-scroll-section] {
    background-color: var(--elyse-bg-main);
}

.section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--elyse-muted);
}

.luxury-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
}

/* --- Luxury Container Card (Katalog Villa) --- */
.luxury-project-container {
    background-color: var(--elyse-bg-section); /* Warna gelap khusus section/card */
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 40px;
    padding: 30px;
    transition: var(--transition-smooth);
    height: 100%;
    position: relative;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.luxury-project-container:hover {
    border-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-15px);
    background-color: #0a0c0c; /* Sedikit lebih gelap saat hover */
}

/* Judul Villa di Atas Gambar */
.project-title-wrapper {
    padding-bottom: 25px;
}

.project-title-wrapper h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

/* Wrapper Gambar */
.img-reveal-wrapper {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 25px;
    background-color: #000;
}

.property-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transform: scale(1.1);
    transition: transform 1.8s cubic-bezier(0.19, 1, 0.22, 1), opacity 0.5s ease;
}

.luxury-project-container:hover .property-img {
    opacity: 1;
    transform: scale(1);
}

/* Detail Fasilitas di Dalam Card */
.facility-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.facility-item {
    font-size: 0.75rem;
    color: var(--elyse-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.facility-item i {
    color: #ffffff;
    margin-right: 6px;
    opacity: 0.8;
}

/* Tombol Aksi */
.btn-explore-luxury {
    display: block;
    text-align: center;
    padding: 25px 10px 10px;
    color: #fff;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.btn-explore-luxury:hover {
    color: var(--elyse-muted);
    letter-spacing: 5px;
}

/* --- Button Hero --- */
.btn-outline-white {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 18px 45px;
    border-radius: 100px;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    transition: 0.4s;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-white:hover {
    background: white;
    color: black;
    border-color: white;
}

/* Efek Border Tipis pada Section Statistics */
.border-secondary {
    border-color: rgba(255, 255, 255, 0.05) !important;
}

/* Styling Gambar About */
.about-image-wrapper {
    overflow: hidden;
    border-radius: 20px;
    background-color: #131718;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
    opacity: 1;
}

/* Penyesuaian Heading untuk bagian About */
.luxury-heading {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    line-height: 1.1;
    color: #ffffff;
}

/* Luxury Search Bar */
.hero-search-wrapper {
    position: relative;
    z-index: 20;
    max-width: 600px;
}

.search-luxury-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px;
    border-radius: 100px;
    transition: var(--transition-smooth);
}

.search-luxury-form:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.search-input-group {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.search-icon {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.search-luxury-form input {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 12px 20px;
    width: 100%;
    font-size: 0.85rem;
    font-family: 'Inter', sans-serif;
    outline: none;
}

.search-luxury-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

.btn-search-luxury {
    background: #ffffff;
    color: #131718;
    border: none;
    padding: 10px 25px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-search-luxury:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.05);
}

/* Suggestions Styling */
.suggestion-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.65rem;
    margin-left: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.suggestion-link:hover {
    color: #ffffff;
}

/* Container Utama untuk Scroll Horizontal */
.projects-scroll-container {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 20px 0 40px 0;
    cursor: grab;
    /* Menghilangkan scrollbar di berbagai browser */
    scrollbar-width: none; 
    -ms-overflow-style: none;
}

.projects-scroll-container::-webkit-scrollbar {
    display: none;
}

.projects-scroll-container:active {
    cursor: grabbing;
}

/* Flexbox Wrapper */
.projects-horizontal-flex {
    display: flex;
    gap: 30px; /* Jarak antar kartu */
    padding-left: 15px; /* Padding agar kartu tidak nempel ke sisi kiri layar saat awal */
}

/* Ukuran Kartu Individual */
/* Mengunci lebar dan tinggi agar kartu terlihat proporsional (Compact) */
.project-card-item {
    flex: 0 0 350px; /* Lebar kartu sedikit diperkecil dari 400px ke 350px */
    width: 350px;
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.luxury-project-container {
    background-color: var(--elyse-bg-section); 
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 35px; /* Lengkungan sedikit diperhalus */
    padding: 20px; /* Padding dikurangi agar tidak terlalu memakan ruang */
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Jarak antar elemen di dalam kartu */
}

/* Mengatur Rasio Gambar agar tidak terlalu tinggi */
.img-reveal-wrapper {
    position: relative;
    width: 100%;
    height: 240px; /* Tinggi gambar dikunci agar kartu tidak memanjang */
    overflow: hidden;
    border-radius: 20px;
}

/* Judul Villa yang lebih kecil dan elegan */
.project-title-wrapper h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; /* Ukuran font dikecilkan */
    text-transform: uppercase;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

/* Fasilitas dibuat lebih rapat */
.facility-details {
    display: flex;
    justify-content: space-around;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.facility-item {
    font-size: 0.65rem; /* Font fasilitas diperkecil */
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .project-card-item {
        flex: 0 0 280px; /* Lebar kartu di HP dibuat 280px */
        width: 280px;
    }
    
    .img-reveal-wrapper {
        height: 200px; /* Tinggi gambar di HP diturunkan */
    }

    .project-title-wrapper h3 {
        font-size: 1.3rem;
    }
}

/* Container Besar di Belakang */
.luxury-outer-wrapper {
    background: #1a1e1f; /* Warna sedikit lebih terang/berbeda dari background utama #212323 */
    border-radius: 60px; /* Lengkungan sangat besar untuk kesan premium */
    padding: 60px 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.2); /* Efek kedalaman ke dalam */
    position: relative;
    overflow: hidden;
}

/* Memastikan area scroll pas di dalam pembungkus besar */
.projects-scroll-container {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none; /* Hilangkan scrollbar Firefox */
    cursor: grab;
}

.projects-scroll-container::-webkit-scrollbar {
    display: none; /* Hilangkan scrollbar Chrome/Safari */
}

/* Ukuran Kartu Kecil di Dalam agar Compact */
.project-card-item {
    flex: 0 0 350px; /* Lebar diperkecil agar pas dalam box besar */
    width: 350px;
    padding: 10px;
}

.luxury-project-container {
    background-color: #131718; /* Warna card dalam lebih pekat */
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    height: 100%;
    transition: transform 0.4s ease;
}

.luxury-project-container:hover {
    transform: scale(1.02); /* Sedikit membesar saat hover di dalam baki */
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .luxury-outer-wrapper {
        padding: 30px 15px;
        border-radius: 40px;
        margin: 0 10px;
    }
    .project-card-item {
        flex: 0 0 80vw;
        width: 80vw;
    }
}
/* Tambahan gaya agar lebih premium */
.price-tag-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(19, 23, 24, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #c5a358;
    font-size: 0.8rem;
    font-weight: 600;
}

.text-gold { color: #c5a358; }
.projects-scroll-container {
    cursor: grab;
    user-select: none; /* Mencegah teks terpilih saat di-drag */
    -webkit-user-drag: none;
}

.projects-scroll-container:active {
    cursor: grabbing;
}


/* --- Discovery Card Style --- */
.discovery-card {
    background: transparent;
    transition: var(--transition-smooth);
}

.discovery-img-wrapper {
    position: relative;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
}

.discovery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.8s ease;
}

.discovery-card:hover img {
    transform: scale(1.1);
}

.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
}

.rating-badge {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(0,0,0,0.7);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 700;
}

.discovery-specs {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.badge-tag {
    background: rgba(197, 163, 88, 0.1);
    color: #c5a358;
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.6rem;
    text-transform: uppercase;
    font-weight: 700;
    margin-right: 5px;
}

/* --- Amenity Icon Style --- */
.amenity-icon {
    font-size: 2.5rem;
    color: #c5a358;
    opacity: 0.8;
    transition: 0.4s;
}

.amenity-item:hover .amenity-icon {
    transform: translateY(-10px);
    opacity: 1;
}

.py-10 { padding-top: 100px; padding-bottom: 100px; }
.text-gold { color: #c5a358; }

/* Memastikan gambar tidak ikut ter-drag oleh browser */
.projects-scroll-container img {
    pointer-events: none;
}

/* Styling Pembungkus Search di Atas About */
.search-divider-wrapper {
    position: relative;
    padding: 40px 0;
    z-index: 10;
}

.search-luxury-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px;
    border-radius: 100px; /* Bentuk kapsul modern */
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.search-luxury-form:focus-within {
    border-color: #c5a358; /* Warna Emas Villakita */
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
}

.search-input-group {
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.search-icon {
    color: #c5a358;
    font-size: 1rem;
}

.search-luxury-form input {
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 12px 20px;
    width: 100%;
    font-size: 0.9rem;
    outline: none;
    font-family: 'Inter', sans-serif;
}

.search-luxury-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
}

/* Tombol Explore Mewah */
.btn-search-luxury {
    background: #ffffff;
    color: #131718;
    border: none;
    padding: 12px 30px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s;
    white-space: nowrap;
}

.btn-search-luxury:hover {
    background: #c5a358;
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(197, 163, 88, 0.3);
}

.suggestion-link {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.65rem;
    margin-left: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    border-bottom: 1px solid transparent;
}

.suggestion-link:hover {
    color: #c5a358;
    border-bottom: 1px solid #c5a358;
}

/* --- FAQ Luxury Style --- */
.accordion-item-luxury {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    transition: 0.3s;
}

.faq-question:hover {
    color: #c5a358;
}

.faq-answer {
    padding-top: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

/* --- Helpdesk Card & Hover Animations --- */
.helpdesk-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 40px;
    border-radius: 40px;
}

.help-btn {
    padding: 18px 35px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Hover Effect WhatsApp */
.btn-whatsapp {
    background: transparent;
    border: 1px solid #25D366;
    color: #25D366;
}

.btn-whatsapp:hover {
    background: #25D366;
    color: #fff;
    transform: scale(1.1) rotate(-2deg);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.2);
}

/* Hover Effect Email */
.btn-email {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}

.btn-email:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1) rotate(2deg);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.mb-10 { margin-bottom: 100px; }

/* Style Wishlist Button */
.wishlist-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}
.wishlist-btn.liked {
    color: #ff4757;
    background: white;
}

