.why-choose-section {
    background-color: #EAE7E1;
    padding-top: 80px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

.why-choose-heading {
    color: #7B1F26;
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-californian, 'Cormorant Garamond', 'Californian FB', Georgia, serif);
}

.why-choose-description {
    color: #4A4A4A;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 400;
    text-align: center;
    max-width: 820px;
    margin: 0 auto 10px auto;
    font-family: var(--font-hyundai, 'Hyundai Sans', 'Hyundai Sans Text Office', sans-serif);
}

.why-choose-slider-wrapper {
    position: relative;
    width: 100%;
    padding: 0 40px;
}

.why-choose-slider-container {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    padding: 15px 0;
}

.why-choose-track {
    display: flex;
    gap: 45px;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.why-choose-slide-item {
    flex: 0 0 calc((100% - (5 * 45px)) / 6);
    min-width: calc((100% - (5 * 45px)) / 6);
    display: flex;
}

@media (max-width: 1399.98px) and (min-width: 1200px) {
    .why-choose-slide-item {
        flex: 0 0 calc((100% - (5 * 45px)) / 6);
        min-width: calc((100% - (5 * 45px)) / 6);
    }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
    .why-choose-slide-item {
        flex: 0 0 calc((100% - (3 * 35px)) / 4);
        min-width: calc((100% - (3 * 35px)) / 4);
    }
}

@media (max-width: 991.98px) and (min-width: 576px) {
    .why-choose-slide-item {
        flex: 0 0 calc((100% - (2 * 25px)) / 3);
        min-width: calc((100% - (2 * 25px)) / 3);
    }
}

@media (max-width: 575.98px) {
    .why-choose-slide-item {
        flex: 0 0 calc((100% - 25px) / 1.4);
        min-width: calc((100% - 25px) / 1.4);
    }
}

.why-choose-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 20px 12px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(123, 31, 38, 0.12);
}

.card-shape-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 12px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-shape-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

.card-icon-img {
    position: relative;
    z-index: 2;
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.card-title {
    color: #7B1F26;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.25;
    font-family: var(--font-hyundai, 'Hyundai Sans', 'Hyundai Sans Text Office', sans-serif);
}

.why-choose-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    border: 1px solid rgba(123, 31, 38, 0.2);
    border-radius: 50%;
    color: #7B1F26;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.why-choose-slider-btn:hover {
    background-color: #7B1F26;
    color: #ffffff;
    border-color: #7B1F26;
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
}

.why-choose-slider-prev {
    left: -15px;
}

.why-choose-slider-next {
    right: -15px;
}

/* Estimate Section */
.estimate-wrapper {
    margin-top: 20px;
    padding-top: 20px;
}

.estimate-heading {
    color: #000000;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    font-family: var(--font-hyundai, 'Hyundai Sans', 'Hyundai Sans Text Office', sans-serif);
}

.estimate-heading .highlight-kitchen {
    color: #DD5F6B;
    font-weight: 700;
}

.estimate-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 28px 24px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.35s ease;
}

.estimate-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(123, 31, 38, 0.12);
}

.estimate-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
}

.estimate-shape-wrapper {
    position: relative;
    width: 85px;
    height: 85px;
    min-width: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.estimate-shape-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 1;
}

.estimate-icon-img {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.estimate-card-title {
    color: #EA4B5B;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: var(--font-hyundai, 'Hyundai Sans', 'Hyundai Sans Text Office', sans-serif);
}

.estimate-card-footer {
    width: 100%;
    margin-top: auto;
}

.estimate-btn {
    display: block;
    width: 100%;
    background-color: #EA4B5B;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 5px 24px;
    border-radius: 50px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(234, 75, 91, 0.25);
    font-family: var(--font-californian, 'Cormorant Garamond', 'Californian FB', Georgia, serif);
}

.estimate-btn:hover,
.estimate-btn:focus-visible {
    background-color: #d83d4c;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(234, 75, 91, 0.45);
}

@media (prefers-reduced-motion: reduce) {

    .why-choose-card,
    .estimate-card,
    .estimate-btn,
    .why-choose-track {
        transition: none !important;
    }
}

@media (max-width: 767.98px) {
    .why-choose-section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .why-choose-heading {
        font-size: 32px;
    }

    .why-choose-description {
        font-size: 16px;
        margin-bottom: 35px;
    }

    .why-choose-slider-wrapper {
        padding: 0 10px;
    }

    .card-shape-wrapper {
        width: 95px;
        height: 95px;
    }

    .card-icon-img {
        width: 42px;
        height: 42px;
    }

    .estimate-wrapper {
        margin-top: 45px;
    }

    .estimate-heading {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .estimate-card-title {
        font-size: 16px;
    }

    .estimate-btn {
        font-size: 15px;
        padding: 10px 20px;
    }
}