/* =========================================================
   HERO
========================================================= */

.why-silaris-page-hero {
    background-image: url("../img/why-silaris-hero.jpg");
    background-size: cover;
    background-position: center right;
}


.why-hero-btn {
    font-size: 18px;
    padding: 13px 27px;

    border-radius: 10px;

    transition: all .3s ease;
}

.why-hero-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 30px rgba(13,110,253,.25);
}


/* =========================================================
   COMMON
========================================================= */

.why-eyebrow {
    display: flex;
    align-items: center;

    gap: 10px;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    color: var(--bs-primary);
}

.why-eyebrow span {
    width: 38px;
    height: 3px;

    border-radius: 10px;

    background: currentColor;
}

.why-section-title {
    max-width: 850px;

    font-size: clamp(38px, 4.5vw, 60px);

    line-height: 1.08;

    font-weight: 700;

    letter-spacing: -1px;

    margin-top: 15px;
}

.why-section-title span {
    color: var(--bs-primary);
}

.why-section-text {
    font-size: 18px;

    line-height: 1.75;

    color: #626b75;
}


/* =========================================================
   STRATEGIC PARTNER
========================================================= */

.why-partner-section {
    background: #fff;
}

.why-partner-image {
    position: relative;

    min-height: 560px;

    overflow: hidden;

    border-radius: 30px;

    box-shadow:
        0 25px 70px rgba(0,0,0,.12);
}

.why-partner-image img {
    width: 100%;
    height: 100%;

    min-height: 560px;

    object-fit: cover;

    display: block;

    transition:
        transform .8s ease;
}

.why-partner-image:hover img {
    transform: scale(1.07);
}

.partner-image-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0),
            rgba(0,0,0,.65)
        );
}

.partner-experience {
    position: absolute;

    left: 30px;
    bottom: 30px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 18px 25px;

    background: rgba(255,255,255,.95);

    border-radius: 18px;

    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.partner-experience strong {
    font-size: 46px;

    line-height: 1;

    font-weight: 900;

    color: var(--bs-primary);
}

.partner-experience span {
    font-size: 15px;

    font-weight: 600;

    color: #555;
}

.partner-floating-icon {
    position: absolute;

    right: 25px;
    top: 25px;

    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(255,255,255,.16);

    backdrop-filter: blur(12px);

    color: #fff;

    font-size: 27px;

    animation: partnerFloat 4s ease-in-out infinite;
}

.partner-points {
    display: flex;

    flex-direction: column;

    gap: 13px;
}

.partner-points div {
    display: flex;

    align-items: center;

    gap: 12px;

    font-size: 17px;

    font-weight: 600;
}

.partner-points i {
    width: 25px;
    height: 25px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--bs-primary-bg-subtle);

    color: var(--bs-primary);

    font-size: 11px;
}


/* =========================================================
   HIGHLIGHTS
========================================================= */

.why-highlights {
    background: #f7f9fc;
}

.why-highlight-card {
    position: relative;

    min-height: 240px;

    padding: 30px;

    overflow: hidden;

    background: #fff;

    border-radius: 24px;

    border: 1px solid #e8edf3;

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.why-highlight-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 25px 55px rgba(0,0,0,.10);
}

.highlight-card-number {
    position: absolute;

    right: 10px;
    top: -15px;

    font-size: 90px;

    line-height: 1;

    font-weight: 900;

    color: #f1f3f6;
}

.highlight-icon {
    position: relative;

    width: 62px;
    height: 62px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 17px;

    background: var(--bs-primary-bg-subtle);

    color: var(--bs-primary);

    font-size: 25px;

    transition: all .35s ease;
}

.why-highlight-card:hover .highlight-icon {
    transform: rotate(-8deg) scale(1.1);

    background: var(--bs-primary);

    color: #fff;
}

.why-highlight-card strong {
    position: relative;

    display: block;

    font-size: 21px;

    font-weight: 700;

    margin-bottom: 7px;
}

.why-highlight-card > span {
    position: relative;

    display: block;

    color: #737c86;

    font-size: 16px;
}


/* =========================================================
   WHY CHOOSE
========================================================= */

.why-choose-section {
    background: #fff;
}

.why-reason-row {
    position: relative;

    display: grid;

    grid-template-columns: 90px 80px 1fr;

    align-items: center;

    gap: 25px;

    padding: 32px 0;

    border-bottom: 1px solid #e9edf2;

    transition: all .35s ease;
}

.why-reason-row:first-of-type {
    border-top: 1px solid #e9edf2;
}

.why-reason-row:hover {
    padding-left: 15px;

    border-bottom-color: rgba(13,110,253,.25);
}

.why-reason-number {
    font-size: 35px;

    font-weight: 900;

    color: #dfe4ea;

    transition: color .35s ease;
}

.why-reason-row:hover .why-reason-number {
    color: var(--bs-primary);
}

.why-reason-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: var(--bs-primary-bg-subtle);

    color: var(--bs-primary);

    font-size: 25px;

    transition: all .35s ease;
}

.why-reason-row:hover .why-reason-icon {
    transform: rotate(-7deg) scale(1.08);

    background: var(--bs-primary);

    color: #fff;
}

.why-reason-content h3 {
    font-size: 27px;

    font-weight: 700;

    margin-bottom: 8px;
}

.why-reason-content p {
    max-width: 900px;

    margin: 0;

    font-size: 17px;

    line-height: 1.65;

    color: #68717c;
}


/* =========================================================
   PROMISE
========================================================= */

.why-promise-section {
    position: relative;

    min-height: 650px;

    display: flex;

    align-items: center;

    overflow: hidden;
}

.why-promise-image {
    position: absolute;

    inset: 0;

    background-image:
        url("../img/why-promise.jpg");

    background-size: cover;

    background-position: center;
}

.why-promise-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(7,18,34,.97) 0%,
            rgba(7,18,34,.88) 42%,
            rgba(7,18,34,.42) 72%,
            rgba(7,18,34,.15) 100%
        );
}

.why-promise-content {
    position: relative;

    padding: 80px 0;
}

.why-promise-content h2 {
    font-size: clamp(42px, 5vw, 70px);

    line-height: 1.05;

    font-weight: 700;

    color: #fff;

    margin: 18px 0 25px;
}

.why-promise-content h2 span {
    color: #6da9ff;
}

.why-promise-content p {
    max-width: 760px;

    font-size: 19px;

    line-height: 1.75;

    color: rgba(255,255,255,.72);

    margin-bottom: 30px;
}


/* =========================================================
   FINAL CTA
========================================================= */

.why-final-cta {
    background: #fff;
}

.why-final-box {
    padding: 60px;

    border-radius: 30px;

    background:
        radial-gradient(
            circle at 100% 0%,
            rgba(13,110,253,.14),
            transparent 35%
        ),
        #f5f8fc;

    border: 1px solid #e7ebf1;
}

.why-final-box h2 {
    max-width: 850px;

    font-size: clamp(24px, 4vw, 42px);

    line-height: 1.1;

    font-weight: 700;

    margin: 14px 0 0;
}

.why-final-box h2 span {
    color: var(--bs-primary);
}


/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes partnerFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991.98px) {

    .why-partner-image,
    .why-partner-image img {
        min-height: 450px;
    }

    .why-reason-row {
        grid-template-columns: 70px 65px 1fr;

        gap: 18px;
    }

    .why-promise-section {
        min-height: 600px;
    }

    .why-promise-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(7,18,34,.95),
                rgba(7,18,34,.65)
            );
    }

}


@media (max-width: 767.98px) {

    .why-section-title {
        font-size: 40px;
    }

    .why-reason-row {
        grid-template-columns: 55px 55px 1fr;

        gap: 12px;

        padding: 25px 0;
    }

    .why-reason-number {
        font-size: 25px;
    }

    .why-reason-icon {
        width: 50px;
        height: 50px;

        font-size: 19px;

        border-radius: 14px;
    }

    .why-reason-content h3 {
        font-size: 22px;
    }

    .why-reason-content p {
        font-size: 16px;
    }

    .why-promise-content {
        padding: 60px 0;
    }

    .why-final-box {
        padding: 40px 25px;
    }

}


@media (max-width: 575.98px) {

    .why-partner-image,
    .why-partner-image img {
        min-height: 380px;
    }

    .partner-experience {
        left: 15px;
        bottom: 15px;

        padding: 14px 18px;
    }

    .partner-experience strong {
        font-size: 38px;
    }

    .partner-floating-icon {
        right: 15px;
        top: 15px;
    }

    .why-reason-row {
        grid-template-columns: 42px 50px 1fr;

        gap: 10px;
    }

    .why-reason-number {
        font-size: 20px;
    }

    .why-reason-icon {
        width: 45px;
        height: 45px;

        font-size: 17px;
    }

    .why-reason-content h3 {
        font-size: 19px;
    }

    .why-reason-content p {
        font-size: 15px;
    }

    .why-promise-content h2 {
        font-size: 42px;
    }

}