/* Premium Deals & Holidays Slider - Professional Remodeling Website */
.tp-deals-slider-section {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    padding: 0;
    overflow: hidden;
    border-top: 4px solid #6d4c41;
    border-bottom: 4px solid #6d4c41;
}

.tp-deals-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.tp-deals-slider {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.tp-deal-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    gap: 60px;
}

.tp-deal-content {
    flex: 1;
    z-index: 2;
}

.tp-deal-badge {
    display: inline-block;
    background: linear-gradient(135deg, #6d4c41 0%, #8d6e63 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(109, 76, 65, 0.4);
}

.tp-deal-title {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.1;
    font-family: 'Playfair Display', serif;
}

.tp-deal-subtitle {
    font-size: 24px;
    color: #d4d4d4;
    margin: 0 0 30px 0;
    font-weight: 300;
    line-height: 1.4;
}

.tp-deal-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #6d4c41 0%, #3e2723 100%);
    color: #ffffff;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(109, 76, 65, 0.3);
}

.tp-deal-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(109, 76, 65, 0.5);
    background: linear-gradient(135deg, #8d6e63 0%, #6d4c41 100%);
}

.tp-deal-image {
    flex: 1;
    position: relative;
    z-index: 1;
}

.tp-deal-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 3px solid #6d4c41;
}

/* Slider Controls */
.tp-slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.tp-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tp-slider-dot.active {
    background: #6d4c41;
    width: 40px;
    border-radius: 6px;
}

.tp-slider-dot:hover {
    background: #8d6e63;
    transform: scale(1.2);
}

/* Navigation Arrows */
.tp-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(109, 76, 65, 0.9);
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.tp-slider-nav:hover {
    background: #6d4c41;
    transform: translateY(-50%) scale(1.1);
}

.tp-slider-nav.prev {
    left: 30px;
}

.tp-slider-nav.next {
    right: 30px;
}

.tp-slider-nav i {
    color: #ffffff;
    font-size: 24px;
}

/* Decorative Elements */
.tp-deal-slide::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(109, 76, 65, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tp-deal-slide {
        padding: 50px 40px;
        gap: 40px;
    }

    .tp-deal-title {
        font-size: 36px;
    }

    .tp-deal-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .tp-deal-slide {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
    }

    .tp-deal-title {
        font-size: 28px;
    }

    .tp-deal-subtitle {
        font-size: 18px;
    }

    .tp-deal-image img {
        height: 300px;
    }

    .tp-slider-nav {
        width: 40px;
        height: 40px;
    }

    .tp-slider-nav.prev {
        left: 10px;
    }

    .tp-slider-nav.next {
        right: 10px;
    }
}

/* Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.tp-deal-slide.active .tp-deal-content {
    animation: slideIn 0.8s ease-out;
}
