/* WHY-US SECTION */
.why-us {
    padding: 80px 2rem;
    background-color: #f4f6f9;
}

.why-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-us-grid {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.why-us-item {
    flex: 1;
    text-align: center;
    padding: 30px 20px;
    border-right: 1px solid #ddd;
}

.why-us-item:last-child {
    border-right: none;
}

.why-us-item i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.why-us-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.why-us-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

@media (max-width: 992px) {
    .why-us {
        padding: 60px 2rem;
    }

    .why-us-grid {
        flex-direction: column;
        gap: 30px;
    }

    .why-us-item {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding: 25px 20px;
    }

    .why-us-item:last-child {
        border-bottom: none;
    }

    .why-us-item h3 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .why-us {
        padding: 50px 1.5rem;
    }

    .why-us-item {
        padding: 20px 15px;
    }

    .why-us-item i {
        font-size: 30px;
        margin-bottom: 15px;
    }

    .why-us-item h3 {
        font-size: 16px;
    }

    .why-us-item p {
        font-size: 13px;
    }
}

/* Swiper Navigation Buttons - Proper Round Design */
.swiper-button-next,
.swiper-button-prev {
    width: 42px !important;
    height: 42px !important;
    background: #ffffff !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: 0.3s ease !important;
}

/* Make icon smaller */
.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: bold !important;
    color: #105DA6 !important;
}

/* Hover Effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #105DA6 !important;
}

.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
    color: #ffffff !important;
}

/* Optional: adjust position slightly */
.swiper-button-prev {
    left: -10px !important;
}

.swiper-button-next {
    right: -10px !important;
}

/* =============================
   DOLLARSWAY FOOTER DESIGN
============================= */

.dw-footer {
    background: #1c3f63;
    color: #ffffff;
    padding-top: 60px;
}

.dw-footer-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}

.dw-footer-left,
.dw-footer-right {
    width: 50%;
}

.dw-small-title {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.85;
}

.dw-company {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    border-left: 4px solid #4ea3ff;
    padding-left: 15px;
}

.dw-chinese {
    font-size: 20px;
    font-weight: 500;
    margin-left: 20px;
}

.dw-contact-title {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.dw-footer-right p {
    margin-bottom: 10px;
    font-size: 15px;
}

.dw-footer-bottom {
    text-align: center;
    background: #173552;
    padding: 15px 0;
    font-size: 14px;
}

/* Responsive */

@media (max-width: 768px) {
    .dw-footer-container {
        flex-direction: column;
    }

    .dw-footer-left,
    .dw-footer-right {
        width: 100%;
    }

    .dw-company {
        font-size: 18px;
    }

    .dw-chinese {
        font-size: 16px;
    }
}
