.rating-overview {
    display: block;
}

.rating-overview-box {
    width: auto;
}

.featured_slick_gallery .slick-slide {
    height: auto;
    max-height: 600px;
}

/* Tour Date Slider Styles */
.tour-dates-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.tour-date-slider {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding: 5px 0;
    width: 100%;
}

.tour-date-item {
    min-width: 80px;
    height: 80px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
}

.tour-date-item.active {
    background-color: #fff8e1;
    border-color: #ffc107;
}

.tour-date-item .day-name {
    font-weight: 500;
    color: #6c757d;
}

.tour-date-item .day-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.tour-date-item .month {
    font-size: 0.8rem;
    color: #6c757d;
}

.tour-nav-btn {
    width: 30px;
    height: 30px;
    border-radius: 10%;
    background-color: #fff;
    border: 1px solid #dee2e6;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}

.tour-nav-btn:hover {
    background-color: #f8f9fa;
}

.tour-nav-btn.prev {
    margin-right: 10px;
}

.tour-nav-btn.next {
    margin-left: 10px;
}

/* Tour Type Options */
.tour-type-options {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.tour-type-option {
    flex: 1;
    position: relative;
}

.tour-type-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.tour-type-option label {
    display: block;
    text-align: center;
    padding: 10px;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-type-option input[type="radio"]:checked+label {
    background-color: #e8f5e9;
    border-color: #4caf50;
    color: #2e7d32;
}

/* Toast container */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

/* Mortgage calculator result */
#mortgage_result {
    border-radius: 8px;
    overflow: hidden;
}

/* Featured properties */
.sides_list_property {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.sides_list_property:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.property_types_vlix {
    display: inline-block;
    padding: 3px 8px;
    font-size: 12px;
    border-radius: 3px;
    background-color: #e8f5e9;
    color: #2e7d32;
}

.property_types_vlix.sale {
    background-color: #fce4ec;
    color: #c2185b;
}

.not-available {
    opacity: 0.6;
    text-decoration: line-through;
}

.avl-features li.not-available {
    opacity: 0.7;
}

.avl-features li.not-available:before {
    content: "\f057";
    /* Font Awesome "times-circle" icon */
    color: #dc3545;
    /* Bootstrap danger color */
    background: rgba(220, 53, 69, 0.1);
    /* Light danger background */
}

.rating-stars {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.rating-star {
    color: #e0e0e0;
    cursor: pointer;
    transition: color 0.2s;
    margin: 0 3px;
}

.rating-star.active {
    color: #ffc107;
}

.rating-star:hover {
    color: #ffca28;
}

.rating-value {
    font-size: 16px;
    color: #6c757d;
    margin-left: 10px;
}

.contact-actions {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    background-color: white;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.action-btn .svg-icon {
    font-size: 40px;
}

/* Form Styles */
.contact-form .form-group,
.inquiry-form .form-group {
    margin-bottom: 15px;
}

.contact-form .form-control,
.inquiry-form .form-control {
    border-radius: 8px;
    border: 1px solid #e9ecef;
    padding: 12px 15px;
    transition: border-color 0.3s ease;
}

.contact-form .form-control:focus,
.inquiry-form .form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.contact-form .btn,
.inquiry-form .btn {
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-form .btn:hover,
.inquiry-form .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-form label,
.inquiry-form label {
    font-weight: 500;
    color: #495057;
    margin-bottom: 5px;
}

.sides-widget-header.bg-success {
    background: linear-gradient(135deg, #28a745, #20c997) !important;
}

/* Make rating overview responsive */
@media (max-width: 767px) {
    .rating-overview .d-flex {
        flex-direction: column;
        gap: 15px;
    }

    .rating-overview-box {
        margin-bottom: 10px;
    }
}



/* Fixed Share Widget - Right Side Middle */
.share-widget {
    position: fixed;
    right: 10px;
    bottom: 0px;
    transform: translateY(-50%);
    z-index: 1000;
    background: white;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    padding: 15px 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.share-widget:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.share-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.share-widget li {
    display: flex;
    justify-content: center;
}

.share-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.share-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.share-btn:hover::before {
    transform: scale(1);
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-share {
    background: linear-gradient(135deg, #17a2b8, #138496);
}

.btn-share:hover {
    background: linear-gradient(135deg, #138496, #17a2b8);
    box-shadow: 0 8px 25px rgba(23, 162, 184, 0.4);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E, #25D366);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-copy {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529 !important;
}

.btn-copy:hover {
    background: linear-gradient(135deg, #e0a800, #ffc107);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.4);
}

/* Tooltip on hover */
.share-btn[data-tooltip] {
    position: relative;
}

.share-btn[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.share-btn[data-tooltip]:hover::after {
    opacity: 1;
    visibility: visible;
    right: 65px;
}

/* Toast notification */
.toast-notification {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    min-width: 300px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.toast-error {
    background: linear-gradient(135deg, #dc3545, #c82333);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .share-widget {
        right: 15px;
        padding: 12px 8px;
    }

    .share-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .share-widget ul {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .share-widget {
        right: 10px;
    }

    .share-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
}