/* Listing Detail Page Styles */

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

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

.banner-subtitle {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}

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

.banner-list li::before {
    content: "• ";
    color: #FFB14F;
    font-weight: bold;
}

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

.price-label {
    color: #ffffff;
    font-size: 12px;
}

.price-amount {
    color: #FFB14F;
    font-size: 32px;
    font-weight: 800;
}

/* Hero Image */
.hero-image-wrapper {
    position: relative;
}

.hero-image-wrapper img {
    height: 400px;
    object-fit: cover;
}

.share-button {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-button:hover {
    background: #ffffff;
    transform: scale(1.1);
}

/* Business Header */
.business-header {
    padding: 10px 0;
}

.business-title {
    font-size: 32px;
    font-weight: 700;
    color: #1c1b1f;
    margin-bottom: 12px;
    font-family: 'Wix Madefor Display', sans-serif;
}

.business-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.business-category {
    padding: 4px 12px;
    background: #f8f4f3;
    border-radius: 4px;
    font-size: 14px;
    color: #212529;
}

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

.review-count {
    color: #919191;
    font-size: 14px;
}

/* Detail Sections */
/* .detail-section {
    padding: 24px 0;
} */

.section-title {
    font-size: 24px;
    font-weight: 600;
    color: #1c1b1f;
    margin-bottom: 8px;
    font-family: 'Wix Madefor Display', sans-serif;
}

.section-text {
    color: #212529;
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Services Carousel */
.services-carousel {
    padding: 0 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #f8f4f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 24px;
    color: #f84525;
}

.service-name {
    font-weight: 600;
    color: #212529;
    margin: 0;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-nav:hover {
    background: #f84525;
    color: #ffffff;
    border-color: #f84525;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Service Areas */
.service-areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.area-badge {
    padding: 8px 20px;
    background: #ffffff;
    border-radius: 24px;
    font-size: 14px;
    color: #212529;
    font-weight: 400;
}

/* Products Grid */
.products-carousel {
    padding: 0 40px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: #ffffff;
    transition: all 0.3s ease;
    padding: 5px;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card img {
    height: 80px;
    object-fit: cover;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
}

.product-year {
    font-size: 14px;
    color: #212529;
    margin: 0;
}

/* Special Offers */
.special-offer-banner img {
    
    object-fit: contain;
}

/* Videos/Photos */
.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.video-thumbnail img {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.play-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #ffffff;
    transform: scale(1.1);
}

.play-button i {
    color: #f84525;
    font-size: 24px;
    margin-left: 4px;
}

.video-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
}

/* Reviews */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.review-item {
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
}

.review-header {
    margin-bottom: 16px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f8f4f3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #919191;
}

.reviewer-name {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
}

.review-date {
    font-size: 13px;
}

.review-text {
    color: #212529;
    line-height: 1.7;
    margin: 0;
}

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

.sidebar-search .input-group {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
}

.sidebar-search .form-control {
    border: none;
    padding: 12px 16px;
}

.sidebar-search .form-control:focus {
    box-shadow: none;
}

.btn-search {
    background: transparent;
    border: none;
    color: #919191;
    padding: 0 16px;
}

.sidebar-filter .form-select {
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #919191;
}

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

/* Business Info Card */
.business-info-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
}

.business-info-title {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 8px;
}

.business-info-category {
    display: inline-block;
    padding: 4px 12px;
    background: #f8f4f3;
    border-radius: 4px;
    font-size: 13px;
    color: #212529;
    margin-bottom: 12px;
}

.business-info-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.business-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: #212529;
}

.contact-item i {
    color: #919191;
    width: 16px;
    margin-top: 2px;
}

.business-action-buttons .btn-call {
    background: #f84525;
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
}

.business-action-buttons .btn-call:hover {
    background: #d63515;
}

.business-action-buttons .btn-quote {
    background: transparent;
    color: #212529;
    border: 1px solid #e5e7eb;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
}

.business-action-buttons .btn-quote:hover {
    background: #f8f4f3;
}

/* Listing Creator Card */
.listing-creator-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
}

.creator-title {
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 16px;
}

.creator-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.creator-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8f4f3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #919191;
}

.creator-text {
    font-size: 14px;
    color: #212529;
    margin: 0;
}

/* Review Form Card */
.review-form-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 24px;
}

.form-title {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 20px;
}

.review-form-card .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 8px;
}

.review-form-card .form-control {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px 14px;
}

.review-form-card .form-control:focus {
    border-color: #009751;
    box-shadow: none;
}

.star-rating {
    display: flex;
    gap: 8px;
    font-size: 24px;
}

.star-rating i {
    color: #e5e7eb;
    cursor: pointer;
    transition: color 0.2s ease;
}

.star-rating i:hover,
.star-rating i.active {
    color: #FFB14F;
}

.form-buttons {
    display: flex;
    gap: 12px;
}

.form-buttons .btn {
    background: #f84525;
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
}

/* Sidebar Ad Banner */
.sidebar-ad-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    padding: 24px;
}

.ad-title {
    color: #FFB14F;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.ad-subtitle {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.ad-features {
    margin-bottom: 20px;
}

.ad-feature {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.6;
}

.ad-price-label {
    color: #ffffff;
    font-size: 11px;
    display: block;
    margin-bottom: 4px;
}

.ad-price-main {
    color: #FFB14F;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

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

.green-clr {
    color: #009751;
}

/* Responsive */
@media (max-width: 991px) {

    .services-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .listing-detail-sidebar {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .business-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 20px;
    }

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .carousel-nav {
        display: none;
    }

    .services-carousel,
    .products-carousel {
        padding: 0;
    }
}

@media (max-width: 556px) {
    .detail-section {
        padding: 10px 0;
    }
        .business-header {
            padding: 5px 0;
        }

    .business-header {
        padding: 10px 0;
    }

    .business-title {
        margin-bottom: 6px;
    }

    .section-title {
        margin-bottom: 4px;
    }

    .section-text {
        margin-bottom: 8px;
    }

    .service-card {
        padding: 20px 0px;
    }

    .listing-detail-sidebar {
        margin-top: 0px;
    }

    .sidebar-search .form-control {
        padding: 6px 16px;
    }

    .sidebar-filter .form-select {
        padding: 6px 16px;
    }

    .reviews-list {
        gap: 16px;
    }

    .review-form-card .form-control {
        padding: 6px 14px;
    }

    .form-buttons .btn {
        padding: 6px;
    }

.business-action-buttons .btn-call {
        padding: 6px;
}
.business-action-buttons .btn-quote {
    padding: 6px;
}
}