/* ===================================
   LISTING PAGE STYLES
   =================================== */

/* Digital Marketing Banner */
.digital-marketing-banner {
    background: linear-gradient(135deg, #212529 0%, #2d2d2d 100%);
    padding: 20px 0;
    margin-bottom: 30px;
}

.banner-title {
    font-family: 'Wix Madefor Display', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
    letter-spacing: 2px;
}

.banner-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
}

.banner-list {
    list-style: none;
    padding: 0;
    color: #ffffff;
    font-size: 14px;
    line-height: 1.8;
}

.banner-list li:before {
    content: "• ";
    color: #ffffff;
    font-weight: bold;
    margin-right: 5px;
}

.banner-image img {
    max-width: 60px;
    height: auto;
}

.banner-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price-label {
    font-size: 11px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 36px;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
}

.digital-marketing-banner .btn-warning {
    background-color: #FFD700;
    border: none;
    color: #212529;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.digital-marketing-banner .btn-warning:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

/* Inline Banner */
.digital-marketing-banner-inline {
    background: linear-gradient(135deg, #212529 0%, #2d2d2d 100%);
    padding: 20px 30px;
    border-radius: 8px;
    margin: 20px 0;
}

/* Listing Page Layout */
.listing-page {

    background-color: #f8f4f3;
    min-height: 100vh;
}

.listing-header {
    margin-bottom: 24px;
}

.listing-count {
    font-family: 'Wix Madefor Display', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #212529;
}

.count-number {
    color: #f84525;
    font-weight: 700;
}

/* Listing Card */
.listing-card {
    background: #ffffff;
    border-radius:0.375rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.listing-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.featured-badge {
   position: absolute;
    top: 15px;
    left: 15px;
    background: #6c757d;
    color: #ffffff;
    padding: 1px 6px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.featured-badge i {
    margin-right: 4px;
}

.listing-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.listing-card:hover .listing-image img {
    transform: scale(1.05);
}

.listing-content {
    padding: 20px;
}

.listing-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 14px;
}

.rating-value {
    font-weight: 600;
    color: #212529;
}

.review-count {
    color: #666666;
    font-size: 13px;
}

.listing-title {
    font-family: 'Wix Madefor Display', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #212529;
    margin-bottom: 10px;
}

.listing-location {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Added styles for description text (alternative to location) */
.listing-description {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 18px;
}

.listing-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.btn-call {
    background-color: #c93517;
    color: #ffffff;
    border: none;
    padding: 6.8px 12px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 1px solid #c93517;
}

.btn-call:hover {
    background-color: #a82d14;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 53, 23, 0.3);
}

.btn-call i {
    margin-right: 6px;
}

.btn-view-details {
    background-color: transparent;
    color: #212529;
    border: 1px solid #dee2e6;
    padding: 7.5px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-view-details:hover {
    background-color: #f8f4f3;
    border-color:#212529;
    transform: translateY(-2px);
}

/* View More Button */
.btn-view-more {
    background-color: #f84525;
    color: #ffffff;
    border: none;
    padding: 7px 22px;
    border-radius: 8px;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
}

.btn-view-more:hover {
    background-color: #e03515;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 69, 37, 0.3);
}

/* Sidebar */
.listing-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-search .form-control {
    border: 1px solid #e0e0e0;
    border-right: none;
    padding: 12px 16px;
    font-size: 14px;
}

.sidebar-search .form-control:focus {
    border-color: #f84525;
    box-shadow: none;
}

.btn-search {
    background-color: #f84525;
    color: #ffffff;
    border: none;
    padding: 12px 20px;
}

.btn-search:hover {
    background-color: #e03515;
    color: #ffffff;
}

.sidebar-filter .form-select {
    border: 1px solid #e0e0e0;
    padding: 12px 16px;
    font-size: 14px;
    color: #666666;
}

.sidebar-filter .form-select:focus {
    border-color: #f84525;
    box-shadow: none;
}

/* Sidebar Ad Banner */
.sidebar-ad-banner {
    background: linear-gradient(135deg, #212529 0%, #2d2d2d 100%);
    border-radius: 8px;
    overflow: hidden;
}

.ad-content {
    padding:0px;
}

.ad-title {
    font-family: 'Wix Madefor Display', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #FFD700;
    line-height: 1.1;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
}

.ad-subtitle {
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 1px;
}

.ad-features {
    color: #ffffff;
    font-size: 12px;
    margin-bottom: 20px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.ad-feature {
    display: block;
    line-height: 1.6;
}

.ad-price-section {
    text-align: center;
    margin-top: 20px;
}

.ad-price-label {
    font-size: 10px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 5px;
}

.ad-price-main {
    font-size: 40px;
    font-weight: 800;
    color: #FFD700;
    line-height: 1;
    margin-bottom: 15px;
}

.sidebar-ad-banner .btn-warning {
    background-color: #FFD700;
    border: none;
    color: #212529;
    font-weight: 700;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.sidebar-ad-banner .btn-warning:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}
.add-banner{
  margin-bottom: 30px;
}
/* Responsive Styles */
@media (max-width: 991px) {
    .listing-sidebar {
        position: relative;
        top: 0;
        margin-top: 40px;
    }

    .banner-title {
        font-size: 24px;
    }

    .price-amount {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .digital-marketing-banner .row {
        text-align: center;
    }

    .digital-marketing-banner .col-lg-6 {
        margin-bottom: 20px;
    }

    .digital-marketing-banner .col-lg-6:last-child {
        margin-bottom: 0;
    }

    /* .listing-actions {
        flex-direction: column;
    } */
        .btn-call {
            display: inline-block !important;
        }

    /* .btn-call,
    .btn-view-details {
        width: 100%;
    } */
}
@media (max-width: 556px) {
 .listing-sidebar {
     margin-top: 0px;
 }
 .btn-call{
    display: inline-block !important;
 }

 
}
