:root {
    --cs-dark: #071a2d;
    --cs-navy: #0b1f33;
    --cs-gold: #c99a2e;
    --cs-green: #2fa84f;
    --cs-white: #ffffff;
    --cs-light: #f5f7fa;
    --cs-text: #1b1b1b;
    --cs-muted: #6b7280;
    --cs-border: rgba(255,255,255,0.15);
    --cs-shadow: 0 18px 45px rgba(7, 26, 45, 0.18);
}

.cs-topbar {
    background: var(--cs-dark);
    color: var(--cs-white);
    font-size: 14px;
    padding: 10px 0;
}

.cs-topbar a {
    color: inherit;
    text-decoration: none;
}

.cs-topbar a:hover {
    color: var(--cs-gold);
}

.cs-topbar i {
    color: var(--cs-gold);
    margin-right: 7px;
}

.cs-text-green {
    color: var(--cs-green);
}

.cs-main-header {
    background: var(--cs-white);
    border-bottom: 1px solid #eef0f3;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(7, 26, 45, 0.06);
}

.cs-header-inner {
    min-height: 86px;
}

.cs-logo img {
    max-height: 68px;
    width: auto;
}

.cs-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.cs-nav li {
    position: relative;
}

.cs-nav > ul > li > a {
    color: var(--cs-navy);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding: 32px 0;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.25s ease;
}

.cs-nav > ul > li > a:hover,
.cs-nav > ul > li.active > a {
    color: var(--cs-gold);
}

.cs-nav > ul > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 22px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--cs-gold), var(--cs-green));
    border-radius: 20px;
    transition: 0.25s ease;
}

.cs-nav > ul > li:hover > a::after,
.cs-nav > ul > li.active > a::after {
    width: 100%;
}

.cs-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 330px;
    background: var(--cs-white);
    border-radius: 16px;
    padding: 12px;
    box-shadow: var(--cs-shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(14px);
    transition: 0.25s ease;
    border: 1px solid #edf0f4;
}

.cs-dropdown:hover .cs-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.cs-dropdown-menu li {
    width: 100%;
}

.cs-dropdown-menu li a {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--cs-navy);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 12px;
    border-radius: 10px;
    line-height: 1.35;
    transition: 0.25s ease;
}

.cs-dropdown-menu li a i {
    color: var(--cs-green);
    margin-top: 2px;
    min-width: 16px;
}

.cs-dropdown-menu li a:hover {
    background: var(--cs-light);
    color: var(--cs-gold);
}

.cs-dropdown-arrow {
    font-size: 12px;
    transition: 0.25s ease;
}

.cs-dropdown:hover .cs-dropdown-arrow {
    transform: rotate(180deg);
}

.cs-quote-btn {
    background: linear-gradient(135deg, var(--cs-gold), #e4b84e);
    color: var(--cs-dark);
    padding: 13px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.25s ease;
    box-shadow: 0 10px 24px rgba(201, 154, 46, 0.28);
}

.cs-quote-btn:hover {
    background: var(--cs-green);
    color: var(--cs-white);
    transform: translateY(-2px);
}

.cs-mobile-menu-btn {
    font-size: 25px;
    color: var(--cs-navy);
    cursor: pointer;
    display: none;
}

.cs-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(7, 26, 45, 0.6);
    opacity: 0;
    visibility: hidden;
    z-index: 99998;
    transition: 0.3s ease;
}

.cs-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cs-mobile-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100%;
    background: var(--cs-white);
    z-index: 99999;
    padding: 22px;
    transition: 0.35s ease;
    box-shadow: 10px 0 40px rgba(0,0,0,0.2);
    overflow-y: auto;
}

.cs-mobile-sidebar.active {
    left: 0;
}

.cs-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.cs-mobile-logo img {
    max-height: 62px;
}

.cs-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cs-light);
    color: var(--cs-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s ease;
}

.cs-close-btn:hover {
    background: var(--cs-gold);
    color: var(--cs-white);
}

.cs-mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-mobile-nav > li {
    border-bottom: 1px solid #eef0f3;
}

.cs-mobile-nav > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--cs-navy);
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 0;
}

.cs-mobile-nav > li > a:hover {
    color: var(--cs-gold);
}

.cs-mobile-dropdown-link {
    cursor: pointer;
}

.cs-mobile-submenu {
    display: none;
    list-style: none;
    padding: 0 0 12px 14px;
    margin: 0;
}

.cs-mobile-submenu li a {
    display: flex;
    gap: 9px;
    color: var(--cs-muted);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 9px 0;
    line-height: 1.35;
}

.cs-mobile-submenu li a i {
    color: var(--cs-green);
    margin-top: 2px;
}

.cs-mobile-dropdown.active .cs-mobile-submenu {
    display: block;
}

.cs-mobile-dropdown.active .cs-mobile-dropdown-link i {
    transform: rotate(180deg);
}

.cs-mobile-quote {
    margin-top: 22px;
}

.cs-mobile-quote .cs-quote-btn {
    width: 100%;
    justify-content: center;
}

@media (max-width: 1199px) {
    .cs-nav ul {
        gap: 22px;
    }

    .cs-nav > ul > li > a {
        font-size: 14px;
    }

    .cs-quote-btn {
        padding: 12px 18px;
    }
}
@media (min-width: 992px) {
    .cs-dropdown {
        position: relative;
    }

    .cs-dropdown-menu {
        position: absolute;
        top: calc(100% + 0px);
        left: 0;
        min-width: 340px;
        background: #ffffff;
        border-radius: 16px;
        padding: 12px;
        box-shadow: 0 18px 45px rgba(7, 26, 45, 0.18);
        border: 1px solid #edf0f4;
        list-style: none;
        margin: 0;
        z-index: 99999;

        display: block !important;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(14px);
        transition: all 0.25s ease;
    }

    .cs-dropdown:hover > .cs-dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .cs-dropdown-menu li {
        width: 100%;
        display: block;
    }

    .cs-dropdown-menu li a {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        color: #0b1f33;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        padding: 11px 12px;
        border-radius: 10px;
        line-height: 1.35;
        transition: 0.25s ease;
        white-space: normal;
    }

    .cs-dropdown-menu li a i {
        color: #2fa84f;
        margin-top: 2px;
        min-width: 16px;
    }

    .cs-dropdown-menu li a:hover {
        background: #f5f7fa;
        color: #c99a2e;
    }

    .cs-dropdown:hover .cs-dropdown-arrow {
        transform: rotate(180deg);
    }
}

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

    .cs-header-inner {
        min-height: 78px;
        position: relative;
    }

    .cs-mobile-menu-btn {
        display: block;
    }

    .cs-nav,
    .cs-header-btn {
        display: none;
    }

    .cs-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .cs-logo img {
        max-height: 58px;
    }
}

@media (max-width: 480px) {
    .cs-mobile-sidebar {
        width: 285px;
        left: -305px;
    }

    .cs-logo img {
        max-height: 52px;
    }
}


























.cs-footer {
    background: var(--cs-dark);
    color: var(--cs-white);
    position: relative;
    overflow: hidden;
}

.cs-footer::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background: rgba(201, 154, 46, 0.12);
    border-radius: 50%;
    top: -140px;
    right: -100px;
    pointer-events: none;
}

.cs-footer::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(47, 168, 79, 0.1);
    border-radius: 50%;
    bottom: 20px;
    left: -90px;
    pointer-events: none;
}

.cs-footer-main {
    padding: 85px 0 40px;
    position: relative;
    z-index: 2;
}

.cs-footer-widget {
    height: 100%;
}

.cs-footer-logo {
    display: inline-block;
    background: var(--cs-white);
    padding: 12px 16px;
    border-radius: 18px;
    margin-bottom: 22px;
}

.cs-footer-logo img {
    max-width: 250px;
    width: 100%;
    height: auto;
}

.cs-footer-about p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.8;
    margin-bottom: 24px;
}

.cs-footer-widget h3 {
    font-size: 21px;
    font-weight: 900;
    color: var(--cs-white);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.cs-footer-widget h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--cs-gold), var(--cs-green));
    border-radius: 20px;
}

.cs-footer-links,
.cs-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-footer-links li {
    margin-bottom: 12px;
}

.cs-footer-links li a {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    transition: 0.25s ease;
}

.cs-footer-links li a i {
    color: var(--cs-gold);
    font-size: 12px;
    margin-top: 5px;
    transition: 0.25s ease;
}

.cs-footer-links li a:hover {
    color: var(--cs-gold);
    transform: translateX(4px);
}

.cs-footer-links li a:hover i {
    color: var(--cs-green);
}

.cs-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.6;
}

.cs-footer-contact li i {
    color: var(--cs-gold);
    margin-top: 4px;
    min-width: 18px;
}

.cs-footer-contact li a,
.cs-footer-contact li span {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
    transition: 0.25s ease;
}

.cs-footer-contact li a:hover {
    color: var(--cs-gold);
}

.cs-footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cs-footer-social a {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--cs-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.25s ease;
}

.cs-footer-social a:hover {
    background: var(--cs-gold);
    color: var(--cs-dark);
    transform: translateY(-3px);
}

.cs-footer-cta {
    margin-top: 24px;
}

.cs-footer-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--cs-gold), #e3bd5a);
    color: var(--cs-dark);
    padding: 13px 20px;
    border-radius: 40px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    transition: 0.25s ease;
}

.cs-footer-cta a:hover {
    background: var(--cs-green);
    color: var(--cs-white);
    transform: translateY(-3px);
}

.cs-footer-service-strip {
    margin-top: 48px;
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.11);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.cs-footer-service-strip a {
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    padding: 9px 15px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.07);
    transition: 0.25s ease;
}

.cs-footer-service-strip a:hover {
    background: var(--cs-green);
    color: var(--cs-white);
}

.cs-footer-bottom {
    background: #03101d;
    padding: 18px 0;
    position: relative;
    z-index: 2;
}

.cs-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cs-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
}

.cs-footer-bottom-links {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.cs-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 14px;
    transition: 0.25s ease;
}

.cs-footer-bottom-links a:hover {
    color: var(--cs-gold);
}

@media (max-width: 991px) {
    .cs-footer-main {
        padding: 70px 0 35px;
    }

    .cs-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .cs-footer-widget h3 {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .cs-footer-logo img {
        max-width: 220px;
    }

    .cs-footer-service-strip {
        justify-content: flex-start;
    }

    .cs-footer-service-strip a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cs-footer-main {
        padding: 55px 0 30px;
    }

    .cs-footer-logo {
        padding: 10px 12px;
    }

    .cs-footer-widget h3 {
        font-size: 19px;
    }

    .cs-footer-cta a {
        width: 100%;
        justify-content: center;
    }
}