/* ══════════════════════════════════════════════
   NEW SITE HEADER
══════════════════════════════════════════════ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
}

/* Top bar */
.sh-topbar {
    background: #060d14;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.sh-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.sh-topbar-left {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .35);
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .5px;
}

.sh-topbar-left svg {
    width: 12px;
    height: 12px;
    stroke: #dc291e;
    fill: none;
    stroke-width: 2;
}

.sh-topbar-right {
    display: flex;
    gap: 22px;
    align-items: center;
}

.sh-topbar-right a {
    color: rgba(255, 255, 255, .45);
    font-size: .7rem;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .18s;
}

.sh-topbar-right a svg {
    width: 11px;
    height: 11px;
    stroke: rgba(220, 41, 30, .7);
    fill: none;
    stroke-width: 2;
}

.sh-topbar-right a:hover {
    color: #dc291e;
}

/* Main nav */
.sh-nav {
    background: #0d1824;
    border-bottom: 2px solid rgba(220, 41, 30, .35);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .4);
}

.sh-nav .container {
    max-width: 100%;
    padding: 0 40px;
}

.sh-nav-inner {
    display: flex;
    align-items: center;
    height: 68px;
    gap: 28px;
}

/* Logo */
.sh-logo-img {
    height: 54px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: .92;
    display: block;
}

/* Nav links */
.sh-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

.sh-links li a {
    display: block;
    color: rgba(255, 255, 255, .65);
    font-size: .85rem;
    font-weight: 600;
    text-decoration: none;
    padding: 7px 15px;
    border-radius: 6px;
    position: relative;
    transition: color .18s, background .18s;
}

.sh-links li a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: #dc291e;
    border-radius: 2px;
    transition: left .22s ease, right .22s ease;
}

.sh-links li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .05);
}

.sh-links li a:hover::after {
    left: 15px;
    right: 15px;
}

.sh-links li a.sh-active {
    color: #dc291e !important;
    font-weight: 700;
}

.sh-links li a.sh-active::after {
    left: 15px;
    right: 15px;
}

/* CTA buttons */
.sh-cta {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.sh-btn-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, .7) !important;
    font-size: .8rem;
    font-weight: 600;
    text-decoration: none !important;
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 6px;
    transition: border-color .18s, color .18s, background .18s;
}

.sh-btn-call svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sh-btn-call:hover {
    border-color: rgba(255, 255, 255, .45);
    color: #fff !important;
    background: rgba(255, 255, 255, .06);
}

.sh-btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dc291e;
    color: #fff !important;
    font-size: .8rem;
    font-weight: 700;
    text-decoration: none !important;
    padding: 9px 20px;
    border-radius: 6px;
    box-shadow: 0 3px 14px rgba(220, 41, 30, .4);
    transition: background .18s, transform .18s, box-shadow .18s;
}

.sh-btn-quote svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sh-btn-quote:hover {
    background: #b8221a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(220, 41, 30, .5);
}

/* Hamburger */
.sh-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 6px;
    cursor: pointer;
    padding: 8px;
    margin-left: auto;
}

.sh-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: rgba(255, 255, 255, .8);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}

.sh-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.sh-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.sh-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.sh-mobile-menu {
    display: none;
    background: #0a1520;
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.sh-mobile-menu.open {
    display: block;
}

.sh-mobile-menu ul {
    list-style: none;
    padding: 8px 0;
    margin: 0;
}

.sh-mobile-menu ul li a {
    display: block;
    padding: 12px 28px;
    color: rgba(255, 255, 255, .7);
    font-size: .92rem;
    font-weight: 600;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: color .18s, border-color .18s, background .18s;
}

.sh-mobile-menu ul li a:hover,
.sh-mobile-menu ul li a.sh-active {
    color: #dc291e;
    border-left-color: #dc291e;
    background: rgba(220, 41, 30, .06);
}

.sh-mobile-cta {
    display: flex;
    gap: 10px;
    padding: 12px 20px 18px;
}

.sh-mobile-cta a {
    flex: 1;
    text-align: center;
    padding: 11px;
    border-radius: 6px;
    font-size: .88rem;
    font-weight: 700;
    text-decoration: none;
}

.sh-mobile-cta a:first-child {
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .8);
    border: 1px solid rgba(255, 255, 255, .12);
}

.sh-mobile-cta a:last-child {
    background: #dc291e;
    color: #fff;
    box-shadow: 0 2px 10px rgba(220, 41, 30, .3);
}

/* Responsive */
@media (max-width: 991px) {

    .sh-links,
    .sh-cta {
        display: none;
    }

    .sh-hamburger {
        display: flex;
    }

    .sh-nav-inner {
        height: 60px;
    }

    .sh-topbar-left {
        display: none;
    }

    .sh-nav .container {
        padding: 0 20px;
    }
}

@media (max-width: 575px) {
    .sh-topbar {
        display: none;
    }
}

/* ══════════════════════════════════════════════
   COMPACT HOME DROPDOWN (OLD — kept for reference)
══════════════════════════════════════════════ */
/* ===== Compact attractive Home dropdown ===== */
.nav-home-compact {
    min-width: 240px !important;
    width: auto !important;
    border-radius: 12px !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.13) !important;
    border: 1px solid rgba(0, 0, 0, 0.07) !important;
    padding: 10px 8px !important;
    top: calc(100% + 4px) !important;
    left: 0 !important;
    right: auto !important;
}

.nav-home-section-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #dc291e;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 14px 8px;
}

.nav-home-compact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none !important;
    color: #333 !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.nav-home-compact-link:hover {
    background: #fff5f5;
    color: #dc291e !important;
    text-decoration: none !important;
}

.nav-home-compact-link svg {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.2s, transform 0.2s;
}

.nav-home-compact-link:hover svg {
    opacity: 1;
    transform: translateX(3px);
}

/* ===== Home dropdown — hover trigger with animation ===== */
.nav-hover-frame:hover .nav-home-dropdown {
    display: block;
    animation: homeDropIn 0.2s ease;
}

@keyframes homeDropIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Home dropdown container ===== */
.nav-home-dropdown {
    min-width: 240px !important;
    width: 240px !important;
    border-radius: 14px !important;
    box-shadow: 0 16px 48px rgba(220, 41, 30, 0.15), 0 2px 10px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(220, 41, 30, 0.12) !important;
    padding: 0 !important;
    top: calc(100% + 10px) !important;
    left: 0 !important;
    right: auto !important;
    overflow: hidden !important;
}

/* Red gradient header bar */
.home-dd-header {
    background: linear-gradient(135deg, #dc291e 0%, #ff5447 100%);
    color: #fff;
    padding: 11px 16px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Dropdown items */
.home-dd-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    text-decoration: none !important;
    color: #222 !important;
    transition: background 0.18s ease;
    cursor: pointer;
}

.home-dd-item:hover {
    background: #fff5f5;
    text-decoration: none !important;
}

.home-dd-active {
    background: #fafafa;
    opacity: 0.7;
    pointer-events: none;
}

/* Icon circle */
.home-dd-icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: #f4f4f4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #dc291e;
    transition: background 0.18s ease;
}

.home-dd-item:hover .home-dd-icon,
.home-dd-active .home-dd-icon {
    background: #fde8e7;
}

/* Text block */
.home-dd-text {
    flex: 1;
    min-width: 0;
}

.home-dd-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.2;
}

.home-dd-sub {
    font-size: 0.74rem;
    color: #aaa;
    margin-top: 3px;
    font-weight: 400;
}

/* Tags */
.home-dd-tag {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 20px;
    background: #ececec;
    color: #999;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.home-dd-tag-new {
    background: linear-gradient(135deg, #dc291e, #ff5447);
    color: #fff;
}

/* Arrow icon */
.home-dd-arrow {
    color: #ddd;
    flex-shrink: 0;
    transition: transform 0.18s ease, color 0.18s ease;
}

.home-dd-item:hover .home-dd-arrow {
    color: #dc291e;
    transform: translateX(4px);
}

/* Divider */
.home-dd-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 0 14px;
}

/* ===== Language dropdown ===== */
.nav-lang-dropdown {
    min-width: 150px !important;
    width: 150px !important;
    border-radius: 10px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
    padding: 6px !important;
    top: calc(100% + 8px) !important;
    left: 0 !important;
}

.nav-lang-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 7px;
    text-decoration: none !important;
    color: #333 !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s ease;
}

.nav-lang-item:hover {
    background: #fff5f5;
    color: #dc291e !important;
    text-decoration: none !important;
}

.nav-lang-flag {
    font-size: 1.1rem;
    line-height: 1;
}

/* ===== Header logo — white on dark navbar ===== */
.header-navbar .header-logo {
    filter: brightness(0) invert(1);
    opacity: .92;
}

/* ===== Dark navbar ===== */
.header-navbar {
    background: #0d1824 !important;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .35);
}

.header-navbar.scrolled {
    background: #0d1824 !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .45);
}

/* Nav link text on dark background */
.header-navbar .nav-item-text {
    color: rgba(255, 255, 255, .75) !important;
}

.header-navbar .nav-item-text:hover,
.header-navbar .nav-item-text.active-page {
    color: #dc291e !important;
}

/* ===== #home-redbg — full-width hero ===== */
#home-redbg {
    background: #ffffff;
    background-image: url('../images/clean-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid #f1f3f6;
}

.parallax-overlay {
    display: none;
}

.home-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    padding: 100px 20px 50px;
}

.home-title h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    margin-bottom: 10px;
}

.home-title h1 small.white {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.3rem;
    font-weight: 400;
    display: block;
    margin-top: 10px;
}

.home-title .lead {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.15rem;
    margin: 16px 0 26px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.home-btn {
    margin-top: 10px;
}

.btn-home {
    margin: 0;
}

.btn-home a {
    display: inline-block;
    background: #dc291e;
    color: #fff;
    padding: 14px 44px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-home a:hover {
    background: #b8221a;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 26px rgba(0, 0, 0, 0.45);
}

@media (max-width: 991px) {
    #home-redbg {
        background-attachment: scroll;
        min-height: 460px;
    }

    .home-title h1 {
        font-size: 2rem;
    }

    .home-title h1 small.white {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    #home-redbg {
        min-height: 380px;
    }

    .home-title h1 {
        font-size: 1.6rem;
    }

    .btn-home a {
        padding: 12px 30px;
        font-size: 0.95rem;
    }
}