@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@300;400;500;600;700;800;900&display=swap');

/* Shared public navigation. Keep this isolated so all public layouts use one header UI. */
:root {
    --green-blue-gradient: linear-gradient(135deg, #e80805 0%, #e80805 40%, #0057d8 100%);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background: linear-gradient(180deg, rgba(248, 250, 252, 0.96) 0%, rgba(248, 250, 252, 0.84) 72%, rgba(248, 250, 252, 0) 100%);
    backdrop-filter: blur(18px);
}

.main {
    padding-top: 6.9rem;
}

.header-inner {
    width: min(1760px, calc(100% - 7rem));
    min-height: 6.25rem;
    margin: 0 auto;
    padding: 1.1rem 1.45rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem 2rem;
    border-radius: 2rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.08);
    transition: min-height 0.3s ease, padding 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled .header-inner {
    min-height: 5.5rem;
    padding: 0.8rem 1.45rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.header-logo {
    min-width: 0;
    flex: 0 0 auto;
}

.header-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    color: inherit;
    text-decoration: none;
}

.header-brand:hover {
    color: inherit;
    text-decoration: none;
}

.header-brand__mark {
    width: 3.35rem;
    height: 3.35rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #2f3fb7;
}

.header-brand__mark img,
.header-brand__mark svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-brand__copy {
    display: inline-flex;
    flex-direction: column;
    gap: 0.08rem;
}

.header-brand__copy strong {
    color: #25367f;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    font-family: 'Manrope', 'Be Vietnam Pro', 'Outfit', 'Inter', sans-serif;
}

.header-brand__copy small {
    color: #617198;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1.2;
    text-transform: uppercase;
    white-space: nowrap;
    font-family: 'Manrope', 'Be Vietnam Pro', 'Outfit', 'Inter', sans-serif;
}

.header-nav {
    min-width: 0;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    flex: 0 1 auto;
}

.header-nav > li,
.header-nav > a {
    position: relative;
    list-style: none;
}

.header-nav > a,
.nav-top-link {
    min-height: 2.9rem;
    padding: 0.55rem 0.9rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.38rem;
    border-radius: 999px;
    color: #243046;
    font-size: 0.95rem;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: color 180ms ease, background-color 180ms ease;
}

.header-nav > a:hover,
.header-nav > a.active,
.nav-top-link:hover,
.nav-item-dropdown:hover .nav-top-link {
    color: #1d4ed8;
    background: rgba(37, 99, 235, 0.06);
    text-decoration: none;
}

.nav-top-link .chevron {
    width: 0.72rem;
    height: 0.72rem;
    flex: 0 0 auto;
    transition: transform 180ms ease;
}

.nav-item-dropdown:hover .nav-top-link .chevron {
    transform: rotate(180deg);
}

.level-one-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    z-index: 220;
    width: min(260px, calc(100vw - 32px));
    padding: 6px;
    display: none;
    border: 1px solid rgba(148, 163, 184, 0.24);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
}

.nav-item-dropdown:hover .level-one-menu,
.nav-item-dropdown:focus-within .level-one-menu {
    display: block;
}

.level-one-menu__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #e5e7eb;
}

.level-one-menu__item {
    min-width: 0;
    min-height: 40px;
    padding: 9px 11px;
    display: flex;
    align-items: center;
    background: #fff;
    color: #243046;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
    text-decoration: none;
    white-space: normal;
    transition: background-color 180ms ease, color 180ms ease;
}

.level-one-menu__item:hover,
.level-one-menu__item:focus-visible {
    background: rgba(37, 99, 235, 0.06);
    color: #1d4ed8;
    text-decoration: none;
}

.level-one-menu__title {
    overflow-wrap: anywhere;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 0 0 auto;
}

.icon-btn {
    width: 3.65rem;
    height: 3.65rem;
    border: 1px solid rgba(37, 48, 70, 0.14);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #243046;
    cursor: pointer;
    transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.icon-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(37, 99, 235, 0.2);
    color: #1d4ed8;
    box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.icon-btn svg {
    width: 1.5rem;
    height: 1.5rem;
}

.cart-btn {
    position: relative;
}

.cart-btn__badge {
    position: absolute;
    top: -0.2rem;
    right: -0.2rem;
    min-width: 1.35rem;
    height: 1.35rem;
    padding: 0 0.28rem;
    border: 2px solid #fff;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ef4444;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
}

.cart-btn__badge.is-empty {
    display: none;
}

.icon-btn.hamburger {
    display: none;
    background: var(--green-blue-gradient);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.icon-btn.hamburger:hover {
    background: var(--green-blue-gradient);
    filter: brightness(1.15);
    border-color: rgba(255, 255, 255, 0.34);
    color: #fff;
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.hamburger-lines span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 1px;
    background: currentColor;
}

.hamburger-lines span:nth-child(2) {
    width: 14px;
}

.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 18px;
}

[x-cloak] {
    display: none !important;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: -20px;
    z-index: 200;
    width: min(820px, calc(100vw - 4rem));
    display: flex;
    overflow: hidden;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
    pointer-events: auto;
}

.mega-menu--products {
    width: min(820px, calc(100vw - 4rem));
    background: #f5f6fb;
}

.mega-menu--products .mega-sidebar {
    background: #f5f6fb;
}

.mega-menu--products .mega-tab:hover,
.mega-menu--products .mega-tab.active {
    background: transparent;
    box-shadow: none;
}

.mega-menu--products .mega-tab:focus,
.mega-menu--products .mega-tab:focus-visible,
.mega-menu--products .mega-tab:active {
    background: transparent;
    box-shadow: none;
    outline: none;
}

.mega-sidebar {
    width: 230px;
    flex: 0 0 auto;
    padding: 12px 0;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #eaecf0;
    background: linear-gradient(180deg, #f8f9fc 0%, #f2f4f8 100%);
}

.mega-tab {
    width: 100%;
    padding: 13px 20px 13px 22px;
    border: none;
    border-left: 3px solid transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: none;
    color: #4a5568;
    cursor: pointer;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 500;
    text-align: left;
    transition: all 0.2s ease;
}

.mega-tab::after {
    content: '';
    width: 6px;
    height: 6px;
    border-right: 2px solid transparent;
    border-bottom: 2px solid transparent;
    flex: 0 0 auto;
    transform: rotate(-45deg);
    transition: all 0.2s ease;
}

.mega-tab:hover,
.mega-tab.active {
    border-left-color: #0d31ac;
    background: #fff;
    color: #0d31ac;
    font-weight: 600;
    box-shadow: 2px 0 8px rgba(13, 49, 172, 0.04);
}

.mega-tab:hover::after,
.mega-tab.active::after {
    border-right-color: #0d31ac;
    border-bottom-color: #0d31ac;
}

.mega-content {
    min-height: 200px;
    padding: 16px 20px;
    display: flex;
    align-items: stretch;
    flex: 1 1 auto;
}

.mega-panel {
    display: none;
    width: 100%;
}

.mega-panel.active {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    align-content: start;
}

.mega-content--products {
    min-height: 0;
    padding: 0;
    background: #f5f6fb;
    box-shadow: none;
}

.mega-panel--products.active {
    display: block;
    background: transparent;
}

.mega-product-list {
    padding: 0;
    background: transparent;
}

.mega-product-list--level-one {
    width: 100%;
    padding: 12px 16px;
}

.mega-product-panel {
    display: none;
}

.mega-product-panel.active {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    align-content: start;
}

.mega-product-panel--names.active {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.mega-product-name-link {
    width: fit-content;
    min-height: 0;
    padding: 0;
    border: 0;
    display: inline-flex;
    align-items: center;
    background: transparent;
    box-shadow: none;
    outline: none;
    color: #2f3b52;
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
    text-decoration: none;
    transition: color 180ms ease;
}

.mega-product-name-text {
    display: inline;
    padding: 6px 8px;
    border-radius: 8px;
    background: transparent;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    transition: background-color 180ms ease, color 180ms ease;
}

.mega-product-name-link:focus,
.mega-product-name-link:focus-visible,
.mega-product-name-link:active,
.mega-product-name-link[aria-current],
.mega-product-name-link.is-active {
    background: transparent;
    border: 0;
    box-shadow: none;
    outline: none;
}

.mega-product-name-link:focus-visible {
    /* keep keyboard usable without drawing big white card */
    text-decoration: underline;
    text-underline-offset: 3px;
}

.mega-product-name-link:hover {
    border: 0;
    box-shadow: none;
    background: transparent;
    color: #0d31ac;
    text-decoration: none;
}

.mega-product-name-link:hover .mega-product-name-text {
    background: #fff;
}

.mega-product-empty {
    grid-column: 1 / -1;
    padding: 18px;
    border: 1px dashed #cfd8ea;
    border-radius: 12px;
    background: #fff;
    color: #7b8798;
    font-size: 13px;
}

.mega-item {
    min-height: 68px;
    padding: 14px 16px;
    border: 1px solid transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mega-item:hover {
    border-color: #d4ddf0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eeff 100%);
    box-shadow: 0 2px 12px rgba(13, 49, 172, 0.08);
    text-decoration: none;
    transform: translateY(-1px);
}

.mega-item-icon {
    width: 42px;
    height: 42px;
    border: 1px solid #d0daee;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: linear-gradient(135deg, #eef2ff, #dde8ff);
    transition: all 0.25s ease;
}

.mega-item:hover .mega-item-icon {
    border-color: #0d31ac;
    background: linear-gradient(135deg, #0d31ac, #3b5ee6);
    transform: scale(1.05);
}

.mega-item-icon img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.mega-item-icon svg {
    width: 20px;
    height: 20px;
    color: #0d31ac;
    transition: color 0.2s;
}

.mega-item:hover .mega-item-icon svg {
    color: #fff;
}

.mega-item-title {
    color: #2b2b2b;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    transition: color 0.2s;
}

.mega-item:hover .mega-item-title {
    color: #0d31ac;
}

.mega-item-desc {
    margin-top: 3px;
    color: #8b95a5;
    font-size: 12px;
    line-height: 1.4;
}

.mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: none;
}

.mobile-drawer.open {
    display: block;
}

.mobile-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.52);
}

.mobile-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 340px;
    max-width: 88vw;
    height: 100%;
    padding: 20px 0;
    overflow-y: auto;
    background: var(--green-blue-gradient);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-drawer.open .mobile-drawer-panel {
    transform: translateX(0);
}

.mobile-drawer-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    cursor: pointer;
    font-size: 18px;
}

.mobile-drawer-logo {
    margin-bottom: 8px;
    padding: 0 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.mobile-drawer-logo .header-brand__copy strong,
.mobile-drawer-logo .header-brand__copy small {
    color: #fff;
}

.mobile-drawer-logo .header-brand {
    gap: 0.8rem;
}

.mobile-drawer-logo .header-brand__mark {
    width: 2.4rem;
    height: 2.4rem;
}

.mobile-drawer-logo .header-brand__copy strong {
    font-size: 0.82rem;
}

.mobile-drawer-logo .header-brand__copy small {
    font-size: 0.58rem;
}

.mobile-nav-link {
    padding: 12px 20px;
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    text-decoration: none;
}

.mobile-nav-link.active {
    border-left: 3px solid #fff;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    font-weight: 700;
}

.mobile-nav-group-title {
    padding: 12px 20px 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mobile-nav-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-right: 20px;
}

.mobile-nav-group-title--link {
    flex: 1 1 auto;
    min-width: 0;
    padding-right: 0;
    text-decoration: none;
}

.mobile-nav-group-title--link:hover {
    color: #fff;
    text-decoration: none;
}

.mobile-nav-group-toggle {
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    cursor: pointer;
    transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.mobile-nav-group-toggle:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.mobile-nav-group-toggle svg {
    width: 0.95rem;
    height: 0.95rem;
    transition: transform 180ms ease;
}

.mobile-nav-group-toggle[aria-expanded="false"] svg {
    transform: rotate(-90deg);
}

.mobile-nav-group-children[hidden] {
    display: none !important;
}

.mobile-nav-sub {
    padding: 6px 20px 6px 36px;
    display: block;
    color: rgba(255, 255, 255, 0.74);
    font-size: 14px;
    font-weight: 400;
    text-decoration: none;
    transition: color 0.15s;
}

.mobile-nav-sub-title {
    padding-top: 10px;
    color: #fff;
    font-weight: 600;
}

.mobile-nav-sub:hover {
    color: #fff;
    text-decoration: none;
}

.mobile-nav-divider {
    height: 1px;
    margin: 8px 20px;
    background: rgba(255, 255, 255, 0.16);
}

.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    padding-top: 120px;
    display: none;
    align-items: flex-start;
    justify-content: center;
    background: rgba(15, 23, 42, 0.46);
    backdrop-filter: blur(10px);
}

.search-overlay.open {
    display: flex;
}

.search-box {
    width: 90%;
    max-width: 560px;
    padding: 24px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.search-box input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    outline: none;
    font-family: inherit;
    font-size: 16px;
}

.search-box input:focus {
    border-color: #0d31ac;
}

@media (max-width: 1440px) {
    .header-inner {
        width: min(1320px, calc(100% - 2rem));
    }

    .header-nav > a,
    .nav-top-link {
        padding-inline: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 1220px) {
    .header-nav {
        display: none;
    }
}

@media (max-width: 968px) {
    .main {
        padding-top: 6.0rem;
    }

    .header-inner {
        width: min(1240px, calc(100% - 1rem));
        min-height: 0;
        padding: 0.9rem 1rem;
        border-radius: 1.45rem;
        gap: 1rem;
    }

    .header-brand__mark {
        width: 2.9rem;
        height: 2.9rem;
    }

    .header-brand__copy strong {
        font-size: 0.88rem;
    }

    .header-brand__copy small {
        display: none;
    }

    .header-right {
        margin-left: auto;
        gap: 0.6rem;
    }

    .icon-btn {
        width: 3.25rem;
        height: 3.25rem;
    }

    .icon-btn.hamburger {
        display: inline-flex;
    }

    .icon-btn svg {
        width: 1.35rem;
        height: 1.35rem;
    }
}

@media (max-width: 520px) {
    .main {
        padding-top: 5.4rem;
    }

    .header-inner {
        width: calc(100% - 0.75rem);
        padding: 0.8rem;
        gap: 0.55rem;
    }

    .header-brand__copy small {
        display: none;
    }

    .header-brand__copy strong {
        font-size: 0.75rem;
    }

    .header-right {
        gap: 0.45rem;
    }

    .icon-btn {
        width: 2.9rem;
        height: 2.9rem;
    }
}

.footer {
    font-family: 'Manrope', 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
    background-color: #FAF8F5; /* Premium warm cream/off-white background */
    color: #111827; /* Dark charcoal */
    border-top: 2px solid #e80805; /* Vivid brand accent red top border line */
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

.footer-inner {
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* 4-column modern layout grid wrapper */
.footer-grid {
    display: flex;
    gap: 4.5rem;
    padding: 5.5rem 0 3.5rem;
}

.footer-column--brand {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 4.5rem;
}

/* Brand Column (Leftmost) */
/* Brand Column (Leftmost) with vintage scalloped red-bordered card */
.footer-column--brand {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-brand-card {
    position: relative;
    padding: 2.2rem 1.5rem 2.5rem 1.5rem; /* Spaced perfectly to stay inside mask-img.png red border */
    background-image: url("../images/mask-img.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: transparent;
    box-shadow: 0 12px 36px rgba(232, 8, 5, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 260px;
    box-sizing: border-box;
    margin: 0 auto;
}

.footer-logo-wrapper {
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-image {
    width: 54px;
    height: 54px;
    object-fit: contain;
    border-radius: 10px; /* Elegant rounded card feel matching image 2 */
    background-color: #1a1a1a; /* Dark background matching image 2 card */
    padding: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.footer-brand-name {
    font-family: 'Manrope', 'Be Vietnam Pro', 'Outfit', 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #e80805; /* Vivid brand red matching the elegant theme */
    margin: 0 0 0.4rem 0;
    letter-spacing: 0.02em;
    text-align: center;
    line-height: 1.15;
}

.footer-brand-tagline {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.66rem;
    font-weight: 750;
    text-transform: uppercase;
    color: #7f1d1d; /* Deep crimson/brick red matching template design */
    letter-spacing: 0.03em;
    margin-bottom: 0.7rem;
    line-height: 1.35;
    text-align: center;
}

.footer-brand-description {
    font-size: 0.76rem;
    line-height: 1.45;
    color: #4b5563;
    margin: 0;
    text-align: center;
}

/* Column Header Titles */
.footer-column-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 1.8rem 0;
}

/* Links lists */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.9rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #e80805; /* Hover transitions to vivid brand red */
    transform: translateX(3px);
}

/* Subscribe column (Rightmost) */
.footer-subscribe-text {
    font-size: 0.88rem;
    line-height: 1.65;
    color: #4b5563;
    margin: 0 0 2rem 0;
}

.footer-subscribe-form {
    width: 100%;
}

.footer-subscribe-field {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #111827; /* Clean geometric underline style */
    padding-bottom: 0.5rem;
    margin-top: 0.5rem;
}

.footer-subscribe-field input {
    width: 100%;
    border: 0;
    background: transparent;
    color: #111827;
    font-size: 0.92rem;
    outline: none;
    padding: 0.2rem 2.5rem 0.2rem 0;
    font-family: inherit;
}

.footer-subscribe-field input::placeholder {
    color: #9ca3af;
}

.footer-subscribe-submit {
    position: absolute;
    right: 0;
    background: transparent;
    border: 0;
    color: #e80805; /* Red submission arrow arrow */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-subscribe-submit:hover {
    transform: translateX(4px);
}

.footer-subscribe-submit svg {
    width: 1.35rem;
    height: 1.35rem;
}

/* Bottom Copyright section */
.footer-bottom {
    border-top: 1px solid rgba(17, 24, 39, 0.06);
    padding: 2.5rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    font-size: 0.82rem;
    color: #9ca3af;
    margin: 0;
    text-align: center;
    width: 100%;
}

.footer-social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-social-link {
    color: #4b5563;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 200ms ease;
}

.footer-social-link:hover {
    color: #e80805;
}

/* 4-column modern contact details row */
.footer-info-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.footer-info-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.5rem 0;
    min-width: 0;
}

.footer-info-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Colors for icon wrappers */
.footer-info-icon--phone {
    background-color: rgba(0, 87, 216, 0.08);
    color: #0057d8;
}
.footer-info-icon--tax {
    background-color: rgba(232, 8, 5, 0.08);
    color: #e80805;
}
.footer-info-icon--email {
    background-color: rgba(0, 87, 216, 0.08);
    color: #0057d8;
}
.footer-info-icon--address {
    background-color: rgba(232, 8, 5, 0.08);
    color: #e80805;
}

.footer-info-icon svg {
    width: 20px;
    height: 20px;
}

.footer-info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.footer-info-label {
    font-size: 0.68rem;
    font-weight: 800;
    color: #9ca3af;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-info-value {
    font-size: 0.82rem;
    font-weight: 700;
    color: #1f2937;
    text-decoration: none;
    line-height: 1.35;
    word-break: break-word;
    transition: color 0.2s ease;
}

a.footer-info-value:hover {
    color: #e80805;
}

@media (max-width: 1024px) {
    .footer-info-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .footer-info-row {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
}

/* RESPONSIVE LAYOUT OVERRIDES */
@media (max-width: 1024px) {
    .footer-grid {
        flex-direction: column;
        gap: 3.5rem;
        padding: 4.5rem 0 3rem;
    }

    .footer-column--brand {
        flex: 1 1 auto;
        max-width: 100%;
        align-items: center;
    }

    .footer-links-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 2rem;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        gap: 3rem;
        padding: 3.5rem 0 2rem;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand-box {
        align-items: center;
        text-align: center;
    }
    
    .footer-column-title {
        margin-bottom: 1.2rem;
    }
    
    .footer-bottom {
        padding: 2rem 0;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 1rem;
    }
}
.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;
}

.back-to-top {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 250;
    width: 3.15rem;
    height: 3.15rem;
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: var(--green-blue-gradient);
    box-shadow: 0 18px 40px rgba(13, 49, 172, 0.28);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px) scale(0.94);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    box-shadow: 0 22px 48px rgba(13, 49, 172, 0.38);
    transform: translateY(-2px) scale(1.02);
}

.back-to-top:focus-visible {
    outline: 3px solid rgba(107, 140, 255, 0.45);
    outline-offset: 3px;
}

.back-to-top svg {
    width: 1.35rem;
    height: 1.35rem;
}

@media (max-width: 768px) {
    .back-to-top {
        right: 1rem;
        bottom: 1rem;
        width: 2.9rem;
        height: 2.9rem;
    }
}

/* Custom premium navigation components */
.header-nav .nav-quote-btn {
    background: var(--green-blue-gradient, linear-gradient(135deg, #16a34a 0%, #0d31ac 100%));
    color: #fff !important;
    padding: 0.55rem 1.25rem;
    font-weight: 750;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}
.header-nav .nav-quote-btn:hover {
    transform: translateY(-1.5px);
    box-shadow: 0 6px 18px rgba(22, 163, 74, 0.35);
    filter: brightness(1.05);
    color: #fff !important;
    background: var(--green-blue-gradient, linear-gradient(135deg, #16a34a 0%, #0d31ac 100%)) !important;
}

.lang-switcher-btn {
    transition: all 0.2s ease;
    color: #243046;
}
.lang-switcher-btn:hover {
    background: rgba(37, 99, 235, 0.06) !important;
    color: #1d4ed8 !important;
}
.lang-dropdown a {
    transition: all 0.15s ease;
}
.lang-dropdown a:hover {
    background: #eff6ff !important;
    color: #1d4ed8 !important;
}
.lang-dropdown a.active {
    background: #f3f4f6 !important;
    font-weight: 600;
}

/* Beautiful responsive Map Section */
.landing-map-section {
    width: 100%;
    height: 480px;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    background: #f1f5f9;
}
.landing-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}
