/* ========== TOPBAR ========== */
.syt_topbar {
    background: var(--syt-accent);
    font-size: 12.5px;
    color: var( --syt-white);
    border-bottom: 1px solid #e5e7eb;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

.syt_header_wrapper.sticky-active .syt_topbar {
    transform: translateY(-100%);
    opacity: 0;
}

.syt_topbar_inner {
    height: 36px;
}

.syt_tb_item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.syt_tb_item i {
    font-size: 12px;
    color: var( --syt-white);
}

.syt_topbar_center {
    text-align: center;
    flex: 1;
}

.syt_offer_text {
    font-size: 12.5px;
    font-weight: 600;
    color:var( --syt-white);
    background: rgb(225 199 194 / 20%);
    padding: 4px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.syt_offer_text:hover {
    background: rgb(225 199 194 / 25%)!important;
    color:#ccc;
}

.syt_topbar_right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.syt_topbar_right a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var( --syt-white);
    background: transparent;
    transition: all 0.25s ease;
}

.syt_topbar_right a:hover {
    background: rgba(208, 232, 238, 0.1);
    color: #d7d9d9;
    transform: translateY(-1px);
}

/* ========== HEADER ========== */
.syt_header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    z-index: 1000;
    transition: 
        transform 0.35s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

/* ======== NAVBAR ======== */
.syt_navbar {
    height: 66px;
    display: flex;
    align-items: center;
}

/* ======= CONTAINER ======= */
.syt_container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* ========== LOGO ========== */
.syt_logo img {
    height: 55px;
    transition: transform 0.25s ease;
}

.syt_logo:hover img {
    transform: scale(1.04);
}
/* =========== NAV MENU =========== */
.syt_nav_menu {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 30px;
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.syt_nav_menu li {
    list-style: none;
}

.syt_nav_menu .nav-link {
    font-size: 14px;
    font-weight: 700;
    color: #1F2937;
    padding: 6px 10px;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.syt_nav_menu .nav-link:hover {
    background: rgba(37, 142, 166, 0.08);
    color: #004080;
}

.syt_nav_menu .nav-link.active {
    background: rgba(37, 142, 166, 0.12);
    color: #004080;
}

.syt_nav_actions {
    margin-left: 16px;
    gap: 10px;
    display: flex;
    align-items: center;
}

.syt_offer_text {
    text-decoration: none;
    cursor: pointer;
}

/* ========= BUTTONS ========= */
.syt_btn {
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.syt_btn_primary {
    background: var(--syt-accent);
    color: #ffffff;
    border: 1px solid var(--syt-accent);
}

.syt_btn_primary:hover {
    background: var(--syt-accent-hover);
    border-color: var(--syt-accent-hover);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(213, 87, 59, 0.2);
}

.syt_btn_outline {
    color: #004080;
    border: 1px solid #004080;
}

.syt_btn_outline:hover {
    background: #004080;
    color: #ffffff;
}

/* =========== DROPDOWN BASE =========== */
.syt_dropdown {
    position: relative;
}

.syt_dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #ffffff;
    border-radius: 10px;
    padding: 6px 0;
    border: 1px solid #e5e7eb;
    box-shadow:
        0 12px 30px rgba(0,0,0,0.06),
        0 4px 10px rgba(0,0,0,0.04);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.syt_dropdown.active > .syt_dropdown_menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.syt_dropdown_menu a {
    display: block;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #1F2937;
    text-decoration: none;
    border-radius: 6px;
}

.syt_dropdown_menu a:hover {
    background: #F1F5F9;
    color: #004080;
}

/* ==== DESKTOP DROPDOWN LINE ==== */
.syt_dropdown:not(.syt_dropdown_mega) .syt_dropdown_menu a {
    position: relative;
    padding-left: 22px;
}

.syt_dropdown:not(.syt_dropdown_mega) .syt_dropdown_menu a::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 50%;
    width: 8px;
    height: 1.5px;
    background: #D1D5DB;
    transform: translateY(-50%);
    transition: all 0.25s ease;
}

.syt_dropdown:not(.syt_dropdown_mega) .syt_dropdown_menu a:hover::before {
    width: 12px;
    background: #004080;
}
.syt_dropdown:not(.syt_dropdown_mega) .syt_dropdown_menu a:hover {
    padding-left: 26px;
}

.syt_dropdown_mega {
    position: relative;
}

.syt_dropdown_mega .syt_dropdown_menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    width: max-content;
    min-width: 700px;
    max-width: 900px;
    display: flex;
    gap: 20px;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow:
        0 20px 45px rgba(0,0,0,0.08),
        0 8px 20px rgba(0,0,0,0.05);
}

.syt_dropdown_mega.active > .syt_dropdown_menu {
    transform: translateX(-50%) translateY(0);
}

.syt_dropdown_mega .syt_dropdown_menu::before {
    display: none;
}

.mega_column {
    flex: 1;
}

.mega_column h6 {
    font-size: 12px;
    font-weight: 800;
    color: #004080;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* =========== MEGA MENU =========== */
.syt_dropdown_mega .mega_column a {
    position: relative;
    padding-left: 12px;
    transition: all 0.25s ease;
}

.syt_dropdown_mega .mega_column a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background: #D1D5DB;
    transform: translateY(-50%);
    transition: all 0.25s ease;
}

.syt_dropdown_mega .mega_column a:hover::before {
    width: 10px;
    background: #004080;
}

.syt_dropdown_mega .mega_column a:hover {
    padding-left: 20px;
}

.mega_column a {
    display: block;
    font-size: 13px;
    padding: 5px 0;
    color: #374151;
    text-decoration: none;
}

.mega_column a:hover {
    color: #004080;
    transform: translateX(2px);
}

.syt_dropdown_icon {
    font-size: 11px;
    margin-left: 4px;
    color: #6B7280;

    display: inline-block;
    transition: transform 0.25s ease, color 0.25s ease;
}

.syt_nav_menu .nav-link:hover .syt_dropdown_icon {
    color: #004080;
}

.syt_dropdown.active .syt_dropdown_icon {
    transform: rotate(180deg);
    color: #004080;
}



/* =========================
   2 COLUMN DROPDOWN (CONSISTENT)
========================= */
.syt_dropdown_2col .syt_dropdown_menu {
    display: flex;
    gap: 20px;
    padding: 16px 18px;
    min-width: 380px;
}

/* =========================
   COLUMN
========================= */
.syt_dd_col {
    display: flex;
    flex-direction: column;
    min-width: 160px;
}

/* =========================
   HEADING
========================= */
.syt_dd_heading {
    font-size: 12px;
    font-weight: 800;
    color: #004080;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

/* =========================
   LINKS (MATCHING MEGA STYLE)
========================= */
.syt_dd_col a {
    position: relative;
    display: block;

    font-size: 13px;
    padding: 5px 0 5px 12px;

    color: #374151;
    text-decoration: none;

    transition: all 0.25s ease;
}

/* line indicator */
.syt_dd_col a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background: #D1D5DB;
    transform: translateY(-50%);
    transition: all 0.25s ease;
}

/* hover */
.syt_dd_col a:hover::before {
    width: 10px;
    background: #004080;
}

.syt_dd_col a:hover {
    padding-left: 18px;
    color: #004080;
}

/* =========================
   COLUMN DIVIDER
========================= */
.syt_dd_col:not(:last-child) {
    border-right: 1px solid #e5e7eb;
    padding-right: 12px;
}




/* ======== MOBILE MENU ======== */
.syt_mobile_toggle {
    display: none;
}

.syt_menu_btn {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: rgba(0, 64, 128, 0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border:1px solid #004080;
}

.syt_menu_btn:hover {
    background: rgba(0, 64, 128, 0.12);
}

.syt_menu_btn span {
    width: 18px;
    height: 2px;
    background: #004080;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.syt_menu_btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.syt_menu_btn.active span:nth-child(2) {
    opacity: 0;
}
.syt_menu_btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.syt_mobile_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.syt_mobile_overlay.active {
    opacity: 1;
    visibility: visible;
}

.syt_mobile_menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background: #fff;
    box-shadow: 10px 0 30px rgba(0,0,0,0.08);
    z-index: 9999;
    transition: left 0.35s ease;
    display: flex;
    flex-direction: column;
}

.syt_mobile_menu.active {
    left: 0;
}

.syt_mobile_header {
    padding: 14px 16px;
    border-bottom: 1px solid #eef2f7;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.syt_mobile_logo img {
    height: 32px;
}

.syt_mobile_close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.syt_mobile_body {
    flex: 1;
    overflow-y: auto;
    padding: 10px 0;
}

.syt_mobile_nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.syt_mobile_nav li {
    margin: 2px 0;
}

.syt_mobile_nav a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    margin: 0 10px;
    font-size: 14px;
    font-weight: 500;
    color: #1F2937;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
}

.syt_mobile_nav a:hover {
    background: rgba(37, 142, 166, 0.08);
    color: #004080;
}

.syt_mobile_nav a span {
    display: flex;
    align-items: center;
    gap: 10px;
}

.syt_mobile_nav i {
    font-size: 14px;
    color: #6B7280;
    width: 18px;
    text-align: center;
}

.syt_mobile_nav a:hover i {
    color: #004080;
}

.syt_mobile_nav i {
    opacity: 0.8;
}

.syt_submenu {
    list-style: none;
    margin: 4px 10px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: rgba(248, 250, 252, 0.7);
    border-radius: 8px;
}

.submenu-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #9CA3AF;
    padding: 8px 16px 4px;
    margin-top: 6px;
}

.syt_submenu li a {
    padding: 10px 16px;
    font-size: 13px;
    position: relative;
    padding-left: 26px;
}

.syt_submenu li a::before {
    content: "";
    position: absolute;
    left: 12px;
    top: 50%;
    width: 4px;
    height: 4px;
    background: #9CA3AF;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.25s ease;
}

.syt_submenu li a:hover::before {
    background: #004080;
    transform: translateY(-50%) scale(1.2);
}

.syt_submenu li a.active {
    color: #004080;
    font-weight: 600;
}

.syt_submenu li a.active::before {
    background: #004080;
}

.has-dropdown.active > .syt_submenu {
    max-height: 400px;
}

.syt_dd_icon {
    transition: transform 0.3s ease;
}

.has-dropdown.active > a .syt_dd_icon {
    transform: rotate(180deg);
}

body.syt_menu_open {
    overflow: hidden;
}

.syt_mobile_footer {
    padding: 14px 16px;
    border-top: 1px solid #eef2f7;
    background: #ffffff;
    position: sticky;
    bottom: 0;
}

.syt_mobile_footer .syt_btn {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    border-radius: 4px;
}

.syt_mobile_footer {
    background: linear-gradient(180deg, rgba(255,255,255,0.9), #ffffff);
    backdrop-filter: blur(6px);
}

.syt_mobile_social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.syt_mobile_social a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    background: rgba(37, 142, 166, 0.08);
    transition: all 0.25s ease;
}

.syt_mobile_social a:hover {
    background: rgba(37, 142, 166, 0.18);
    color: #004080;
    transform: translateY(-2px);
}

/* ============ UI POLISH ============ */
/* STICKY HEADER */
.syt_header {
    transition: all 0.3s ease;
}

.syt_navbar {
    height: 66px;
    transition: height 0.3s ease;
}

.syt_header_wrapper.sticky-active .syt_header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 999;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    transform: translateY(0);
}

.syt_header_wrapper.sticky-active .syt_navbar {
    height: 58px;
}

.syt_header_wrapper.sticky-active .syt_logo img {
    height: 48px;
    transition: all 0.3s ease;
}

.syt_nav_menu .nav-link {
    transition: all 0.25s ease;
}

.syt_nav_menu .nav-link:hover {
    transform: translateY(-1px);
}

.syt_mobile_nav a:active {
    transform: scale(0.98);
}


/* ======== STICKY CTA DESIGN ========== */
:root {
    --sticky-cta-height: 64px;
}

body.has-sticky-cta {
    padding-bottom: calc(var(--sticky-cta-height) + env(safe-area-inset-bottom));
}

.syt_sticky_cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--sticky-cta-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}

.syt_sticky_cta.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.syt_sticky_cta_container {
    position: relative;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.syt_sticky_cta_container::before {
    content: "";
    position: absolute;
    top: 12px;
    bottom: 12px;
    left: 68%;
    width: 1px;
    background: rgba(0, 0, 0, 0.05);
}

.syt_sticky_cta_text_wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.syt_sticky_cta_title {
    font-size: 14px;
    font-weight: 600;
    color: var(--syt-text-dark);
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s ease;
    font-family: var(--syt-font-secondary);
}

.syt_sticky_cta_sub {
    font-size: 12px;
    color: var(--syt-text-light);
    font-family: var(--syt-font-secondary);
}

.syt_sticky_cta.is-visible .syt_sticky_cta_title {
    opacity: 1;
    transform: translateY(0);
}

.syt_sticky_cta_right {
    display: flex;
    align-items: center;
}

.syt_sticky_cta_btn {
    height: 44px;
    padding: 0 20px;
    background: linear-gradient(135deg, #cc2e3f, #e94b5a);
    border-radius: 999px;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: 
        inset 0 1px 0 rgba(255,255,255,0.2),
        0 4px 10px rgba(204, 46, 63, 0.25);
    transition: all 0.25s ease;
    font-family: var(--syt-font-secondary);
}

.syt_sticky_cta_btn i {
    margin-right: 6px;
    font-size: 13px;
}

.syt_sticky_cta_btn:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 0 3px rgba(204, 46, 63, 0.12),
        0 8px 18px rgba(204, 46, 63, 0.35);
    background: linear-gradient(135deg, #cc2e3f, #e94b5a);
    border-radius: 999px;
    color: #fff;
}

.syt_sticky_cta_btn:active {
    transform: scale(0.97);
    box-shadow: 0 3px 8px rgba(204, 46, 63, 0.2);
}

@keyframes sytPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }

    100% {
        transform: scale(1);
    }
}

.syt_sticky_cta_btn.pulse {
    animation: sytPulse 0.6s ease;
}

@media (max-width: 768px) {

    .syt_sticky_cta_container {
        padding: 0 12px;
    }

    .syt_sticky_cta_title {
        font-size: 13px;
    }

    .syt_sticky_cta_btn {
        height: 40px;
        padding: 0 14px;
    }
}




/* =========== FOOTER DESIGN =========== */
.syt_footer {
    position: relative;
    background: #0B1C2C;
    color: #fff;
    /* margin-top: 80px; */
    /* margin-top: 20px; */
    overflow: hidden;
}

.syt_footer::before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(213,87,59,0.4), transparent);
}

.syt_footer::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top center, rgba(213,87,59,0.08), transparent 60%);
    pointer-events: none;
}

.syt_footer_inner {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
    gap: 36px;
    padding: 50px 0 40px;
}

.syt_footer_col:not(:first-child) {
    padding-left: 10px;
}

.syt_footer_logo {
    height: 55px;
    margin-bottom: 14px;
}

.syt_footer_desc {
    color: rgba(255,255,255,0.65);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 14px;
}

.syt_footer_trust {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
}

.syt_footer_social {
    display: flex;
    gap: 12px;
}

.syt_footer_social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all 0.25s ease;
}

.syt_footer_social a:hover {
    background: rgba(213,87,59,0.15);
    color: #fff;
    transform: translateY(-2px);
}

.syt_footer_title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0.8px;
    text-transform: capitalize;
    position: relative;
    color: #ffffff;
    font-family: var(--syt-font-secondary);
}

.syt_footer_title::after {
    content: "";
    width: 30px;
    height: 2px;
    background: var(--syt-accent);
    position: absolute;
    bottom: -6px;
    left:0;
}

.syt_footer_links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.syt_footer_links li {
    margin-bottom: 10px;
}

.syt_footer_links a {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    padding-left: 14px;
    position: relative;
    transition: all 0.25s ease;
}

.syt_footer_links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%);
}

.syt_footer_links a:hover {
    color: #fff;
    padding-left: 18px;
}

.syt_footer_links a:hover::before {
    width: 10px;
    background: var(--syt-accent);
}

.syt_footer_view_all {
    color: var(--syt-accent) !important;
    font-weight: 600;
}

.syt_footer_contact {
    list-style: none;
    padding: 0;
}

.syt_footer_contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}

.syt_footer_contact a {
    color: inherit;
}

.syt_footer_contact a:hover {
    color: var(--syt-accent);
}

.syt_footer_contact i {
    color: var(--syt-accent);
}

.syt_footer_bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    padding: 18px 0;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

.syt_footer_bottom p{
    margin-bottom:0;
    color:rgba(255,255,255,0.65);
}

.syt_footer_bottom_links {
    display: flex;
    gap: 18px;
}

.syt_footer_bottom_links a {
    color: rgba(255,255,255,0.6);
    position: relative;
}

.syt_footer_bottom_links a:hover {
    color: var(--syt-accent);
}

.syt_footer_cta {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.syt_footer_cta_inner {
    margin: 0 auto;
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.syt_footer_cta h4 {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin-bottom:0;
    font-family: var(--syt-font-secondary);
}

.syt_footer_trust span i {
    margin-right: 6px;
    color: var(--syt-accent);
}

.syt_footer_links_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
}

.syt_footer_cta .syt_btn_accent {
    background-color: var(--syt-accent);
    color: #fff;
}

.syt_footer_cta .syt_btn_accent:hover {
    background-color: var(--syt-accent-hover);
    color: #fff;
    box-shadow: 0 6px 18px rgba(213, 87, 59, 0.25);
}

/* =========== SWEET ALERT (SWAL) =========== */
.syt_swal_popup {
    border-radius: 16px !important;
    padding: 20px !important;
}

.syt_swal_box {
    text-align: center;
}

.syt_swal_icon {
    font-size: 42px;
    margin-bottom: 10px;
}

.syt_swal_icon.success {
    color: #2C5F9E;
}

.syt_swal_icon.error {
    color: #dc2626;
}

.syt_swal_icon.loader {
    color: #2C5F9E;
}

.syt_swal_title {
    font-size: 18px;
    font-weight: 700;
    color: #1A365D;
    margin-bottom: 5px;
}

.syt_swal_text {
    font-size: 14px;
    color: #4A5568;
}


/*========= BREADCRUMB ======= */
.syt_breadcrumb_section {
    padding: 12px 0 0;
}

.syt_breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    list-style: none;
    margin: 0;
}

.syt_breadcrumb li {
    display: inline-flex;
    align-items: center;
    font-size: 13px;
    color: var(--syt-text-light);
}

.syt_breadcrumb li a {
    color: var(--syt-text-light);
    padding: 2px 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.syt_breadcrumb li a:hover {
    color: var(--syt-primary);
    background: rgba(0, 64, 128, 0.06);
}

.syt_breadcrumb li::after {
    content: "›";
    margin: 0 6px;
    color: #c7c7c7;
    font-size: 12px;
}

.syt_breadcrumb li:last-child::after {
    content: "";
    margin: 0;
}

.syt_breadcrumb li.active span {
    color: var(--syt-text-dark);
    font-weight: 600;
}

.syt_breadcrumb--dark {
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);

    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.syt_breadcrumb--dark li {
    color: rgba(255,255,255,0.85);
}

.syt_breadcrumb--dark li a {
    color: rgba(255,255,255,0.9);
}

.syt_breadcrumb--dark li a:hover {
    color: #fff;
    background: rgba(255,255,255,0.12);
}

.syt_breadcrumb--dark li::after {
    color: rgba(255,255,255,0.5);
}

.syt_breadcrumb--dark li.active span {
    color: #ffffff;
    font-weight: 600;
}


/* =========== MOBILE RESPONSIVE =========== */
@media (max-width: 768px) {

    /* ================= NAVBAR ================= */
    .syt_topbar {
        display: none !important;
    }

    .syt_navbar {
        height: auto;
        padding: 10px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .syt_logo img {
        height: 34px;
    }

    .syt_nav_menu {
        display: none !important;
    }

    .syt_nav_actions .syt_btn {
        display: none !important;
    }

    .syt_mobile_toggle {
        display: flex !important;
        align-items: center;
        font-size: 20px;
        cursor: pointer;
    }

    .syt_nav_actions {
        margin-left: auto;
    }

    .syt_container {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* ================= FOOTER ================= */
    .syt_footer_inner {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 40px 0;
        text-align: center;
    }

    .syt_footer_col:not(:first-child) {
        padding-left: 0;
    }

    .syt_footer_logo {
        margin: 0 auto 12px;
    }

    .syt_footer_desc {
        font-size: 13.5px;
    }

    .syt_footer_trust {
        align-items: center;
        font-size: 12.5px;
    }

    .syt_footer_social {
        justify-content: center;
    }

    .syt_footer_title {
        margin-bottom: 10px;
    }

    .syt_footer_title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .syt_footer_links li {
        margin-bottom: 8px;
    }

    .syt_footer_links a {
        padding-left: 0;
    }

    .syt_footer_links a::before {
        display: none;
    }

    .syt_footer_contact li {
        justify-content: center;
        text-align: center;
    }

    .syt_footer_cta_inner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }

    .syt_footer_cta h4 {
        font-size: 18px;
    }

    .syt_footer_bottom .syt_flex_between {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .syt_footer_bottom_links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
}