.header-section {
    text-align: center;
    margin-bottom: 40px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-section h1 {
    color: #e91e63;
    font-size: 2.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.header-section p {
    color: #546e7a;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.filters-toolbar {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.filter-tabs {
    display: flex;
    gap: 5px;
    background: #f8f9fa;
    padding: 5px;
    border-radius: 10px;
}

.filter-tab {
    padding: 12px 24px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #546e7a;
}

.filter-tab:hover {
    background: rgba(233, 30, 99, 0.1);
    color: #e91e63;
}

.filter-tab.active {
    background: #e91e63;
    color: white;
    box-shadow: 0 2px 8px rgba(233, 30, 99, 0.3);
}

.search-container {
    flex: 1;
    max-width: 400px;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
    background: #fafbfc;
}

.search-container input:focus {
    border-color: #e91e63;
    background: white;
}

.search-icon::before {
    content: "🔍";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #90a4ae;
    font-size: 18px;
}

.listings-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.listing-item {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e8eaf0;
    transition: all 0.3s ease;
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 25px;
    align-items: start;
}

.listing-item:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.listing-icon {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.listing-icon.hotel {
    background: #FF0074
}

.listing-icon.casa {
    background: #F3931F;
}

.listing-icon.airbnb {
    background: #E6453E;
}


.listing-content {
    flex: 1;
}

.listing-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 15px;
}

.listing-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
    line-height: 1.3;
}

.listing-type {
    background: #e3f2fd;
    color: #1976d2;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid #bbdefb;
    box-shadow: 0 2px 4px rgba(25, 118, 210, 0.1);
}

.listing-type.hotel {
    background: linear-gradient(135deg, #FFE0F0 0%, #FFB3D9 100%);
    color: #FF0074;
    border-color: #FF0074;
}

.listing-type.casa {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B3 100%);
    color: #F3931F;
    border-color: #F3931F;
}

.listing-type.airbnb {
    background: linear-gradient(135deg, #FFF0F0 0%, #FFCCCC 100%);
    color: #E6453E;
    border-color: #E6453E;
}

.listing-address {
    color: #546e7a;
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.listing-address::before {
    content: "📍";
    color: #e91e63;
    margin-right: 10px;
    font-size: 16px;
}

.listing-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-item {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #495057;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    border: 1px solid #e9ecef;
    position: relative;
    padding-left: 32px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border-color: #2196f3;
    color: #1976d2;
    transform: translateY(-1px);
}

.feature-item::before {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

.feature-item.wifi::before { content: "📶"; }
.feature-item.pool::before { content: "🏊"; }
.feature-item.restaurant::before { content: "🍽️"; }
.feature-item.parking::before { content: "🚗"; }
.feature-item.business::before { content: "💼"; }
.feature-item.bedroom::before { content: "🛏️"; }
.feature-item.bathroom::before { content: "🚿"; }
.feature-item.garage::before { content: "🚙"; }
.feature-item.garden::before { content: "🌿"; }
.feature-item.kitchen::before { content: "🍳"; }
.feature-item.ac::before { content: "❄️"; }
.feature-item.tv::before { content: "📺"; }
.feature-item.laundry::before { content: "👕"; }
.feature-item.services::before { content: "⭐"; }

.listing-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 280px;
}

.primary-contact {
    background: linear-gradient(135deg, #231F20 0%, #444444 100%);
    color: white;
    padding: 16px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.1rem;
    border: 2px solid #231F20;
}

.primary-contact:hover {
    background: linear-gradient(135deg, #231F20 0%, #444444 100%);
    transform: translateY(-2px);
    border-color: #231F20;
}

.secondary-actions {
    display: flex;
    gap: 10px;
}

.secondary-btn {
    flex: 1;
    padding: 12px 16px;
    background: #f8f9fa;
    color: #495057;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.secondary-btn:hover {
    border-color: #e91e63;
    color: #e91e63;
    background: rgba(233, 30, 99, 0.05);
}

.secondary-btn.web::before {
    content: "🌐";
    font-size: 16px;
    margin-right: 8px;
}

.secondary-btn.map::before {
    content: "🗺️";
    font-size: 16px;
    margin-right: 8px;
}

.address-highlight {
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 10px;
    border-left: 4px solid #e91e63;
    font-size: 0.95rem;
    color: #2c3e50;
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .listing-item {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }

    .listing-actions {
        min-width: auto;
    }

    .listing-header {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .filters-toolbar {
        flex-direction: column;
        gap: 20px;
    }

    .search-container {
        max-width: 100%;
    }

    .filter-tabs {
        width: 100%;
        justify-content: center;
    }

    .header-section h1 {
        font-size: 2.2rem;
    }

    .listing-item {
        padding: 20px;
    }

    .secondary-actions {
        flex-direction: column;
    }
}

.no-results {
    text-align: center;
    padding: 80px 20px;
    color: #546e7a;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.no-results::before {
    content: "🔍";
    font-size: 4rem;
    color: #cfd8dc;
    margin-bottom: 20px;
    display: block;
}

.no-results h3 {
    color: #37474f;
    margin-bottom: 10px;
}

.icon-hotel::before { content: "🏨"; }
.icon-home::before { content: "🏠"; }
.icon-bed::before { content: "🛏️"; }
.icon-phone::before { content: "📞"; }
.icon-location::before { content: "📍"; }
.icon-web::before { content: "🌐"; }
.icon-map::before { content: "🗺️"; }
.icon-search::before { content: "🔍"; }
.icon-wifi::before { content: "📶"; }
.icon-pool::before { content: "🏊"; }
.icon-restaurant::before { content: "🍽️"; }
.icon-parking::before { content: "🚗"; }
.icon-business::before { content: "💼"; }
.icon-bedroom::before { content: "🛏️"; }
.icon-bathroom::before { content: "🚿"; }
.icon-garage::before { content: "🚙"; }
.icon-garden::before { content: "🌿"; }
.icon-kitchen::before { content: "🍳"; }
.icon-ac::before { content: "❄️"; }
.icon-tv::before { content: "📺"; }
.icon-laundry::before { content: "👕"; }