/* === Resort/Villa Card New Design === */

.villa-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    position: relative;
    transition: 0.25s ease;
}

.villa-card:hover {
    transform: translateY(-5px);
}

/* Image Section */
.villa-image {
    width: 100%;
    height: auto;
    border-radius: 14px 14px 0 0;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

.villa-image img {
    width: 100%;
    height: 260px; /* adjust between 220-300 based on look */
    object-fit: cover;
    object-position: center;
    display: block; /* removes inline-gap that causes white spaces */
}

/* Wishlist Heart */
.wishlist-icon {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #fff;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 10;
}

/* Best Rated Tag */
.best-rated {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: #000;
    color: #fff;
    padding: 6px 13px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

/* Content Section */
.villa-content {
    padding: 16px 20px;
    position: relative;
}

/* Title */
.villa-title {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    color: #000;
}

/* Location */
.villa-location {
    margin-top: 6px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Details Line */
.villa-details {
    margin-top: 6px;
    font-size: 14px;
    color: #777;
}

/* Price */
.villa-price {
    margin-top: 14px;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

.villa-price span {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: -2px;
}

/* Arrow Button */
.villa-arrow {
    position: absolute;
    bottom: 18px;
    right: 18px;
    font-size: 26px;
    text-decoration: none;
    color: #000;
    font-weight: 600;
}


.owl-stage-outer {
    padding-left: 0 !important;
}

.owl-carousel .owl-stage {
    display: flex;
}

.place-slider-two .owl-item {
    transition: transform .25s ease;
}


/* === SEO Hidden Content === */
.seo-content {
    margin: 40px auto;
    max-width: 850px;
}

.seo-text {
    display: none;
    padding: 15px 0;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

/* === Minimal Premium Button (White Outline Version) === */
.seo-toggle {
    background: #fff;
    color: #000;
    padding: 12px 26px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid #000;
    cursor: pointer;
    transition: 0.3s ease;
    margin-bottom: 16px;
}

.seo-toggle:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}



