@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap");

body {
    font-family: "Lexend", sans-serif;
    font-size: var(--fs-14);
    color: #111;
    padding-top: 80px;
}

/* ==========================================================================
   GLOBAL BUTTONS (Site-wide UI Components)
   ========================================================================== */
.button-1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background-color: var(--Light-Primary-50, #3BAEFF);
    color: #ffffff;
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    padding: 6px 6px 6px 24px;
    border-radius: 100px;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(59, 174, 255, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.button-1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.button-1:hover {
    background-color: #249bf0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 174, 255, 0.45);
}

.button-1:hover::before {
    left: 100%;
}

.button-1:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(59, 174, 255, 0.3);
}

.button-1__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    color: var(--Light-Primary-50, #3BAEFF);
    border-radius: 50%;
    font-size: 16px;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.button-1:hover .button-1__icon {
    transform: translateX(3px);
}

.button-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background-color: transparent;
    color: var(--Light_mode-Gray_Scale-10, #333333);
    font-family: inherit;
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    border-radius: 100px;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.button-ghost:hover {
    color: var(--Light-Primary-50, #3BAEFF);
    background-color: rgba(59, 174, 255, 0.08);
}

/* ==========================================================================
   HEADLINE-1 REUSABLE COMPONENT (BEM & Variants)
   ========================================================================== */
.headline-1 {
    margin-bottom: 48px;
}

/* Tag / Badge */
.headline-1__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 5px 16px 5px 12px;
    background: #ffffff;
    border: 1px solid rgba(220, 227, 238, 0.9);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--Light_mode-Gray_Scale-10, #333333);
    margin-bottom: 16px;
}

.headline-1__tag i,
.headline-1__tag img {
    font-size: 14px;
    width: 16px;
    height: 16px;
    object-fit: contain;
    color: var(--Light-Primary-50, #3BAEFF);
}

.headline-1__title {
    font-size: 42px;
    line-height: 1.25;
    font-weight: 500;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    letter-spacing: -0.5px;
    margin: 0 0 12px 0;
}

.headline-1__sub {
    font-size: 15px;
    line-height: 1.65;
    color: var(--Light_mode-Gray_Scale-30, #666666);
    font-weight: 400;
    margin: 0;
}

/* --- Variant 1: Left / Default --- */
.headline-1--left {
    text-align: left;
}

.headline-1--left .headline-1__sub {
    max-width: 600px;
}

/* --- Variant 2: Center --- */
.headline-1--center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.headline-1--center .headline-1__sub {
    max-width: 680px;
    margin: 0 auto;
}

/* --- Variant 3: Split / Horizontal (Left title, Right subtext) --- */
.headline-1--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: flex-end;
    text-align: left;
}

.headline-1--split .headline-1__left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.headline-1--split .headline-1__right {
    display: flex;
    align-items: center;
}

.headline-1--split .headline-1__title {
    margin-bottom: 0;
}

.headline-1--split .headline-1__sub {
    font-size: 15px;
    line-height: 1.65;
    color: var(--Light_mode-Gray_Scale-30, #666666);
    max-width: 520px;
    font-weight: 300;
}

.c-form-border {
    transition: border-color 0.3s ease-in-out;
    background: var(--Light_mode-Gray_Scale-100);
    cursor: pointer;
    border-radius: 100px;
    border: 1px solid var(--Light_mode-Gray_Scale-70);
}

.c-form-border .c_input {
    padding: var(--sp-20) var(--sp-24);
    transition: 0.5s;
    height: 100%;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 300;
    border-radius: 50px;
}

.c-form-border.is-textarea,
.c-form-border.is-textarea .c_input {
    border-radius: 20px;
}

.c-form-border.is-textarea .c_input {
    padding: 20px !important;
}

.c-form-border .c_input:disabled {
    background: var(--Light_mode-Gray_Scale-90);
}

.c-form-border .c_input:focus {
    outline: none;
    border-color: var(--Light-Primary-50);
}

.c-form-border--icon .c_input {
    -ms-flex: 1 1 auto;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    width: 1%;
    z-index: 2;
}

.c-form-border--label .c_label {
    color: #999;
    background-color: #fff;
    pointer-events: none;
    padding: 0 0.358em 0 0.358em;
    z-index: 9;
    position: absolute;
    top: 0.572em;
    left: 0.715em;
    transition: 0.5s;
}

.c-form-border--label:not(.is-empty) .c_label,
.c-form-border--label.is-focused .c_label {
    font-size: 0.786em;
    color: var(--Light-Primary-50);
    position: absolute;
    top: -0.727em;
}

.c-form-border.is-focused {
    border-color: var(--Light-Primary-50);
    background: var(--Light_mode-Gray_Scale-100);
    box-shadow: 0px 0px 2px 0px #52b8ff;
}

.c-form-border.is-error {
    margin-bottom: 1.786em;
    box-shadow: 0 0 2px 0 #eb2813;
    border-color: #eb2813;
    background-color: #fef4f3;
}

.c-form-editor.is-error {
    border-radius: 20px 20px 40px 40px;
}

.c-form-border.is-error .c_label {
    color: #f55145 !important;
}

.c-form-border.is-error .c_icon+.c_error {
    left: 0.143em;
    text-align: left;
}

.c-form-border.is-error .c_icon+.c_error>span {
    left: 0;
    margin: 0;
}

.c-form-border textarea.c_input+.c_error span {
    position: absolute;
    width: max-content;
    right: 0;
    top: calc(100% + 1px);
}

.c-form-border i {
    z-index: 9;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--Light_mode-Gray_Scale-70);
    cursor: pointer;
}

.c-form-border .ts-control {
    border: none !important;
    padding: 10px var(--sp-12) !important;
}

.c-form-border .ts-control input::placeholder {
    color: #999;
}

.c-form-border .multi .ts-control::after {
    content: "\f107";
    font-family: FontAwesome;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    font-size: 20px;
}

.c-form-border .ts-control .remove {
    padding: 0 5px 5px 5px !important;
}

.form-box {
    margin-bottom: var(--sp-24);
}

.form-box label {
    margin-bottom: var(--sp-8);
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: var(--Light-Primary-20);
}

.form-box label>span {
    color: #eb2813;
}

.form-box .form-error {
    color: #eb2813;
    font-size: 12px;
    margin-top: 4px;
    font-weight: 300;
}

.form-box .form-back {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    background: #f7f7f7;
    padding: 11px;
    border-radius: 32px;
}

.form-role {
    display: flex;
    gap: var(--sp-32);
}

.form-button {
    margin-top: var(--sp-32);
}

textarea {
    border-radius: var(--radius-8);
    border: none;
    display: block;
    padding: var(--sp-16);
    width: 100%;
    outline: none;
    transition: 0.5s;
}

textarea:focus {
    border-color: var(--Light-Primary-50);
    background: var(--Light_mode-Gray_Scale-100);
    box-shadow: 0px 0px 2px 0px #52b8ff;
}

/* BEGIN c-radio */
.c-radio {
    display: block;
    line-height: 1;
    margin: 0.715em 0 0.715em 0;
    position: relative;
    z-index: 2;
}

.c-radio label {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    cursor: pointer;
    color: #666666;
    position: relative;
}

.c-radio label>span:not(.c_tick) {
    font-size: 1em;
    line-height: 1.42857143;
}

.c-radio label:hover {
    color: var(--Light-Primary-50);
}

.c-radio .c_tick {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    border: 1px solid #666666;
    border-radius: 100%;
    margin: 0 0.358em 0.072em 0;
    width: 1.072em;
    height: 1.072em;
}

.c-radio .c_tick::before {
    content: "";
    display: block;
    border-radius: 100%;
    background-color: var(--Light-Primary-50);
    width: 1.072em;
    height: 1.072em;
    -webkit-transform: scale3d(0, 0, 0);
    -moz-transform: scale3d(0, 0, 0);
    -o-transform: scale3d(0, 0, 0);
    -ms-transform: scale3d(0, 0, 0);
    transform: scale3d(0, 0, 0);
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
}

.c-radio input[type="radio"] {
    overflow: hidden;
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.c-radio input[type="radio"]:checked~.c_tick {
    border-color: var(--Light-Primary-50);
    opacity: 1;
}

.c-radio input[type="radio"]:checked~.c_tick::before {
    opacity: inherit;
}

.c-radio input[type="radio"]:checked+.c_tick::before {
    -webkit-transform: scale3d(0.65, 0.65, 1);
    -moz-transform: scale3d(0.65, 0.65, 1);
    -o-transform: scale3d(0.65, 0.65, 1);
    -ms-transform: scale3d(0.65, 0.65, 1);
    transform: scale3d(0.65, 0.65, 1);
}

.c-radio input[type="radio"][disabled]~.c_tick {
    border-color: #000;
    opacity: 0.26;
}

.c-radio input[type="radio"][disabled]~.c_tick::before {
    opacity: inherit;
}

/* ==========================================================================
   HEADER COMPONENT (BEM, Glassmorphism, Responsive)
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding-top: 16px;
    padding-bottom: 16px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.3s ease;
    will-change: transform;
}

/* Hide header when scrolling down */
.header--hidden {
    transform: translateY(-120%);
}

/* When scrolled down */
.header--scrolled {
    padding-top: 10px;
    padding-bottom: 10px;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(220, 227, 238, 0.85);
    border-radius: 100px;
    padding: 8px 12px 8px 24px;
    box-shadow: 0 4px 20px rgba(9, 27, 87, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.header--scrolled .header__inner {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 30px rgba(9, 27, 87, 0.08),
        0 2px 6px rgba(0, 0, 0, 0.04);
}

/* Logo */
.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.header__logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.header__logo:hover .header__logo-img {
    transform: scale(1.03);
}

/* Desktop Navigation */
.header__nav {
    display: flex;
    align-items: center;
}

.header__menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.header__menu-item {
    margin: 0;
    padding: 0;
}

.header__menu-link {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 400;
    color: var(--Light_mode-Gray_Scale-10, #333333);
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.header__menu-link:hover {
    color: var(--Light-Primary-50, #3BAEFF);
    background-color: rgba(59, 174, 255, 0.08);
}

.header__menu-link.is-active {
    color: var(--Light-Primary-50, #3BAEFF);
    background-color: rgba(59, 174, 255, 0.12);
    font-weight: 500;
}

/* Action Buttons */
.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 100px;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    line-height: 1.2;
}

.header__btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

/* Primary Button (ÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€šÃ‚ÂÃƒÆ’Ã¢â‚¬Å¾Ãƒâ€ Ã¢â‚¬â„¢ng nhÃƒÆ’Ã‚Â¡Ãƒâ€šÃ‚ÂºÃƒâ€šÃ‚Â­p) */
.header__btn--primary {
    background-color: var(--Light-Primary-50, #3BAEFF);
    color: var(--Light_mode-Gray_Scale-100, #ffffff);
}

.header__btn--primary:hover {
    background-color: #269bf0;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 174, 255, 0.4);
}

/* Consult Button */
.header__btn--consult {
    background-color: var(--Light_mode-Gray_Scale-5, #1a1a1a);
    color: var(--Light_mode-Gray_Scale-100, #ffffff);
}

.header__btn--consult:hover {
    background-color: #000000;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.header__btn--consult:hover i {
    transform: rotate(15deg) scale(1.1);
}

.header__btn--full {
    width: 100%;
    padding: 12px 20px;
    text-align: center;
}

/* Hamburger Toggle */
.header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    transition: background-color 0.2s ease;
}

.header__toggle:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.header__toggle-bar {
    width: 22px;
    height: 2px;
    background-color: var(--Light_mode-Gray_Scale-10, #333333);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.header__toggle.is-active .header__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.header__toggle.is-active .header__toggle-bar:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.header__toggle.is-active .header__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Navigation Drawer */
.header__mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1100;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.3s ease;
}

.header__mobile.is-open {
    visibility: visible;
    pointer-events: auto;
}

.header__mobile-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 27, 87, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header__mobile.is-open .header__mobile-backdrop {
    opacity: 1;
}

.header__mobile-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.header__mobile.is-open .header__mobile-drawer {
    transform: translateX(0);
}

.header__mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--Light_mode-Gray_Scale-80, #e6e6e6);
    margin-bottom: 20px;
}

.header__mobile-logo img {
    height: 34px;
    width: auto;
}

.header__mobile-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--Light_mode-Gray_Scale-90, #f6f6f6);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    color: var(--Light_mode-Gray_Scale-20, #4d4d4d);
    cursor: pointer;
    transition: all 0.2s ease;
}

.header__mobile-close:hover {
    background: var(--Light_mode-Gray_Scale-80, #e6e6e6);
    color: #000000;
}

.header__mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.header__mobile-link {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--Light_mode-Gray_Scale-10, #333333);
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.header__mobile-link:hover {
    background: rgba(59, 174, 255, 0.08);
    color: var(--Light-Primary-50, #3BAEFF);
    padding-left: 20px;
}

.header__mobile-link.is-active {
    background: rgba(59, 174, 255, 0.12);
    color: var(--Light-Primary-50, #3BAEFF);
    font-weight: 600;
}

.header__mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--Light_mode-Gray_Scale-80, #e6e6e6);
    margin-top: auto;
}

/* ==========================================================================
   MOTION REVEAL ANIMATIONS (Framer Motion / Apple Style Reveal System)
   ========================================================================== */
[data-motion] {
    opacity: 0;
    will-change: opacity, transform;
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-motion="fade-up"] {
    transform: translateY(36px);
}

[data-motion="fade-down"] {
    transform: translateY(-28px);
}

[data-motion="fade-left"] {
    transform: translateX(36px);
}

[data-motion="fade-right"] {
    transform: translateX(-36px);
}

[data-motion="zoom-in"] {
    transform: scale(0.92);
}

[data-motion="zoom-out"] {
    transform: scale(1.08);
}

/* Animated State Trigger */
[data-motion].is-animated,
.is-animated [data-motion] {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

/* Stagger Delays */
[data-motion-delay="100"] {
    transition-delay: 100ms;
}

[data-motion-delay="150"] {
    transition-delay: 150ms;
}

[data-motion-delay="200"] {
    transition-delay: 200ms;
}

[data-motion-delay="250"] {
    transition-delay: 250ms;
}

[data-motion-delay="300"] {
    transition-delay: 300ms;
}

[data-motion-delay="350"] {
    transition-delay: 350ms;
}

[data-motion-delay="400"] {
    transition-delay: 400ms;
}

[data-motion-delay="450"] {
    transition-delay: 450ms;
}

[data-motion-delay="500"] {
    transition-delay: 500ms;
}

[data-motion-delay="550"] {
    transition-delay: 550ms;
}

[data-motion-delay="600"] {
    transition-delay: 600ms;
}

[data-motion-delay="700"] {
    transition-delay: 700ms;
}

[data-motion-delay="800"] {
    transition-delay: 800ms;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media screen and (max-width: 1024px) {
    .header__menu-link {
        padding: 8px 12px;
        font-size: 13px;
    }

    .header__btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .headline-1--split {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media screen and (max-width: 991px) {
    .header {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .header__inner {
        padding: 8px 16px;
        border-radius: 50px;
    }

    .header__nav,
    .header__actions {
        display: none;
    }

    .header__toggle {
        display: flex;
    }

    .headline-1__title {
        font-size: 32px;
    }
}

@media screen and (max-width: 576px) {
    .headline-1 {
        margin-bottom: 32px;
    }

    .headline-1__title {
        font-size: 26px;
    }

    .headline-1__sub {
        font-size: 14px;
    }
}

/* ==========================================================================
   FOOTER STYLES (style.css)
   ========================================================================== */
.footer {
    position: relative;
    padding-top: 220px;
    padding-bottom: 40px;
    background: linear-gradient(180deg, #D8EFFF 0%, #FFFFFF 100%);
    color: var(--Light_mode-Gray_Scale-20, #4d4d4d);
    font-size: 14px;
    z-index: 1;
}

.footer__top {
    padding-bottom: 50px;
    border-bottom: 1px solid #d4e5f7;
}

.footer__logo {
    max-height: 48px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}

.footer__desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--Light_mode-Gray_Scale-30, #666666);
    margin-bottom: 24px;
    max-width: 380px;
}

.footer__contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--Light_mode-Gray_Scale-20, #4d4d4d);
}

.footer__contact-list li i {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--Light-Primary-50, #3BAEFF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(9, 27, 87, 0.04);
}

.footer__contact-list a {
    color: var(--Light_mode-Gray_Scale-20, #4d4d4d);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__contact-list a:hover {
    color: var(--Light-Primary-50, #3BAEFF);
}

.footer__socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer__socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--Light-Primary-50, #3BAEFF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(9, 27, 87, 0.05);
    transition: all 0.3s ease;
}

.footer__socials a:hover {
    background-color: var(--Light-Primary-50, #3BAEFF);
    color: #ffffff;
    transform: translateY(-2px);
}

.footer__col-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--Light-Primary-50, #3BAEFF);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 14px;
    color: var(--Light_mode-Gray_Scale-20, #4d4d4d);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer__links a:hover {
    color: var(--Light-Primary-50, #3BAEFF);
}

.footer__badge {
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 100px;
    background-color: var(--Light-Primary-50, #3BAEFF);
    color: #ffffff;
}

/* Middle Footer: Branches */
.footer__middle {
    padding: 35px 0;
    border-bottom: 1px solid #d4e5f7;
}

.footer__branches-tag {
    font-size: 13px;
    font-weight: 700;
    color: var(--Light-Primary-50, #3BAEFF);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer__branches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer__branch-item strong {
    display: block;
    font-size: 14px;
    color: var(--Light-Primary-50, #3BAEFF);
    margin-bottom: 4px;
}

.footer__branch-item p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--Light_mode-Gray_Scale-30, #666666);
    margin: 0;
}

/* Bottom Footer: Copyright & Legal */
.footer__bottom {
    padding-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__copyright-notice {
    font-size: 13px;
    color: var(--Light_mode-Gray_Scale-30, #666666);
    margin-bottom: 4px;
}

.footer__copyright-info {
    font-size: 12px;
    color: var(--Light_mode-Gray_Scale-40, #888888);
    margin: 0;
}

.footer__legal {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer__legal a {
    font-size: 13px;
    color: var(--Light_mode-Gray_Scale-30, #666666);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__legal a:hover {
    color: var(--Light-Primary-50, #3BAEFF);
}

/* Back to Top Button */
.footer__back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--Light-Primary-50, #3BAEFF);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 14px rgba(59, 174, 255, 0.35);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 0;
}

.footer__back-to-top.is-show {
    opacity: 1;
    visibility: visible;
}

.footer__back-to-top:hover {
    background-color: #2795e6;
    transform: translateY(-3px);
}

@media screen and (max-width: 768px) {
    .footer__branches {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer__middle {
        padding: 24px 0;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__col {
        margin-top: 32px;
    }
}