.akv-card{
    position:relative;
    background:#fff;
    border-radius:28px;
    overflow:hidden;
    transition:.3s ease;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.akv-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.akv-card-link{
    display:flex;
    flex-direction:column;
    height:100%;
    text-decoration:none;
    color:inherit;
}

.akv-card-image{
    position:relative;
    height:280px;
    overflow:hidden;
}

.akv-card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s ease;
}

.akv-card:hover .akv-card-image img{
    transform:scale(1.05);
}

.akv-card-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.65),
        rgba(0,0,0,.05)
    );
}

.akv-card-location{
    position:absolute;
    top:18px;
    left:18px;
    background:#fff;
    color:#111;
    padding:8px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
    z-index:2;
}

.akv-card-price{
    position:absolute;
    bottom:20px;
    left:20px;
    z-index:2;
    color:#fff;
}

.akv-card-price strong{
    display:block;
    font-size:24px;
    font-weight:700;
}

.akv-card-content{
    padding:24px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.akv-card-top{
    display:flex;
    justify-content:space-between;
    gap:15px;
    margin-bottom:14px;
}

.akv-card-top h3{
    font-size:28px;
    line-height:1.3;
    margin:0;
    font-weight:700;
}

.akv-card-rating{
    white-space:nowrap;
    font-weight:600;
}

.akv-card-description{
    color:#666;
    line-height:1.7;
    margin-bottom:20px;
}

.akv-card-facilities{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:auto;
    margin-bottom:24px;
}

.akv-facility-item{
    background:#f4f4f4;
    padding:10px 14px;
    border-radius:999px;
    font-size:13px;
    font-weight:600;
}

.akv-card-button{
    height:54px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#111;
    color:#fff;
    font-weight:600;
    transition:.3s ease;
}

.akv-card:hover .akv-card-button{
    background:#c89b3c;
}

/* =========================================================
   HOMEPAGE — DYNAMIC DESTINATION CARDS
   Data berasal dari taxonomy villa_location.
========================================================= */

.akv-destination-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:28px;
}

.akv-destination-card{
    display:flex;
    flex-direction:column;
    overflow:hidden;
    text-decoration:none;
    color:inherit;
    background:#fff;
    border:1px solid rgba(17,24,39,.07);
    border-radius:28px;
    box-shadow:0 16px 45px rgba(0,0,0,.07);
    transition:transform .35s ease, box-shadow .35s ease;
}

.akv-destination-card:hover{
    transform:translateY(-7px);
    box-shadow:0 24px 60px rgba(0,0,0,.12);
}

.akv-destination-image{
    position:relative;
    height:300px;
    overflow:hidden;
    background:#eef0f2;
}

.akv-destination-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:transform .65s cubic-bezier(.2,.7,.2,1);
}

.akv-destination-card:hover .akv-destination-image img{
    transform:scale(1.06);
}

.akv-destination-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.58),
        rgba(0,0,0,.04) 65%
    );
}

.akv-destination-badge{
    position:absolute;
    top:18px;
    left:18px;
    z-index:3;
    display:inline-flex;
    align-items:center;
    min-height:38px;
    padding:0 14px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:999px;
    background:rgba(255,255,255,.15);
    color:#fff;
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    font-size:12px;
    font-weight:700;
}

.akv-destination-arrow{
    position:absolute;
    right:18px;
    bottom:18px;
    z-index:3;
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.95);
    color:#111;
    font-size:18px;
    opacity:0;
    transform:translateY(8px);
    transition:.3s ease;
}

.akv-destination-card:hover .akv-destination-arrow{
    opacity:1;
    transform:none;
}

.akv-destination-content{
    padding:25px;
}

.akv-destination-content > span{
    display:block;
    margin-bottom:9px;
    color:#8a8a8a;
    font-size:10px;
    font-weight:800;
    letter-spacing:.16em;
}

.akv-destination-content h3{
    margin:0 0 11px;
    color:#111827;
    font-size:28px;
    line-height:1.15;
}

.akv-destination-content p{
    min-height:48px;
    margin:0 0 22px;
    color:#6b7280;
    font-size:14px;
    line-height:1.7;
}

.akv-destination-link{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:52px;
    padding:0 18px;
    border-radius:17px;
    background:#111827;
    color:#fff;
    font-size:13px;
    font-weight:700;
}

.akv-destination-link span:last-child{
    font-size:18px;
}

.akv-destination-empty,
.akv-testimonial-empty{
    padding:55px 25px;
    border:1px solid rgba(17,24,39,.08);
    border-radius:24px;
    text-align:center;
}

.akv-destination-empty strong,
.akv-testimonial-empty strong{
    display:block;
    margin-bottom:8px;
    color:#111827;
    font-size:20px;
}

.akv-destination-empty p,
.akv-testimonial-empty p{
    max-width:560px;
    margin:0 auto;
    color:#6b7280;
    line-height:1.7;
}

/* =========================================================
   HOMEPAGE — REAL GUEST REVIEWS
========================================================= */

.akv-testimonial-meta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    margin-bottom:20px;
}

.akv-testimonial-stars{
    display:flex;
    align-items:center;
    gap:3px;
}

.akv-testimonial-stars svg{
    width:17px;
    height:17px;
}

.akv-testimonial-rating-number{
    color:#111827;
    font-size:13px;
    font-weight:800;
}

.akv-testimonial-review{
    margin:0 0 25px;
    color:#4b5563;
    font-size:15px;
    line-height:1.8;
}

.akv-testimonial-user{
    display:flex;
    align-items:center;
    gap:13px;
}

.akv-testimonial-avatar{
    flex:0 0 44px;
    width:44px;
    height:44px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:#111827;
    color:#fff;
    font-size:14px;
    font-weight:800;
}

.akv-testimonial-user strong{
    display:block;
    margin-bottom:4px;
    color:#111827;
    font-size:14px;
}

.akv-testimonial-user span{
    display:block;
    color:#8a8f98;
    font-size:12px;
}

@media(max-width:1024px){
    .akv-destination-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:700px){
    .akv-destination-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .akv-destination-image{
        height:270px;
    }

    .akv-destination-arrow{
        opacity:1;
        transform:none;
    }
}
