/* =========================================================
   INSUREDX HEADER
   ========================================================= */


/* =========================================================
   01. GLOBAL VARIABLES
   ========================================================= */

:root {

    /* ---------- Brand Colors ---------- */

    --color-primary: #0a0880;
    --color-primary-dark: #07065f;
    --color-primary-light: #1412a1;

    --color-secondary: #f47721;
    --color-secondary-dark: #d9531e;
    --color-secondary-light: #ff914d;

    /* ---------- Neutral Colors ---------- */

    --color-white: #ffffff;
    --color-black: #111111;

    --color-text: #242424;
    --color-text-light: #666666;
    --color-text-muted: #888888;

    --color-border: #a5a5a5;
    --color-border-light: #f0f0f5;

    --color-background: #ffffff;
    --color-background-soft: #f0f3ff;
    --color-background-active: rgb(228, 229, 233)

    /* ---------- Mega Menu ---------- */

    --menu-background: #ffffff;
    --menu-card-background: #fafaff;

    /* ---------- Typography ---------- */

    --font-primary:
        "Montserrat",
        Arial,
        Helvetica,
        sans-serif;

    --font-size-section-heading: 30px;
    --font-size-mob-section-heading: 24px;
    --font-weight-section-heading: 600;
    --line-height-section-heading: 1.4;

    --font-size-body: 16px;
    --font-size-small: 14px;

    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* ---------- Border Radius ---------- */

    --radius-small: 6px;
    --radius-medium: 10px;
    --radius-large: 16px;
    --radius-pill: 100px;
    --container: 1360px;

    /* ---------- Shadows ---------- */

    --shadow-header:
        0 4px 20px rgba(10, 8, 128, 0.08);

    --shadow-menu:
        0 20px 50px rgba(10, 8, 128, 0.15);

    --shadow-card:
        0 8px 25px rgba(10, 8, 128, 0.08);

    /* ---------- Transitions ---------- */

    --transition-fast:
        0.2s ease;

    --transition-normal:
        0.3s ease;

    --transition-smooth:
        0.4s cubic-bezier(0.4, 0, 0.2, 1);

}


/* =========================================================
   02. GLOBAL RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;

    font-family: var(--font-primary);

    color: var(--color-text);

    background: var(--color-background);
}

.container{
    max-width: var(--container);
    margin: auto;
}

.soft-bg{
    background: var(--color-background-soft) !important;
}

.section-heading {
    font-family: var(--font-primary);
    font-size: var(--font-size-section-heading);
    font-weight: var(--font-weight-section-heading);
    line-height: var(--line-height-section-heading);
    color: var(--color-text);
    margin: 0;
}

@media (max-width: 767px){
    .section-heading {
        font-size: var(--font-size-mob-section-heading) !important;
    }
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   03. HEADER
   ========================================================= */

.site-header {
    position: sticky;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 9999;

    background: var(--color-white);

    box-shadow: var(--shadow-header);
}


/* =========================================================
   04. TOP UTILITY BAR
   ========================================================= */

.header-top {
    background: var(--color-primary);
    color: var(--color-white);
}

.header-top-wrap{
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ---------- Top Left ---------- */

.header-top-left {

    display: flex;

    align-items: center;

    gap: 18px;
}


/* ---------- Top Right ---------- */

.header-top-right {

    display: flex;

    align-items: center;

    gap: 25px;

    height: 100%;
}


/* ---------- Utility Link ---------- */

.utility-link {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: var(--color-white);

    font-size: 12px;

    font-weight: 500;

    white-space: nowrap;

    transition:
        opacity var(--transition-fast);
}

.utility-link:hover {
    opacity: 0.75;
}

.utility-link strong {
    font-size: 13px;
}


/* ---------- Icons ---------- */

.utility-icon {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    font-size: 14px;
}


/* ---------- Availability ---------- */

.availability {

    font-size: 10px;

    opacity: 0.75;
}


/* ---------- Divider ---------- */

.utility-divider {

    width: 1px;

    height: 20px;

    background:
        rgba(255, 255, 255, 0.35);
}


/* =========================================================
   05. APPLY BUTTON
   ========================================================= */

.apply-button {

    min-height: 46px;

    padding:
        0 20px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    background: var(--color-secondary);

    color: var(--color-white);

    font-size: 12px;

    font-weight: 700;

    transition:
        background var(--transition-normal),
        transform var(--transition-normal);
}

.apply-button:hover {

    background:
        var(--color-secondary-dark);

    transform:
        translateY(-1px);
}

.button-arrow {

    font-size: 18px;

    transition:
        transform var(--transition-normal);
}

.apply-button:hover .button-arrow {
    transform:
        translateX(4px);
}


/* =========================================================
   06. MAIN HEADER
   ========================================================= */

.header-main {
    position: relative;
    background:
        var(--color-white);
}


.header-main-wrap{
    display: flex;
    align-items: center;
    gap: 40px;
    min-height: 76px;
}

/* =========================================================
   07. LOGO
   ========================================================= */

.site-logo {

    width: 180px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
}

.site-logo img {

    display: block;

    width: 100%;

    height: auto;

    object-fit: contain;
}


/* =========================================================
   08. MAIN NAVIGATION
   ========================================================= */

.main-navigation {

    flex: 1;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: clamp(22px, 2.5vw, 42px);

    height: 76px;
}


/* =========================================================
   09. NAV LINKS
   ========================================================= */

.nav-link {

    position: relative;

    height: 76px;

    padding: 0;

    border: 0;

    background: transparent;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--color-text);

    font-size: 14px;

    font-weight: 600;

    white-space: nowrap;

    cursor: pointer;

    transition:
        color var(--transition-normal);
}


/* ---------- Animated Underline ---------- */

.nav-link::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: 19px;

    width: 0;

    height: 3px;

    border-radius:
        var(--radius-pill);

    background:
        var(--color-secondary);

    transition:
        width var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}


/* =========================================================
   10. SERVICES DROPDOWN
   ========================================================= */

.nav-dropdown {
    height: 100%;

    display: flex;

    align-items: center;
}

.services-trigger {
    cursor: pointer;
}


/* ---------- Arrow ---------- */

.dropdown-arrow {

    width: 7px;
    height: 7px;

    border-right:
        1.5px solid currentColor;

    border-bottom:
        1.5px solid currentColor;

    transform:
        rotate(45deg) translateY(-2px);

    transition:
        transform var(--transition-normal);
}

.nav-dropdown.open .dropdown-arrow {

    transform:
        rotate(225deg) translateY(-1px);
}


/* =========================================================
   11. MEGA MENU
   ========================================================= */

.mega-menu {

    position: absolute;

    top: 100%;

    left: 0;

    width: 100%;

    padding:
        30px 4% 28px;

    background:
        #fff;

    border-top:
        1px solid var(--color-border);

    box-shadow:
        var(--shadow-menu);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(10px);

    transition:
        opacity var(--transition-normal),
        visibility var(--transition-normal),
        transform var(--transition-normal);

    pointer-events: none;
}


/* ---------- Open State ---------- */

.nav-dropdown.open .mega-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

    pointer-events: auto;
}


/* =========================================================
   12. MEGA MENU CONTENT
   ========================================================= */

.mega-menu-content {

    width: 100%;

    max-width: 1500px;

    margin: 0 auto;
}


/* =========================================================
   13. MEGA MENU HEADING
   ========================================================= */

.mega-menu-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 30px;

    padding-bottom: 22px;

    border-bottom:
        1px solid var(--color-border);
}


.menu-eyebrow {

    display: block;

    margin-bottom: 8px;

    color:
        var(--color-secondary);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;
}


.mega-menu-heading h2 {

    margin: 0 0 8px;

    color:
        var(--color-primary);

    font-size:
        clamp(22px, 2vw, 30px);

    line-height: 1.2;

    font-weight: 700;
}

.mega-menu-heading h2 span {
    color:
        var(--color-secondary);
}


.mega-menu-heading p {

    max-width: 650px;

    margin: 0;

    color:
        var(--color-text-light);

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   14. VIEW ALL
   ========================================================= */

.view-all-link {

    display: inline-flex;

    align-items: center;

    gap: 9px;

    flex-shrink: 0;

    color:
        var(--color-primary);

    font-size: 12px;

    font-weight: 700;

    transition:
        gap var(--transition-normal),
        color var(--transition-normal);
}

.view-all-link:hover {

    gap: 14px;

    color:
        var(--color-secondary);
}


/* =========================================================
   15. SERVICES GRID
   ========================================================= */

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

    padding:
        22px 0;
}


/* =========================================================
   16. SERVICE CARD
   ========================================================= */

.service-card {

    position: relative;

    min-height: 135px;

    padding: 18px;

    display: flex;

    gap: 13px;

    background:
        var(--menu-card-background);

    border:
        1px solid transparent;

    border-radius:
        var(--radius-medium);

    overflow: hidden;

    transition:
        transform var(--transition-normal),
        border-color var(--transition-normal),
        box-shadow var(--transition-normal),
        background var(--transition-normal);
}

.service-card::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 0;

    height: 3px;

    background:
        var(--color-secondary);

    transition:
        width var(--transition-normal);
}

.service-card:hover {

    transform:
        translateY(-4px);

    background:
        var(--color-white);

    border-color:
        rgba(10, 8, 128, 0.12);

    box-shadow:
        var(--shadow-card);
}

.service-card:hover::before {
    width: 100%;
}


/* =========================================================
   17. SERVICE ICON
   ========================================================= */

.service-icon {

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius:
        var(--radius-small);

    background:
        rgba(10, 8, 128, 0.08);

    color:
        var(--color-primary);

    font-size: 19px;

    transition:
        background var(--transition-normal),
        color var(--transition-normal),
        transform var(--transition-normal);
}

.service-card:hover .service-icon {

    background:
        var(--color-primary);

    color:
        var(--color-white);

    transform:
        scale(1.05);
}


/* =========================================================
   18. SERVICE CONTENT
   ========================================================= */

.service-content {
    min-width: 0;
}

.service-content h3 {

    margin:
        1px 0 6px;

    color:
        var(--color-text);

    font-size: 13px;

    line-height: 1.3;

    font-weight: 700;
}

.service-content p {

    margin: 0 0 9px;

    color:
        var(--color-text-light);

    font-size: 10px;

    line-height: 1.55;
}


/* =========================================================
   19. SERVICE LINK
   ========================================================= */

.service-link {

    display: inline-flex;

    align-items: center;

    gap: 5px;

    color:
        var(--color-primary);

    font-size: 10px;

    font-weight: 700;

    transition:
        gap var(--transition-normal),
        color var(--transition-normal);
}

.service-card:hover .service-link {

    gap: 8px;

    color:
        var(--color-secondary);
}


/* =========================================================
   20. MEGA MENU FOOTER
   ========================================================= */

.mega-menu-footer {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding-top: 18px;

    border-top:
        1px solid var(--color-border);
}


/* =========================================================
   21. QUICK LINKS
   ========================================================= */

.quick-links {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 22px;
}

.quick-links a {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        var(--color-text-light);

    font-size: 10px;

    font-weight: 600;

    transition:
        color var(--transition-fast);
}

.quick-links a:hover {
    color:
        var(--color-primary);
}

.quick-links a span {

    color:
        var(--color-secondary);

    font-size: 14px;
}


/* =========================================================
   22. SUPPORT CARD
   ========================================================= */

.menu-support {

    min-width: 240px;

    padding: 10px 14px;

    display: flex;

    align-items: center;

    gap: 10px;

    background:
        var(--color-primary);

    border-radius:
        var(--radius-small);

    color:
        var(--color-white);

    transition:
        transform var(--transition-normal);
}

.menu-support:hover {
    transform:
        translateY(-2px);
}

.support-icon {

    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.15);

    font-weight: 700;
}

.menu-support span:nth-child(2) {

    display: flex;

    flex-direction: column;

    gap: 3px;

    flex: 1;
}

.menu-support strong {

    font-size: 9px;
}

.menu-support small {

    font-size: 8px;

    opacity: 0.75;
}

.menu-support b {

    font-size: 16px;

    font-weight: 400;
}


/* =========================================================
   23. HEADER CTA
   ========================================================= */

.header-cta {

    flex-shrink: 0;

    min-height: 42px;

    padding:
        0 18px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius:
        var(--radius-small);

    background:
        var(--color-secondary);

    color:
        var(--color-white);

    font-size: 12px;

    font-weight: 700;

    transition:
        background var(--transition-normal),
        transform var(--transition-normal);
}

.header-cta:hover {

    background:
        var(--color-secondary-dark);

    transform:
        translateY(-2px);
}

.header-cta span {

    font-size: 17px;

    transition:
        transform var(--transition-normal);
}

.header-cta:hover span {
    transform:
        translateX(4px);
}


/* =========================================================
   24. MOBILE MENU BUTTON
   ========================================================= */

.mobile-menu-toggle {

    display: none;

    width: 42px;
    height: 42px;

    padding: 7px;

    border: 0;

    background:
        var(--color-primary);

    border-radius:
        var(--radius-small);

    cursor: pointer;
}

.mobile-menu-toggle span {

    display: block;

    width: 25px;
    height: 2px;

    margin: 5px auto;

    background:
        var(--color-white);

    border-radius: 5px;

    transition:
        transform var(--transition-normal),
        opacity var(--transition-normal);
}


/* ---------- Hamburger Active ---------- */

.mobile-menu-toggle.active span:nth-child(1) {

    transform:
        translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {

    transform:
        translateY(-7px) rotate(-45deg);
}


/* =========================================================
   25. MOBILE NAVIGATION
   ========================================================= */

.mobile-navigation {

    display: none;
}


/* =========================================================
   26. LARGE TABLET
   ========================================================= */

@media (max-width: 1200px) {

    .header-main-wrap {
        gap: 25px;
    }

    .site-logo {
        width: 155px;
    }

    .main-navigation {
        gap: 20px;
    }

    .nav-link {
        font-size: 12px;
    }

    .header-cta {
        padding: 0 13px;
    }

    .services-grid {
        grid-template-columns:
            repeat(4, 1fr);
    }

}


/* =========================================================
   27. TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .header-top {
        padding-left: 8px;
        padding-right: 8px;
    }

    .header-main {
        padding-left: 8px;
        padding-right: 8px;
    }

    .site-logo {
        width: 145px;
    }

    .main-navigation {
        gap: 14px;
    }

    .nav-link {
        font-size: 11px;
    }

    .header-cta {
        font-size: 10px;
        padding: 0 11px;
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   28. MOBILE
   ========================================================= */

@media (max-width: 767px) {

    /* -----------------------------------------
       TOP BAR
    ------------------------------------------ */

    .header-top {
        padding: 8px;
    }

    .header-top-wrap{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 7px;
        min-height: 30px;
    }

    .header-top-left {

        justify-content: center;

        gap: 10px;
    }

    .header-top-right {

        justify-content: center;

        gap: 15px;
    }

    .utility-link {
        font-size: 10px;
    }

    .utility-link strong {
        font-size: 11px;
    }

    .availability {
        display: none;
    }

    .utility-divider {
        height: 16px;
    }

    .apply-button {

        min-height: 30px;

        padding:
            0 12px;

        border-radius:
            var(--radius-small);

        font-size: 10px;
    }

    .apply-button .button-arrow {
        font-size: 14px;
    }


    /* -----------------------------------------
       MAIN HEADER
    ------------------------------------------ */

    .header-main {
        padding:
            8px;
    }

    .header-main-wrap{
        gap: 0;
        justify-content: space-between;
        min-height: 64px;
    }

    .site-logo {
        width: 145px;
    }


    /* Hide Desktop Nav */

    .main-navigation,
    .header-cta {
        display: none;
    }


    /* Show Mobile Toggle */

    .mobile-menu-toggle {
        display: block;
    }


    /* -----------------------------------------
       MOBILE NAV
    ------------------------------------------ */

    .mobile-navigation {

        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        max-height: 0;

        overflow: hidden;

        display: flex;

        flex-direction: column;

        background:
            var(--color-white);

        box-shadow:
            var(--shadow-menu);

        opacity: 0;

        visibility: hidden;

        transition:
            max-height var(--transition-smooth),
            opacity var(--transition-normal),
            visibility var(--transition-normal);
    }

    .mobile-navigation.active {

        max-height: 700px;

        opacity: 1;

        visibility: visible;
    }


    .mobile-navigation>a,
    .mobile-services-toggle {

        min-height: 50px;

        padding:
            0 20px;

        display: flex;

        align-items: center;

        justify-content: space-between;

        border: 0;

        border-bottom:
            1px solid var(--color-border);

        background:
            var(--color-white);

        color:
            var(--color-text);

        font-size: 13px;

        font-weight: 600;

        text-align: left;

        cursor: pointer;
    }


    .mobile-navigation>a:hover,
    .mobile-services-toggle:hover {
        color:
            var(--color-primary);
    }


    /* -----------------------------------------
       MOBILE SERVICES
    ------------------------------------------ */

    .mobile-services {

        max-height: 0;

        overflow: hidden;

        background:
            var(--color-background-soft);

        transition:
            max-height var(--transition-smooth);
    }

    .mobile-services.active {
        max-height: 500px;
    }

    .mobile-services a {

        min-height: 42px;

        padding:
            0 30px;

        display: flex;

        align-items: center;

        border-bottom:
            1px solid var(--color-border);

        color:
            var(--color-text-light);

        font-size: 11px;

        font-weight: 500;
    }

    .mobile-services a:hover {
        color:
            var(--color-primary);

        background:
            rgba(10, 8, 128, 0.04);
    }


    /* -----------------------------------------
       MOBILE ARROW
    ------------------------------------------ */

    .mobile-arrow {

        width: 7px;
        height: 7px;

        border-right:
            1.5px solid currentColor;

        border-bottom:
            1.5px solid currentColor;

        transform:
            rotate(45deg);

        transition:
            transform var(--transition-normal);
    }

    .mobile-services-toggle.active .mobile-arrow {

        transform:
            rotate(225deg);
    }


    /* -----------------------------------------
       MOBILE QUOTE
    ------------------------------------------ */

    .mobile-navigation .mobile-quote {

        margin:
            12px 15px;

        min-height: 45px;

        justify-content: center;

        border: 0;

        border-radius:
            var(--radius-small);

        background:
            var(--color-secondary);

        color:
            var(--color-white);

        font-size: 12px;
    }

}


/* =========================================================
   29. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .header-top {
        min-height: 18px;
    }

    .header-top-left {
        gap: 7px;
    }

    .utility-link {
        font-size: 9px;
    }

    .utility-link strong {
        font-size: 10px;
    }

    .utility-icon {
        font-size: 12px;
    }

    .header-top-right {
        gap: 12px;
    }

    .header-main-wrap {
        min-height: 60px;
    }

    .site-logo {
        width: 130px;
    }

    .mobile-menu-toggle {
        width: 38px;
        height: 38px;
    }

}



/* ============================
Banner section Start 
==============================*/

/* =========================================================
   INSURANCE IMAGE SLIDER
========================================================= */

.insurance-image-slider {

    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 8/3;
    overflow: hidden;

    background: var(--color-background-soft);

    isolation: isolate;
}


/* =========================================================
   SLIDES WRAPPER
========================================================= */

.insurance-image-slider__slides {
    position: relative;

    width: 100%;
    height: 100%;
}


/* =========================================================
   SLIDE
========================================================= */

.insurance-image-slider__slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    z-index: 1;

    transition:
        opacity 0.9s var(--transition-smooth),
        visibility 0.9s ease;
}


/* Active slide */

.insurance-image-slider__slide.is-active {
    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    z-index: 2;
}


/* =========================================================
   IMAGE
========================================================= */

.insurance-image-slider__slide img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transform: scale(1.06);

    transition:
        transform 6s cubic-bezier(0.22, 1, 0.36, 1);
}


/* Premium Ken Burns effect */

.insurance-image-slider__slide.is-active img {
    transform: scale(1);
}


/* =========================================================
   ARROWS
========================================================= */

.insurance-image-slider__arrow {
    position: absolute;

    top: 50%;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.85);

    color: var(--color-primary);

    font-family: Arial, sans-serif;
    font-size: 34px;
    line-height: 1;

    cursor: pointer;

    z-index: 10;

    opacity: 0;

    transform: translateY(-50%);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 8px 25px rgba(10, 8, 128, 0.12);

    transition:
        opacity var(--transition-normal),
        background var(--transition-normal),
        color var(--transition-normal),
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}


/* Show arrows when hovering */

.insurance-image-slider:hover
.insurance-image-slider__arrow {
    opacity: 1;
}


.insurance-image-slider__arrow--prev {
    left: 25px;
}


.insurance-image-slider__arrow--next {
    right: 25px;
}


.insurance-image-slider__arrow span {
    display: block;

    margin-top: -4px;
}


.insurance-image-slider__arrow:hover {
    background: var(--color-primary);

    color: var(--color-white);

    box-shadow:
        0 12px 30px rgba(10, 8, 128, 0.25);

    transform:
        translateY(-50%)
        scale(1.05);
}


/* =========================================================
   DOTS
========================================================= */

.insurance-image-slider__dots {
    position: absolute;

    left: 50%;
    bottom: 25px;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 8px;

    z-index: 10;

    padding: 7px 10px;

    border-radius: var(--radius-pill);

    background: rgba(255, 255, 255, 0.78);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 6px 20px rgba(10, 8, 128, 0.1);
}


/* Dot */

.insurance-image-slider__dot {
    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;

    border-radius: var(--radius-pill);

    background: rgba(10, 8, 128, 0.25);

    cursor: pointer;

    transition:
        width var(--transition-normal),
        background var(--transition-normal),
        transform var(--transition-normal);
}


/* Active dot */

.insurance-image-slider__dot.is-active {
    width: 28px;

    background: var(--color-secondary);
}


/* =========================================================
   PROGRESS BAR
========================================================= */

.insurance-image-slider__progress {
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    z-index: 11;

    background: rgba(10, 8, 128, 0.08);
}


.insurance-image-slider__progress span {
    display: block;

    width: 0;
    height: 100%;

    background: var(--color-secondary);
}


/* Progress animation */

.insurance-image-slider__progress.is-running span {
    animation:
        insuranceSliderProgress
        5.5s linear forwards;
}


@keyframes insuranceSliderProgress {

    from {
        width: 0;
    }

    to {
        width: 100%;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .insurance-image-slider__arrow {
        width: 42px;
        height: 42px;

        font-size: 30px;

        opacity: 1;
    }

    .insurance-image-slider__arrow--prev {
        left: 18px;
    }

    .insurance-image-slider__arrow--next {
        right: 18px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {


    .insurance-image-slider__slide img {
        /*
         * Important for portrait/mobile banners.
         */
        object-position: center center;
    }


    .insurance-image-slider__arrow {
        width: 38px;
        height: 38px;

        font-size: 27px;

        background: rgba(255, 255, 255, 0.9);
    }


    .insurance-image-slider__arrow--prev {
        left: 12px;
    }


    .insurance-image-slider__arrow--next {
        right: 12px;
    }


    .insurance-image-slider__dots {
        bottom: 18px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {


    .insurance-image-slider__arrow {
        display: none;

        font-size: 24px;
    }


    .insurance-image-slider__dots {
        display: none;
        bottom: 15px;

        padding: 6px 9px;

        gap: 7px;
    }


    .insurance-image-slider__dot {
        width: 7px;
        height: 7px;
    }


    .insurance-image-slider__dot.is-active {
        width: 23px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .insurance-image-slider__slide,
    .insurance-image-slider__slide img,
    .insurance-image-slider__arrow,
    .insurance-image-slider__dot {
        transition: none !important;
    }

    .insurance-image-slider__slide img {
        transform: none !important;
    }

    .insurance-image-slider__progress.is-running span {
        animation: none;
    }

}

/* ============================
Banner section End 
==============================*/

/* ============================
Trust Icons Start 
==============================*/

/* =========================================================
   INSURANCE TRUST SECTION
========================================================= */

.insurance-trust {
    position: relative;
    width: 100%;
    padding: 0 0 30px;
    z-index: 5;
}


/* =========================================================
   TRUST WRAPPER
========================================================= */

.insurance-trust__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    width: 100%;

    background: rgba(255, 255, 255, 0.96);

    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-large);

    box-shadow: var(--shadow-card);

    overflow: hidden;
}


/* =========================================================
   TRUST ITEM
========================================================= */

.insurance-trust__item {
    position: relative;

    display: flex;
    align-items: center;

    gap: 18px;

    min-width: 0;

    padding: 25px 32px;
}


/* Vertical divider */

.insurance-trust__item:not(:last-child)::after {
    content: "";

    position: absolute;

    top: 50%;
    right: 0;

    width: 1px;
    height: 42px;

    background: var(--color-border);

    transform: translateY(-50%);
}


/* =========================================================
   ICON
========================================================= */

.insurance-trust__icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: var(--radius-medium);

    background: rgba(10, 8, 128, 0.04);

    color: var(--color-primary);

    transition:
        background var(--transition-normal),
        color var(--transition-normal),
        transform var(--transition-normal);
}


.insurance-trust__icon svg {
    width: 24px;
    height: 24px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
   CONTENT
========================================================= */

.insurance-trust__content {
    min-width: 0;
}


.insurance-trust__content h3 {
    margin: 0 0 5px;

    color: var(--color-text);

    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;

    line-height: 1.3;
}


.insurance-trust__content p {
    margin: 0;

    color: var(--color-text-light);

    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 400;

    line-height: 1.45;
}


/* =========================================================
   HOVER
========================================================= */

.insurance-trust__item {
    transition: background var(--transition-normal);
}


.insurance-trust__item:hover {
    background: var(--color-background-soft);
}


.insurance-trust__item:hover .insurance-trust__icon {
    background: var(--color-primary);

    color: var(--color-white);

    transform: translateY(-2px);
}


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (min-width: 1400px) {

    .insurance-trust__item {
        padding: 27px 38px;
    }

    .insurance-trust__content h3 {
        font-size: 16px;
    }

    .insurance-trust__content p {
        font-size: 12px;
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .insurance-trust {
        padding-bottom: 25px;
    }


    .insurance-trust__item {
        gap: 13px;

        padding: 20px 18px;
    }


    .insurance-trust__icon {
        flex-basis: 38px;

        width: 38px;
        height: 38px;
    }


    .insurance-trust__icon svg {
        width: 21px;
        height: 21px;
    }


    .insurance-trust__content h3 {
        font-size: 13px;
    }


    .insurance-trust__content p {
        font-size: 11px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .insurance-trust {
        padding-bottom: 20px;
    }


    .insurance-trust__wrapper {
        grid-template-columns: 1fr;

        border-radius: var(--radius-medium);
    }


    .insurance-trust__item {
        min-height: 76px;

        padding: 16px 20px;
    }


    /* Horizontal divider on mobile */

    .insurance-trust__item:not(:last-child)::after {
        top: auto;
        right: 20px;
        bottom: 0;
        left: 20px;

        width: auto;
        height: 1px;

        transform: none;
    }


    .insurance-trust__icon {
        flex-basis: 40px;

        width: 40px;
        height: 40px;
    }


    .insurance-trust__icon svg {
        width: 22px;
        height: 22px;
    }


    .insurance-trust__content h3 {
        font-size: 14px;
    }


    .insurance-trust__content p {
        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .insurance-trust__item {
        min-height: 70px;

        gap: 14px;

        padding: 14px 16px;
    }


    .insurance-trust__icon {
        flex-basis: 36px;

        width: 36px;
        height: 36px;

        border-radius: var(--radius-small);
    }


    .insurance-trust__icon svg {
        width: 20px;
        height: 20px;
    }


    .insurance-trust__content h3 {
        margin-bottom: 3px;

        font-size: 13px;
    }


    .insurance-trust__content p {
        font-size: 11px;
    }


    .insurance-trust__item:not(:last-child)::after {
        right: 16px;
        left: 16px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .insurance-trust__item,
    .insurance-trust__icon {
        transition: none;
    }

}

/* ============================
Trust Icons End 
==============================*/

/* ============================
Insurance partners Start
==============================*/

/* =========================================================
   TRUSTED INSURERS
   ========================================================= */

.insurers-section {
    width: 100%;
    padding: 30px 8px;
    background-color: var(--color-background);
    overflow: hidden;
}


.insurers-container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
}

.insurers-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 24px;
}


.section-heading-line {
    display: block;

    width: 60px;
    height: 1px;

    flex: 0 0 60px;

    background-color: var(--color-border);
}


/* =========================================================
   SWIPER
   ========================================================= */

.insurers-slider {
    width: 100%;
    overflow: visible;
}


.insurers-slider .swiper-wrapper {
    align-items: center;
}


.insurers-slider .swiper-slide {
    width: auto;
    height: auto;
}


/* =========================================================
   INSURER CARD
   ========================================================= */

.insurer-card {
    width: 100%;
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px 18px;

    background-color: var(--color-white);

    border: 1px solid var(--color-border);
    border-radius: var(--radius-medium);

    box-sizing: border-box;

    transition:
        border-color var(--transition-normal),
        box-shadow var(--transition-normal),
        transform var(--transition-normal);
}


.insurer-card:hover {
    border-color: rgba(10, 8, 128, 0.15);

    box-shadow: var(--shadow-card);

    transform: translateY(-2px);
}


/* =========================================================
   LOGO
   ========================================================= */

.insurer-logo {
    display: block;

    width: 100%;
    max-width: 135px;

    height: 48px;

    object-fit: contain;

    transition: transform var(--transition-normal);
}


.insurer-card:hover .insurer-logo {
    transform: scale(1.02);
}


/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 1200px) {

    .insurers-slider .swiper-slide {
        width: calc(
            (100% - 108px) / 7
        );
    }

}


/* =========================================================
   LARGE TABLET
   ========================================================= */

@media (min-width: 992px) and (max-width: 1199px) {

    .insurers-section {
        padding: 28px 8px;
    }

    .insurers-slider .swiper-slide {
        width: calc(
            (100% - 54px) / 4
        );
    }

}


/* =========================================================
   TABLET
   ========================================================= */

@media (min-width: 768px) and (max-width: 991px) {

    .insurers-section {
        padding: 26px 8px;
    }

    .insurers-heading-wrap {
        gap: 14px;
        margin-bottom: 16px;
    }

    .section-heading-line {
        width: 45px;
        flex-basis: 45px;
    }

    .insurers-slider .swiper-slide {
        width: calc(
            (100% - 24px) / 3
        );
    }

    .insurer-card {
        height: 72px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .insurers-section {
        padding: 24px 8px;
    }

    .insurers-heading-wrap {
        gap: 12px;
        margin-bottom: 14px;
    }

    .section-heading-line {
        width: 30px;
        flex-basis: 30px;
    }

    .insurers-slider .swiper-slide {
        width: calc(
            (100% - 10px) / 2
        );
    }

    .insurer-card {
        height: 68px;

        padding: 8px 12px;

        border-radius: var(--radius-small);
    }

    .insurer-logo {
        max-width: 105px;
        height: 42px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 380px) {

    .section-heading-line {
        width: 24px;
        flex-basis: 24px;
    }

    .insurers-slider .swiper-slide {
        width: calc(
            (100% - 8px) / 2
        );
    }

    .insurer-card {
        height: 64px;
        padding-inline: 8px;
    }

    .insurer-logo {
        max-width: 90px;
        height: 38px;
    }

}

/* ============================
Insurance partners End
==============================*/

/* ============================
Insurance Services Start
==============================*/

/* =========================================================
   Insurance Services
   ========================================================= */

.insurance-services {
    width: 100%;
    padding: 40px 8px;
    background: var(--color-background);
}

.insurance-services__heading {
    margin: 0 0 18px;
    text-align: center;
    color: var(--color-text);
}

.section-heading span {
    color: var(--color-primary);
}


/* =========================================================
   Grid
   ========================================================= */

.insurance-services__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 9px 14px;
    max-width: 1360px;
    margin: 0 auto;
}


/* =========================================================
   Card
   ========================================================= */

.insurance-card {
    display: flex;
    align-items: center;
    gap: 13px;

    padding: 14px 18px;

    color: var(--color-text);
    text-decoration: none;

    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-medium);

    box-shadow: var(--shadow-card);

    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        border-color var(--transition-fast),
        background-color var(--transition-fast);
}


/* =========================================================
   Icon
   ========================================================= */

.insurance-card__icon {
    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--color-primary);
    font-size: 25px;

    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.insurance-card__icon i {
    line-height: 1;
}


/* =========================================================
   Content
   ========================================================= */

.insurance-card__content {
    min-width: 0;
    flex: 1;
}

.insurance-card__title {
    display: block;

    color: var(--color-text);
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: var(--font-weight-semibold);
    line-height: 1.45;

    transition: color var(--transition-fast);
}

.insurance-card__title small {
    display: block;

    margin-top: 1px;

    color: var(--color-text-light);
    font-size: 13px;
    font-weight: var(--font-weight-regular);
    line-height: 1.3;
}


/* =========================================================
   Hover
   ========================================================= */

.insurance-card:hover {
    color: var(--color-text);
    border-color: rgba(10, 8, 128, 0.15);
    background: var(--color-white);

    transform: translateY(-2px);
    box-shadow: var(--shadow-menu);
}

.insurance-card:hover .insurance-card__icon {
    color: var(--color-primary-light);
    transform: scale(1.08);
}

.insurance-card:hover .insurance-card__title {
    color: var(--color-primary);
}



/* =========================================================
   Tablet - Large
   ========================================================= */

@media (max-width: 1100px) {

    .insurance-services {
        padding: 50px 8px;
    }

    .insurance-services__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
    }

    .insurance-card--center {
        grid-column: auto;
    }

    .insurance-card {
        min-height: 68px;
        padding: 10px 12px;
        gap: 10px;
    }

    .insurance-card__icon {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        font-size: 23px;
    }

    .insurance-card__title {
        font-size: 12px;
    }

    .insurance-card__title span{
        font-size: 10px;
    }
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 800px) {

    .insurance-services__heading {
        margin-bottom: 20px;
    }

    .insurance-services__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .insurance-card {
        min-height: 70px;
        padding: 11px;
    }

    .insurance-card__icon {
        flex-basis: 29px;
        width: 29px;
        height: 29px;
        font-size: 22px;
    }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 767px) {

    .insurance-services {
        padding: 40px 8px;
    }

    .insurance-services__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .insurance-card {
        min-height: 68px;
        padding: 10px;
        gap: 9px;
        border-radius: var(--radius-small);
    }

    .insurance-card__icon {
        flex-basis: 28px;
        width: 28px;
        height: 28px;
        font-size: 21px;
    }

}


/* =========================================================
   Small Mobile
   ========================================================= */

@media (max-width: 400px) {

    .insurance-services__grid {
        /* grid-template-columns: 100%; */
        gap: 8px;
    }

    .insurance-card {
        min-height: 62px;
        padding: 10px 12px;
    }

    .insurance-card__icon {
        flex-basis: 30px;
        width: 30px;
        height: 30px;
        font-size: 22px;
    }

    .insurance-card__title {
        font-size: 10px;
    }

    .insurance-card__title small {
        font-size: 8px;
    }
}


/* =========================================================
   Touch Devices
   ========================================================= */

@media (hover: none) {

    .insurance-card:hover {
        transform: none;
        box-shadow: var(--shadow-card);
    }

    .insurance-card:hover .insurance-card__icon {
        transform: none;
    }
}

/* ============================
Insurance Services End
==============================*/


/* ============================
Why Choose Start
==============================*/

/* =========================================================
   Why Choose Us
   ========================================================= */

.why-choose {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 50px 8px;
    background: var(--color-background-soft);
}


/* =========================================================
   Decorative Background
   ========================================================= */

.why-choose::after {
    content: "";

    position: absolute;
    top: 28px;
    right: -5px;

    width: 75px;
    height: 110px;

    opacity: 0.8;
    pointer-events: none;

    background-image: radial-gradient(
        circle,
        var(--color-secondary-light) 1.2px,
        transparent 1.5px
    );

    background-size: 9px 9px;
}


/* =========================================================
   Main Layout
   ========================================================= */

.why-choose__layout {
    position: relative;
    z-index: 1;

    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr);
    align-items: center;

    gap: 55px;

    max-width: var(--container);
    margin: 0 auto;
}


/* =========================================================
   Left Content
   ========================================================= */

.why-choose__content {
    min-width: 0;
}

.why-choose__heading {
    margin: 0 0 17px;

    color: var(--color-text);

    font-size: var(--font-size-section-heading);
    font-weight: var(--font-weight-semibold);
    line-height: var(--line-height-section-heading);
}

.why-choose__brand {
    color: var(--color-primary);
    white-space: nowrap;
}

.why-choose__brand span {
    color: var(--color-secondary);
}


/* =========================================================
   Benefits List
   ========================================================= */

.why-choose__list {
    display: flex;
    flex-direction: column;

    gap: 7px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.why-choose__item {
    display: flex;
    align-items: center;

    gap: 11px;

    color: var(--color-text);

    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: var(--font-weight-medium);
    line-height: 1.5;
}


/* =========================================================
   List Bullet
   ========================================================= */

.why-choose__bullet {
    position: relative;

    flex: 0 0 25px;

    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--color-white);

    border: 1px solid rgba(10, 8, 128, 0.10);

    box-shadow:
        0 3px 10px rgba(10, 8, 128, 0.08);
}

.why-choose__bullet::before {
    content: "";

    position: absolute;

    width: 11px;
    height: 11px;

    border: 2px solid var(--color-primary);

    border-radius: 50%;
}

.why-choose__bullet i {
    display: none;
}


/* =========================================================
   Statistics Card
   ========================================================= */

.why-choose__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    min-height: 192px;

    padding: 0 20px;

    overflow: hidden;

    border-radius: var(--radius-medium);

    background:
        linear-gradient(
            135deg,
            var(--color-primary-light) 0%,
            var(--color-primary) 100%
        );

    box-shadow: var(--shadow-menu);
}


/* =========================================================
   Individual Statistic
   ========================================================= */

.why-choose__stat {
    position: relative;

    display: flex;
    align-items: center;

    gap: 18px;

    padding: 32px 15px;

    color: var(--color-white);
}


/* Vertical divider */

.why-choose__stat:nth-child(odd)::after {
    content: "";

    position: absolute;

    top: 18px;
    right: 0;

    width: 1px;
    height: calc(100% - 36px);

    background: rgba(255, 255, 255, 0.16);
}


/* Horizontal divider */

.why-choose__stat:nth-child(-n + 2)::before {
    content: "";

    position: absolute;

    bottom: 0;
    left: 15px;
    right: 15px;

    height: 1px;

    background: rgba(255, 255, 255, 0.16);
}


/* =========================================================
   Statistic Icon
   ========================================================= */

.why-choose__stat-icon {
    flex: 0 0 43px;

    width: 43px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-white);

    font-size: 36px;
}

.why-choose__stat-icon i {
    line-height: 1;
}


/* =========================================================
   Statistic Text
   ========================================================= */

.why-choose__stat-content {
    min-width: 0;

    display: flex;
    flex-direction: column;
}

.why-choose__stat-content strong {
    display: block;

    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: var(--font-weight-medium);
    line-height: 1.15;
}

.why-choose__stat-content span {
    display: block;

    margin-top: 5px;

    color: rgba(255, 255, 255, 0.95);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--font-weight-medium);
    line-height: 1.4;
}


/* =========================================================
   Hover Effects
   ========================================================= */

.why-choose__item {
    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.why-choose__item:hover {
    color: var(--color-primary);

    transform: translateX(3px);
}

.why-choose__bullet {
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.why-choose__item:hover .why-choose__bullet {
    border-color: rgba(10, 8, 128, 0.25);

    box-shadow:
        0 4px 14px rgba(10, 8, 128, 0.14);
}


/* =========================================================
   Large Desktop
   ========================================================= */

@media (max-width: 1200px) {

    .why-choose__layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);

        gap: 35px;
    }

    .why-choose__stats {
        padding: 0 15px;
    }

    .why-choose__stat {
        gap: 13px;
        padding: 20px 12px;
    }

    .why-choose__stat-icon {
        flex-basis: 40px;
        width: 40px;
        font-size: 32px;
    }

    .why-choose__stat-content strong {
        font-size: 23px;
    }
}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 767px) {

    .why-choose {
        padding: 40px 8px;
    }

    .why-choose__layout {
        grid-template-columns: 100%;
        gap: 30px;
        max-width: 700px;
    }

    .why-choose__heading {
        margin-bottom: 20px;
    }

    .why-choose__list {
        width: fit-content;
        text-align: left;
    }

    .why-choose__stats {
        min-height: 190px;
    }
}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 600px) {

    .why-choose::after {
        width: 50px;
        height: 80px;

        background-size: 7px 7px;
    }

    .why-choose__layout {
        gap: 25px;
    }

    .why-choose__heading {
        margin-bottom: 16px;
    }

    .why-choose__list {
        gap: 8px;
    }

    .why-choose__item {
        gap: 9px;
        font-size: 10px;
    }

    .why-choose__bullet {
        flex-basis: 23px;

        width: 23px;
        height: 23px;
    }

    .why-choose__bullet::before {
        width: 9px;
        height: 9px;
    }


    /* Statistics */

    .why-choose__stats {
        grid-template-columns: 1fr 1fr;

        min-height: auto;

        padding: 0 8px;

        border-radius: var(--radius-medium);
    }

    .why-choose__stat {
        min-height: 105px;

        gap: 9px;

        padding: 16px 9px;
    }

    .why-choose__stat:nth-child(odd)::after {
        top: 15px;
        height: calc(100% - 30px);
    }

    .why-choose__stat:nth-child(-n + 2)::before {
        left: 8px;
        right: 8px;
    }

    .why-choose__stat-icon {
        flex: 0 0 32px;

        width: 32px;
        height: 40px;

        font-size: 27px;
    }

    .why-choose__stat-content strong {
        font-size: 19px;
    }

    .why-choose__stat-content span {
        margin-top: 4px;

        font-size: 8px;
    }
}


/* =========================================================
   Small Mobile
   ========================================================= */

@media (max-width: 400px) {

    .why-choose__item {
        align-items: flex-start;

        font-size: 9px;
    }

    .why-choose__bullet {
        margin-top: 1px;
    }

    .why-choose__stats {
        grid-template-columns: 1fr;
    }

    .why-choose__stat {
        min-height: 75px;

        padding: 12px 15px;
    }

    .why-choose__stat:nth-child(odd)::after {
        display: none;
    }

    .why-choose__stat:nth-child(-n + 1)::before {
        display: block;
    }

    .why-choose__stat:nth-child(4)::before {
        content: "";

        position: absolute;

        top: 0;
        left: 8px;
        right: 8px;

        height: 1px;

        background: rgba(255, 255, 255, 0.16);
    }

    .why-choose__stat-icon {
        flex-basis: 35px;
        width: 35px;

        font-size: 27px;
    }

    .why-choose__stat-content strong {
        font-size: 20px;
    }

    .why-choose__stat-content span {
        font-size: 9px;
    }
}


/* =========================================================
   Touch Devices
   ========================================================= */

@media (hover: none) {

    .why-choose__item:hover {
        transform: none;
        color: var(--color-text);
    }
}

/* ============================
Why Choose End
==============================*/


/* ============================
How works Start
==============================*/

/* =========================================
   HOW IT WORKS
========================================= */

.how-it-works {
    width: 100%;
    padding: 50px 8px;
    background: var(--color-background);
    overflow: hidden;
}


/* -----------------------------------------
   Section Heading
----------------------------------------- */

.how-it-works__heading {
    margin: 0 0 40px;
    text-align: center;
    color: var(--color-text);
}

.how-it-works__heading span {
    color: var(--color-primary);
}


/* -----------------------------------------
   Steps Wrapper
----------------------------------------- */

.how-it-works__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    gap: 25px;
}


/* -----------------------------------------
   Individual Step
----------------------------------------- */

.how-it-works__step {
    position: relative;
    min-width: 0;
}


/* -----------------------------------------
   Illustration
----------------------------------------- */

.how-it-works__visual {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 22px;
}

.how-it-works__illustration {
    width: 100px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--color-border-light);
    border-radius: 50%;

    background: var(--color-background-soft);

    color: var(--color-primary);

    box-shadow: 0 5px 20px rgba(10, 8, 128, 0.2);
}

.how-it-works__illustration svg {
    width: 62px;
    height: 62px;
}


/* -----------------------------------------
   Number Badge
----------------------------------------- */

.how-it-works__number {
    position: absolute;
    top: -4px;
    right: -5px;

    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--color-primary);
    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: var(--font-weight-bold);

    line-height: 1;

    box-shadow: 0 2px 8px rgba(10, 8, 128, 0.15);
}


/* -----------------------------------------
   Content
----------------------------------------- */

.how-it-works__content {
    max-width: 190px;
    margin: 0 auto;
    text-align: center;
}

.how-it-works__title {
    margin: 0 0 10px;

    color: var(--color-text);

    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: var(--font-weight-semibold);

    line-height: 1.4;
}

.how-it-works__description {
    margin: 0;

    color: var(--color-text-light);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--font-weight-regular);

    line-height: 1.65;
}


/* -----------------------------------------
   Desktop Connector
----------------------------------------- */

.how-it-works__connector {
    position: absolute;

    top: 49px;
    right: -27px;

    width: 55px;
    height: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: none;
}

.how-it-works__connector span {
    width: 40px;
    height: 1px;

    border-top: 1px dashed var(--color-border);
}

.how-it-works__connector i {
    position: relative;

    width: 8px;
    height: 8px;

    margin-left: -1px;

    border-top: 1.5px solid var(--color-primary);
    border-right: 1.5px solid var(--color-primary);

    transform: rotate(45deg);
}


/* -----------------------------------------
   Large Desktop
----------------------------------------- */

@media (min-width: 1200px) {

    .how-it-works__steps {
        gap: 40px;
    }

    .how-it-works__content {
        max-width: 210px;
    }

    .how-it-works__connector {
        right: -40px;
        width: 70px;
    }

}


/* -----------------------------------------
   Tablet
----------------------------------------- */

@media (max-width: 991px) {

    .how-it-works__heading {
        margin-bottom: 45px;
    }

    .how-it-works__steps {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 45px;
        column-gap: 35px;
    }

    .how-it-works__content {
        max-width: 100%;
    }

    /*
     * Hide connectors on tablet.
     * The 2-column layout makes the original
     * horizontal connectors awkward.
     */
    .how-it-works__connector {
        display: none;
    }

}


/* -----------------------------------------
   Mobile
----------------------------------------- */

@media (max-width: 767px) {

    .how-it-works {
        padding: 40px 8px;
    }

    .how-it-works__heading {
        margin-bottom: 38px;
    }

    .how-it-works__steps {
        grid-template-columns: 100%;
        gap: 0;
    }

    .how-it-works__step {
        display: grid;
        grid-template-columns: 90px 1fr;
        column-gap: 22px;

        max-width: 500px;
        width: 100%;

        margin: 0 auto;
        padding-bottom: 35px;
    }

    .how-it-works__step:last-child {
        padding-bottom: 0;
    }

    .how-it-works__visual {
        width: 80px;
        height: 80px;
        margin: 0;
    }

    .how-it-works__illustration {
        width: 80px;
        height: 80px;
    }

    .how-it-works__illustration svg {
        width: 52px;
        height: 52px;
    }

    .how-it-works__number {
        width: 22px;
        height: 22px;

        top: -3px;
        right: -3px;

        font-size: 10px;
    }

    .how-it-works__content {
        width: 100%;
        align-self: center;
        text-align: left;
    }

    .how-it-works__title {
        margin-bottom: 6px;
        font-size: var(--font-size-small);
    }

    .how-it-works__description {
        font-size: 12px;
        line-height: 1.6;
    }

    /*
     * Vertical connector on mobile
     */
    .how-it-works__step:not(:last-child)::after {
        content: "";
        position: absolute;

        left: 40px;
        bottom: 5px;

        width: 1px;
        height: 28px;

        border-left: 1px dashed var(--color-border);
    }

}


/* -----------------------------------------
   Small Mobile
----------------------------------------- */

@media (max-width: 480px) {

    .how-it-works__heading {
        margin-bottom: 32px;
    }

    .how-it-works__step {
        grid-template-columns: 75px 1fr;
        column-gap: 18px;
        padding-bottom: 30px;
    }

    .how-it-works__visual,
    .how-it-works__illustration {
        width: 70px;
        height: 70px;
    }

    .how-it-works__illustration svg {
        width: 46px;
        height: 46px;
    }

    .how-it-works__number {
        width: 21px;
        height: 21px;
        font-size: 9px;
    }

    .how-it-works__step:not(:last-child)::after {
        left: 35px;
    }

}

/* ============================
How works End
==============================*/


/* ============================
Testimonials Start
==============================*/

/* =========================================
   CUSTOMER TESTIMONIALS
========================================= */

.customer-testimonials {
    width: 100%;
    padding: 50px 8px;

    background: var(--color-background-soft);

    overflow: hidden;
}


/* =========================================
   HEADING
========================================= */

.customer-testimonials__heading {
    margin: 0 0 28px;

    text-align: center;

    color: var(--color-text);
}

.customer-testimonials__heading span {
    color: var(--color-primary);
}


/* =========================================
   SLIDER WRAPPER
========================================= */

.customer-testimonials__slider-wrap {
    position: relative;

    display: flex;
    align-items: center;

    width: 100%;
}


/* =========================================
   SWIPER
========================================= */

.customer-testimonials__swiper {
    width: 100%;
    margin: 0 auto;

    overflow: hidden;
}

.customer-testimonials__swiper .swiper-wrapper {
    align-items: stretch;
}

.customer-testimonials__swiper .swiper-slide {
    height: auto;

    display: flex;
}


/* =========================================
   TESTIMONIAL CARD
========================================= */

.testimonial-card {
    position: relative;

    width: 100%;

    min-height: 170px;

    padding: 18px 20px;

    background: var(--color-white);

    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-medium);

    box-shadow: var(--shadow-card);

    transition:
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(10, 8, 128, 0.11);
}


/* =========================================
   QUOTE
========================================= */

.testimonial-card__quote {
    position: absolute;

    top: 14px;
    left: 18px;

    width: 30px;
    height: 24px;

    pointer-events: none;
}

.testimonial-card__quote svg {
    display: block;

    width: 100%;
    height: 100%;
}


/* =========================================
   RATING
========================================= */

.testimonial-card__rating {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 2px;

    margin-bottom: 10px;
}

.testimonial-card__rating span {
    color: #ffd700;

    font-size: 20px;
    line-height: 1;
}


/* =========================================
   TESTIMONIAL TEXT
========================================= */

.testimonial-card__text {
    margin: 0 0 15px;

    color: var(--color-text);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: var(--font-weight-regular);

    line-height: 1.65;
}


/* =========================================
   USER
========================================= */

.testimonial-card__user {
    display: flex;
    align-items: center;

    gap: 10px;
}

.testimonial-card__avatar {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    overflow: hidden;

    border-radius: 50%;

    background: var(--color-background-soft);
}

.testimonial-card__avatar svg {
    display: block;

    width: 100%;
    height: 100%;
}


/* =========================================
   USER INFO
========================================= */

.testimonial-card__user-info {
    min-width: 0;
}

.testimonial-card__user-info h3 {
    margin: 0 0 3px;

    color: var(--color-text);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--font-weight-semibold);

    line-height: 1.3;
}

.testimonial-card__user-info span {
    display: block;

    color: var(--color-text-light);

    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: var(--font-weight-regular);

    line-height: 1.3;
}


/* =========================================
   NAVIGATION BUTTONS
========================================= */

.customer-testimonials__nav {
    position: absolute;
    z-index: 5;

    top: 50%;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 1px solid var(--color-border-light);
    border-radius: 50%;

    background: var(--color-white);
    color: var(--color-primary);

    box-shadow: var(--shadow-card);

    cursor: pointer;

    transform: translateY(-50%);

    transition:
        background var(--transition-fast),
        color var(--transition-fast),
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.customer-testimonials__nav:hover {
    background: var(--color-primary);
    color: var(--color-white);

    border-color: var(--color-primary);

    box-shadow:
        0 8px 20px rgba(10, 8, 128, 0.15);
}

.customer-testimonials__nav:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
}

.customer-testimonials__nav svg {
    display: block;
}

.customer-testimonials__nav--prev {
    left: -52px;
}

.customer-testimonials__nav--next {
    right: -52px;
}


/* =========================================
   PAGINATION
========================================= */

.customer-testimonials__pagination {
    position: static !important;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 6px;

    margin-top: 12px;
}

.customer-testimonials__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;

    margin: 0 !important;

    opacity: 1;

    background: #d8dbe7;

    transition:
        width var(--transition-fast),
        background var(--transition-fast);
}

.customer-testimonials__pagination .swiper-pagination-bullet-active {
    width: 9px;
    height: 9px;

    background: var(--color-primary);
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1200px) {

    .customer-testimonials {
        padding: 50px 8px;
    }

    .customer-testimonials__heading {
        margin-bottom: 30px;
    }

    .testimonial-card {
        min-height: 170px;

        padding: 40px 20px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

    .customer-testimonials__nav--prev {
        left: -18px;
    }

    .customer-testimonials__nav--next {
        right: -18px;
    }

}


/* =========================================
   SMALL TABLET
========================================= */

@media (max-width: 991px) {

    .customer-testimonials {
        padding: 50px 8px;
    }

    .customer-testimonials__heading {
        margin-bottom: 25px;
    }

    .customer-testimonials__slider-wrap {
        padding: 0 25px;
    }

    .customer-testimonials__nav {
        width: 34px;
        height: 34px;
    }

    .customer-testimonials__nav--prev {
        left: 0;
    }

    .customer-testimonials__nav--next {
        right: 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .customer-testimonials {
        padding: 40px 8px;
    }

    .customer-testimonials__heading {
        margin-bottom: 24px;
    }

    .customer-testimonials__slider-wrap {
        padding: 0 8px;
    }

    .testimonial-card {
        min-height: 160px;
        padding: 30px 20px;
    }

    .testimonial-card__text {
        font-size: 12px;
        line-height: 1.6;
    }

    .testimonial-card__rating {
        margin-bottom: 9px;
    }

    .testimonial-card__rating span {
        font-size: 15px;
    }

    /*
     * Keep arrows visible on mobile,
     * but place them beside the slider.
     */
    .customer-testimonials__nav {
        width: 32px;
        height: 32px;

        background: var(--color-white);
    }

    .customer-testimonials__nav--prev {
        left: -3px;
    }

    .customer-testimonials__nav--next {
        right: -3px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .customer-testimonials {
        padding: 40px 8px;
    }

    .customer-testimonials__heading {
        margin-bottom: 22px;
    }

    .customer-testimonials__slider-wrap {
        padding: 0 12px;
    }

    .testimonial-card {
        min-height: 160px;
        padding: 20px;
    }

    .testimonial-card__quote {
        top: 12px;
        left: 14px;
    }

    .testimonial-card__rating {
        margin-bottom: 8px;
    }

    .testimonial-card__text {
        margin-bottom: 13px;

        font-size: 12px;
    }

    .testimonial-card__avatar {
        width: 38px;
        height: 38px;

        flex-basis: 38px;
    }

    .customer-testimonials__nav {
        width: 30px;
        height: 30px;
    }

    .customer-testimonials__nav svg {
        width: 16px;
        height: 16px;
    }

}

/* ============================
Testimonials End
==============================*/


/* ============================
FAQ start
==============================*/

/* =========================================
   FAQ SECTION
========================================= */

.faq-section {
    width: 100%;

    padding: 50px 8px;

    background: var(--color-background);
}


/* =========================================
   FAQ HEADER
========================================= */

.faq-section__header {
    max-width: 700px;

    margin: 0 auto 42px;

    text-align: center;
}

.faq-section__eyebrow {
    margin: 0 0 8px;

    color: var(--color-secondary);

    font-family: var(--font-primary);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-semibold);

    line-height: 1.4;
}

.faq-section__heading {
    margin: 0 0 12px;

    color: var(--color-text);
}

.faq-section__heading span {
    color: var(--color-primary);
}

.faq-section__intro {
    max-width: 620px;

    margin: 0 auto;

    color: var(--color-text-light);

    font-family: var(--font-primary);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-regular);

    line-height: 1.7;
}


/* =========================================
   FAQ LIST
========================================= */

.faq-section__list {
    max-width: 900px;

    margin: 0 auto;

    border-top: 1px solid var(--color-border-light);
}


/* =========================================
   FAQ ITEM
========================================= */

.faq-item {
    border-bottom: 1px solid var(--color-border-light);

    transition:
        background var(--transition-fast);
}

.faq-item.is-active {
    background: var(--color-background-active);
}


/* =========================================
   QUESTION
========================================= */

.faq-item__question {
    width: 100%;

    min-height: 68px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 18px 20px;

    border: 0;

    background: transparent;

    color: var(--color-text);

    font-family: var(--font-primary);
    font-size: var(--font-size-small);
    font-weight: var(--font-weight-semibold);

    line-height: 1.5;

    text-align: left;

    cursor: pointer;
}

.faq-item__question:hover {
    color: var(--color-primary);
}

.faq-item__question:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
}


/* =========================================
   FAQ ICON
========================================= */

.faq-item__icon {
    flex: 0 0 32px;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--color-border-light);
    border-radius: 50%;

    background: var(--color-white);

    color: var(--color-primary);

    transition:
        transform var(--transition-normal),
        background var(--transition-normal),
        color var(--transition-normal);
}

.faq-item__icon svg {
    width: 16px;
    height: 16px;

    transition:
        transform var(--transition-normal);
}

.faq-item.is-active .faq-item__icon {
    background: var(--color-primary);

    color: var(--color-white);
}

.faq-item.is-active .faq-item__icon svg {
    transform: rotate(180deg);
}


/* =========================================
   FAQ ANSWER
========================================= */

.faq-item__answer {
    display: grid;

    grid-template-rows: 0fr;

    transition:
        grid-template-rows var(--transition-normal);
}

.faq-item__answer > div {
    overflow: hidden;
}

.faq-item.is-active .faq-item__answer {
    grid-template-rows: 1fr;
}

.faq-item__answer p {
    max-width: 780px;

    margin: 0;

    padding: 0 70px 22px 20px;

    color: var(--color-text-light);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: var(--font-weight-regular);

    line-height: 1.75;
}


/* =========================================
   FAQ RESPONSIVE
========================================= */

@media (max-width: 767px) {

    .faq-section {
        padding: 40px 8px;
    }

    .faq-section__header {
        margin-bottom: 30px;
    }

    .faq-section__intro {
        font-size: 13px;
    }

    .faq-item__question {
        min-height: 62px;

        padding: 16px;

        font-size: 13px;
    }

    .faq-item__icon {
        flex-basis: 28px;

        width: 28px;
        height: 28px;
    }

    .faq-item__answer p {
        padding: 0 16px 20px;

        font-size: 12px;
        line-height: 1.7;
    }

}


@media (max-width: 480px) {

    .faq-section {
        padding: 40px 8px;
    }

    .faq-section__eyebrow {
        font-size: 12px;
    }

    .faq-item__question {
        gap: 15px;

        padding: 15px 12px;

        font-size: 12px;
    }

    .faq-item__icon {
        flex-basis: 26px;

        width: 26px;
        height: 26px;
    }

    .faq-item__icon svg {
        width: 14px;
        height: 14px;
    }

    .faq-item__answer p {
        padding: 0 12px 18px;

        font-size: 11px;
    }

}

/* ============================
FAQ End
==============================*/


/* ============================
Footer Start
==============================*/

/* =========================================
   SITE FOOTER
========================================= */

.site-footer {
    width: 100%;
}


/* =========================================
   ACCESSIBILITY
========================================= */

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


/* =========================================
   CTA WRAPPER
========================================= */

.site-footer__cta-wrapper {
    position: relative;
    z-index: 2;

    padding: 30px 8px 20px;

    background: var(--color-white);
}


/* =========================================
   CTA BANNER
========================================= */

.site-footer__cta {
    position: relative;

    min-height: 110px;

    display: flex;
    align-items: center;

    gap: 28px;

    padding: 20px 42px;

    overflow: hidden;

    border-radius: var(--radius-medium);

    background:
        linear-gradient(
            110deg,
            var(--color-primary-dark) 0%,
            var(--color-primary) 100%
        );

    box-shadow: var(--shadow-card);
}


/* =========================================
   CTA DECORATIVE PATTERN
========================================= */

.site-footer__cta-pattern {
    position: absolute;

    top: 0;
    right: 20%;

    width: 55%;
    height: 100%;

    pointer-events: none;

    opacity: 0.9;
}

.site-footer__cta-pattern svg {
    display: block;

    width: 100%;
    height: 100%;
}


/* =========================================
   CTA ICON
========================================= */

.site-footer__cta-icon {
    position: relative;
    z-index: 1;

    flex: 0 0 82px;

    width: 82px;
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-white);
}

.site-footer__cta-icon svg {
    display: block;

    width: 72px;
    height: 72px;
}


/* =========================================
   CTA CONTENT
========================================= */

.site-footer__cta-content {
    position: relative;
    z-index: 1;

    flex: 1;
}

.site-footer__cta-eyebrow {
    margin: 0 0 5px;

    color: rgba(255, 255, 255, 0.85);

    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: var(--font-weight-medium);

    line-height: 1.5;
}

.site-footer__cta-title {
    margin: 0;

    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: 24px;
    font-weight: var(--font-weight-semibold);

    line-height: 1.3;
}


/* =========================================
   CTA BUTTON
========================================= */

.site-footer__cta-button {
    position: relative;
    z-index: 1;

    flex: 0 0 auto;

    min-width: 210px;
    min-height: 54px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 22px;

    padding: 12px 18px;

    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-medium);

    background: var(--color-white);
    color: var(--color-primary);

    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: var(--font-weight-semibold);

    text-decoration: none;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.08);

    transition:
        background var(--transition-normal),
        color var(--transition-normal),
        transform var(--transition-normal),
        box-shadow var(--transition-normal);
}

.site-footer__cta-button:hover {
    background: var(--color-secondary);
    color: var(--color-white);

    border-color: var(--color-secondary);

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(244, 119, 33, 0.2);
}

.site-footer__cta-button svg {
    width: 22px;
    height: 22px;

    flex: 0 0 auto;
}


/* =========================================
   MAIN FOOTER
========================================= */

.site-footer__main {
    position: relative;

    padding: 40px 8px 30px;

    background:
        linear-gradient(
            110deg,
            var(--color-primary-dark) 0%,
            var(--color-primary) 100%
        );

    color: var(--color-white);
}


/* =========================================
   FOOTER GRID
========================================= */

.site-footer__grid {
    display: grid;

    grid-template-columns:
        1.35fr
        1fr
        1fr
        1fr
        1.35fr;

    gap: 45px;
}


/* =========================================
   BRAND
========================================= */

.site-footer__brand {
    padding-right: 20px;

    border-right: 1px solid rgba(255, 255, 255, 0.10);
}

.site-footer__logo {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--color-white);
    font-family: var(--font-primary);
    font-size: 25px;
    font-weight: var(--font-weight-bold);
    line-height: 1;
    text-decoration: none;
    max-width: 200px;
}

.site-footer__logo span {
    color: var(--color-secondary);
}

.site-footer__description {
    max-width: 245px;

    margin: 0 0 15px;

    color: rgba(255, 255, 255, 0.78);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--font-weight-regular);

    line-height: 1.65;
}


/* =========================================
   SOCIAL
========================================= */

.site-footer__social {
    display: flex;
    align-items: center;

    gap: 9px;

    margin-bottom: 18px;
}

.site-footer__social-link {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--color-white);

    text-decoration: none;

    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.site-footer__social-link:hover {
    color: var(--color-secondary);

    transform: translateY(-2px);
}

.site-footer__social-link svg {
    width: 17px;
    height: 17px;

    display: block;
}


/* =========================================
   COPYRIGHT
========================================= */

.site-footer__copyright {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: var(--font-weight-regular);

    line-height: 1.5;
}


/* =========================================
   FOOTER COLUMNS
========================================= */

.site-footer__column {
    min-width: 0;
}

.site-footer__title {
    margin: 0 0 10px;

    color: var(--color-white);

    font-family: var(--font-primary);
    font-size: 20px;
    font-weight: var(--font-weight-semibold);

    line-height: 1.4;
}


/* =========================================
   FOOTER LINKS
========================================= */

.site-footer__links {
    display: flex;
    flex-direction: column;

    gap: 5px;

    padding: 0;
    margin: 0;

    list-style: none;
}

.site-footer__links a {
    display: inline-block;

    color: rgba(255, 255, 255, 0.72);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--font-weight-regular);

    line-height: 1.5;

    text-decoration: none;

    transition:
        color var(--transition-fast),
        padding-left var(--transition-fast);
}

.site-footer__links a:hover {
    color: var(--color-white);

    padding-left: 3px;
}


/* =========================================
   NEWSLETTER
========================================= */

.site-footer__newsletter {
    min-width: 0;
}

.site-footer__newsletter-text {
    max-width: 230px;

    margin: 0 0 12px;

    color: rgba(255, 255, 255, 0.72);

    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: var(--font-weight-regular);

    line-height: 1.55;
}


/* =========================================
   NEWSLETTER FORM
========================================= */

.site-footer__newsletter-form {
    width: 100%;

    max-width: 225px;

    display: flex;

    margin: 0;
}

.site-footer__newsletter-form input {
    flex: 1;
    min-width: 0;

    height: 34px;

    padding: 0 12px;

    border: 1px solid var(--color-border-light);
    border-right: 0;

    border-radius:
        var(--radius-small)
        0
        0
        var(--radius-small);

    outline: none;

    background: var(--color-white);
    color: var(--color-text);

    font-family: var(--font-primary);
    font-size: 10px;
    font-weight: var(--font-weight-regular);

    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast);
}

.site-footer__newsletter-form input::placeholder {
    color: var(--color-text-muted);
}

.site-footer__newsletter-form input:focus {
    border-color: var(--color-primary-light);

    box-shadow:
        0 0 0 2px rgba(10, 8, 128, 0.12);
}

.site-footer__newsletter-form button {
    width: 40px;
    height: 34px;

    flex: 0 0 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;

    border: 0;

    border-radius:
        0
        var(--radius-small)
        var(--radius-small)
        0;

    background: var(--color-primary-light);
    color: var(--color-white);

    cursor: pointer;

    transition:
        background var(--transition-fast);
}

.site-footer__newsletter-form button:hover {
    background: var(--color-secondary);
}

.site-footer__newsletter-form button svg {
    width: 17px;
    height: 17px;
}


/* =========================================
   LEGAL
========================================= */

.site-footer__legal {
    display: flex;
    align-items: center;

    gap: 12px;

    margin-top: 17px;
    padding-top: 10px;

    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.site-footer__legal a {
    color: rgba(255, 255, 255, 0.72);

    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: var(--font-weight-regular);

    text-decoration: none;

    transition: color var(--transition-fast);
}

.site-footer__legal a:hover {
    color: var(--color-white);
}

.site-footer__legal span {
    width: 1px;
    height: 11px;

    background: rgba(255, 255, 255, 0.35);
}


/* =========================================
   LARGE DESKTOP
========================================= */

@media (min-width: 1200px) {

    .site-footer__cta {
        padding-left: 42px;
        padding-right: 42px;
    }

    .site-footer__grid {
        gap: 55px;
    }

}


/* =========================================
   TABLET / LAPTOP
========================================= */

@media (max-width: 1199px) {

    .site-footer__grid {
        grid-template-columns:
            1.4fr
            1fr
            1fr
            1fr;

        gap: 35px;
    }

    /*
     * Newsletter moves onto its own row
     */
    .site-footer__newsletter {
        grid-column: 2 / -1;
        padding-top: 5px;
    }

    .site-footer__brand {
        grid-row: span 2;
    }

    .site-footer__cta {
        padding-left: 30px;
        padding-right: 30px;
    }

}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .site-footer__cta-wrapper {
        padding-top: 25px;
    }

    .site-footer__cta {
        min-height: auto;

        gap: 20px;

        padding: 20px 24px;
    }

    .site-footer__cta-icon {
        flex-basis: 65px;

        width: 65px;
        height: 65px;
    }

    .site-footer__cta-icon svg {
        width: 58px;
        height: 58px;
    }

    .site-footer__cta-title {
        font-size: 20px;
    }

    .site-footer__cta-eyebrow {
        font-size: 11px;
    }

    .site-footer__cta-button {
        min-width: 180px;
        min-height: 48px;

        gap: 12px;

        font-size: 12px;
    }

    .site-footer__main {
        padding-top: 30px;
    }

    .site-footer__grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 30px;
    }

    .site-footer__brand {
        grid-row: auto;

        padding-right: 25px;
    }

    .site-footer__newsletter {
        grid-column: auto;

        padding-top: 0;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    .site-footer__cta-wrapper {
        padding: 20px 8px 10px;
    }

    .site-footer__cta {
        flex-wrap: wrap;

        padding: 22px 20px;

        gap: 15px;
    }

    .site-footer__cta-icon {
        flex-basis: 58px;

        width: 58px;
        height: 58px;
    }

    .site-footer__cta-icon svg {
        width: 54px;
        height: 54px;
    }

    .site-footer__cta-content {
        flex: 1;
        min-width: 180px;
    }

    .site-footer__cta-eyebrow {
        font-size: 10px;
    }

    .site-footer__cta-title {
        font-size: 18px;
    }

    .site-footer__cta-button {
        width: 100%;
        min-width: 0;

        min-height: 46px;
    }


    /* Footer */

    .site-footer__main {
        padding: 40px 8px 20px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;

        gap: 32px 25px;
    }

    .site-footer__brand {
        grid-column: 1 / -1;

        padding-right: 0;
        padding-bottom: 22px;

        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .site-footer__description {
        max-width: 380px;
    }

    .site-footer__newsletter {
        grid-column: 1 / -1;

        padding-top: 5px;
    }

    .site-footer__newsletter-form {
        max-width: 100%;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .site-footer__cta {
        padding: 20px 16px;
    }

    .site-footer__cta-pattern {
        display: none;
    }

    .site-footer__cta-content {
        min-width: 0;
    }

    .site-footer__cta-title {
        font-size: 17px;
    }

    .site-footer__cta-eyebrow {
        font-size: 9px;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .site-footer__brand,
    .site-footer__newsletter {
        grid-column: auto;
    }

    .site-footer__column {
        padding-bottom: 5px;
    }

    .site-footer__newsletter-form {
        max-width: 100%;
    }

    .site-footer__legal {
        justify-content: center;
    }

}

/* ============================
Footer End
==============================*/