/* Hero Banner Section */
.global_banner {
    position: relative;
    background: url('/web_static/get_your_solution/banner.webp') no-repeat center center;
    background-size: cover;
    height: 360px;
    display: flex;
    align-items: center;
    color: #fff;
}
.global_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(10, 46, 105, 0.85) 0%, rgba(10, 46, 105, 0.5) 60%, rgba(10, 46, 105, 0.2) 100%);
    z-index: 1;
}
.global_banner .container {
    position: relative;
    z-index: 2;
}
.global_banner h1 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 16px;
    color: #fff;
    animation: fadeInLeft 1s both;
    letter-spacing: 4px;
}
.global_banner p {
    font-size: 15px;
    line-height: 1.8;
    max-width: 600px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInLeft 1s 0.2s both;
}
.global_banner .btn-custom {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #ffffff;
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: fadeInLeft 1s 0.4s both;
}
.global_banner .btn-custom:hover {
    color: #eec31b;
}
.global_banner .btn-custom .arrow-img {
    width: 20px;
    height: 20px;
    margin-left: 14px;
    transition: transform 0.3s ease;
}
.global_banner .btn-custom:hover .arrow-img {
    transform: translateX(6px);
}

/* Keyframes for animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 767px) {
    .global_banner {
        height: 320px;
        text-align: center;
    }
    .global_banner h1 {
        font-size: 28px;
    }
    .global_banner p {
        font-size: 13px;
    }
}

/* Form Customization Styles */
.get-your-solution-page {
    background-color: #f3f6fa;
    padding-bottom: 0;
}

.solution_form_container {
    max-width: 960px;
    margin: 50px auto 50px auto;
    padding: 0 15px;
}

.solution_form_card {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px 24px;
    box-shadow: 0 15px 45px rgba(0, 42, 102, 0.04);
}

.solution_form_title {
    color: #002a66;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.solution_form_grid_3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 10px;
    margin-bottom: 16px;
}

.form_group_new {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form_label_new {
    font-size: 13px;
    font-weight: 500;
    color: #1a2a44;
    margin-bottom: 0;
}

.required_star {
    color: #e53e3e;
    margin-left: 2px;
}

.form_control_new {
    background: #f1f4f9;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 0 14px;
    font-size: 14px;
    color: #2d3748;
    transition: all 0.3s ease;
    width: 100%;
    height: 34px;
    line-height: 34px;
    box-sizing: border-box;
}

.form_control_new::placeholder {
    color: #a0aec0;
}

.form_control_new:focus {
    border-color: rgba(0, 42, 102, 0.3);
    background: #ffffff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 42, 102, 0.08);
}

.select_wrapper_new {
    position: relative;
    background: #f1f4f9;
    border: 1px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 34px;
}

.select_wrapper_new:focus-within {
    border-color: rgba(0, 42, 102, 0.3);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(0, 42, 102, 0.08);
}

.select_new {
    appearance: none;
    -webkit-appearance: none;
    padding: 0 25px 0 10px;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    width: 100%;
    height: 100%;
    line-height: 34px;
    font-size: 14px;
    color: #2d3748;
    cursor: pointer;
    box-sizing: border-box;
}

.select_wrapper_new::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 5px 0 5px;
    border-color: #718096 transparent transparent transparent;
    pointer-events: none;
}

/* Horizontal radio/checkbox rows */
.form_group_full {
    grid-column: span 3;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.checkbox_horizontal_group {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px 20px;
}

.circle_checkbox_label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 0;
}

.circle_checkbox_input {
    display: none;
}

.custom_circle {
    width: 16px;
    height: 16px;
    border: 1.5px solid #cbd5e0;
    border-radius: 50%;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    transition: all 0.25s ease;
    background: #ffffff;
    margin-top: 2px;
}

.circle_checkbox_input:checked + .custom_circle {
    border-color: #002a66;
    background: #002a66;
}

.label_text {
    font-size: 13px;
    line-height: 1.4;
    color: #4a5568;
    font-weight: 400;
    transition: color 0.25s ease;
}

.circle_checkbox_input:checked ~ .label_text {
    color: #002a66;
    font-weight: 500;
}

.textarea_new {
    height: 72px;
    padding: 10px 14px;
    line-height: 1.6;
    resize: vertical;
}

.solution_form_submit_section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

.solution_submit_btn {
    width: 220px;
    background: #ffffff;
    color: #002a66;
    border: 1.5px solid #002a66;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 42, 102, 0.03);
}

.solution_submit_btn:hover {
    background: #002a66;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 42, 102, 0.15);
    transform: translateY(-1px);
}

.solution_disclaimer {
    font-size: 12px;
    color: #a0aec0;
    text-align: center;
    line-height: 1.5;
    font-weight: 300;
}

@media (max-width: 991px) {
    .solution_form_card {
        padding: 40px 30px;
    }
    .solution_form_grid_3 {
        grid-template-columns: 1fr 1fr;
    }
    .checkbox_horizontal_group {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .solution_form_grid_3 {
        grid-template-columns: 1fr;
    }
    .checkbox_horizontal_group {
        grid-template-columns: 1fr;
    }
}

/* What You Get Section */
.what_you_get_section {
    background-color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.what_you_get_section .tabs_pre_title {
    color: #8193b7;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 60px auto 16px auto;
    text-align: center;
}

.what_you_get_section .section_title {
    color: #002a66;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.what_you_get_section .yellow_dot {
    width: 18px;
    height: 18px;
    background: url('/web_static/scenario/accent_dot.webp') no-repeat center center;
    background-size: contain;
    margin: 20px auto 24px auto;
}

.what_you_get_section .section_subtitle {
    color: #556070;
    font-size: 15px;
    line-height: 1.8;
    max-width: 760px;
    margin: 0 auto 50px auto;
    font-weight: 400;
}

.step_cards_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 960px;
    margin: 0 auto;
    letter-spacing: 1px;
}

.step_card {
    background: #f0f7fc;
    border-radius: 20px;
    padding: 24px 28px;
    flex: 1;
    max-width: 270px;
    height: 145px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: left;
    transition: all 0.3s ease;
}

.step_card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 42, 102, 0.04);
}

.step_num {
    color: #8193b7;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    margin-top: -8px;
    margin-bottom: 12px;
}

.step_text {
    color: #2d4b7b;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 0;
}

.step_arrow {
    color: #002a66;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

.bottom_tabs_nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0 auto 40px auto;
    width: fit-content;
    max-width: 100%;
    border-bottom: 2px solid #edf2f7;
    padding-bottom: 0;
    position: relative;
}

.tab_item {
    color: #718096;
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    padding-bottom: 12px;
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.tab_item:hover {
    color: #002a66;
    text-decoration: none;
}

.tab_item.active {
    color: #002a66;
    font-weight: 500;
    transition: color 0.3s ease;
}

.tab_slider_line {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 2.5px;
    background-color: #ffc800;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0;
}

.bottom_tabs_nav:hover .tab_item.active:not(:hover) {
    color: #718096;
    font-weight: 400;
}

.bottom_cta_wrapper {
    margin-top: 20px;
}

.bottom_submit_btn {
    display: inline-block;
    width: 220px;
    background: #002a66;
    color: #ffffff;
    border: 1.5px solid #002a66;
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 42, 102, 0.15);
    text-decoration: none;
}

.bottom_submit_btn:hover {
    background: #001d4a;
    border-color: #001d4a;
    color: #ffffff;
    box-shadow: 0 6px 22px rgba(0, 42, 102, 0.25);
    transform: translateY(-1px);
    text-decoration: none;
}

@media (max-width: 991px) {
    .step_cards_wrapper {
        flex-direction: column;
        gap: 20px;
    }
    .step_card {
        max-width: 100%;
        width: 100%;
        height: auto;
        padding: 20px 24px;
        text-align: center;
        align-items: center;
    }
    .step_num {
        margin-top: -4px;
        margin-bottom: 8px;
    }
    .step_arrow {
        transform: rotate(90deg);
        padding: 10px 0;
    }
    .bottom_tabs_nav {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        border-bottom: none;
    }
    .tab_item {
        padding-bottom: 4px;
    }
    .tab_slider_line {
        display: none !important;
    }
    .tab_item.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 36px;
        height: 2.5px;
        background-color: #ffc800;
        border-radius: 2px;
    }
}

/* intlTelInput custom overrides */
.iti {
    width: 100% !important;
    display: block !important;
}
.iti input, .iti input[type=text], .iti input[type=tel] {
    width: 100% !important;
}
.iti__flag-container {
    position: static !important;
}
.iti__selected-flag {
    position: absolute !important;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}
.iti__country-list {
    z-index: 9999 !important;
    max-width: none !important;
    box-sizing: border-box !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    border: 1px solid #e2e8f0 !important;
}
body:not(.iti-mobile) .iti__country-list {
    width: 100% !important;
    left: 0 !important;
    top: 100% !important;
}
