/* Property Gallery Styles */
.property-gallery-section {
    background: #f8f9fa;
}

.property-main-img {
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.main-gallery-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-overlay {
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
    opacity: 0;
    border-radius: 8px;
}

.main-gallery-image:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.5);
    opacity: 1;
}

.gallery-zoom-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    color: #fff;
    transition: all 0.3s ease;
}

.gallery-zoom-btn:hover {
    background: #e41e13;
    border-color: #e41e13;
    transform: scale(1.1);
}

.gallery-thumbnails .thumbnail-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    height: 120px;
}

.gallery-thumbnails .thumbnail-item img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-thumbnails .thumbnail-item:hover {
    border-color: #e41e13;
    transform: translateY(-3px);
}

.gallery-thumbnails .thumbnail-item:hover img {
    transform: scale(1.1);
}

.gallery-thumbnails .thumbnail-item.active {
    border-color: #e41e13;
}

.thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(228, 30, 19, 0);
    transition: background 0.3s ease;
}

.gallery-thumbnails .thumbnail-item:hover .thumbnail-overlay {
    background: rgba(228, 30, 19, 0.2);
}

/* Property Info Cards */
.info-card {
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
    border-color: #e41e13;
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 30, 19, 0.1);
    border-radius: 50%;
}

.info-icon-small {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(228, 30, 19, 0.1);
    border-radius: 50%;
}

/* Property Features List */
.property-features-list li {
    display: flex;
    align-items: flex-start;
    color: #223645;
    font-size: 14px;
    line-height: 1.6;
}

.property-features-list li i {
    margin-top: 3px;
    flex-shrink: 0;
}

.property-features-list li span {
    flex: 1;
}

/* Property Actions */
.btn-property-action {
    border: 2px solid #e41e13 !important;
    color: #e41e13 !important;
    background: transparent !important;
    padding: 10px 20px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    visibility: visible !important;
    border-radius: 4px !important;
}

.btn-property-action:hover {
    background: #e41e13 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(228, 30, 19, 0.3);
    text-decoration: none !important;
}

.btn-property-action:focus,
.btn-property-action:active {
    background: #e41e13 !important;
    color: #fff !important;
    border-color: #e41e13 !important;
    outline: none !important;
    box-shadow: 0 2px 8px rgba(228, 30, 19, 0.3) !important;
}

/* Subscribe Section Styles */
.form-control-modern {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 0;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-control-modern::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-control-modern:focus {
    outline: none;
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .property-main-img {
        height: 350px;
    }

    .gallery-thumbnails .thumbnail-item {
        height: 100px;
    }

    .info-card {
        margin-bottom: 1rem;
    }

    .property-actions .btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    .sub-left h4 {
        font-size: 18px;
        margin-bottom: 20px !important;
    }
}