/* =========================================
   HERO SECTION
========================================= */

.hero-section {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #ffffff;

    padding: 0;

    color: var(--navy);
}


/* =========================================
   HERO BACKGROUND
========================================= */

.hero-bg {
    position: absolute;

    inset: 0;

    z-index: 0;

    background:
        radial-gradient(circle at 68% 40%,
            rgba(232, 184, 75, 0.18),
            transparent 30%),
        linear-gradient(90deg,
            #ffffff 0%,
            #ffffff 42%,
            rgba(255, 255, 255, 0.95) 53%,
            rgba(232, 184, 75, 0.08) 68%,
            rgba(11, 29, 54, 0.18) 100%);
}


/* =========================================
   HERO ROW
========================================= */

.hero-row {
    position: relative;

    z-index: 2;

    min-height: 575px;
}


/* =========================================
   LEFT CONTENT
========================================= */

.hero-content {
    position: relative;

    z-index: 5;

    padding: 65px 0 45px;

    max-width: 590px;
}


/* =========================================
   BADGE
========================================= */

.hero-badge {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 7px 15px;

    margin-bottom: 17px;

    border-radius: 30px;

    background: var(--navy);

    color: var(--gold-light);

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .4px;

    text-transform: uppercase;
}

.hero-badge i {
    color: var(--gold);

    font-size: 10px;
}


/* =========================================
   TITLE
========================================= */

.hero-title {
    margin: 0;

    color: var(--navy);

    font-size: clamp(48px, 5.4vw, 76px);

    line-height: .91;

    font-weight: 800;

    letter-spacing: -2px;

    text-transform: uppercase;
}

.hero-title span {
    display: block;

    margin-top: 13px;

    color: #c58b16;

    font-size: clamp(32px, 3.7vw, 53px);

    line-height: 1;

    letter-spacing: -1px;
}


/* =========================================
   SUBTITLE
========================================= */

.hero-subtitle {
    margin: 18px 0 13px;

    color: var(--navy);

    font-size: clamp(19px, 2vw, 27px);

    line-height: 1.3;

    font-weight: 600;
}


/* =========================================
   DESCRIPTION
========================================= */

.hero-description {
    max-width: 540px;

    margin: 0;

    color: rgba(6, 19, 38, .72);

    font-size: 13px;

    line-height: 1.7;

    font-weight: 500;
}


/* =========================================
   FEATURES
========================================= */

.hero-features {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 25px;

    max-width: 560px;
}

.hero-feature {
    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    min-height: 75px;

    padding: 5px 10px;

    text-align: center;

    border-right: 1px solid rgba(6, 19, 38, .12);
}

.hero-feature:first-child {
    border-left: 1px solid rgba(6, 19, 38, .12);
}

.hero-feature-icon {
    margin-bottom: 6px;

    color: var(--gold);

    font-size: 22px;
}

.hero-feature strong,
.hero-feature span {
    display: block;
}

.hero-feature strong {
    color: var(--navy);

    font-size: 9px;

    font-weight: 800;
}

.hero-feature span {
    margin-top: 2px;

    color: rgba(6, 19, 38, .65);

    font-size: 8px;

    font-weight: 500;
}


/* =========================================
   CTA
========================================= */

.hero-actions {
    margin-top: 28px;
}

.hero-cta {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    min-height: 58px;

    padding: 8px 18px 8px 10px;

    border-radius: 10px;

    background: var(--navy);

    border: 2px solid var(--gold);

    color: var(--gold-light);

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    box-shadow:
        0 8px 20px rgba(6, 19, 38, .18);

    transition: .3s ease;
}

.hero-cta:hover {
    color: var(--gold-light);

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px rgba(6, 19, 38, .25);
}

.hero-cta-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background: rgba(232, 184, 75, .14);

    color: var(--gold);

    font-size: 15px;
}

.hero-cta>i {
    margin-left: 3px;

    color: var(--gold);

    font-size: 12px;
}


/* =========================================
   RIGHT IMAGE COLUMN
========================================= */

.hero-image-column {
    position: relative;

    z-index: 3;

    height: 575px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================
   IMAGE BOX

   IMPORTANT:
   The box stays the same size.
   Only the image becomes bigger.
========================================= */

.hero-image-box {
    position: relative;

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    overflow: visible;
}


/* =========================================
   ACTUAL IMAGE

   Increase scale here ONLY.
========================================= */

.hero-right-image {
    position: relative;

    z-index: 5;

    display: block;

    width: 125%;

    max-width: none;

    height: auto;

    object-fit: contain;

    transform: scale(1.08);

    transform-origin: center center;

    filter:
        drop-shadow(0 20px 25px rgba(6, 19, 38, .22));

    transition: transform .4s ease;
}


/*
   Want it even bigger?

   Change only:

   transform: scale(1.08);

   to:

   transform: scale(1.15);

   or:

   transform: scale(1.20);
*/


/* =========================================
   HERO STATS
========================================= */

.hero-stats {
    position: relative;

    z-index: 10;

    display: flex;

    align-items: center;

    width: 100%;

    min-height: 82px;

    margin-top: -5px;

    padding: 12px 25px;

    border-radius: 11px;

    background: var(--navy);

    box-shadow:
        0 10px 25px rgba(6, 19, 38, .18);
}

.hero-stat {
    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;
}

.hero-stat-icon {
    width: 40px;
    height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 8px;

    background: rgba(232, 184, 75, .1);

    color: var(--gold);

    font-size: 17px;
}

.hero-stat strong,
.hero-stat span {
    display: block;
}

.hero-stat strong {
    color: var(--white);

    font-size: 17px;

    font-weight: 800;
}

.hero-stat span {
    margin-top: 2px;

    color: rgba(255, 255, 255, .68);

    font-size: 8px;

    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;

    height: 40px;

    background: rgba(232, 184, 75, .3);
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1400px) {

    .hero-row {
        min-height: 620px;
    }

    .hero-image-column {
        height: 620px;
    }

    .hero-right-image {
        width: 128%;

        transform: scale(1.12);
    }

    .hero-content {
        padding-top: 70px;
    }
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199.98px) {

    .hero-row {
        min-height: 530px;
    }

    .hero-image-column {
        height: 530px;
    }

    .hero-title {
        font-size: 57px;
    }

    .hero-title span {
        font-size: 40px;
    }

    .hero-right-image {
        width: 125%;

        transform: scale(1.05);
    }

    .hero-feature {
        padding-left: 5px;
        padding-right: 5px;
    }

    .hero-stat strong {
        font-size: 14px;
    }
}


/* =========================================
   MOBILE / TABLET
========================================= */

@media (max-width: 991.98px) {

    .hero-section {
        overflow: hidden;
    }

    .hero-row {
        min-height: auto;
    }

    .hero-content {
        max-width: 700px;

        margin: auto;

        padding: 55px 0 25px;

        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        display: flex;

        justify-content: center;
    }


    /* Right image gets its own space */

    .hero-image-column {
        height: auto;

        min-height: 480px;

        margin-top: 10px;

        overflow: visible;
    }

    .hero-image-box {
        height: 480px;

        overflow: visible;
    }

    .hero-right-image {
        width: 120%;

        max-width: none;

        transform: scale(1.05);
    }


    /* Stats */

    .hero-stats {
        margin-top: 5px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767.98px) {

    .hero-content {
        padding-top: 42px;
    }

    .hero-badge {
        font-size: 8px;
    }

    .hero-title {
        font-size: clamp(40px, 12vw, 55px);

        letter-spacing: -1.5px;
    }

    .hero-title span {
        margin-top: 9px;

        font-size: clamp(28px, 8vw, 38px);
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 12px;

        line-height: 1.75;
    }


    /* Features */

    .hero-features {
        grid-template-columns: repeat(2, 1fr);

        max-width: 430px;

        row-gap: 15px;
    }

    .hero-feature {
        min-height: 65px;
    }

    .hero-feature:nth-child(2) {
        border-right: 0;
    }

    .hero-feature:nth-child(3) {
        border-left: 0;
    }


    /* CTA */

    .hero-actions {
        width: 100%;
    }

    .hero-cta {
        width: 100%;

        justify-content: center;

        font-size: 11px;
    }


    /* Image */

    .hero-image-column {
        min-height: 390px;

        margin-top: 5px;
    }

    .hero-image-box {
        height: 390px;
    }

    .hero-right-image {
        width: 130%;

        transform: scale(1.02);
    }


    /* Stats */

    .hero-stats {
        display: grid;

        grid-template-columns: repeat(2, 1fr);

        gap: 10px;

        padding: 14px;

        min-height: auto;
    }

    .hero-stat {
        justify-content: flex-start;

        gap: 8px;
    }

    .hero-stat-divider {
        display: none;
    }

    .hero-stat-icon {
        width: 34px;
        height: 34px;

        font-size: 13px;
    }

    .hero-stat strong {
        font-size: 12px;
    }

    .hero-stat span {
        font-size: 7px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 420px) {

    .hero-content {
        padding-top: 35px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-title span {
        font-size: 27px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-features {
        gap: 8px;
    }

    .hero-feature {
        padding: 4px;

        border-color: rgba(6, 19, 38, .1);
    }

    .hero-feature-icon {
        font-size: 18px;
    }


    /* Image */

    .hero-image-column {
        min-height: 330px;
    }

    .hero-image-box {
        height: 330px;
    }

    .hero-right-image {
        width: 135%;

        transform: scale(1);
    }

    .hero-stat-icon {
        width: 30px;
        height: 30px;
    }

    .hero-stat strong {
        font-size: 11px;
    }

    .hero-stat span {
        font-size: 6px;
    }
}
















/* =====================================================
   WHO CAN NOMINATE - SWIPER
===================================================== */

.who-nominate-section {
    position: relative;

    width: 100%;

    padding: 45px 0 50px;

    background: var(--white);

    overflow: hidden;
}


/* =====================================================
   SECTION HEADING
===================================================== */

.section-heading {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 30px;
}

.section-heading h2 {
    position: relative;

    margin: 0;

    color: var(--navy);

    font-size: 19px;

    font-weight: 800;

    line-height: 1;

    letter-spacing: .5px;

    text-align: center;
}

.section-heading h2::before {
    content: "✦";

    position: absolute;

    top: -15px;

    left: 50%;

    transform: translateX(-50%);

    color: var(--gold);

    font-size: 9px;
}


.heading-line {
    width: 55px;

    height: 1px;

    flex-shrink: 0;

    background: var(--gold);
}

.heading-line:first-child {
    background: linear-gradient(to right,
            transparent,
            var(--gold));
}

.heading-line:last-child {
    background: linear-gradient(to right,
            var(--gold),
            transparent);
}


/* =====================================================
   SWIPER CONTAINER
===================================================== */

.nominate-swiper {
    width: 100%;

    overflow: hidden;
}

.nominate-swiper .swiper-wrapper {
    display: flex;

    align-items: stretch;
}

.nominate-swiper .swiper-slide {
    height: auto;

    flex-shrink: 0;

    box-sizing: border-box;
}


/* =====================================================
   NOMINATE ITEM
===================================================== */

.nominate-item {
    position: relative;

    height: 100%;

    min-height: 90px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 8px 12px;

    text-align: center;

    border-right: 1px solid rgba(6, 19, 38, .10);

    transition: all .3s ease;
}


/* Remove border from final item */

.nominate-swiper .swiper-slide:last-child .nominate-item {
    border-right: 0;
}


/* =====================================================
   ICON
===================================================== */

.nominate-icon {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 6px;

    color: var(--navy);

    font-size: 21px;

    transition: all .3s ease;
}


/* =====================================================
   TEXT
===================================================== */

.nominate-item h3 {
    margin: 0;

    color: var(--navy);

    font-size: 8px;

    line-height: 1.35;

    font-weight: 700;
}


/* =====================================================
   HOVER
===================================================== */

.nominate-item:hover {
    transform: translateY(-4px);
}

.nominate-item:hover .nominate-icon {
    color: var(--gold);

    transform: scale(1.1);
}

.nominate-item:hover h3 {
    color: var(--gold);
}


/* =====================================================
   DESKTOP
===================================================== */

@media (min-width: 992px) {

    .nominate-swiper {
        overflow: hidden;
    }

    .nominate-swiper .swiper-slide {
        width: 10% !important;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (min-width: 576px) and (max-width: 991.98px) {

    .nominate-swiper .swiper-slide {
        width: 25% !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .who-nominate-section {
        padding: 35px 0 40px;
    }


    .section-heading {
        gap: 8px;

        margin-bottom: 22px;
    }


    .section-heading h2 {
        font-size: 15px;
    }


    .heading-line {
        width: 35px;
    }


    /*
    IMPORTANT:
    Each slide gets a fixed mobile width.
    Swiper will move these horizontally.
    */

    .nominate-swiper .swiper-slide {
        width: 115px !important;
    }


    .nominate-item {
        min-height: 88px;

        padding: 5px 8px;

        border-right: 1px solid rgba(6, 19, 38, .08);
    }


    .nominate-icon {
        width: 34px;
        height: 34px;

        margin-bottom: 5px;

        font-size: 18px;
    }


    .nominate-item h3 {
        font-size: 8px;

        line-height: 1.35;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .nominate-swiper .swiper-slide {
        width: 105px !important;
    }

    .nominate-icon {
        width: 31px;
        height: 31px;

        font-size: 17px;
    }

    .nominate-item h3 {
        font-size: 7.5px;
    }

}











/* =====================================================
   AWARD CATEGORIES
===================================================== */

.award-categories-section {
    position: relative;

    padding: 42px 0 45px;

    background: var(--white);

    overflow: hidden;
}


/* =====================================================
   HEADING
===================================================== */

.category-heading {
    margin-bottom: 27px;
}

.category-heading h2 {
    font-size: 19px;
}


/* =====================================================
   CATEGORY SWIPER
===================================================== */

.categories-swiper {
    width: 100%;

    overflow: hidden;
}

.categories-swiper .swiper-wrapper {
    align-items: stretch;
}

.categories-swiper .swiper-slide {
    height: auto;

    flex-shrink: 0;

    box-sizing: border-box;
}


/* =====================================================
   CATEGORY CARD
===================================================== */

.category-card {
    position: relative;

    height: 100%;

    min-height: 100px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 10px 8px;

    border: 1px solid rgba(6, 19, 38, .08);

    border-radius: 10px;

    background: #ffffff;

    box-shadow:
        0 3px 12px rgba(6, 19, 38, .04);

    text-align: center;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


/* =====================================================
   CATEGORY ICON
===================================================== */

.category-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 7px;

    color: var(--navy);

    font-size: 19px;

    transition: .3s ease;
}


/* =====================================================
   CATEGORY TEXT
===================================================== */

.category-card h3 {
    margin: 0;

    color: var(--navy);

    font-size: 8px;

    line-height: 1.4;

    font-weight: 700;
}


/* =====================================================
   HOVER
===================================================== */

.category-card:hover {
    transform: translateY(-4px);

    border-color: rgba(232, 184, 75, .5);

    box-shadow:
        0 8px 20px rgba(6, 19, 38, .08);
}

.category-card:hover .category-icon {
    color: var(--gold);

    transform: scale(1.1);
}

.category-card:hover h3 {
    color: var(--gold);
}


/* =====================================================
   VIEW ALL BUTTON
===================================================== */

.category-button-wrapper {
    display: flex;

    align-items: center;
    justify-content: center;

    margin-top: 15px;
}

.category-view-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 29px;

    padding: 5px 13px;

    border-radius: 5px;

    background: var(--navy);

    color: var(--white);

    text-decoration: none;

    font-size: 7px;

    font-weight: 700;

    letter-spacing: .2px;

    box-shadow:
        0 4px 10px rgba(6, 19, 38, .12);

    transition: .3s ease;
}

.category-view-btn i {
    color: var(--gold);

    font-size: 8px;
}

.category-view-btn:hover {
    color: var(--white);

    background: var(--navy-light);

    transform: translateY(-2px);
}


/* =====================================================
   DESKTOP
===================================================== */

@media (min-width: 992px) {

    .categories-swiper {
        overflow: hidden;
    }

    .categories-swiper .swiper-slide {
        width: 11.111111% !important;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (min-width: 576px) and (max-width: 991.98px) {

    .categories-swiper .swiper-slide {
        width: 25% !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .award-categories-section {
        padding: 35px 0 40px;
    }


    .category-heading {
        margin-bottom: 22px;
    }


    .category-heading h2 {
        font-size: 15px;
    }


    /*
       Horizontal mobile slider
    */

    .categories-swiper .swiper-slide {
        width: 125px !important;
    }


    .category-card {
        min-height: 105px;

        padding: 9px 6px;

        border-radius: 9px;
    }


    .category-icon {
        width: 35px;
        height: 35px;

        font-size: 18px;
    }


    .category-card h3 {
        font-size: 8px;

        line-height: 1.35;
    }


    .category-button-wrapper {
        margin-top: 14px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .categories-swiper .swiper-slide {
        width: 115px !important;
    }

    .category-card {
        min-height: 100px;
    }

}


/* =====================================================
   BENEFITS OF NOMINATION
===================================================== */

.benefits-section {
    position: relative;

    width: 100%;

    padding: 35px 0 38px;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(232, 184, 75, .08),
            transparent 40%),
        var(--navy);

    color: var(--white);

    overflow: hidden;
}


/* =====================================================
   HEADING
===================================================== */

.benefits-heading {
    margin-bottom: 27px;
}

.benefits-heading h2 {
    color: var(--white);

    font-size: 18px;
}

.benefits-heading h2::before {
    color: var(--gold);
}


/* Heading lines */

.benefits-section .heading-line {
    background: var(--gold);

    opacity: .7;
}

.benefits-section .heading-line:first-child {
    background: linear-gradient(to right,
            transparent,
            var(--gold));
}

.benefits-section .heading-line:last-child {
    background: linear-gradient(to right,
            var(--gold),
            transparent);
}


/* =====================================================
   BENEFITS GRID
===================================================== */

.benefits-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    width: 100%;
}


/* =====================================================
   BENEFIT ITEM
===================================================== */

.benefit-item {
    position: relative;

    min-height: 105px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    padding: 8px 15px;

    text-align: center;
}


/* Vertical separator */

.benefit-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;

    top: 8px;

    width: 1px;

    height: calc(100% - 16px);

    background:
        linear-gradient(to bottom,
            transparent,
            rgba(232, 184, 75, .55),
            transparent);
}


/* =====================================================
   ICON
===================================================== */

.benefit-icon {
    width: 45px;
    height: 45px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 8px;

    color: var(--gold);

    font-size: 25px;

    transition: .3s ease;
}


/* =====================================================
   TEXT
===================================================== */

.benefit-item h3 {
    margin: 0;

    color: var(--white);

    font-size: 9px;

    line-height: 1.45;

    font-weight: 600;
}


/* =====================================================
   HOVER
===================================================== */

.benefit-item {
    transition: .3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
}

.benefit-item:hover .benefit-icon {
    color: var(--gold-light);

    transform: scale(1.1);
}

.benefit-item:hover h3 {
    color: var(--gold-light);
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .benefits-section {
        padding: 42px 0 45px;
    }

    .benefit-item {
        min-height: 115px;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;

        font-size: 27px;
    }

    .benefit-item h3 {
        font-size: 10px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .benefits-section {
        padding: 35px 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);

        row-gap: 10px;
    }

    .benefit-item {
        min-height: 105px;
    }

    /*
       Remove separators where needed
    */

    .benefit-item:nth-child(3)::after {
        display: none;
    }

    .benefit-item:nth-child(4)::after {
        display: block;
    }

    .benefit-item:nth-child(5)::after {
        display: none;
    }

}


/* =====================================================
   MOBILE — 2 COLUMNS
===================================================== */

@media (max-width: 575.98px) {

    .benefits-section {
        padding: 32px 0 35px;
    }


    /* Heading */

    .benefits-heading {
        gap: 8px;

        margin-bottom: 22px;
    }

    .benefits-heading h2 {
        font-size: 14px;

        white-space: nowrap;
    }

    .benefits-section .heading-line {
        width: 30px;
    }


    /* 2 Columns */

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);

        row-gap: 0;
    }


    /* Benefit item */

    .benefit-item {
        min-height: 105px;

        padding: 12px 8px;
    }


    /*
       Vertical divider between
       left and right columns
    */

    .benefit-item:nth-child(odd)::after {
        display: block;

        top: 10px;

        height: calc(100% - 20px);
    }

    .benefit-item:nth-child(even)::after {
        display: none;
    }


    /*
       Horizontal divider
       between mobile rows
    */

    .benefit-item:nth-child(1),
    .benefit-item:nth-child(2),
    .benefit-item:nth-child(3),
    .benefit-item:nth-child(4) {
        border-bottom: 1px solid rgba(232, 184, 75, .16);
    }


    /* Icon */

    .benefit-icon {
        width: 38px;
        height: 38px;

        margin-bottom: 6px;

        font-size: 21px;
    }


    /* Text */

    .benefit-item h3 {
        font-size: 8px;

        line-height: 1.45;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .benefits-heading h2 {
        font-size: 13px;
    }

    .benefits-section .heading-line {
        width: 25px;
    }

    .benefit-item {
        min-height: 100px;
    }

    .benefit-icon {
        font-size: 20px;
    }

    .benefit-item h3 {
        font-size: 7.5px;
    }

}


/* =====================================================
   RECOGNITION PACKAGES
===================================================== */

.packages-section {
    position: relative;

    padding: 60px 0 70px;

    background:
        radial-gradient(circle at 50% 0%,
            rgba(232, 184, 75, .08),
            transparent 35%),
        #ffffff;

    overflow: hidden;
}


/* =====================================================
   HEADING
===================================================== */

.packages-heading {
    margin-bottom: 15px;
}

.packages-heading h2 {
    color: var(--navy);

    font-size: 20px;
}


/* =====================================================
   SUBTITLE
===================================================== */

.packages-subtitle {
    max-width: 650px;

    margin: 0 auto 38px;

    color: rgba(6, 19, 38, .6);

    font-size: 12px;

    line-height: 1.7;

    text-align: center;
}


/* =====================================================
   PACKAGE ROW
===================================================== */

.packages-row {
    position: relative;

    align-items: stretch;
}


/* =====================================================
   PACKAGE CARD
===================================================== */

.package-card {
    position: relative;

    height: 100%;

    display: flex;

    flex-direction: column;

    padding: 0 18px 18px;

    border: 1px solid rgba(6, 19, 38, .1);

    border-radius: 14px;

    background: #ffffff;

    box-shadow:
        0 8px 30px rgba(6, 19, 38, .07);

    overflow: hidden;

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.package-card:hover {
    transform: translateY(-7px);

    border-color: rgba(232, 184, 75, .45);

    box-shadow:
        0 18px 40px rgba(6, 19, 38, .12);
}


/* =====================================================
   PACKAGE HEADER
===================================================== */

.package-header {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    min-height: 74px;

    margin: 0 -18px;

    padding: 12px 10px;

    background: var(--navy);

    color: var(--white);

    text-align: center;
}

.package-name {
    font-size: 18px;

    line-height: 1;

    font-weight: 800;

    letter-spacing: .5px;
}

.package-type {
    margin-top: 5px;

    color: rgba(255, 255, 255, .78);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .4px;
}


/* =====================================================
   PRICE
===================================================== */

.package-price {
    padding: 22px 0 17px;

    color: var(--navy);

    font-size: 38px;

    line-height: 1;

    font-weight: 800;

    text-align: center;
}

.currency {
    font-size: 22px;

    vertical-align: 5px;
}

.price-slash {
    font-size: 18px;

    color: rgba(6, 19, 38, .6);
}


/* =====================================================
   FEATURES
===================================================== */

.package-features {
    flex: 1;

    list-style: none;

    margin: 0;

    padding: 0 2px;
}

.package-features li {
    display: flex;

    align-items: flex-start;

    gap: 9px;

    padding: 8px 0;

    color: rgba(6, 19, 38, .7);

    font-size: 10px;

    line-height: 1.45;

    border-bottom: 1px dashed rgba(6, 19, 38, .08);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    flex-shrink: 0;

    margin-top: 2px;

    color: var(--gold);

    font-size: 10px;
}


/* =====================================================
   PACKAGE BUTTON
===================================================== */

.package-btn {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    width: 100%;

    min-height: 43px;

    margin-top: 18px;

    border-radius: 7px;

    background: var(--navy);

    color: var(--white);

    text-decoration: none;

    font-size: 10px;

    font-weight: 800;

    letter-spacing: .2px;

    transition: .3s ease;
}

.package-btn i {
    color: var(--gold);

    font-size: 9px;

    transition: .3s ease;
}

.package-btn:hover {
    color: var(--white);

    background: var(--navy-light);
}

.package-btn:hover i {
    transform: translateX(3px);
}


/* =====================================================
   FEATURED CARD
===================================================== */

.package-featured {
    border: 2px solid var(--gold);

    box-shadow:
        0 15px 40px rgba(232, 184, 75, .16);

    transform: translateY(-10px);

    z-index: 2;
}

.package-featured:hover {
    transform: translateY(-16px);

    box-shadow:
        0 20px 45px rgba(232, 184, 75, .22);
}


/* Featured Header */

.package-featured .package-header {
    background:
        linear-gradient(135deg,
            #d59b1d,
            var(--gold));

    color: var(--navy);
}

.package-featured .package-type {
    color: rgba(6, 19, 38, .75);
}


/* Featured Price */

.package-featured .package-price {
    color: #d51d1d;
}


/* Featured button */

.featured-btn {
    background: #d51d1d;
}

.featured-btn:hover {
    background: #b91515;
}


/* =====================================================
   MOST POPULAR BADGE
===================================================== */

.popular-badge {
    position: absolute;

    top: 0;

    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 5px;

    width: 145px;

    height: 25px;

    border-radius: 0 0 8px 8px;

    background: var(--navy);

    color: var(--gold-light);

    font-size: 7px;

    font-weight: 800;

    letter-spacing: .5px;
}

.popular-badge i {
    color: var(--gold);

    font-size: 7px;
}


/* Featured header spacing */

.package-featured .package-header {
    padding-top: 28px;
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .packages-section {
        padding: 70px 0 80px;
    }

    .package-card {
        padding-left: 22px;
        padding-right: 22px;
    }

    .package-header {
        margin-left: -22px;
        margin-right: -22px;
    }

    .package-name {
        font-size: 20px;
    }

    .package-price {
        font-size: 42px;
    }

    .package-features li {
        font-size: 11px;

        padding: 9px 0;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .packages-section {
        padding: 50px 0 60px;
    }

    .package-card {
        padding-left: 16px;
        padding-right: 16px;
    }

    .package-header {
        margin-left: -16px;
        margin-right: -16px;
    }

    .package-featured {
        transform: translateY(0);
    }

    .package-featured:hover {
        transform: translateY(-7px);
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .packages-section {
        padding: 42px 0 50px;
    }


    .packages-heading {
        margin-bottom: 12px;
    }

    .packages-heading h2 {
        font-size: 15px;

        white-space: nowrap;
    }

    .packages-subtitle {
        padding: 0 15px;

        margin-bottom: 28px;

        font-size: 10px;
    }


    /* Make Featured first */

    .packages-row {
        display: flex;

        flex-direction: column;
    }

    .packages-row>div:nth-child(2) {
        order: -1;
    }


    /* Card */

    .package-card {
        min-height: auto;

        padding: 0 17px 18px;

        border-radius: 12px;
    }


    .package-header {
        margin-left: -17px;
        margin-right: -17px;

        min-height: 68px;
    }


    .package-name {
        font-size: 17px;
    }

    .package-type {
        font-size: 8px;
    }


    .package-price {
        padding: 20px 0 15px;

        font-size: 36px;
    }


    .package-features li {
        padding: 8px 0;

        font-size: 10px;
    }


    .package-btn {
        min-height: 46px;

        margin-top: 16px;

        font-size: 10px;
    }


    /* Featured */

    .package-featured {
        transform: none;

        order: -1;
    }

    .package-featured:hover {
        transform: translateY(-4px);
    }


    .popular-badge {
        width: 135px;

        height: 23px;

        font-size: 7px;
    }

    .package-featured .package-header {
        padding-top: 26px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .packages-heading h2 {
        font-size: 13px;
    }

    .packages-subtitle {
        font-size: 9px;
    }

    .package-card {
        padding-left: 14px;
        padding-right: 14px;
    }

    .package-header {
        margin-left: -14px;
        margin-right: -14px;
    }

    .package-price {
        font-size: 33px;
    }

    .package-features li {
        font-size: 9px;
    }

}






/* =====================================================
   HOW IT WORKS
===================================================== */

.how-it-works-section {
    position: relative;

    padding: 60px 0 65px;

    background:
        radial-gradient(circle at 50% 40%,
            rgba(232, 184, 75, .07),
            transparent 40%),
        #ffffff;

    overflow: hidden;
}


/* =====================================================
   DECORATIVE BACKGROUND
===================================================== */

.how-it-works-section::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    border: 1px solid rgba(232, 184, 75, .08);

    pointer-events: none;
}

.how-it-works-section::after {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    border-radius: 50%;

    border: 1px dashed rgba(232, 184, 75, .07);

    pointer-events: none;
}


/* =====================================================
   HEADING
===================================================== */

.how-heading {
    position: relative;

    z-index: 2;

    margin-bottom: 45px;
}

.how-heading h2 {
    color: var(--navy);

    font-size: 21px;
}

.how-heading h2::before {
    color: var(--gold);
}


/* =====================================================
   STEPS CONTAINER
===================================================== */

.how-steps {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1fr 35px 1fr 35px 1fr 35px 1fr;

    align-items: center;

    width: 100%;
}


/* =====================================================
   STEP
===================================================== */

.how-step {
    position: relative;

    min-height: 220px;

    padding: 20px 15px;

    border: 1px solid rgba(6, 19, 38, .08);

    border-radius: 14px;

    background: rgba(255, 255, 255, .9);

    box-shadow:
        0 8px 25px rgba(6, 19, 38, .05);

    text-align: center;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease;
}

.how-step:hover {
    transform: translateY(-7px);

    border-color: rgba(232, 184, 75, .45);

    box-shadow:
        0 15px 35px rgba(6, 19, 38, .1);
}


/* =====================================================
   STEP TOP
===================================================== */

.step-top {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    min-height: 85px;
}


/* =====================================================
   NUMBER
===================================================== */

.step-number {
    position: absolute;

    left: 8px;
    top: 15px;

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--gold);

    color: var(--navy);

    font-size: 11px;

    font-weight: 800;

    box-shadow:
        0 5px 15px rgba(232, 184, 75, .25);
}



/* =====================================================
   STEP ICON / IMAGE
===================================================== */

.step-icon {
    width: 78px;
    height: 78px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        radial-gradient(circle,
            #ffffff 0%,
            #f1f2f4 100%);

    border: 1px solid rgba(6, 19, 38, .08);

    color: var(--navy);

    font-size: 30px;

    box-shadow:
        0 8px 20px rgba(6, 19, 38, .08);

    overflow: hidden;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}


/* Font Awesome icon */

.step-icon>i {
    display: block;

    color: var(--navy);

    font-size: 30px;
}


/* Custom image */

.step-icon>img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 10px;

    border-radius: 50%;
}


/* Hover */

.how-step:hover .step-icon {
    border-color: rgba(232, 184, 75, .45);

    transform: scale(1.05);

    box-shadow:
        0 10px 25px rgba(6, 19, 38, .12);
}

.how-step:hover .step-icon>i {
    color: var(--gold);
}


/* =====================================================
   STEP CONTENT
===================================================== */

.step-content {
    margin-top: 20px;
}

.step-content h3 {
    margin: 0;

    color: var(--navy);

    font-size: 11px;

    line-height: 1.3;

    font-weight: 800;

    letter-spacing: .2px;
}

.step-content p {
    max-width: 180px;

    margin: 10px auto 0;

    color: rgba(6, 19, 38, .58);

    font-size: 9px;

    line-height: 1.65;
}


/* =====================================================
   CONNECTOR
===================================================== */

.step-connector {
    position: relative;

    z-index: 3;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-size: 15px;
}

.step-connector::before {
    content: "";

    position: absolute;

    width: 100%;

    height: 1px;

    background:
        linear-gradient(to right,
            transparent,
            rgba(232, 184, 75, .5),
            transparent);
}

.step-connector i {
    position: relative;

    z-index: 2;

    padding: 4px;

    background: var(--white);
}


/* =====================================================
   BOTTOM CTA
===================================================== */

.how-cta-wrapper {
    position: relative;

    z-index: 2;

    display: flex;

    justify-content: center;

    margin-top: 38px;
}

.how-cta {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    min-height: 42px;

    padding: 0 18px;

    border-radius: 7px;

    background: var(--navy);

    color: var(--white);

    text-decoration: none;

    font-size: 9px;

    font-weight: 800;

    letter-spacing: .3px;

    transition: .3s ease;
}

.how-cta i {
    color: var(--gold);

    font-size: 9px;
}

.how-cta:hover {
    color: var(--white);

    background: var(--navy-light);

    transform: translateY(-2px);
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .how-it-works-section {
        padding: 70px 0 75px;
    }

    .how-step {
        min-height: 235px;

        padding: 25px 20px;
    }

    .step-icon {
        width: 85px;
        height: 85px;

        font-size: 32px;
    }

    .step-number {
        width: 45px;
        height: 45px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .how-it-works-section {
        padding: 50px 0 55px;
    }

    .how-heading {
        margin-bottom: 35px;
    }


    /* 2 × 2 layout */

    .how-steps {
        grid-template-columns: repeat(2, 1fr);

        gap: 20px;
    }


    .how-step {
        min-height: 210px;
    }


    /* Hide connectors */

    .step-connector {
        display: none;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .how-it-works-section {
        padding: 40px 0 45px;
    }


    .how-heading {
        gap: 8px;

        margin-bottom: 25px;
    }

    .how-heading h2 {
        font-size: 15px;

        white-space: nowrap;
    }

    .how-heading .heading-line {
        width: 30px;
    }


    /* 2 Columns */

    .how-steps {
        grid-template-columns: repeat(2, 1fr);

        gap: 12px;
    }


    /* Card */

    .how-step {
        min-height: 185px;

        padding: 12px 8px;

        border-radius: 11px;
    }


    /* Step top */

    .step-top {
        min-height: 68px;
    }


    /* Number */

    .step-number {
        left: 2px;
        top: 3px;

        width: 31px;
        height: 31px;

        font-size: 8px;
    }


    /* Icon */

    .step-icon {
        width: 60px;
        height: 60px;

        font-size: 23px;
    }

    .step-icon>i {
        font-size: 23px;
    }

    .step-icon>img {
        padding: 8px;
    }


    /* Content */

    .step-content {
        margin-top: 12px;
    }

    .step-content h3 {
        font-size: 8px;

        line-height: 1.35;
    }

    .step-content p {
        max-width: 145px;

        margin-top: 7px;

        font-size: 7.5px;

        line-height: 1.55;
    }


    /* CTA */

    .how-cta-wrapper {
        margin-top: 25px;
    }

    .how-cta {
        width: 100%;

        min-height: 42px;

        font-size: 8px;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .how-steps {
        gap: 9px;
    }

    .how-step {
        min-height: 175px;

        padding: 10px 6px;
    }

    .step-icon {
        width: 54px;
        height: 54px;
    }

    .step-icon>i {
        font-size: 20px;
    }

    .step-icon>img {
        padding: 7px;
    }

    .step-number {
        width: 28px;
        height: 28px;

        font-size: 7px;
    }

    .step-content h3 {
        font-size: 7.5px;
    }

    .step-content p {
        font-size: 7px;
    }

}


/* =====================================================
   ORGANIZATION / TRUST SECTION
===================================================== */

.organization-section {
    position: relative;

    padding: 45px 0;

    background: var(--white);

    overflow: hidden;
}


/* =====================================================
   MAIN BOX
===================================================== */

.organization-box {
    position: relative;

    display: grid;

    grid-template-columns:
        1.35fr 1.45fr 1.55fr;

    align-items: center;

    min-height: 125px;

    padding: 20px 25px;

    border-radius: 15px;

    background:
        radial-gradient(circle at 15% 50%,
            rgba(232, 184, 75, .08),
            transparent 30%),
        var(--navy);

    border: 1px solid rgba(232, 184, 75, .15);

    box-shadow:
        0 12px 35px rgba(6, 19, 38, .15);

    overflow: hidden;
}


/* Subtle gold glow */

.organization-box::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    left: -120px;
    top: -100px;

    border-radius: 50%;

    background: rgba(232, 184, 75, .06);

    pointer-events: none;
}


/* =====================================================
   BRAND
===================================================== */

.organization-brand {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 14px;

    padding-right: 25px;

    border-right: 1px solid rgba(255, 255, 255, .2);
}


/* =====================================================
   LOGO
===================================================== */

.organization-logo {
    width: 68px;
    height: 68px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: var(--gold);

    font-size: 38px;

    background:
        radial-gradient(circle,
            rgba(232, 184, 75, .13),
            transparent 70%);

    text-shadow:
        0 3px 10px rgba(232, 184, 75, .2);
}


/* =====================================================
   BRAND TEXT
===================================================== */

.organization-brand-text {
    min-width: 0;
}

.organized-by {
    display: block;

    margin-bottom: 4px;

    color: rgba(255, 255, 255, .75);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: .6px;
}

.organization-brand h2 {
    margin: 0;

    color: var(--gold-light);

    font-size: 16px;

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: .2px;
}

.organization-brand p {
    margin: 5px 0 0;

    color: rgba(255, 255, 255, .7);

    font-size: 7px;

    line-height: 1.3;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.organization-description {
    position: relative;

    z-index: 2;

    padding: 5px 30px;

    border-right: 1px solid rgba(255, 255, 255, .2);
}

.organization-description p {
    margin: 0;

    color: rgba(255, 255, 255, .72);

    font-size: 8px;

    line-height: 1.7;
}


/* =====================================================
   FEATURES
===================================================== */

.organization-features {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    padding-left: 22px;
}


/* =====================================================
   FEATURE
===================================================== */

.organization-feature {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    min-height: 75px;

    padding: 5px 7px;

    text-align: center;
}


/* =====================================================
   FEATURE ICON
===================================================== */

.organization-feature-icon {
    width: 38px;
    height: 38px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 6px;

    color: var(--gold);

    font-size: 19px;

    transition: .3s ease;
}


/* =====================================================
   FEATURE TEXT
===================================================== */

.organization-feature span {
    color: rgba(255, 255, 255, .8);

    font-size: 7px;

    line-height: 1.4;

    font-weight: 600;
}


/* =====================================================
   HOVER
===================================================== */

.organization-feature {
    transition: .3s ease;
}

.organization-feature:hover {
    transform: translateY(-3px);
}

.organization-feature:hover .organization-feature-icon {
    color: var(--gold-light);

    transform: scale(1.1);
}

.organization-feature:hover span {
    color: var(--white);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .organization-section {
        padding: 40px 0;
    }

    .organization-box {
        grid-template-columns:
            1.2fr 1.3fr;

        gap: 0;

        padding: 20px;
    }


    .organization-brand {
        border-right: 1px solid rgba(255, 255, 255, .2);
    }


    .organization-description {
        border-right: 0;

        padding-right: 0;
    }


    .organization-features {
        grid-column: 1 / -1;

        margin-top: 18px;

        padding: 15px 0 0;

        border-top: 1px solid rgba(255, 255, 255, .15);
    }


    .organization-feature {
        min-height: 65px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .organization-section {
        padding: 35px 0;
    }


    .organization-box {
        display: block;

        padding: 22px 16px;

        border-radius: 13px;
    }


    /* -----------------------------------------
       BRAND
    ----------------------------------------- */

    .organization-brand {
        justify-content: center;

        padding: 0 0 18px;

        border-right: 0;

        border-bottom: 1px solid rgba(255, 255, 255, .15);

        text-align: left;
    }


    .organization-logo {
        width: 58px;
        height: 58px;

        font-size: 31px;
    }


    .organization-brand h2 {
        font-size: 14px;
    }


    .organization-brand p {
        font-size: 7px;
    }


    /* -----------------------------------------
       DESCRIPTION
    ----------------------------------------- */

    .organization-description {
        padding: 17px 5px;

        border-right: 0;

        border-bottom: 1px solid rgba(255, 255, 255, .15);

        text-align: center;
    }


    .organization-description p {
        font-size: 8px;

        line-height: 1.65;
    }


    /* -----------------------------------------
       FEATURES
    ----------------------------------------- */

    .organization-features {
        grid-column: auto;

        grid-template-columns: repeat(2, 1fr);

        margin-top: 0;

        padding: 15px 0 0;

        border-top: 0;

        row-gap: 10px;
    }


    .organization-feature {
        min-height: 70px;

        padding: 7px;

        border-right: 1px solid rgba(255, 255, 255, .12);
    }


    .organization-feature:nth-child(even) {
        border-right: 0;
    }


    .organization-feature:nth-child(1),
    .organization-feature:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, .12);

        padding-bottom: 14px;
    }


    .organization-feature-icon {
        width: 34px;
        height: 34px;

        font-size: 18px;
    }


    .organization-feature span {
        font-size: 7.5px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .organization-box {
        padding: 20px 13px;
    }

    .organization-logo {
        width: 52px;
        height: 52px;

        font-size: 28px;
    }

    .organization-brand h2 {
        font-size: 12px;
    }

    .organization-description p {
        font-size: 7.5px;
    }

    .organization-feature span {
        font-size: 7px;
    }

}








/* =====================================================
   FAQ SECTION
===================================================== */

.faq-section {
    position: relative;

    padding: 65px 0 70px;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(232, 184, 75, .06),
            transparent 30%
        ),
        radial-gradient(
            circle at 85% 50%,
            rgba(6, 19, 38, .035),
            transparent 30%
        ),
        #ffffff;

    overflow: hidden;
}


/* =====================================================
   HEADING
===================================================== */

.faq-heading {
    margin-bottom: 14px;
}

.faq-heading h2 {
    color: var(--navy);

    font-size: 20px;
}


/* =====================================================
   SUBTITLE
===================================================== */

.faq-subtitle {
    max-width: 600px;

    margin: 0 auto 35px;

    color: rgba(6, 19, 38, .58);

    font-size: 11px;

    line-height: 1.7;

    text-align: center;
}


/* =====================================================
   FAQ GRID
===================================================== */

.faq-grid {
    position: relative;

    z-index: 2;
}


/* =====================================================
   ACCORDION
===================================================== */

.faq-accordion {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


/* =====================================================
   FAQ ITEM
===================================================== */

.faq-item {
    border: 1px solid rgba(6, 19, 38, .09) !important;

    border-radius: 10px !important;

    background: #ffffff;

    overflow: hidden;

    box-shadow:
        0 4px 18px rgba(6, 19, 38, .035);

    transition:
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;
}

.faq-item:hover {
    border-color: rgba(232, 184, 75, .45) !important;

    box-shadow:
        0 8px 24px rgba(6, 19, 38, .07);
}


/* =====================================================
   QUESTION BUTTON
===================================================== */

.faq-item .accordion-button {
    position: relative;

    display: flex;

    align-items: center;

    gap: 12px;

    min-height: 60px;

    padding: 10px 17px;

    background: #ffffff;

    color: var(--navy);

    font-size: 10px;

    line-height: 1.4;

    font-weight: 700;

    box-shadow: none !important;
}


/* Remove Bootstrap default background */

.faq-item .accordion-button:not(.collapsed) {
    background: var(--navy);

    color: var(--white);
}


/* Remove default Bootstrap focus */

.faq-item .accordion-button:focus {
    box-shadow: none;
}


/* =====================================================
   NUMBER
===================================================== */

.faq-number {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 7px;

    background: rgba(232, 184, 75, .12);

    color: var(--gold);

    font-size: 8px;

    font-weight: 800;

    transition: .3s ease;
}


.faq-item .accordion-button:not(.collapsed)
.faq-number {
    background: rgba(232, 184, 75, .15);

    color: var(--gold-light);
}


/* =====================================================
   QUESTION
===================================================== */

.faq-question {
    flex: 1;

    padding-right: 8px;
}


/* =====================================================
   ACCORDION ARROW
===================================================== */

.faq-item .accordion-button::after {
    width: 9px;
    height: 9px;

    flex-shrink: 0;

    background-size: 9px;

    filter: none;
}

.faq-item .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}


/* =====================================================
   ANSWER
===================================================== */

.faq-item .accordion-body {
    padding: 14px 20px 17px 59px;

    color: rgba(6, 19, 38, .62);

    font-size: 9px;

    line-height: 1.75;

    background: #ffffff;
}


/* =====================================================
   BOTTOM CTA
===================================================== */

.faq-bottom {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-top: 35px;
}

.faq-bottom p {
    margin: 0;

    color: rgba(6, 19, 38, .6);

    font-size: 10px;

    font-weight: 600;
}

.faq-contact-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 7px;

    min-height: 35px;

    padding: 0 14px;

    border-radius: 6px;

    background: var(--navy);

    color: var(--white);

    text-decoration: none;

    font-size: 8px;

    font-weight: 800;

    transition: .3s ease;
}

.faq-contact-btn i {
    color: var(--gold);

    font-size: 9px;
}

.faq-contact-btn:hover {
    color: var(--white);

    background: var(--navy-light);

    transform: translateY(-2px);
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1400px) {

    .faq-section {
        padding: 75px 0 80px;
    }

    .faq-item .accordion-button {
        min-height: 65px;

        font-size: 11px;
    }

    .faq-item .accordion-body {
        font-size: 10px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .faq-section {
        padding: 50px 0 60px;
    }

    .faq-grid {
        row-gap: 12px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .faq-section {
        padding: 42px 0 50px;
    }


    .faq-heading {
        gap: 7px;

        margin-bottom: 12px;
    }

    .faq-heading h2 {
        font-size: 14px;

        white-space: nowrap;
    }

    .faq-heading .heading-line {
        width: 25px;
    }


    .faq-subtitle {
        padding: 0 15px;

        margin-bottom: 25px;

        font-size: 9px;
    }


    /* Single column */

    .faq-grid {
        margin-left: 0;
        margin-right: 0;
    }


    .faq-accordion {
        gap: 8px;
    }


    .faq-item .accordion-button {
        min-height: 54px;

        padding: 8px 12px;

        gap: 9px;

        font-size: 9px;
    }


    .faq-number {
        width: 27px;
        height: 27px;

        border-radius: 6px;

        font-size: 7px;
    }


    .faq-item .accordion-body {
        padding: 12px 14px 14px 48px;

        font-size: 8px;

        line-height: 1.7;
    }


    /* Bottom */

    .faq-bottom {
        flex-direction: column;

        gap: 10px;

        margin-top: 25px;
    }

    .faq-bottom p {
        font-size: 9px;
    }

    .faq-contact-btn {
        width: 100%;

        min-height: 40px;

        font-size: 8px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .faq-heading h2 {
        font-size: 12px;
    }

    .faq-subtitle {
        font-size: 8px;
    }

    .faq-item .accordion-button {
        font-size: 8px;
    }

    .faq-item .accordion-body {
        font-size: 7.5px;
    }

}










/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonials-section {
    position: relative;

    padding: 60px 0 65px;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(232, 184, 75, .07),
            transparent 35%
        ),
        #ffffff;

    overflow: hidden;
}


/* =====================================================
   HEADING
===================================================== */

.testimonial-heading {
    margin-bottom: 12px;
}

.testimonial-heading h2 {
    color: var(--navy);

    font-size: 20px;
}


/* =====================================================
   SUBTITLE
===================================================== */

.testimonial-subtitle {
    max-width: 550px;

    margin: 0 auto 32px;

    color: rgba(6, 19, 38, .58);

    font-size: 10px;

    line-height: 1.7;

    text-align: center;
}


/* =====================================================
   SLIDER WRAPPER
===================================================== */

.testimonial-slider-wrap {
    position: relative;

    display: flex;

    align-items: center;

    gap: 12px;
}


/* =====================================================
   SWIPER
===================================================== */

.testimonial-swiper {
    width: 100%;

    overflow: hidden;

    padding: 8px 3px 15px;
}

.testimonial-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonial-swiper .swiper-slide {
    height: auto;

    box-sizing: border-box;
}


/* =====================================================
   TESTIMONIAL CARD
===================================================== */

.testimonial-card {
    position: relative;

    height: 100%;

    min-height: 145px;

    padding: 17px;

    border: 1px solid rgba(6, 19, 38, .08);

    border-radius: 13px;

    background: #ffffff;

    box-shadow:
        0 7px 22px rgba(6, 19, 38, .05);

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);

    border-color: rgba(232, 184, 75, .4);

    box-shadow:
        0 14px 30px rgba(6, 19, 38, .1);
}


/* =====================================================
   USER
===================================================== */

.testimonial-user {
    display: flex;

    align-items: center;

    gap: 10px;
}


/* =====================================================
   AVATAR
===================================================== */

.testimonial-avatar {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    padding: 2px;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            var(--gold),
            var(--gold-light)
        );
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;

    border: 2px solid #ffffff;
}


/* =====================================================
   USER INFO
===================================================== */

.testimonial-user-info {
    min-width: 0;
}

.testimonial-user-info h3 {
    margin: 0;

    color: var(--navy);

    font-size: 10px;

    line-height: 1.2;

    font-weight: 800;
}

.testimonial-user-info span {
    display: block;

    margin-top: 3px;

    color: rgba(6, 19, 38, .55);

    font-size: 7px;

    line-height: 1.3;
}


/* =====================================================
   STARS
===================================================== */

.testimonial-stars {
    display: flex;

    gap: 2px;

    margin-top: 5px;
}

.testimonial-stars i {
    color: var(--gold);

    font-size: 7px;
}


/* =====================================================
   CONTENT
===================================================== */

.testimonial-content {
    position: relative;

    margin-top: 13px;

    padding-top: 11px;

    border-top: 1px solid rgba(6, 19, 38, .07);
}

.testimonial-content p {
    margin: 0;

    padding-left: 21px;

    color: rgba(6, 19, 38, .65);

    font-size: 8px;

    line-height: 1.65;
}


/* =====================================================
   QUOTE ICON
===================================================== */

.quote-icon {
    position: absolute;

    left: 0;
    top: 12px;

    color: var(--gold);

    font-size: 13px !important;
}


/* =====================================================
   NAVIGATION
===================================================== */

.testimonial-prev,
.testimonial-next {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(232, 184, 75, .35);

    border-radius: 50%;

    background: var(--white);

    color: var(--navy);

    font-size: 10px;

    cursor: pointer;

    box-shadow:
        0 4px 12px rgba(6, 19, 38, .08);

    transition: .3s ease;

    z-index: 5;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--navy);

    color: var(--gold);

    border-color: var(--navy);
}


/* =====================================================
   LARGE DESKTOP
===================================================== */

@media (min-width: 1200px) {

    .testimonial-swiper .swiper-slide {
        width: calc((100% - 24px) / 3) !important;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1199.98px) and (min-width: 768px) {

    .testimonial-swiper .swiper-slide {
        width: calc((100% - 12px) / 2) !important;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767.98px) {

    .testimonials-section {
        padding: 42px 0 50px;
    }


    .testimonial-heading {
        gap: 7px;
    }

    .testimonial-heading h2 {
        font-size: 15px;

        white-space: nowrap;
    }

    .testimonial-heading .heading-line {
        width: 25px;
    }


    .testimonial-subtitle {
        padding: 0 15px;

        margin-bottom: 23px;

        font-size: 9px;
    }


    /* One testimonial */

    .testimonial-swiper .swiper-slide {
        width: 100% !important;
    }


    .testimonial-slider-wrap {
        gap: 7px;
    }


    .testimonial-card {
        min-height: 155px;

        padding: 15px;
    }


    .testimonial-avatar {
        width: 45px;
        height: 45px;
    }


    .testimonial-user-info h3 {
        font-size: 9px;
    }


    .testimonial-user-info span {
        font-size: 7px;
    }


    .testimonial-content p {
        font-size: 8px;

        line-height: 1.7;
    }


    /* Navigation */

    .testimonial-prev,
    .testimonial-next {
        width: 28px;
        height: 28px;

        font-size: 8px;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .testimonial-heading h2 {
        font-size: 13px;
    }

    .testimonial-card {
        min-height: 150px;

        padding: 13px;
    }

    .testimonial-avatar {
        width: 42px;
        height: 42px;
    }

    .testimonial-content p {
        font-size: 7.5px;
    }

}










/* =====================================================
   BOTTOM CTA BAR
===================================================== */

.bottom-cta-section {
    position: relative;

    padding: 12px 0;

    background: #ffffff;

    z-index: 10;
}


/* =====================================================
   CTA BOX
===================================================== */

.bottom-cta {
    position: relative;

    min-height: 62px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    padding: 8px 15px;

    border-radius: 8px;

    background:
        radial-gradient(
            circle at 15% 50%,
            rgba(232, 184, 75, .08),
            transparent 30%
        ),
        var(--navy);

    border: 1px solid rgba(232, 184, 75, .18);

    box-shadow:
        0 6px 20px rgba(6, 19, 38, .15);

    overflow: hidden;
}


/* =====================================================
   DECORATIVE GLOW
===================================================== */

.bottom-cta::before {
    content: "";

    position: absolute;

    width: 180px;
    height: 180px;

    left: -80px;
    top: -60px;

    border-radius: 50%;

    background:
        rgba(232, 184, 75, .05);

    pointer-events: none;
}


/* =====================================================
   LEFT CONTENT
===================================================== */

.bottom-cta-content {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    gap: 12px;
}


/* =====================================================
   TROPHY
===================================================== */

.bottom-cta-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--gold);

    font-size: 24px;
}


/* =====================================================
   TEXT
===================================================== */

.bottom-cta-content h2 {
    margin: 0;

    color: var(--gold-light);

    font-size: 12px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: .2px;
}

.bottom-cta-content p {
    margin: 4px 0 0;

    color: rgba(255, 255, 255, .75);

    font-size: 7px;

    line-height: 1.3;

    font-weight: 600;

    letter-spacing: .3px;
}


/* =====================================================
   BUTTON
===================================================== */

.bottom-cta-btn {
    position: relative;

    z-index: 2;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    flex-shrink: 0;

    min-height: 36px;

    padding: 0 17px;

    border-radius: 5px;

    background:
        linear-gradient(
            135deg,
            var(--gold-light),
            var(--gold)
        );

    color: var(--navy);

    text-decoration: none;

    font-size: 8px;

    font-weight: 800;

    box-shadow:
        0 4px 12px rgba(232, 184, 75, .2);

    transition:
        transform .3s ease,
        box-shadow .3s ease;
}

.bottom-cta-btn i {
    font-size: 8px;

    transition: .3s ease;
}

.bottom-cta-btn:hover {
    color: var(--navy);

    transform: translateY(-2px);

    box-shadow:
        0 7px 18px rgba(232, 184, 75, .3);
}

.bottom-cta-btn:hover i {
    transform: translateX(3px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991.98px) {

    .bottom-cta-section {
        padding: 10px 0;
    }

    .bottom-cta {
        min-height: 60px;

        gap: 15px;

        padding: 8px 12px;
    }

    .bottom-cta-content h2 {
        font-size: 10px;
    }

    .bottom-cta-content p {
        font-size: 6.5px;
    }

    .bottom-cta-btn {
        min-height: 34px;

        padding: 0 13px;

        font-size: 7px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 575.98px) {

    .bottom-cta-section {
        padding: 8px 0;
    }


    .bottom-cta {
        min-height: 70px;

        padding: 9px 10px;

        gap: 10px;

        border-radius: 7px;
    }


    /* Left */

    .bottom-cta-content {
        gap: 7px;

        min-width: 0;
    }


    .bottom-cta-icon {
        width: 28px;
        height: 28px;

        font-size: 17px;
    }


    .bottom-cta-content h2 {
        font-size: 8px;

        line-height: 1.25;
    }


    .bottom-cta-content p {
        margin-top: 3px;

        font-size: 5.5px;

        line-height: 1.3;
    }


    /* Button */

    .bottom-cta-btn {
        min-height: 31px;

        padding: 0 9px;

        gap: 5px;

        font-size: 6px;

        white-space: nowrap;
    }

    .bottom-cta-btn i {
        font-size: 6px;
    }

}


/* =====================================================
   VERY SMALL MOBILE
===================================================== */

@media (max-width: 380px) {

    .bottom-cta {
        padding: 8px;
    }

    .bottom-cta-icon {
        display: none;
    }

    .bottom-cta-content h2 {
        font-size: 7px;
    }

    .bottom-cta-content p {
        font-size: 5px;
    }

    .bottom-cta-btn {
        padding: 0 7px;

        font-size: 5.5px;
    }

}