/*--------------------------------------------------------------
WHY CHOOSE US PAGE STYLES - PREMIUM LOGISTICS DESIGN
--------------------------------------------------------------*/

/* ============================================================
   HERO SECTION
============================================================ */
.wcu-hero {
    position: relative;
    padding: 120px 0 80px;
    z-index: 1;
    overflow: hidden;
}

.wcu-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.wcu-hero__bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 47, 58, 0.8) 0%, rgba(218, 5, 48, 0.3) 100%);
    z-index: 1;
}

.wcu-hero__content {
    position: relative;
    z-index: 2;
}

.wcu-hero__title {
    font-size: 48px;
    line-height: 1.3em;
    font-weight: 700;
    color: var(--tanspot-white);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.wcu-highlight {
    color: var(--tanspot-base);
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 6px;
}

.wcu-hero__subtitle {
    font-size: 18px;
    line-height: 1.6em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    max-width: 600px;
}

.wcu-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--tanspot-white);
}

.badge-item i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--tanspot-base);
    border-radius: 50%;
    font-size: 16px;
}

/* Mobile responsive for hero */
@media (max-width: 768px) {
    .wcu-hero {
        padding: 80px 0 60px;
    }

    .wcu-hero__title {
        font-size: 32px;
    }

    .wcu-hero__subtitle {
        font-size: 16px;
    }

    .wcu-hero__badges {
        flex-direction: column;
        gap: 15px;
    }
}

/* ============================================================
   FEATURE CARDS SECTION
============================================================ */
.wcu-features {
    position: relative;
    padding: 100px 0 80px;
    z-index: 1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--tanspot-base);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--tanspot-base);
}

.section-title h2 {
    font-size: 42px;
    line-height: 1.2em;
    font-weight: 700;
    color: var(--tanspot-black);
    margin-top: 15px;
}

.wcu-card {
    position: relative;
    background-color: var(--tanspot-white);
    border: 1px solid var(--tanspot-bdr-color);
    border-radius: var(--tanspot-bdr-radius);
    padding: 40px 30px;
    transition: all 400ms ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
}

.wcu-card:hover {
    border-color: var(--tanspot-base);
    box-shadow: 0px 15px 50px rgba(218, 5, 48, 0.15);
    transform: translateY(-10px);
}

.wcu-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--tanspot-base), #fd5523);
    border-radius: 50%;
    margin-bottom: 25px;
    font-size: 36px;
    color: var(--tanspot-white);
    transition: all 300ms ease;
}

.wcu-card:hover .wcu-card__icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0px 10px 30px rgba(218, 5, 48, 0.3);
}

.wcu-card__title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3em;
    color: var(--tanspot-black);
    margin-bottom: 15px;
}

.wcu-card__text {
    font-size: 16px;
    line-height: 1.6em;
    color: var(--tanspot-gray);
    margin-bottom: 20px;
    flex-grow: 1;
}

.wcu-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--tanspot-bdr-color);
    padding-top: 20px;
}

.wcu-card__list li {
    font-size: 14px;
    line-height: 1.8em;
    color: var(--tanspot-gray);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.wcu-card__list li i {
    color: var(--tanspot-base);
    font-weight: bold;
    min-width: 16px;
    margin-top: 2px;
}

/* Mobile responsive for cards */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 32px;
    }

    .wcu-card {
        padding: 30px 20px;
    }
}

/* ============================================================
   INTERACTIVE HIGHLIGHT SECTION
============================================================ */
.wcu-highlight-section {
    position: relative;
    padding: 100px 0 80px;
    background-color: var(--tanspot-primary);
    z-index: 1;
}

.wcu-highlight__image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 450px;
}

.wcu-highlight__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms ease;
}

.wcu-highlight-section:hover .wcu-highlight__image img {
    transform: scale(1.05);
}

.wcu-highlight__badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--tanspot-base);
    color: var(--tanspot-white);
    padding: 20px 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 10px 40px rgba(218, 5, 48, 0.3);
    animation: fadeInUp 1s ease;
}

.badge-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1em;
    margin-bottom: 5px;
}

.badge-text {
    display: block;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.95;
}

.wcu-highlight__content {
    padding-left: 50px;
}

.wcu-highlight__content h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.3em;
    color: var(--tanspot-black);
    margin-bottom: 20px;
}

.wcu-highlight__description {
    font-size: 16px;
    line-height: 1.6em;
    color: var(--tanspot-gray);
    margin-bottom: 40px;
}

.wcu-highlight__checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checklist-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.5);
    transition: all 300ms ease;
}

.checklist-item:hover {
    background: var(--tanspot-white);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.08);
    padding-left: 20px;
}

.checklist-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--tanspot-base);
    border-radius: 50%;
    color: var(--tanspot-white);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.checklist-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--tanspot-black);
    margin: 0 0 5px 0;
}

.checklist-text p {
    font-size: 14px;
    line-height: 1.5em;
    color: var(--tanspot-gray);
    margin: 0;
}

/* Mobile responsive for highlight section */
@media (max-width: 768px) {
    .wcu-highlight__content {
        padding-left: 0;
        margin-top: 40px;
    }

    .wcu-highlight__content h2 {
        font-size: 28px;
    }

    .wcu-highlight__image {
        min-height: 300px;
    }
}

/* ============================================================
   STATISTICS SECTION
============================================================ */
.wcu-statistics {
    position: relative;
    padding: 100px 0 80px;
    z-index: 1;
}

.wcu-statistics__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

.wcu-stat-card {
    position: relative;
    background: var(--tanspot-white);
    border: 1px solid var(--tanspot-bdr-color);
    border-radius: var(--tanspot-bdr-radius);
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 400ms ease;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
}

.wcu-stat-card:hover {
    border-color: var(--tanspot-base);
    box-shadow: 0px 15px 50px rgba(218, 5, 48, 0.15);
    transform: translateY(-10px);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tanspot-base), #fd5523);
    border-radius: 50%;
    margin-bottom: 25px;
    font-size: 40px;
    color: var(--tanspot-white);
    transition: all 300ms ease;
}

.wcu-stat-card:hover .stat-icon {
    transform: scale(1.15) rotateZ(-10deg);
    box-shadow: 0px 15px 40px rgba(218, 5, 48, 0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--tanspot-base);
    line-height: 1em;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--tanspot-black);
    margin-bottom: 8px;
}

.stat-description {
    font-size: 14px;
    line-height: 1.6em;
    color: var(--tanspot-gray);
    margin: 0;
}

/* Counter animation */
.counter {
    display: inline-block;
}

/* ============================================================
   WHY CLIENTS CHOOSE SECTION
============================================================ */
.wcu-reasons {
    position: relative;
    padding: 100px 0 80px;
    background-color: var(--tanspot-primary);
    z-index: 1;
}

.reason-block {
    display: flex;
    gap: 30px;
    padding: 35px;
    background: var(--tanspot-white);
    border-radius: var(--tanspot-bdr-radius);
    border: 1px solid var(--tanspot-bdr-color);
    transition: all 400ms ease;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
}

.reason-block:hover {
    border-color: var(--tanspot-base);
    box-shadow: 0px 15px 50px rgba(218, 5, 48, 0.12);
    transform: translateX(10px);
}

.reason-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tanspot-base), #fd5523);
    border-radius: 50%;
    color: var(--tanspot-white);
    font-size: 36px;
    flex-shrink: 0;
    transition: all 300ms ease;
}

.reason-block:hover .reason-icon {
    transform: scale(1.15) rotate(20deg);
    box-shadow: 0px 10px 30px rgba(218, 5, 48, 0.3);
}

.reason-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--tanspot-black);
    margin-bottom: 12px;
}

.reason-content p {
    font-size: 15px;
    line-height: 1.6em;
    color: var(--tanspot-gray);
    margin: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .reason-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .reason-block:hover {
        transform: translateY(-5px);
    }

    .reason-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
}

/* ============================================================
   PROCESS SECTION
============================================================ */
.wcu-process {
    position: relative;
    padding: 100px 0 80px;
    z-index: 1;
}

.process-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-timeline::before {
    content: "";
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--tanspot-base), rgba(218, 5, 48, 0.3));
    z-index: 1;
}

.process-step {
    position: relative;
    padding-left: 160px;
    min-height: 120px;
    display: flex;
    align-items: center;
}

.process-step__number {
    position: absolute;
    left: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--tanspot-base), #fd5523);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--tanspot-white);
    z-index: 3;
    box-shadow: 0px 10px 30px rgba(218, 5, 48, 0.25);
    transition: all 300ms ease;
}

.process-step:hover .process-step__number {
    transform: scale(1.15);
    box-shadow: 0px 15px 40px rgba(218, 5, 48, 0.35);
}

.process-step__content {
    background: var(--tanspot-white);
    border: 1px solid var(--tanspot-bdr-color);
    border-radius: var(--tanspot-bdr-radius);
    padding: 30px 35px;
    flex: 1;
    transition: all 400ms ease;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
}

.process-step:hover .process-step__content {
    border-color: var(--tanspot-base);
    box-shadow: 0px 15px 50px rgba(218, 5, 48, 0.12);
    transform: translateX(10px);
}

.process-step__content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--tanspot-black);
    margin-bottom: 12px;
}

.process-step__content p {
    font-size: 15px;
    line-height: 1.6em;
    color: var(--tanspot-gray);
    margin: 0;
}

/* Mobile responsive process */
@media (max-width: 768px) {
    .process-timeline::before {
        left: 15px;
    }

    .process-step {
        padding-left: 100px;
    }

    .process-step__number {
        width: 60px;
        height: 60px;
        font-size: 20px;
        left: -15px;
    }

    .process-step__content {
        padding: 20px 25px;
    }
}

/* ============================================================
   TRUST SECTION
============================================================ */
.wcu-trust {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, var(--tanspot-primary) 0%, rgba(244, 245, 249, 0.8) 100%);
    z-index: 1;
}

.trust-item {
    background: var(--tanspot-white);
    border: 1px solid var(--tanspot-bdr-color);
    border-radius: var(--tanspot-bdr-radius);
    padding: 35px 30px;
    text-align: center;
    transition: all 400ms ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
}

.trust-item:hover {
    border-color: var(--tanspot-base);
    box-shadow: 0px 15px 50px rgba(218, 5, 48, 0.15);
    transform: translateY(-15px);
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--tanspot-base), #fd5523);
    border-radius: 50%;
    color: var(--tanspot-white);
    font-size: 32px;
    margin: 0 auto 25px;
    transition: all 300ms ease;
}

.trust-item:hover .trust-icon {
    transform: scale(1.15) rotateZ(-15deg);
    box-shadow: 0px 10px 30px rgba(218, 5, 48, 0.3);
}

.trust-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--tanspot-black);
    margin-bottom: 15px;
}

.trust-item p {
    font-size: 14px;
    line-height: 1.6em;
    color: var(--tanspot-gray);
    margin: 0;
    flex-grow: 1;
}

/* ============================================================
   CTA SECTION
============================================================ */
.wcu-cta {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(135deg, rgba(26, 47, 58, 0.95) 0%, rgba(218, 5, 48, 0.2) 100%);
    z-index: 1;
    color: var(--tanspot-white);
}

.wcu-cta__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
}

.wcu-cta__content {
    position: relative;
    z-index: 2;
}

.wcu-cta__content h2 {
    font-size: 48px;
    line-height: 1.3em;
    font-weight: 700;
    color: var(--tanspot-white);
    margin-bottom: 20px;
}

.wcu-cta__content > p {
    font-size: 18px;
    line-height: 1.6em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.wcu-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.thm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: var(--tanspot-bdr-radius);
    text-decoration: none;
    transition: all 400ms ease;
    cursor: pointer;
    text-transform: capitalize;
}

.thm-btn--primary {
    background-color: var(--tanspot-base);
    color: var(--tanspot-white);
}

.thm-btn--primary:hover {
    background-color: #b8031f;
    transform: translateY(-3px);
    box-shadow: 0px 10px 30px rgba(218, 5, 48, 0.3);
}

.thm-btn--secondary {
    background-color: transparent;
    color: var(--tanspot-white);
    border-color: var(--tanspot-white);
}

.thm-btn--secondary:hover {
    background-color: var(--tanspot-white);
    color: var(--tanspot-base);
    transform: translateY(-3px);
}

.wcu-cta__support {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.wcu-cta__support p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Mobile responsive CTA */
@media (max-width: 768px) {
    .wcu-cta {
        padding: 60px 0;
    }

    .wcu-cta__content h2 {
        font-size: 32px;
    }

    .wcu-cta__content > p {
        font-size: 16px;
    }

    .wcu-cta__buttons {
        flex-direction: column;
        align-items: center;
    }

    .wcu-cta__buttons .thm-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   GLOBAL RESPONSIVE
============================================================ */
@media (max-width: 992px) {
    .section-title h2 {
        font-size: 36px;
    }

    .wcu-highlight__content {
        padding-left: 30px;
    }
}

@media (max-width: 576px) {
    .wcu-hero__title {
        font-size: 26px;
    }

    .wcu-hero__subtitle {
        font-size: 14px;
    }

    .section-title h2 {
        font-size: 26px;
    }

    .wcu-card {
        padding: 25px 15px;
    }

    .reason-block {
        padding: 25px 20px;
    }

    .trust-item {
        padding: 25px 15px;
    }

    .process-step__number {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .process-step {
        padding-left: 80px;
    }
}

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scrolling animations handled by AOS library */
[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-right"] {
    opacity: 0;
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

[data-aos="fade-left"] {
    opacity: 0;
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    opacity: 1;
    transform: translateX(0);
}

.why-choose-one__point-content p {
    font-size: 15px;
    line-height: 22px;
}

.why-choose-one__point-two-box {
    position: relative;
    display: block;
}

.why-choose-one__point-two {
    position: relative;
    display: block;
}

.why-choose-one__point-two li {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.why-choose-one__point-two li+li {
    margin-top: 10px;
}

.why-choose-one__point-two li .icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 20px;
    width: 20px;
    background-color: var(--tanspot-base);
    border-radius: 50%;
    font-size: 10px;
    color: var(--tanspot-white);
}

.why-choose-one__point-two li .text {
    position: relative;
    display: block;
    flex: 1;
}

.why-choose-one__point-two li .text p {
    color: var(--tanspot-black);
    font-weight: 500;
}

.why-choose-one__btn-box {
    position: relative;
    display: block;
    margin-top: 33px;
}

.why-choose-one__right {
    position: relative;
    display: block;
    margin-left: 30px;
}

.why-choose-one__form-box {
    position: relative;
    display: block;
    background: var(--tanspot-white);
    padding: 50px 50px 55px;
    -webkit-box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.08);
    border-radius: var(--tanspot-bdr-radius);
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    z-index: 2;
}

.why-choose-one__form-box .title-box {
    position: relative;
    display: block;
    margin-bottom: 44px;
}

.why-choose-one__form-box .title-box h2 {
    font-size: 40px;
    line-height: 1em;
    font-weight: 700;
}

.why-choose-one__form {
    position: relative;
    display: block;
}

.why-choose-one__form .input-box {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.why-choose-one__form .input-box .icon {
    position: absolute;
    top: 15px;
    right: 20px;
}

.why-choose-one__form .input-box .icon span::before {
    position: relative;
    display: inline-block;
    color: var(--tanspot-gray);
    font-size: 15px;
}

.why-choose-one__form .input-box input[type="text"],
.why-choose-one__form .input-box input[type="email"] {
    position: relative;
    display: block;
    height: 50px;
    width: 100%;
    background-color: var(--tanspot-white);
    border: 1px solid rgba(var(--tanspot-black-rgb), .10);
    padding-left: 20px;
    padding-right: 40px;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    color: var(--tanspot-gray);
    border-radius: var(--tanspot-bdr-radius);
    font-family: var(--tanspot-font);
}

#ui-datepicker-div.ui-widget-content {
    background: #fff none repeat scroll 0 0;
    border: 1px solid var(--tanspot-black);
    color: var(--tanspot-black);
    font-size: 14px;
    border-radius: 0px;
    width: 270px;
    padding: 5px;
}

#ui-datepicker-div.ui-datepicker .ui-datepicker-header {
    background: var(--tanspot-base) none repeat scroll 0 0;
    border: 2px solid var(--tanspot-base);
    border-radius: 0;
    color: var(--tanspot-white);
    font-weight: 700;
    padding: 5px 0;
    position: relative;
}

.ui-datepicker td a {
    color: #000000 !important;
    text-align: center;
    background-image: none !important;
    background: #f5f5f5 !important;
    border: 1px solid #f9f9f9 !important;
}

.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
    border: 1px solid #333333 !important;
    background: #333333 !important;
    color: #ffffff !important;
}

.ui-datepicker .ui-datepicker-prev {
    left: 5px;
}

.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
    border-radius: 30%;
    height: 20px;
    position: absolute;
    top: 7px;
    width: 20px;
    background: var(--thm-tanspot);
    transition: all 500ms ease;
    cursor: pointer;
}

.ui-datepicker .ui-datepicker-next {
    right: 5px;
}

.ui-datepicker .ui-datepicker-prev:hover,
.ui-datepicker .ui-datepicker-next:hover {
    top: 7px;
    background: var(--tanspot-white);
    border: none;
}

.ui-datepicker table {
    border-collapse: collapse;
    font-size: 13px;
    margin: 0 0 0.4em;
    width: 100%;
}

.ui-datepicker th {
    border: medium none;
    font-weight: 600;
    padding: 2px 3px;
    text-align: center;
}

.ui-datepicker-calendar .ui-state-default:hover,
.ui-datepicker-calendar .ui-state-default:active {
    background: #43c3ea;
    color: #fff;
    border-color: #43c3ea;
}

#ui-datepicker-div.ui-widget {
    font-family: var(--tanspot-font);
}

#ptTimeSelectCntr .ui-widget {
    font-family: var(--tanspot-font);
}

.why-choose-one__form .input-box .select-box {
    width: 100%;
}

.why-choose-one__form .input-box .nice-select {
    position: relative;
    display: block;
    height: 50px;
    width: 100%;
    background-color: var(--tanspot-white);
    border: 1px solid rgba(var(--tanspot-black-rgb), .10);
    padding-left: 20px;
    padding-right: 40px;
    outline: none;
    font-size: 14px;
    line-height: 50px;
    font-weight: 400;
    color: var(--tanspot-gray);
    border-radius: var(--tanspot-bdr-radius);
    font-family: var(--tanspot-font);
    float: none;
}

.why-choose-one__form .input-box .nice-select:after {
    position: absolute;
    top: 18px;
    right: 23px;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid var(--tanspot-gray);
    border-right: 1px solid var(--tanspot-gray);
    margin-top: 0px;
    z-index: 10;
}

.why-choose-one__form .input-box .nice-select .option {
    color: var(--tanspot-white);
}

.why-choose-one__form-distance {
    position: relative;
    display: block;
    margin-bottom: 35px;
    margin-top: -7px;
}

.why-choose-one__form-distance .title {
    position: relative;
    display: block;
    margin-bottom: 17px;
}

.why-choose-one__form-distance .title p {
    color: var(--tanspot-black);
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
}

.why-choose-one__form-distance-inner {
    position: relative;
    display: block;
    max-width: 460px;
    width: 100%;
}

.why-choose-one__form-distance-inner .price-ranger {
    position: relative;
    display: block;
}

.why-choose-one__form-distance-inner .ui-widget-content {
    background: var(--tanspot-bdr-color);
    border: none;
    height: 5px;
}

.why-choose-one__form-distance-inner .ui-slider-handle {
    position: relative;
    display: inline-block;
    background: var(--tanspot-base) none repeat scroll 0 0;
    border: 0px solid #ffffff;
    border-radius: 50%;
    width: 15px !important;
    height: 15px;
    margin-left: -5px;
    outline: medium none;
    cursor: pointer;
}

.why-choose-one__form-distance-inner .ui-slider-handle::before {
    position: absolute;
    top: 4px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 7px;
    height: 7px;
    background: var(--tanspot-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    content: "";
}

.why-choose-one__form-distance-inner .ui-slider-horizontal .ui-slider-handle {
    top: -16px;
}

.why-choose-one__form-distance-inner .ui-slider .ui-slider-range {
    position: relative;
    display: block;
    background: var(--tanspot-base);
    width: 100%;
    height: 5px;
}

.why-choose-one__form-distance-inner #slider-range {
    margin-left: 3px;
    margin-right: 5px;
    margin-top: 0;
    width: 100%;
}

.why-choose-one__form-distance-inner .ranger-min-max-block {
    position: relative;
    width: 150px;
    height: 50px;
    border: 1px solid rgba(var(--tanspot-black-rgb), .10);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-top: 20px;
}

.why-choose-one__form-distance-inner .ranger-min-max-block input {
    display: inline-block;
}

.why-choose-one__form-distance-inner .ranger-min-max-block input[type="submit"] {
    position: relative;
    display: block;
    width: 100%;
    color: var(--tanspot-white);
    text-align: center;
    padding: 8px 0 7px;
    border: 1px solid var(--tanspot-white);
    background: var(--tanspot-white);
    cursor: pointer;
    margin-top: 7px;
    margin-bottom: 8px;
    font-family: var(--tanspot-base);
}

.why-choose-one__form-distance-inner .ranger-min-max-block input[type="text"] {
    border: medium none;
    color: var(--tanspot-gray);
    font-size: 16px;
    font-weight: 300;
    outline: medium none;
    text-align: center;
    width: 100%;
    margin-left: -13px;
    z-index: -1;
    background: transparent;
}

.why-choose-one__form-distance-inner .ranger-min-max-block span {
    color: var(--tanspot-gray);
    font-size: 15px;
    line-height: 26px;
    font-weight: 300;
    margin-left: -27px;
}

.why-choose-one__form-btn {
    position: relative;
    display: block;
}

.why-choose-one__form-btn .thm-btn {
    border: none;
}


/***
=============================================
Why Choose Two
=============================================
***/
.why-choose-two {
    position: relative;
    display: block;
    padding: 60px 0 60px;
    overflow: hidden;
    background-color: #78181a;
    z-index: 1;
}

.why-choose-two__bg-box {
    position: absolute;
    top: 0;
    left: 0;
    bottom: -1px;
    width: calc((100% - -830px) / 2);
    background-color: var(--tanspot-black);
    clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
    z-index: -1;
}

.why-choose-two__shape-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .10;
    z-index: -1;
}

.why-choose-two__pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: .10;
    z-index: -1;
}

.why-choose-two__img {
    position: absolute;
    top: 200px;
    right: 35px;
    z-index: -1;
}

.why-choose-two__img img {
    width: auto;
}

.why-choose-two__client-box {
    position: absolute;
    bottom: 0;
    right: 210px;
    background-color: var(--tanspot-black);
    padding: 50px 50px 40px;
    padding-right: 125px;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    border-radius: 20px;
}

.why-choose-two__review-list {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.why-choose-two__review-list li {
    position: relative;
    display: block;
}

.why-choose-two__review-list li+li {
    margin-left: -15px;
}

.why-choose-two__review-img {
    position: relative;
    display: block;
    height: 54px;
    width: 54px;
    border-radius: 50%;
    overflow: hidden;
}

.why-choose-two__review-img img {
    width: 100%;
    border-radius: 50%;
    border: 2px solid var(--tanspot-white);
}

.why-choose-two__client-content {
    position: relative;
    display: block;
}

.why-choose-two__client-count {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
    margin-top: 15px;
}

.why-choose-two__client-count h3 {
    font-size: 40px;
    color: var(--tanspot-white);
    font-weight: 700;
    line-height: 1em !important;
    font-family: var(--tanspot-font-two) !important;
}

.why-choose-two__client-count span {
    font-size: 40px;
    color: var(--tanspot-white);
    font-weight: 700;
    line-height: 1em;
    font-family: var(--tanspot-font-two);
}

.why-choose-two__client-text {
    font-size: 20px;
    color: var(--tanspot-white);
    font-weight: 500;
}

.why-choose-two__left {
    position: relative;
    display: block;
}

.why-choose-two__left .section-title {
    margin-bottom: 31px;
}

.why-choose-two__left .section-title__title {
    color: var(--tanspot-white);
}

.why-choose-two__title-box {
    position: relative;
    display: block;
    max-width: 630px;
    width: 100%;
}

.why-choose-two__text {
    margin-bottom: 28px;
    color: rgba(var(--tanspot-white-rgb), .70);
}

.why-choose-two__point-box {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
}

.why-choose-two__point {
    position: relative;
    display: block;
}

.why-choose-two__point li {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.why-choose-two__point li+li {
    margin-top: 19px;
}

.why-choose-two__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    width: 80px;
    background-color: rgba(var(--tanspot-base-rgb), .70);
    border-radius: 50%;
    top: 4px;
    z-index: 1;
}

.why-choose-two__icon:before {
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    background-color: var(--tanspot-base);
    border-radius: 50%;
    z-index: -1;
}

.why-choose-two__icon span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: var(--tanspot-white);
    transition: all 500ms ease;
}

.why-choose-two__point li:hover .why-choose-two__icon span {
    -webkit-animation-name: wobble-horizontal-hover;
    animation-name: wobble-horizontal-hover;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
}

.why-choose-two__content {
    position: relative;
    display: block;
    max-width: 300px;
    flex: 1;
}

.why-choose-two__content h4 {
    font-size: 22px;
    color: var(--tanspot-white);
    line-height: 1.5em;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.why-choose-two__content p {
    color: rgba(var(--tanspot-white-rgb), .70);
}

.why-choose-two__btn-box {
    position: relative;
    display: block;
    margin-top: 30px;
}

.why-choose-two__btn-box .thm-btn::before,
.why-choose-two__btn-box .thm-btn::after {
    background-color: var(--tanspot-white);
}

.why-choose-two__btn-box .thm-btn:hover {
    color: var(--tanspot-base);
}

.why-choose-two__btn-box .thm-btn:hover>span {
    background-color: var(--tanspot-base);
    color: var(--tanspot-white);
}















/***
=============================================
End
=============================================
***/