/* Villa Listings Section */
.villa-listings-section {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 20px;
}

.villa-listings-section-1 {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 90px;
}

.listings-container {
    flex: 1;
}

.listings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.listings-title {
    font-family: var(--heading-font);
    font-size: 32px;
    color: #000;
    margin: 0 0 5px 0;
}

.properties-count {
    font-family: var(--text-font);
    font-size: 14px;
    color: #666;
    margin: 0;
}

.sort-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-family: var(--text-font);
    font-size: 14px;
}

.sort-dropdown i {
    color: var(--accent-red);
}

/* Villa Card */
.villa-card {
    display: flex;
    gap: 20px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    transition: box-shadow 0.3s ease;
}

.villa-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Villa Image Slider */
.villa-image-slider {
    position: relative;
    width: 300px;
    height: 220px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.villa-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.villa-img.active {
    opacity: 1;
    pointer-events: auto;
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
}

.slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.slider-dots .dot.active {
    background: #fff;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.slider-arrow:hover {
    background: #fff;
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

.slider-arrow i {
    font-size: 14px;
    color: #333;
}

/* Villa Details */
.villa-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.villa-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.villa-name {
    font-family: var(--heading-font);
    font-size: 22px;
    color: #000;
    margin: 0 0 5px 0;
}

.villa-location {
    font-family: var(--text-font);
    font-size: 14px;
    color: #666;
    margin: 0;
}

.villa-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff3cd;
    padding: 5px 12px;
    border-radius: 20px;
}

.villa-rating i {
    color: #ffc107;
    font-size: 14px;
}

.villa-rating span {
    font-family: var(--text-font);
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.villa-capacity {
    font-family: var(--text-font);
    font-size: 14px;
    color: #333;
    margin: 0;
}

.villa-amenities {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.amenity-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f5f5f5;
    border-radius: 20px;
    font-family: var(--text-font);
    font-size: 13px;
    color: #555;
}

.amenity-tag i {
    font-size: 12px;
    color: var(--accent-red);
}

/* Villa Pricing */
.villa-pricing {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    min-width: 200px;
}

.price-info {
    text-align: right;
}

.price-amount {
    font-family: var(--heading-font);
    font-size: 28px;
    color: #000;
    margin: 0 0 5px 0;
}

.price-label {
    font-family: var(--text-font);
    font-size: 12px;
    color: #666;
    margin: 0 0 3px 0;
}

.total-price {
    font-family: var(--text-font);
    font-size: 13px;
    color: #333;
    margin: 0;
}

.view-details-btn {
    padding: 12px 30px;
    background: #fff;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    border-radius: 6px;
    font-family: var(--text-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.view-details-btn:hover {
    background: var(--accent-red);
    color: #fff;
}

.view-details-btn i {
    font-size: 12px;
}

/* Sidebar */
.listings-sidebar {
    width: 320px;
    flex-shrink: 0;
}

.offers-widget,
.help-widget {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.widget-header h3 {
    font-family: var(--heading-font);
    font-size: 18px;
    color: #000;
    margin: 0;
}

.view-all-link {
    font-family: var(--text-font);
    font-size: 13px;
    color: var(--accent-red);
    text-decoration: none;
    font-weight: 600;
}

.view-all-link:hover {
    text-decoration: underline;
}

/* Offer Card */
.offer-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: background 0.3s ease;
}

.offer-card:hover {
    background: #f0f0f0;
}

.offer-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.offer-icon.amex {
    background: #006fcf;
}

.offer-icon.stay {
    background: #ff9800;
}

.offer-icon.celebration {
    background: #4caf50;
}

.offer-icon i {
    font-size: 24px;
    color: #fff;
}

.offer-content h4 {
    font-family: var(--heading-font);
    font-size: 15px;
    color: #000;
    margin: 0 0 5px 0;
}

.offer-content p {
    font-family: var(--text-font);
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* Help Widget */
.help-widget h3 {
    font-family: var(--heading-font);
    font-size: 18px;
    color: #000;
    margin: 0 0 10px 0;
}

.help-widget>p {
    font-family: var(--text-font);
    font-size: 13px;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.5;
}

.help-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-form input[type="text"],
.help-form input[type="tel"] {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--text-font);
    font-size: 14px;
    color: var(--accent-red);
}

.phone-input-group {
    display: flex;
    gap: 10px;
}

.country-code {
    width: 120px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--text-font);
    font-size: 14px;
    color: var(--accent-red);
}

.need-submit-btn {
    padding: 12px 30px;
    background: #fff;
    border: 2px solid var(--accent-red);
    color: var(--accent-red);
    border-radius: 6px;
    font-family: var(--text-font);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.need-submit-btn:hover {
    background: var(--accent-red);
    color: #fff;
}

.guests-hosted {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-family: var(--text-font);
    font-size: 13px;
    color: #666;
}

.guests-hosted i {
    color: var(--accent-red);
    font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .villa-listings-section {
        flex-direction: column;
    }

    .villa-listings-section-1 {
        flex-direction: column;
        padding: 0 15px;
    }

    .listings-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .villa-card {
        flex-direction: column;
    }

    .villa-image-slider {
        width: 100%;
        height: 250px;
    }

    .villa-pricing {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-width: auto;
    }

    .price-info {
        text-align: left;
    }

    .listings-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}