.remodel-section {
    background-color: #2e2d2d;
    padding: 3rem 1rem 3.5rem;
    text-align: center;
}

.remodel-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.75rem;
    font-weight: bold;
    color: #2db7e3;
    margin-bottom: 0.5rem;
}

.remodel-subtitle {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
    max-width: 1366px;
    margin-left: auto;
    margin-right: auto;
    line-height: 2rem;
}

@media screen and (max-width: 480px) {
    .remodel-title {
        font-size: 1.5rem;
    }
    .remodel-subtitle {
        font-size: 1.3rem;
        line-height: 1.25rem;
    }
}

/* Carousel */
.carousel-wrapper {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

.carousel-track {
    overflow: hidden;
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.carousel-slide {
    flex: 0 0 100%;
    width: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

/* Prev / Next buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.55);
    color: #ffffff;
    border: none;
    width: 48px;
    height: 48px;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

.carousel-btn-prev {
    left: 14px;
}

.carousel-btn-next {
    right: 14px;
}

/* Dot indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.25rem;
}

.carousel-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #555555;
    border: none;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.2s ease;
    padding: 0;
}

.carousel-dot.active {
    background: #ffffff;
    transform: scale(1.25);
}

/* Mobile */
@media screen and (max-width: 640px) {
    .carousel-slide img {
        height: 260px;
    }

    .remodel-title {
        font-size: 1.4rem;
    }

    .remodel-subtitle {
        font-size: 1rem;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }

    .carousel-btn-prev {
        left: 8px;
    }

    .carousel-btn-next {
        right: 8px;
    }
}
