 @charset "UTF-8";

/*
Website Designed & Developed by ANSU INFO
© 2025 ANSU Info Tech / ANSU INFO
www.ansu.xin
*/
:root {
    --default-font: 'Roboto', system-ui, -apple-system, 'Segoe UI', 'Helvetica Neue', Arial, 'Noto Sans', 'Liberation Sans', sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
    --heading-font: 'Montserrat', sans-serif;
    --nav-font: 'Montserrat', sans-serif;
}

:root {
    --background-color: #ffffff;
    --default-color: #444444;
    --heading-color: #433f39;
    --accent-color: #d71718;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

:root {
    --nav-color: #ffffff;
    --nav-hover-color: #d71718;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #444444;
    --nav-dropdown-hover-color: #d71718;
}

.light-background {
    --background-color: #fffaf3;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #1e160d;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #42301c;
    --contrast-color: #ffffff;
}

:root {
    scroll-behavior: smooth;
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

/* container */
.container {
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 15px;
}

.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pulsating-play-btn {
    width: 94px;
    height: 94px;
    background: radial-gradient(var(--accent-color) 50%, color-mix(in srgb, var(--accent-color), transparent 75%) 52%);
    border-radius: 50%;
    display: block;
    position: relative;
    overflow: hidden;
}

.pulsating-play-btn:before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    animation-delay: 0s;
    animation: pulsate-play-btn 2s;
    animation-direction: forwards;
    animation-iteration-count: infinite;
    animation-timing-function: steps;
    opacity: 1;
    border-radius: 50%;
    border: 5px solid color-mix(in srgb, var(--accent-color), transparent 30%);
    top: -15%;
    left: -15%;
    background: rgba(198, 16, 0, 0);
}

.pulsating-play-btn:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 100;
    transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.pulsating-play-btn:hover:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-40%) translateY(-50%);
    width: 0;
    height: 0;
    border: none;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid #fff;
    z-index: 200;
    animation: none;
    border-radius: 0;
}

.pulsating-play-btn:hover:after {
    border-left: 15px solid var(--accent-color);
    transform: scale(20);
}

@keyframes pulsate-play-btn {
    0% {
        transform: scale(0.6, 0.6);
        opacity: 1;
    }

    100% {
        transform: scale(1, 1);
        opacity: 0;
    }
}

.header {
    --background-color: rgba(255, 255, 255, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    color: var(--default-color);
    transition: all 0.5s;
    z-index: 997;
    background-color: var(--background-color);
}

.header .topbar {
    background-color: var(--background-color);
    padding: 10px 0 10px 0;
    font-size: 14px;
    transition: all 0.5s;
}

.header .topbar .contact-info i {
    font-style: normal;
    color: var(--accent-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
    padding-left: 5px;
    color: var(--contrast-color);
}

@media (max-width: 575px) {

    .header .topbar .contact-info i a,
    .header .topbar .contact-info i span {
        font-size: 13px;
    }
}

.header .topbar .contact-info i a {
    line-height: 0;
    transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
    color: var(--contrast-color);
    text-decoration: underline;
}

.header .topbar .cta-btn {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    padding: 4px 15px 4px 15px;
    border-radius: 50px;
    transition: 0.3s;
}

.header .topbar .cta-btn:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.header .branding {
    min-height: 60px;
    padding: 15px 0;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 60px;
    margin-right: 8px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: var(--heading-color);
}

.scrolled .header {
    --background-color: rgba(21, 17, 13, 0.85);
}

/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 18px;
        font-family: var(--nav-font);
        font-weight: 400;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        text-transform: uppercase;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu .dropdown .bi-globe {
        font-size: 18px;
        ;
    }

    .navmenu li:last-child a {
        padding-right: 0;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown:last-child ul {
        left: auto;
        right: 8px;
    }

    .navmenu .dropdown:last-child ul li {
        min-width: 100px;
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

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

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    }

    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding: 60px 0 30px;
    position: relative;
}

.footer .footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-info .logo {
    line-height: 1;
}

.footer .footer-info .logo img {
    max-height: 60px;
}

.footer .footer-info .logo span {
    color: var(--heading-color);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: var(--heading-font);
}

.footer .footer-info p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
}

.footer .social-links {
    display: flex;
    gap: 12px;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    font-size: 16px;
    color: var(--default-color);
    transition: all 0.3s ease;
}

.footer .social-links a:hover {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.footer h4 {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}

.footer h4:after {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
    bottom: 0;
    left: 0;
}

.footer h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    display: inline-block;
    line-height: 1.2;
    transition: all 0.3s ease;
    position: relative;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer .footer-newsletter p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer .footer-newsletter form {
    margin-top: 25px;
}

.footer .footer-newsletter form .position-relative {
    display: flex;
    margin-bottom: 15px;
}

.footer .footer-newsletter form input[type=email] {
    height: 44px;
    border-radius: 8px;
    padding: 10px 15px;
    width: 100%;
    color: var(--default-color);
    background-color: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
    font-size: 14px;
}

.footer .footer-newsletter form input[type=email]:focus {
    outline: none;
    border-color: var(--accent-color);
}

.footer .footer-newsletter form input[type=email]::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.footer .footer-newsletter form .btn-subscribe {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border: 0;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transition: 0.3s;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
}

.footer .footer-newsletter form .btn-subscribe:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-newsletter form .btn-subscribe i {
    font-size: 18px;
}

.footer .footer-middle {
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-middle .payment-icons,
.footer .footer-middle .badge-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer .footer-middle .payment-icons i,
.footer .footer-middle .badge-icons i {
    font-size: 24px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    transition: color 0.3s ease;
}

.footer .footer-middle .payment-icons i:hover,
.footer .footer-middle .badge-icons i:hover {
    color: var(--accent-color);
}

.footer .footer-bottom {
    padding-top: 25px;
}

.footer .footer-bottom .copyright p {
    margin-bottom: 0;
    font-size: 13px;
}

.footer .footer-bottom .credits {
    padding-top: 5px;
}

.footer .footer-bottom .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-end;
}

@media (max-width: 767.98px) {
    .footer .footer-bottom .legal-links {
        justify-content: center;
        margin-bottom: 15px;
    }
}

.footer .footer-bottom .legal-links a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 13px;
    transition: color 0.3s ease;
}

.footer .footer-bottom .legal-links a:hover {
    color: var(--accent-color);
}

@media (max-width: 991.98px) {

    .footer .footer-links,
    .footer .footer-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .footer .trust-badges {
        text-align: left !important;
        margin-top: 20px;
    }

    .footer .copyright,
    .footer .credits {
        text-align: center;
    }
}
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

.page-title {
    color: var(--default-color);
    background-color: #000;
    position: relative;
}

.page-title .heading {
    padding: 160px 0 60px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.page-title .heading h1 {
    font-size: 38px;
    font-weight: 700;
}

.page-title nav {
    background-color: color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title nav ol li+li {
    padding-left: 10px;
}

.page-title nav ol li a {
    color: #ca0000;
}

.page-title nav ol li a.active {
    color: #ffffff;
}

.page-title nav ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 112px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 105px;
    }
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 700;
    padding: 8px 20px;
    margin: 0;
    background: #f7f7f7;
    border: 1px solid #e9e9e9;
    color: var(--accent-color);
    display: inline-block;
    text-transform: uppercase;
    border-radius: 50px;
    font-family: var(--default-font);
}

.section-title div {
    color: var(--heading-color);
    margin: 10px 0 0 0;
    font-size: 32px;
    font-weight: 700;
    font-family: var(--heading-font);
}

.section-title div .description-title {
    color: var(--accent-color);
}
.gallery-3 {
    overflow: hidden;
}

.gallery-3 .swiper-wrapper {
    height: auto;
}

.gallery-3 .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.gallery-3 .swiper-pagination .swiper-pagination-bullet {
    background-color: var(--background-color);
    border: 1px solid var(--accent-color);
    width: 12px;
    height: 12px;
    opacity: 1;
}

.gallery-3 .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.gallery-3 .swiper-slide-active {
    text-align: center;
}

@media (min-width: 992px) {
    .gallery-3 .swiper-wrapper {
        padding: 40px 0;
    }

    .gallery-3 .swiper-slide-active {
        background: var(--background-color);
        border: 6px solid var(--accent-color);
        padding: 4px;
        z-index: 1;
        transform: scale(1.2);
        transition: none;
    }
}

.floating-toolbar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 9999;
}

.icon-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

.icon-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.lang-menu {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    padding: 0.5rem 0;
}

.lang-menu .dropdown-item:hover {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .floating-toolbar {
        top: auto !important;
        bottom: 80px;
        transform: none !important;
    }
}

/* Quote */

/*  modal  */
.modal-header {
    justify-content: center;
    border-bottom: none;
    padding: 2.25rem 1.5rem 1.25rem 1.5rem;
}

/* title */
.modal-title {
    font-weight: 700;
    font-size: 2rem;
    text-align: center;
    color: #333;
}

/* modal bg */
.modal-content {
    border-radius: 1rem;
    background-color: #fcfcfc;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-body input,
.modal-body textarea {
    border-radius: 0.75rem;
    border: 1px solid #ddd;
    padding: 1rem;
    font-size: 16px;
    transition: all 0.2s ease-in-out;
}

.modal-body input:focus,
.modal-body textarea:focus {
    border-color: #d71718;
    /* 统一与按钮背景色一致 */
    box-shadow: 0 0 0 0.2rem rgba(215, 23, 24, 0.3);
    outline: none;
}

.modal-footer {
    border-top: none;
    padding: 1rem 1.5rem 3.5rem 1.5rem;
}

.modal-footer .btn-primary {
    background-color: #d71718;
    border: none;
    padding: 0.75rem 5rem;
    font-size: 18px;
    color: white;
    border-radius: 50px;
    transition: background-color 0.3s ease;
}

.modal-footer .btn-primary:hover {
    background-color: #b81515;
}

.modal-body {
    padding: 1.5rem;
    text-align: center;
}

.modal-dialog {
    max-width: 600px;
}

.dlp-mobile-actions {
    display: none;
}

.dlp-proof-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.25rem;
    padding: 0;
    margin: -1rem 0 2rem;
    list-style: none;
}

.dlp-proof-list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--heading-color);
    font-size: 0.95rem;
    font-weight: 600;
}

.dlp-proof-list i {
    flex: 0 0 auto;
    color: var(--accent-color);
}

.contact-4 .info-item .content a.email-link,
.contact-4 .info-item .content a.email-link:visited {
    color: var(--contrast-color);
    font-weight: 700;
}

.contact-4 .info-item .content a.email-link:hover {
    color: #fff;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header .branding {
        min-height: 64px;
        padding: 8px 0;
    }

    .header .branding > .container {
        min-height: 48px;
    }

    .header .logo {
        min-width: 0;
        max-width: calc(100% - 52px);
    }

    .header .logo img {
        width: auto;
        max-width: 100%;
        max-height: 48px;
        object-fit: contain;
    }

    .header .navmenu {
        position: relative;
        flex: 0 0 36px;
        width: 36px;
        margin-left: auto;
        transform: none;
    }

    .mobile-nav-toggle {
        display: inline-block;
        margin-right: 0 !important;
    }

    .mobile-nav-active .header .navmenu {
        position: fixed;
        inset: 0;
        overflow: hidden;
        width: auto !important;
        min-width: 100vw;
        max-width: none;
        left: 0 !important;
        right: 0 !important;
        margin: 0 !important;
        flex: 0 0 auto;
        background: rgba(33, 37, 41, 0.8);
    }

    .mobile-nav-active .header .navmenu > ul {
        right: 16px;
        left: 16px;
        width: auto;
    }

    .mobile-nav-active .header .mobile-nav-toggle {
        color: #fff !important;
    }

    .mobile-nav-active .navmenu .dropdown > ul {
        max-width: calc(100% - 32px);
        margin: 8px 16px;
    }

    .mobile-nav-active .navmenu .dropdown > ul a,
    .mobile-nav-active .navmenu .dropdown > ul a:focus {
        white-space: normal;
        overflow-wrap: anywhere;
        font-size: 15px;
        line-height: 1.4;
        padding: 10px 16px;
    }

    .navmenu {
        width: 36px;
    }

    .mobile-nav-toggle {
        margin-right: 0 !important;
    }

    .header-phone-btn,
    .floating-toolbar {
        display: none !important;
    }

    .hero-3 {
        min-height: 0;
        padding: 48px 0 56px;
    }

    .hero-3 .hero-content {
        margin-bottom: 2rem;
    }

    .hero-3 .hero-content .title {
        font-size: clamp(2rem, 8vw, 2.8rem);
        line-height: 1.12;
        letter-spacing: 0;
        margin-bottom: 1.25rem;
    }

    .hero-3 .hero-content .description p {
        font-size: 1rem;
        line-height: 1.65;
    }

    .hero-3 .hero-content .hero-buttons {
        align-items: stretch;
    }

    .hero-3 .hero-content .hero-buttons a {
        width: 100%;
    }

    .hero-3 .hero-visual .image-wrapper {
        border-radius: 12px;
    }

    .page-title .heading {
        padding: 112px 0 44px;
    }

    .page-title .heading h1,
    .page-title .heading .heading-title {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
        line-height: 1.15;
    }

    .Technical .emergency-alert {
        padding: 1.5rem;
    }

    .contact-4 .contact-form,
    .contact-4 .info-box {
        border-radius: 12px;
    }

    .contact-4 .contact-form .btn {
        width: 100%;
        justify-content: center;
    }

    .dlp-mobile-actions {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1040;
        min-height: 58px;
        background: #fff;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.12);
    }

    .dlp-mobile-action {
        flex: 1;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        border: 0;
        border-radius: 0;
        color: #fff;
        font-weight: 700;
        text-decoration: none;
    }

    .dlp-mobile-action i {
        font-size: 1.1rem;
    }

    .dlp-mobile-action-email {
        background: #25364a;
    }

    .dlp-mobile-action-quote {
        background: var(--accent-color);
    }

    body.product-page {
        padding-bottom: 58px;
    }

    .dlp-proof-list {
        grid-template-columns: 1fr;
        gap: 0.65rem;
        margin: -0.5rem 0 1.5rem;
        text-align: left;
    }
}

.lang-dropdown {
    min-width: 200px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #eee;
}

.lang-dropdown .dropdown-item {
    padding: 8px 12px;
    transition: all 0.2s ease-in-out;
    font-size: 15px;
}

.lang-dropdown .dropdown-item:hover {
    background-color: #f5f5f5;
    border-radius: 6px;
}

.lang-dropdown img {
    border-radius: 3px;
}

@media (max-width: 767.98px) {

    .nav-item.dropdown .nav-link i,
    .nav-item.dropdown .nav-link span {
        color: #000 !important;
    }

    .modal-dialog {
        max-width: 600px;
    }
}

.success {
    padding: 80px 0;
    margin: 0 auto;
}

.success .success-icon {
    font-size: 5rem;
    color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.success .success-code {
    font-size: 3rem;
    font-weight: 800;
    color: color-mix(in srgb, var(--heading-color), transparent 10%);
    font-family: var(--heading-font);
    line-height: 1;
}

.success .success-title {
    font-size: 2rem;
    color: var(--heading-color);
    font-weight: 600;
}

.success .success-text {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    max-width: 600px;
    margin: 0 auto;
}

.success .search-box {
    max-width: 500px;
    margin: 0 auto;
}

.success .search-box .input-group {
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.success .search-box .form-control {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    color: var(--default-color);
    background-color: var(--surface-color);
    border-radius: 50px;
}

.success .search-box .form-control:focus {
    box-shadow: none;
    border-color: var(--accent-color);
}

.success .search-box .form-control::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.success .search-box .search-btn {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.success .search-box .search-btn:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.success .success-action .btn-primary {
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    background-color: var(--accent-color);
    border: none;
    color: var(--contrast-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.success .success-action .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .success {
        padding: 60px 0;
    }

    .success .success-code {
        font-size: clamp(4rem, 12vw, 8rem);
    }

    .success .success-title {
        font-size: 1.5rem;
    }

    .success .success-text {
        font-size: 1rem;
        padding: 0 20px;
    }

    .success .search-box {
        margin: 0 20px;
    }
}
