/*
 Theme Name:   Homez Child
 Theme URI:    https://themeforest.net/item/homez-real-estate-wordpress-theme/44173800
 Description:  Homez Child Theme
 Author:       ApusTheme
 Author URI:   http://apusthemes.com
 Template:     homez
 Version:      1.0.0
 Text Domain:  homez-child
*/




/* =============================================
   PLOTIFYS — POPULAR LOCATIONS SECTION
   ============================================= */

.plotifys-locations-section {
    padding: 60px 0;
    background: #ffffff;
}

.plotifys-locations-section .section-main-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.plotifys-location-tabs {
    display: flex;
    gap: 25px;
    border-bottom: 2px solid #eeeeee;
    margin-bottom: 25px;
    margin-top: 10px;
}

.plotifys-location-tabs .tab-btn {
    background: none;
    border: none;
    padding: 10px 0;
    font-size: 15px;
    font-weight: 600;
    color: #888888;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s ease;
}

.plotifys-location-tabs .tab-btn.active {
    color: #E2B857;
    border-bottom-color: #E2B857;
}

.plotifys-location-tabs .tab-btn:hover {
    color: #E2B857;
}

.plotifys-tab-content {
    display: none;
}

.plotifys-tab-content.active {
    display: block;
}

.plotifys-sub-heading {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
}

.location-columns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.location-city-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    padding-bottom: 12px;
    margin-bottom: 15px;
    border-bottom: 2px solid #E2B857;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-city-name .city-icon {
    color: #E2B857;
    font-size: 16px;
}

.location-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-links-list li {
    margin-bottom: 11px;
}

.location-links-list li a {
    color: #444444;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.location-links-list li a .loc-arrow {
    color: #E2B857;
    font-size: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.location-links-list li a .loc-count {
    color: #999999;
    font-size: 12px;
    margin-left: auto;
    background: #f5f5f5;
    padding: 1px 7px;
    border-radius: 10px;
}

.location-links-list li a:hover {
    color: #E2B857 !important;
    text-decoration: none !important;
}

.location-links-list li a:hover .loc-arrow {
    transform: translateX(4px);
}

.location-links-list li a:hover .loc-count {
    background: #E2B857;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {
    .location-columns-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .location-columns-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .plotifys-locations-section {
        padding: 40px 0;
    }
}