/* @font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}-

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter";
    src: url("../fonts/Inter-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
} */

/* Montserrat */

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;

}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Medium.woff2") format("woff2");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-SemiBold.woff2") format("woff2");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Montserrat";
    src: url("../fonts/Montserrat-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


:root {
    --default-font: "Montserrat", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
    --heading-font: "Montserrat", Arial, sans-serif;
    --nav-font: "Montserrat", Arial, sans-serif;
}

:root {
    --background-color: #ffffff;
    --default-color: #212529;
    --heading-color: #2d465e;
    --accent-color: #20438e;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
}

:root {
    --nav-color: #212529;
    --nav-hover-color: #20438e;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #212529;
    --nav-dropdown-hover-color: #20438e;
}

:root {
    --primary-blue: #1a3a8f;
    --primary-blue-hover: #2a4a9f;
    --bg-gray: #f5f5f5;
    --border-gray: #e0e0e0;
    --orange-badge: #ff6600;
    --green-check: #4caf50;
    --text-gray: #999999;
}

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

.dark-background {
    --background-color: #060606;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --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);
}

/* PHP Email Form Messages
------------------------------*/
.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);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: var(--default-color);
    background-color: var(--background-color);
    transition: all 0.5s;
    z-index: 997;
    padding: 36px 0;
    padding-bottom: 24px;
}

.header .top-row {
    padding-bottom: 10px;
}

.header .top-row .logo {
    text-decoration: none;
}

.header .top-row .logo img {
    max-height: 36px;
    margin-right: 10px;
}

.header .top-row .logo .sitename {
    font-size: 28px;
    font-weight: 700;
    color: var(--heading-color);
    font-family: var(--heading-font);
    margin: 0;
}

.header .social-links a {
    color: var(--heading-color);
    padding: 0 8px;
    display: inline-block;
    font-size: 18px;
    transition: 0.3s;
}

.header .social-links a:hover {
    color: var(--accent-color);
}

@media (max-width: 1200px) {
    .header .social-links {
        padding-right: 40px;
    }
}

.header .search-form {
    position: relative;
    width: 250px;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.header .search-form .form-control {
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 7px 40px 7px 15px;
    background: transparent;
    transition: 0.3s;
    color: var(--default-color);
    font-size: 14px;
}

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

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

.header .search-form button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 15px;
    margin: 0;
    color: var(--heading-color);
    transition: 0.3s;
}

.header .search-form button:hover {
    color: var(--accent-color);
}

@media (max-width: 1200px) {
    .header .search-form {
        display: none;
    }
}

.header .nav-wrap {
    margin-top: 10px;
    display: flex;
    justify-content: center;
}

.header .mobile-nav-toggle {
    /* position: fixed; */
    top: 20px;
    right: 5px;
}

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

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

    .navmenu li {
        position: relative;

    }

    .navmenu>ul>li {
        white-space: nowrap;
        padding: 0;
        padding: 0 6px;
    }
    .navmenu > ul > li:first-child {
      padding-left: 0 !important;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--accent-color);
        font-size: 18px;
        padding: 2px 15px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        /* letter-spacing: -0.5px; */
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        border-radius: 5px;
        background: transparent;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 13px;
        line-height: 0;
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .navmenu>ul>li>a:hover,
    .navmenu>ul>li>.active,
    .navmenu>ul>li>.active:focus {
        background: var(--accent-color);
        color: var(--contrast-color);
    }

    .navmenu>ul>li:hover>a i {
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        margin: 0;
        background: #20438e;
        display: block;
        position: absolute;
        visibility: hidden;
        left: 0;
        top: calc(100% + 15px);
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-right-radius: 13px;
        border-bottom-left-radius: 13px;
        z-index: 99;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
        min-width: 220px;
        margin-top: 16px;
    }

    .navmenu .dropdown ul::before {
        content: "";
        position: absolute;
        top: -24px;
        left: 0;
        width: 100%;
        height: 24px;
        background: transparent;
    }

    .navmenu .dropdown:hover>ul {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .navmenu .dropdown ul li {
        min-width: 100%;
        border-bottom: 1px solid #1c3c81;
    }

    .navmenu .dropdown ul li:last-child {
        border-bottom: none;
    }

    .navmenu .dropdown ul a {
        padding: 12px 22px;
        font-size: 16px;
        text-transform: none;
        font-weight: 400;
        letter-spacing: 0;
        color: #fff;
    }

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

    .navmenu .dropdown ul a:hover {
        background: #0d61b7;
        color: #fff;
    }

    .navmenu .dropdown ul .active,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        background: #0d61b7;
        color: #fff;
        border-radius: 0;
    }

    .navmenu .dropdown ul li:last-child a:hover {
        border-bottom-right-radius: 13px;
        border-bottom-left-radius: 13px;
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        transform: translateY(0);
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: -8px;
        left: calc(-100% - 8px);
        visibility: hidden;
        transform: translateX(10px);
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: -8px;
        left: calc(-100% - 8px);
        transform: translateX(0);
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: #ffffff;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        background: #20438e;
    }

    .mobile-nav-toggle:hover {
        background: #133f9f;
    }

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

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 70px 16px 16px 16px;
        padding: 20px 12px;
        margin: 0;
        border-radius: 8px;
        background: #20438e;
        border: none;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        overflow-y: auto;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: #fff;
        padding: 14px 20px;
        font-family: var(--nav-font);
        font-size: 18px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: all 0.3s ease;
        margin: 4px 0;
        border-bottom: 1px solid #385697;
    }

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

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

    .navmenu a:hover {
        background: color-mix(in srgb, var(--accent-color), transparent 92%);
        color: #fff;
    }

    .navmenu .active,
    .navmenu .active:focus {
        background: color-mix(in srgb, var(--accent-color), transparent 88%);
        color: #fff;
    }

    .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: 0;
        background: #0d61b7;
        border-radius: 0;
        /* border-left: 3px solid #0b76e0; */
        transition: all 0.4s ease-in-out;
        box-shadow: none;
        inset: unset;
    }

    .navmenu .dropdown ul a {
        padding: 16px 16px;
        font-size: 17px;
        border-bottom: 1px solid #056bd4;
    }

    .navmenu .dropdown ul ul {
        background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
        margin-left: 12px;
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
    }

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

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 28px;
        top: 16px;
        right: 16px;
        margin-right: 0;
        z-index: 9999;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
    }

    .mobile-nav-active .mobile-nav-toggle:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(8px);
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

@media (max-width: 1199.98px) {
    #header {
        position: static !important;
        top: auto !important;
        z-index: auto !important;
        box-shadow: none;
    }
}


.header {
    padding: 10px 0 16px;
}

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

.footer .footer-bottom .logo img {
    max-height: 30px;
    height: 30px;
    width: auto;
}

.header-right {
    gap: 20px;
}

.header-email {
    margin-right: 220px;
}

.header-email i {
    font-size: 32px;
    color: #0e6acc;
}

.header-email a {
    text-decoration: none;
    font-weight: 100;
    color: #000;
    font-size: 16px;
    font-family: var(--heading-font);
    letter-spacing: 1px;
}

.header-email a:hover {
    color: var(--accent-color);
}

.btn-shop,
.btn-quote {
    padding: 6px 24px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 100;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

.btn-shop {
    border: 1px solid #000;
    color: #000;
    background: transparent;
}

.btn-shop:hover {
    background: linear-gradient(to bottom, #0b65c5, #014687);
    color: #fff;
}

.btn-quote {
    background: linear-gradient(to bottom, #0b65c5, #014687);
    border: 1px solid var(--accent-color);
    color: #fff;
}

.btn-quote:hover {
    border: 1px solid #000;
    color: #000;
    background: transparent;
}

.btn-quote.active {
    border: 1px solid #000;
    color: #000;
    background: transparent;
}

.mobile-contact-area {
    display: none;
}

/* 移动端样式 */
@media (max-width: 1199px) {

    .header {
        padding: 20px 0;
    }

    .mobile-contact-area {
        display: block;
        margin-top: 15px;
    }

    .mobile-email {
        font-size: 16px;
        font-weight: 500;
    }

    .mobile-email i {
        font-size: 30px;
        color: var(--accent-color);
    }

    .mobile-contact-area .btn {
        padding:10px 14px;
        border-radius: 40px;
        font-size: 14px;
        letter-spacing: 2px;
        font-weight: 600;
    }

}

/* ======================
PC DROPDOWN (修复后)
====================== */
.quote-dropdown {
    position: relative; 
}

.quote-menu {
    margin-top: 3px !important;  
    background: #20438e;
    border: 0;
    padding: 0;
    min-width: 230px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: absolute;
}

.quote-menu::before {
    content: "";
    position: absolute;
    top: -5px;      
    left: 0;
    width: 100%;
    height: 5px;   
    background: transparent; 
}

.quote-menu .dropdown-item {
    color: #fff;
    padding: 12px 18px;
    border-bottom: 1px solid #003a7a;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

.quote-menu li:last-child .dropdown-item {
    border-bottom: none;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.quote-menu .dropdown-item:hover {
    background: #0d61b7;
    color: #fff;
}

/* PC hover 打开 */
@media (min-width:1200px) {
    .quote-dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* ======================
MOBILE MENU
====================== */
.mobile-quote-menu {
    display: none;
    background: #20438e;
    border-radius: 10px;
    margin-top: 10px;
    overflow: hidden;
}

.mobile-quote-menu a {
    display: block;
    padding: 12px 16px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid #003a7a;
    font-size: 14px;
}

.mobile-quote-menu a:last-child {
    border-bottom: none;
}

.mobile-quote-menu a:hover {
    background: #17326e;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background: #1c1c1c;
    font-size: 14px;
    padding: 50px 0 0;
    position: relative;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

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

.footer .footer-content .logo span {
    color: var(--heading-color);
    font-size: 22px;
    font-weight: 500;
    font-family: var(--heading-font);
}

.footer .footer-content p {
    font-size: 13px;
    line-height: 1.6;
    color: #909090;
    font-weight: 500;
}

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

.footer .newsletter-form h5 {
    color: var(--heading-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
    position: relative;
    display: flex;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
    flex: 1;
    padding: 12px 20px;
    border: none;
    background-color: var(--surface-color);
    color: var(--default-color);
    font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
    outline: none;
    box-shadow: none;
}

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

.footer .newsletter-form .btn-subscribe {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    transition: 0.3s;
}

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

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

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
    font-size: 13px;
    margin-top: 8px;
}

.footer h4 {
    color: var(--heading-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    font-family: var(--heading-font);
}

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

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

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

.footer .footer-links ul li:hover {
    transform: translateX(5px);
}

.footer .footer-links ul a {
    color: #909090;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    transition: 0.3s;
}

.footer .footer-links ul a:hover {
    color: #a6a6a6;
}

.footer .footer-links ul a i {
    margin-right: 8px;
    font-size: 12px;
    color: var(--accent-color);
}

.footer .footer-contact .contact-item {
    display: flex;
    align-items: flex-start;
}

.footer .footer-contact .contact-item .contact-icon {
    width: 26px;
    height: 26px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
    color: #909090;
    font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 13px;
    line-height: 1.5;
    color: #909090;
}

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

.footer .social-links a {
    width: 42px;
    height: 42px;
    background-color: #fff;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    text-decoration: none;
}

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

.footer .social-links a:nth-child(1):hover {
    background: #1877F2 !important;
}

.footer .social-links a:nth-child(2):hover {
    background: #000000 !important;
}

.footer .social-links a:nth-child(3):hover {
    background: #E4405F !important;
}

.footer .social-links a:nth-child(4):hover {
    background: #e60023 !important;
    /* Pinterest 官方红 */
}

.footer .social-links a:nth-child(5):hover {
    background: #FF0000 !important;
}

.footer .social-links a i {
    font-size: 18px;
    color: inherit;
}

.footer .footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    background-color: #000;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-bottom .copyright p {
    margin: 0;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
    .footer .footer-bottom .copyright p {
        text-align: center;
        margin-bottom: 15px;
    }
}

.footer .footer-bottom .footer-bottom-links {
    text-align: right;
    margin-bottom: 8px;
}

@media (max-width: 991px) {
    .footer .footer-bottom .footer-bottom-links {
        text-align: center;
        margin-bottom: 10px;
    }
}

.footer .footer-bottom .footer-bottom-links a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 13px;
    margin-left: 20px;
    text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
    margin-left: 0;
}

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

@media (max-width: 991px) {
    .footer .footer-bottom .footer-bottom-links a {
        margin: 0 10px;
    }
}

.footer .footer-bottom .credits {
    text-align: right;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
    .footer .footer-bottom .credits {
        text-align: center;
    }

}

.footer .footer-bottom .credits a {
    color: var(--accent-color);
    text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .footer-bottom .col-lg-4 .logo{
        justify-content: center; 
        margin-bottom: 20px;    
    }
}

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

    .footer .footer-content {
        text-align: left;
        margin-bottom: -40px;
    }

    .footer .footer-links,
    .footer .footer-contact {
        margin-bottom: 4px;
    }

    .header-email {
        margin-right: 100px;
    }

    .quote-menu .dropdown-item {
        color: #fff;
        padding: 12px 14px;
        border-bottom: 1px solid #003a7a;
        font-size: 12px;
    }
}

input[type=text],
input[type=email],
textarea {
    color: #000;
    background-color: var(--surface-color);
    font-size: 17px;
    border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
    border-color: var(--accent-color);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
    color: #000;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.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;
}


/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: #fff;
    background-color: #343435;
    padding: 18px 0;
    position: relative;
}

.page-title h1 {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
}

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

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

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.page-title .breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    background-color: #ed9c2a;
}

.page-title .btn .btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    border-radius: 0.5rem;
    background: #ed9c2a !important;
    letter-spacing: 0.5px;
    font-size: 16px;
    border: 1px solid #ed9c2a;
}

.page-title .btn .btn-quote:hover {
    background: #f0b45c !important;
    color: #fff;
}

.page-title .breadcrumbs ol {
    margin: 0;
}

.page-title .breadcrumbs ol li a {
    color: #fff;
    text-decoration: none;
}

.page-title .breadcrumbs ol li.current {
    color: #fff;
}

/*--------------------------------------------------------------
# Pricing Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.pricing-page-title {
    color: #fff;
    background-color: #343435;
    padding: 10px 0;
    position: relative;

}

.pricing-page-title h1 {
    font-size: 52px;
    font-weight: 600;
    color: #fff;

}

.vector-pricing-section {
    background: #f7f9fd;
    padding-bottom: 0px;
}

.pricing-title {
    font-size: 39px;
    font-weight: 700;
    color: #2f4ea2;
    margin-top: 30px;
}

.pricing-desc {
    font-size: 24px;
    color: #3d3d3d;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 20px;
}

@media (max-width:768px) {
    .vector-pricing-section {
        padding: 10px 0;
    }

    .pricing-page-title h1 {
        font-size: 30px;
        font-weight: 600;
        color: #fff;
        letter-spacing: -1px;
    }

    .pricing-title {
        font-size: 28px;
    }

    .pricing-desc {
        font-size: 16px;
        padding: 0 10px;
    }

}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 30px 0;
    scroll-margin-top: 90px;
    overflow: clip;
    padding-bottom: 60px;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 10px;
    position: relative;
}

.section-title h2 {
    font-size: 60px;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-style: italic;
    color: #424242;
    font-family: var(--default-font);
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Global Section-title2 Titles
--------------------------------------------------------------*/
.section-title2 {
    text-align: center;
    padding-bottom: 20px;
    position: relative;
}

.section-title2 h2 {
    font-size: 52px;
    font-weight: 700;
    text-transform: uppercase;
    color: #424242;
    font-family: var(--default-font);
    display: inline-block;
    padding-bottom: 2px;
    position: relative;
}

.section-title2 h2::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 10px);
    width: calc(100% + 40px);
    height: 2px;
    background: #444;
}

.section-title2 p {
    margin-bottom: 0;
    font-size: 30px;
    text-transform: uppercase;
    color: #424242;
    font-weight: 600;
    margin-top: 15px;
    font-family: var(--heading-font);
}

@media (max-width: 768px) {
    .section-title2 h2 {
        font-size: 40px;
    }

    .section-title2 h2::after {
        width: min(60vw, 240px);
    }

    .section-title2 p {
        font-size: 22px;
    }

    .section-title h2{
        font-size:38px;
    }
}

/*--------------------------------------------------------------
# Global Section-title3 Titles
--------------------------------------------------------------*/
.section-title3 {
    text-align: center;
    padding-bottom: 20px;
    position: relative;
}

.section-title3 h2 {
    font-size: 51px;
    font-weight: 900;
    margin-bottom: 0px;
    text-transform: uppercase;
    color: #204391;
    font-family: var(--heading-color);
    letter-spacing: -0.7px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.hero .hero-wrapper {
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 85%) 100%);
    padding: 80px 0 80px;
}

@media (max-width: 992px) {
    .hero .hero-wrapper {
        padding: 56px 0 60px;
        text-align: center;
    }
}


.hero .hero-wrapper .hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #fff;
    text-shadow: 0 7px 10px rgba(8, 13, 62, .15);
}

@media (max-width: 992px) {
    .hero .hero-wrapper .hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .hero .hero-wrapper .hero-content h1 {
        font-size: 2rem;
    }
}

.hero .hero-wrapper .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-title {
    color: #ffffff;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 7px 10px rgba(22, 13, 42, .45);
}

.hero-title .line1 {
    font-size: 58px;
    font-style: italic;
    letter-spacing: 1px;
}

.hero-title .line2 {
    display: flex;
    align-items: baseline;
    gap: 20px;
    font-style: italic;
    text-indent: 20px;
}

.hero-title .line2 .big {
    font-size: 96px;

}

.hero-title .line2 .small {
    font-size: 58px;
    font-weight: 600;
}

.hero-title .line3 {
    font-size: 108px;
    font-style: italic;
    text-indent: 20px;
}

.hero-title .line4 {
    font-size: 58px;
    font-style: italic;
    text-align: right;
    margin-right: 80px;
}

.hero .hero-wrapper .hero-content .stats-row {
    display: flex;
    margin-bottom: 2rem;
}

.hero-media {
    text-align: center;
}

.custom-indicators {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.custom-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid #0d61b7;
    background: none;
    box-sizing: border-box;
    padding: 0;

}

.custom-indicators button.active {

    background: #0d61b7;
    transform: scale(1.2);

}

/* 平板 */
@media (max-width: 992px) {

    .hero-title .line1 {
        font-size: 42px;
    }

    .hero-title .line2 .big {
        font-size: 68px;
    }

    .hero-title .line2 .small {
        font-size: 30px;
    }

    .hero-title .line3 {
        font-size: 68px;
    }

    .hero-title .line4 {
        font-size: 42px;
    }

}


/* 手机端 */
@media (max-width: 768px) {

    .hero-title {
        line-height: 1.4;
    }

    .hero-title .line1 {
        font-size: 32px;
        text-align: left;
    }

    .hero-title .line2 {
        gap: 10px;
    }

    .hero-title .line2 .big {
        font-size: 48px;
    }

    .hero-title .line2 .small {
        font-size: 30px;
    }

    .hero-title .line3 {
        font-size: 48px;
    }

    .hero-title .line4 {
        font-size: 32px;
    }

}

@media (max-width: 480px) {

    .hero-title .line1 {
        font-size: 26px;
        text-align: left;
    }

    .hero-title .line2 .big {
        font-size: 40px;
    }

    .hero-title .line2 .small {
        font-size: 22px;
    }

    .hero-title .line3 {
        font-size: 40px;
    }

    .hero-title .line4 {
        font-size: 26px;
    }

}


@media (max-width: 992px) {
    .hero .hero-wrapper .hero-content .stats-row {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.hero .hero-wrapper .hero-content .stats-row .stat-item {
    margin-right: 2.5rem;
}

@media (max-width: 992px) {
    .hero .hero-wrapper .hero-content .stats-row .stat-item {
        margin: 0 1.5rem 1rem;
    }
}

.hero .hero-wrapper .hero-content .stats-row .stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.hero .hero-wrapper .hero-content .stats-row .stat-item .stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero .hero-wrapper .hero-content .action-buttons {
    display: flex;
    gap: 15px;
}

@media (max-width: 992px) {
    .hero .hero-wrapper .hero-content .action-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
}

.hero .hero-wrapper .hero-content .action-buttons a {
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .hero .hero-wrapper .hero-content .action-buttons a {
        width: 100%;
    }
}

.hero .hero-wrapper .hero-content .action-buttons .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-wrapper .hero-content .action-buttons .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero .hero-wrapper .hero-content .action-buttons .btn-secondary {
    background: var(--surface-color);
    color: var(--default-color);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.05);
}

.hero .hero-wrapper .hero-content .action-buttons .btn-secondary:hover {
    color: var(--heading-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hero .hero-wrapper .hero-media {
    position: relative;
}

@media (max-width: 992px) {
    .hero .hero-wrapper .hero-media {
        margin-top: 3rem;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}

.hero .hero-wrapper .hero-media .main-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.5s ease;
}

.hero .hero-wrapper .hero-media .main-image:hover {
    transform: perspective(1000px) rotateY(0);
}

.hero .hero-wrapper .hero-media .image-overlay {
    position: absolute;
    bottom: -20px;
    right: -20px;
}

@media (max-width: 992px) {
    .hero .hero-wrapper .hero-media .image-overlay {
        right: 0;
    }
}

.hero .hero-wrapper .hero-media .image-overlay .badge-accredited {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-wrapper .hero-media .image-overlay .badge-accredited i {
    font-size: 1.3rem;
}

.hero .feature-cards-wrapper {
    margin-top: -40px;
    padding-bottom: 40px;
    position: relative;
    z-index: 10;
}

.hero .feature-cards-wrapper .feature-card {
    background: var(--surface-color);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
}

.hero .upcoming-event {
    background: #3e3e3e;
    color: var(--contrast-color);
    padding: 0;
    margin: 0px 0 0;
}

.hero .upcoming-event .event-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

@media (max-width: 992px) {
    .hero .upcoming-event .event-content {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }
}

.hero .upcoming-event .event-content>* {
    position: relative;
    z-index: 1;
}

.hero .upcoming-event .event-content .event-date {
    display: flex;
    flex-direction: column;
    background: var(--accent-color);
    color: var(--contrast-color);
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    margin-right: 30px;
    min-width: 100px;
}

@media (max-width: 992px) {
    .hero .upcoming-event .event-content .event-date {
        margin: 0 auto 20px;
    }
}

.hero .upcoming-event .event-content .event-date .day {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.hero .upcoming-event .event-content .event-date .month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.hero .upcoming-event .event-content .event-info {
    flex: 1;
    margin-right: 30px;
}

@media (max-width: 992px) {
    .hero .upcoming-event .event-content .event-info {
        margin-right: 0;
        margin-bottom: 20px;
        text-align: left;
    }
}

.hero .upcoming-event .event-content .event-info h3 {
    font-size: 1.6rem;
    color: #f5f5f5;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .hero .upcoming-event .event-content .event-info h3 {
        font-size: 1.3rem;
    }
}

.hero .upcoming-event .event-content .event-info p {
    font-size: 17px;
    margin: 0;
    color: #b6b6b6
}

.hero .upcoming-event .event-content .event-action {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero .upcoming-event .event-content .event-action .btn-event {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.hero .upcoming-event .event-content .event-action .btn-event:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.hero .upcoming-event .event-content .event-action .countdown {
    font-size: 0.9rem;
    opacity: 0.8;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.service {
    background: #F7F9FD;
    margin-bottom: 16px;
    border-bottom: 16px solid #3f80be;
}

.service .service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px;
}

@media (max-width: 992px) {
    .service .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 576px) {
    .service .service-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.service .service-card .card-inner {
    background: var(--surface-color);
    padding: 42px;
    padding-top: 22px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service .service-card .card-inner:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1), 0 6px 12px rgba(0, 0, 0, 0.05);
    border-color: color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.service .avatar-wrapper {
    position: relative;
    margin-bottom: 24px;
}

.service .avatar-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service .avatar-wrapper .status-indicator {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    border: 3px solid var(--surface-color);
}

.service .service-card:hover .avatar-wrapper img {
    transform: scale(1.05);
    /* box-shadow: 0 12px 32px color-mix(in srgb, var(--accent-color) 30%, transparent); */
}

.service .card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service .card-body .card-title {
    font-size: 19px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}

.service .card-body h4 {
    font-size: 21px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;

}

.service .card-body .card-title span {
    display: block;
}

.service .card-body .divider {

    height: 1px;
    background: #fff;
    margin: 16px 0px 5px 0px;
}

.service .card-body .card-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 20px;
    text-transform: uppercase;
    word-break: break-word;
    font-weight: 500;
}

.service .role-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 30px;
    border-radius: 30px;
    background: #f19928;
    color: #ffffff;
    border: 1px solid #f19928;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--heading-font);
    letter-spacing: 1px;
}

.service .role-btn:hover {
    background: #ffffff;
    color: #f19928;
    box-shadow: 0 8px 18px rgba(241, 153, 40, 0.25);
}

.service .role-btn:active {
    transform: translateY(1px);
}

.service .card-body .qualifications {
    font-size: 13px;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color) 50%, transparent);
    margin-bottom: 16px;
}

.service .card-body .description {
    font-size: 14px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color) 80%, transparent);
    margin-bottom: 0;
    flex: 1;
}

.service .card-footer {
    display: flex;
    gap: 12px;
}

.service .card-footer .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color) 8%, transparent);
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.service .card-footer .social-link i {
    font-size: 16px;
}

.service .card-footer .social-link:hover {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color) 80%, #6366f1));
    color: var(--contrast-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px color-mix(in srgb, var(--accent-color) 35%, transparent);
}

@media (max-width: 768px) {
    .service .service-card .card-inner {
        padding: 24px;
    }

    .service .avatar-wrapper {
        max-width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .service .card-body h4 {
        font-size: 18px;
    }

    .service .card-body .role {
        font-size: 13px;
        padding: 5px 14px;
    }

    .service .card-body .description {
        font-size: 13px;
    }

    .service .card-footer {
        padding-bottom: 20px;
    }
}

.service-card.color-1 .card-inner {
    background: #528cc4;
}

.service-card.color-2 .card-inner {
    background: #7f6a46;
}

.service-card.color-3 .card-inner {
    background: #2ca464;
}

.service-card.color-4 .card-inner {
    background: #365599;
}

.service-card.color-1 .card-inner,
.service-card.color-2 .card-inner,
.service-card.color-3 .card-inner,
.service-card.color-4 .card-inner {
    color: #ffffff;
}

.service-card.color-1 h4,
.service-card.color-2 h4,
.service-card.color-3 h4,
.service-card.color-4 h4 {
    color: #ffffff;
}

.service-card.color-1 .description,
.service-card.color-2 .description,
.service-card.color-3 .description,
.service-card.color-4 .description {
    color: rgba(255, 255, 255, 0.9);
}

/*--------------------------------------------------------------
# Vector 2 Section
--------------------------------------------------------------*/
.vector-2 {
    padding-top: 50px;
    position: relative;
    overflow: hidden;
    background: #3f80be;
    padding-bottom: 60px;
    margin-bottom: 16px;
    border-bottom: 16px solid #715a32;
}

.vector-2 .section-title {
    padding-bottom: 20px;
}

.vector-2 .section-title h2 {
    color: #fff;

}

.vector-2::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    pointer-events: none;
}

.vector-2 .hero-content {
    position: relative;
    z-index: 2;
}

.vector-2 .hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--surface-color);
    border-radius: 40px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
    box-shadow: 0 6px 18px color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 24px;
}

.vector-2 .hero-content .hero-badge i {
    color: var(--accent-color);
    font-size: 0.95rem;
}

.vector-2 .hero-content .hero-badge span {
    font-weight: 500;
    color: var(--heading-color);
    font-size: 0.9rem;
}

.vector-2 .hero-content .hero-title {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 18px;
}

@media (max-width: 992px) {
    .vector-2 .hero-content .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .vector-2 .hero-content .hero-title {
        font-size: 2.4rem;
    }
}

.vector-2 .hero-content .hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 28%);
    margin-bottom: 22px;
    max-width: 560px;
}


.vector-2 .hero-content .hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    padding-left: 0;
}

.vector-2 .hero-content .hero-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 24px;
    line-height: 1.6;
    padding-left: 22px;
    position: relative;
    margin-bottom: 16px;
}

.vector-2 .hero-content .hero-list li i {
    color: #fff;
}


.vector-2 .hero-content .hero-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 13px;
}

.vector-2 .hero-content .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 34px;
}

.vector-2 .hero-actions .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.vector-2 .hero-actions .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 12%);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.vector-2 .hero-actions .more {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}
.vector-2 .hero-actions .more:hover {
    transform: translateY(-2px);
}

.vector-2 .hero-actions .btn-ghost {
    border: 1px solid #f19928;
    color: #fff;
    padding: 6px 28px;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s;
    background: #f19928;
}

.vector-2 .hero-actions .btn-ghost:hover {
    border-color: 1px solid #f19928;
    color: #f19928;
    transform: translateY(-2px);
    background: #fff;
}

.vector-2 .hero-content .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 992px) {
    .vector-2 .hero-content .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .vector-2 .hero-content .hero-metrics {
        grid-template-columns: 1fr;
    }
}

.vector-2 .hero-content .hero-metrics .metric-card {
    padding: 16px 18px;
    background: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 6px 18px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: 0.3s;
}

.vector-2 .hero-content .hero-metrics .metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--default-color), transparent 85%);
}

.vector-2 .hero-content .hero-metrics .metric-card .metric-number {
    display: block;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--heading-color);
}

.vector-2 .hero-content .hero-metrics .metric-card .metric-label {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.vector-2 .hero-media {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.vector-2 .hero-media .media-main {
    border-radius: 18px;
    overflow: hidden;
}

.vector-2 .hero-media .media-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: var(--surface-color);
    border-radius: 14px;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--default-color), transparent 88%);
    position: absolute;
    bottom: 18%;
    left: -6%;
    max-width: 260px;
}

.vector-2 .hero-media .media-card i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.vector-2 .hero-media .media-card h4 {
    font-size: 1rem;
    margin: 0 0 4px 0;
}

.vector-2 .hero-media .media-card p {
    font-size: 0.85rem;
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
}

@media (max-width: 992px) {
    .vector-2 .hero-media .media-card {
        position: static;
        max-width: 100%;
    }
}

.vector-2 .hero-media .media-bubble {
    position: absolute;
    top: 12%;
    right: -4%;
    background: var(--surface-color);
    border-radius: 40px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    font-size: 0.85rem;
    color: var(--heading-color);
}

.vector-2 .hero-media .media-bubble i {
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .vector-2 .hero-media .media-bubble {
        position: static;
        width: max-content;
    }
}

@media (max-width: 992px) {
    .vector-2 {
        padding: 50px 0 50px 0;
    }
}

@media (max-width: 768px) {
    .vector-2 {
        text-align: center;
    }

    .vector-2 .section-title h2 {
        font-size: 38px;
    }

    .vector-2 .hero-actions {
        justify-content: center;
    }

    .vector-2 .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .vector-2 .hero-content .hero-list li {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 14px;
        padding-left: 14px;
        text-align: left;
    }

    .vector-2 .hero-content .hero-list li::before {
        width: 6px;
        height: 6px;
        top: 10px;
    }
}

/*--------------------------------------------------------------
# Embroidery 2 Section
--------------------------------------------------------------*/
.embroidery-2 {
    padding-top: 50px;
    position: relative;
    overflow: hidden;
    background: #715a32;
    padding-bottom: 60px;
    margin-bottom: 16px;
    border-bottom: 16px solid #159b53;
}

.embroidery-2 .section-title {
    padding-bottom: 20px;
}

.embroidery-2 .section-title h2 {
    color: #fff;

}

.embroidery-2::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    pointer-events: none;
}

.embroidery-2 .hero-content {
    position: relative;
    z-index: 2;
}

.embroidery-2 .hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--surface-color);
    border-radius: 40px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
    box-shadow: 0 6px 18px color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 24px;
}

.embroidery-2 .hero-content .hero-badge i {
    color: var(--accent-color);
    font-size: 0.95rem;
}

.embroidery-2 .hero-content .hero-badge span {
    font-weight: 500;
    color: var(--heading-color);
    font-size: 0.9rem;
}

.embroidery-2 .hero-content .hero-title {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 18px;
}

@media (max-width: 992px) {
    .embroidery-2 .hero-content .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .embroidery-2 .hero-content .hero-title {
        font-size: 2.4rem;
    }
}

.embroidery-2 .hero-content .hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 28%);
    margin-bottom: 22px;
    max-width: 560px;
}


.embroidery-2 .hero-content .hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    padding-left: 0;
}

.embroidery-2 .hero-content .hero-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 24px;
    line-height: 1.6;
    padding-left: 22px;
    position: relative;
    margin-bottom: 16px;
}

.embroidery-2 .hero-content .hero-list li i {
    color: #fff;
}


.embroidery-2 .hero-content .hero-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 13px;
}

.embroidery-2 .hero-content .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 34px;
}

.embroidery-2 .hero-actions .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.embroidery-2 .hero-actions .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 12%);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.embroidery-2 .hero-actions .more {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}
.embroidery-2 .hero-actions .more:hover{
    transform: translateY(-2px);
}

.embroidery-2 .hero-actions .btn-ghost {
    border: 1px solid #f19928;
    color: #fff;
    padding: 6px 28px;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s;
    background: #f19928;
}

.embroidery-2 .hero-actions .btn-ghost:hover {
    border-color: 1px solid #f19928;
    color: #f19928;
    transform: translateY(-2px);
    background: #fff;
}

.embroidery-2 .hero-content .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 992px) {
    .embroidery-2 .hero-content .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .embroidery-2 .hero-content .hero-metrics {
        grid-template-columns: 1fr;
    }
}

.embroidery-2 .hero-content .hero-metrics .metric-card {
    padding: 16px 18px;
    background: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 6px 18px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: 0.3s;
}

.embroidery-2 .hero-content .hero-metrics .metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--default-color), transparent 85%);
}

.embroidery-2 .hero-content .hero-metrics .metric-card .metric-number {
    display: block;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--heading-color);
}

.embroidery-2 .hero-content .hero-metrics .metric-card .metric-label {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.embroidery-2 .hero-media {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.embroidery-2 .hero-media .media-main {
    border-radius: 18px;
    overflow: hidden;
}

.embroidery-2 .hero-media .media-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: var(--surface-color);
    border-radius: 14px;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--default-color), transparent 88%);
    position: absolute;
    bottom: 18%;
    left: -6%;
    max-width: 260px;
}

.embroidery-2 .hero-media .media-card i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.embroidery-2 .hero-media .media-card h4 {
    font-size: 1rem;
    margin: 0 0 4px 0;
}

.embroidery-2 .hero-media .media-card p {
    font-size: 0.85rem;
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
}

@media (max-width: 992px) {
    .embroidery-2 .hero-media .media-card {
        position: static;
        max-width: 100%;
    }
}

.embroidery-2 .hero-media .media-bubble {
    position: absolute;
    top: 12%;
    right: -4%;
    background: var(--surface-color);
    border-radius: 40px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    font-size: 0.85rem;
    color: var(--heading-color);
}

.embroidery-2 .hero-media .media-bubble i {
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .embroidery-2 .hero-media .media-bubble {
        position: static;
        width: max-content;
    }
}

@media (max-width: 992px) {
    .embroidery-2 {
        padding: 50px 0 50px 0;
    }
}

@media (max-width: 768px) {
    .embroidery-2 {
        text-align: center;
    }

    .embroidery-2 .section-title h2 {
        font-size: 38px;
    }

    .embroidery-2 .hero-actions {
        justify-content: center;
    }

    .embroidery-2 .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .embroidery-2 .hero-list li {
        justify-content: center;
    }

    .embroidery-2 .hero-content .hero-list li {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 14px;
        padding-left: 14px;
        text-align: left;
        justify-content: left;
    }

    .embroidery-2 .hero-content .hero-list li::before {
        width: 6px;
        height: 6px;
        top: 10px;
    }
}

/*--------------------------------------------------------------
# Custom 2 Section
--------------------------------------------------------------*/
.custom-2 {
    padding-top: 50px;
    position: relative;
    overflow: hidden;
    background: #159b53;
    padding-bottom: 60px;
    margin-bottom: 16px;
    border-bottom: 16px solid #20438e;
}

.custom-2 .section-title {
    padding-bottom: 20px;
    text-align: center;
}

.custom-2 .section-title h2 {
    color: #fff;
    font-size: 60px;
}

.custom-2 .image-box {
    position: relative;
}

.custom-2 .custom-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

.custom-2 .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 10px;
}

.custom-2 .hero-text {
    flex: 0 0 60%;
    max-width: 60%;
    margin-top: -130px;
}

.custom-2 .hero-text h3 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px 0;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.custom-2 .hero-text h3 em {
    font-style: italic;
    color: #fff;
}

.custom-2 .hero-text .hero-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.custom-2 .hero-text .hero-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #fff;
    font-size: 26px;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.custom-2 .hero-text .hero-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 6px;
    flex-shrink: 0;
}

.custom-2 .hero-text .hero-list li i {
    color: #fff;
}

.custom-2 .hero-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    flex-shrink: 0;
    align-items: center;
}

.custom-2 .hero-actions .btn-ghost {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.custom-2 .hero-actions .btn-ghost:hover {
    transform: translateY(-2px);
}

.custom-2 .hero-actions .btn-primary {
    border: 1px solid #f19928;
    color: #fff;
    padding: 6px 28px;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s;
    background: #f19928;
}

.custom-2 .hero-actions .btn-primary:hover {
    border-color: 1px solid #f19928;
    color: #f19928;
    transform: translateY(-2px);
    background: #fff;
}

@media (max-width: 992px) {
    .custom-2 {
        padding: 40px 0 50px 0;
    }

    .custom-2 .section-title h2 {
        font-size: 44px;
    }

    .custom-2 .hero-text h3 {
        font-size: 22px;
    }

    .custom-2 .hero-text {
       flex:0;
       max-width: 100%;
      margin-top: 0;
    }

    .custom-2 .hero-text .hero-list li {
        font-size: 14px;
    }

    
    .custom-2 .hero-actions .btn-primary {
        padding: 10px 24px;
    }
    .custom-2 .hero-actions .btn-ghost{
        padding: 10px 0;

    }
}

@media (max-width: 768px) {
    .custom-2 {
        text-align: left;
        padding: 30px 0 40px 0;
    }

    .custom-2 .section-title {
        padding-bottom: 16px;
    }

    .custom-2 .section-title h2 {
        font-size: 34px;
        text-align: center;
    }

    .custom-2 .hero-content {
        flex-direction: column;
        margin-top: 24px;
        padding: 0;
        gap: 20px;
    }

    .custom-2 .hero-actions {
        order: -1;
        justify-content: space-between;
    }

    .custom-2 .hero-actions .btn-ghost,
    .custom-2 .hero-actions .btn-primary {
        width: auto;
        max-width: none;
    }

    .custom-2 .hero-text h3 {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .custom-2 .hero-text .hero-list li {
        font-size: 18px;
        line-height:28px;
        margin-bottom: 8px;
        padding-left: 18px;
        justify-content: left;
    }

    .custom-2 .hero-text .hero-list li::before {
        width: 6px;
        height: 6px;
        top: 5px;
    }
}

@media (max-width: 576px) {
    .custom-2 .section-title h2 {
        font-size: 26px;
    }

    .custom-2 .hero-text h3 {
        font-size: 18px;
    }
}

/*--------------------------------------------------------------
# Direct 2 Section
--------------------------------------------------------------*/
.direct-2 {
    padding-top: 50px;
    position: relative;
    overflow: hidden;
    background: #20438e;
    padding-bottom: 60px;
}

.direct-2 .section-title {
    padding-bottom: 20px;
}

.direct-2 .section-title h2 {
    color: #fff;
    font-size: 64px;

}

.direct-2::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 60%;
    height: 60%;
    border-radius: 50%;
    pointer-events: none;
}

.direct-2 .hero-content {
    position: relative;
    z-index: 2;
}

.direct-2 .hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--surface-color);
    border-radius: 40px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 75%);
    box-shadow: 0 6px 18px color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 24px;
}

.direct-2 .hero-content .hero-badge i {
    color: var(--accent-color);
    font-size: 0.95rem;
}

.direct-2 .hero-content .hero-badge span {
    font-weight: 500;
    color: var(--heading-color);
    font-size: 0.9rem;
}

.direct-2 .hero-content .hero-title {
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 18px;
}

@media (max-width: 992px) {
    .direct-2 .hero-content .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .direct-2 .hero-content .hero-title {
        font-size: 2.4rem;
    }
}

.direct-2 .hero-content .hero-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 28%);
    margin-bottom: 22px;
    max-width: 560px;
}


.direct-2 .hero-content .hero-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    padding-left: 0;
}

.direct-2 .hero-content .hero-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #fff;
    font-size: 26px;
    line-height: 1.5;
    padding-left: 22px;
    position: relative;
}

.direct-2 .hero-content .hero-list li i {
    color: #fff;
}


.direct-2 .hero-content .hero-list li::before {
    content: "";
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 20px;
}

.direct-2 .hero-content .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 34px;
}

.direct-2 .hero-actions .btn-primary {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.direct-2 .hero-actions .btn-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 12%);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.direct-2 .hero-actions .more {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: all 0.3s ease;
}

.direct-2 .hero-actions .more:hover{
    transform: translateY(-2px);
}

.direct-2 .hero-actions .btn-ghost {
    border: 1px solid #f19928;
    color: #fff;
    padding: 6px 28px;
    border-radius: 6px;
    font-weight: 500;
    transition: 0.3s;
    background: #f19928;
}

.direct-2 .hero-actions .btn-ghost:hover {
    border-color: 1px solid #f19928;
    color: #f19928;
    transform: translateY(-2px);
    background: #fff;
}

.direct-2 .hero-content .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 992px) {
    .direct-2 .hero-content .hero-metrics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 576px) {
    .direct-2 .hero-content .hero-metrics {
        grid-template-columns: 1fr;
    }
}

.direct-2 .hero-content .hero-metrics .metric-card {
    padding: 16px 18px;
    background: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 6px 18px color-mix(in srgb, var(--default-color), transparent 90%);
    transition: 0.3s;
}

.direct-2 .hero-content .hero-metrics .metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px color-mix(in srgb, var(--default-color), transparent 85%);
}

.direct-2 .hero-content .hero-metrics .metric-card .metric-number {
    display: block;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--heading-color);
}

.direct-2 .hero-content .hero-metrics .metric-card .metric-label {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.direct-2 .hero-media {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.direct-2 .hero-media .media-main {
    border-radius: 18px;
    overflow: hidden;
}

.direct-2 .hero-media .media-card {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 18px;
    background: var(--surface-color);
    border-radius: 14px;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--default-color), transparent 88%);
    position: absolute;
    bottom: 18%;
    left: -6%;
    max-width: 260px;
}

.direct-2 .hero-media .media-card i {
    color: var(--accent-color);
    font-size: 1.3rem;
}

.direct-2 .hero-media .media-card h4 {
    font-size: 1rem;
    margin: 0 0 4px 0;
}

.direct-2 .hero-media .media-card p {
    font-size: 0.85rem;
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
}

@media (max-width: 992px) {
    .direct-2 .hero-media .media-card {
        position: static;
        max-width: 100%;
    }
}

.direct-2 .hero-media .media-bubble {
    position: absolute;
    top: 12%;
    right: -4%;
    background: var(--surface-color);
    border-radius: 40px;
    padding: 10px 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 90%);
    font-size: 0.85rem;
    color: var(--heading-color);
}

.direct-2 .hero-media .media-bubble i {
    color: var(--accent-color);
}

@media (max-width: 992px) {
    .direct-2 .hero-media .media-bubble {
        position: static;
        width: max-content;
    }
}

@media (max-width: 992px) {
    .direct-2 {
        padding: 50px 0 50px 0;
    }
}

@media (max-width: 768px) {
    .direct-2 {
        text-align: center;
    }

    .direct-2 .section-title h2 {
        font-size: 38px;
    }

    .direct-2 .hero-actions {
        justify-content: center;
    }

    .direct-2 .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .direct-2 .hero-list li {
        justify-content: center;
    }

    .direct-2 .hero-content .hero-list li {
        font-size: 18px;
        line-height: 28px;
        margin-bottom: 14px;
        padding-left: 14px;
        text-align: left;
        justify-content: left;
    }

    .direct-2 .hero-content .hero-list li::before {
        width: 6px;
        height: 6px;
        top: 10px;
    }
}

/*--------------------------------------------------------------
# Vector-pro Section
--------------------------------------------------------------*/
.vector-pro {
    /*overflow: hidden;*/
    overflow: visible;
    padding-bottom: 44px;
    background-image: url(../img/db.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 50px;
}

.vector-pro .swiper-wrapper {
    height: auto;
}

.vector-pro .swiper-pagination {
    position: relative !important;
    z-index: 10;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.vector-pro .swiper-pagination-bullet {
    display: inline-block !important;
    width: 14px !important;
    height: 14px !important;
    background-color: transparent !important;
    border: 2px solid rgba(0, 0, 0, 0.25) !important;
    opacity: 1 !important;
    transform: none !important;
    margin: 0 12px;
    border-radius: 50%;
    transition: background-color 0.3s, border-color 0.3s;
}

.vector-pro .swiper-pagination-bullet-active {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    opacity: 1 !important;
}

.vector-pro .swiper-pagination-bullet:hover {
    border-color: var(--accent-color) !important;
    cursor: pointer;
}

.vector-pro .swiper-slide-active {
    text-align: center;
}

.vector-pro .swiper-slide {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
}

.vector-pro .swiper-slide a {
    display: block;
    position: relative;
}

.vector-pro .gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.vector-pro .swiper-slide a:hover .gallery-overlay {
    opacity: 1;
}

.vector-pro .gallery-overlay i {
    font-size: 1.4rem;
    color: #ffffff;
    background: var(--accent-color);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}



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

}

/*--------------------------------------------------------------
# EMBROIDERY Section
--------------------------------------------------------------*/
.embroidery-pro {
    /*overflow: hidden;*/
    overflow: visible;
    background-image: url(../img/dbbd2.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-top: 10px solid #444;
    padding-top: 50px;
}

.embroidery-pro .swiper-wrapper {
    height: auto;
}

.embroidery-pro .swiper-pagination {
    position: relative !important;
    z-index: 10;
    transform: none !important;
    left: auto !important;
    right: auto !important;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.embroidery-pro .swiper-pagination-bullet {
    display: inline-block !important;
    width: 14px !important;
    height: 14px !important;
    background-color: transparent !important;
    border: 2px solid rgba(0, 0, 0, 0.25) !important;
    opacity: 1 !important;
    transform: none !important;
    margin: 0 12px;
    border-radius: 50%;
    transition: background-color 0.3s, border-color 0.3s;
}

.embroidery-pro .swiper-pagination-bullet-active {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    opacity: 1 !important;
}

.embroidery-pro .swiper-pagination-bullet:hover {
    border-color: var(--accent-color) !important;
    cursor: pointer;
}

.embroidery-pro .swiper-slide-active {
    text-align: center;
}

.embroidery-pro .swiper-slide {
    position: relative;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.2);
}

.embroidery-pro .swiper-slide a {
    display: block;
    position: relative;
}

.embroidery-pro .gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
}

.embroidery-pro .swiper-slide a:hover .gallery-overlay {
    opacity: 1;
}

.embroidery-pro .gallery-overlay i {
    font-size: 1.4rem;
    color: #ffffff;
    background: var(--accent-color);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}



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

}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
    padding-top: 60px;
    padding-bottom: 6px;
    background: #F7F9FD;
}

.about h2 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 22px;
    color: #204391;
    font-style: italic;
    margin-left: -4px;
    letter-spacing: 1px;
    text-transform: uppercase;

}

.about h3 {
    font-size: 27px;
    font-weight: 600;
    margin-bottom: 28px;
    color: #676767;
}

.about .highlights-grid {
    margin-bottom: 32px;
}

.about .highlights-grid p {
    font-size: 21px;
    line-height: 1.7;
    color: #5b5b5c;
    letter-spacing: 0.5px;
}

.about .highlights-grid .nowrap {
    white-space: nowrap;
}

.about .highlights-grid .btn-order {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1f4290;
    font-weight: 600;
    font-size: 18px;
    text-decoration: underline;
    text-underline-offset: 6px;
    transition: all 0.3s ease;
}

.about .highlights-grid .btn-order:hover {
    color: #08379d;
    transform: translateY(-2px);
}

.about .action-bar {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.about .visual-block {
    border-radius: 0px;
    min-height: auto;
    box-shadow: none;
}

.about .btn-browse {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.about .btn-browse i {
    font-size: 18px;
    line-height: 0;
    transition: transform 0.3s ease;
}

.about .btn-browse:hover {
    background: color-mix(in srgb, var(--accent-color) 88%, black);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.about .btn-browse:hover i {
    transform: scale(1.15);
}

.about .visual-block {
    border: 8px solid #e0e0e0;
}

.about .assurance-tags {
    display: flex;
    align-items: center;
    gap: 18px;
}

.about .assurance-tags .assurance-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about .assurance-tags .assurance-tag i {
    font-size: 15px;
    color: #16a34a;
}

@media (max-width: 992px) {
    .about .visual-block {
        max-width: 400px;
        margin: 0 auto 10px;
    }

    .about .highlights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about .action-bar {
        justify-content: center;
    }

    .about .assurance-tags {
        justify-content: center;
    }

    .about h2 {
      font-size: 38px !important;
     }
     .portfolio-4 .section-title3 h2 {
        font-size: 38px !important;
     }
     .about-custom h2 {
        font-size: 38px !important;
     }
     .faq-2 .faq-title{
        font-size: 38px !important;
     }
     
}

@media (max-width: 768px) {
    .about .highlights-grid {
        grid-template-columns: 1fr;
    }

    .about .intro-text p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .about .action-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .about .assurance-tags {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .about .stat-circle {
        width: 110px;
        height: 110px;
    }

    .about .stat-circle .stat-value {
        font-size: 28px;
    }

    .about .stat-circle .stat-label {
        font-size: 9px;
    }
}

.vector-box {
    position: relative;
    overflow: hidden;
}

.vector-img {
    width: 100%;
    display: block;
}

.pixel-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* 上图 */
.pixel-img {
    width: 100%;
    display: block;
}

.wipe-animation .pixel-mask {
    animation: wipeReveal 10s infinite ease-in-out;
}

@keyframes wipeReveal {
    /* 1. 初始状态：左侧裁剪100%，图片完全隐藏在左边 */
    0% {
        clip-path: inset(0 0 0 100%);
    }

    /* 2. 从右向左展开：左侧裁剪变为0%，图片完全露出来 */
    30% {
        clip-path: inset(0 0 0 0%);
    }

    /* 3. 完全展开后，保持静止一小会儿 */
    45% {
        clip-path: inset(0 0 0 0%);
    }

    /* 4. 开始从左向右合起来，走到中间位置（左侧裁剪50%） */
    60% {
        clip-path: inset(0 0 0 50%);
    }

    /* 5. 在中间停顿一下（保持50%不动，绝对不会晃动） */
    72% {
        clip-path: inset(0 0 0 50%);
    }

    /* 6. 继续合起来，直到完全合上（回到初始隐藏状态） */
    90% {
        clip-path: inset(0 0 0 100%);
    }

    /* 7. 完全合上后，停顿一下再开始下一次循环 */
    100% {
        clip-path: inset(0 0 0 100%);
    }
}

/*--------------------------------------------------------------
# About-Custom Section
--------------------------------------------------------------*/
.about-custom {
    padding-top: 60px;
    padding-bottom: 6px;
    background: #F7F9FD;
}

.about-custom .visual-block {
    min-height: auto;
}

.about-custom h2 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 22px;
    color: #204391;
    font-style: italic;
    margin-left: -4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-custom h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #676767;
}

.about-custom .highlights-grid {
    margin-bottom: 32px;
}

.about-custom .highlights-grid p {
    font-size: 21px;
    line-height: 1.8;
    color: #5b5b5c;
}

.about .highlights-grid .nowrap {
    white-space: nowrap;
}

.about-custom .highlights-grid .btn-order {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1f4290;
    font-weight: 600;
    font-size: 18px;
    text-decoration: underline;
    text-underline-offset: 6px;
    transition: all 0.3s ease;
}

.about-custom .highlights-grid .btn-order:hover {
    color: #08379d;
    transform: translateY(-2px);
}

.about-custom .action-bar {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.about-custom .btn-browse {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.about-custom .btn-browse i {
    font-size: 18px;
    line-height: 0;
    transition: transform 0.3s ease;
}

.about-custom .btn-browse:hover {
    background: color-mix(in srgb, var(--accent-color) 88%, black);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.about-custom .btn-browse:hover i {
    transform: scale(1.15);
}

.about-custom .visual-block {
    border: 3px solid #20438e;
    border-radius: 18px;
}

.about-custom .assurance-tags {
    display: flex;
    align-items: center;
    gap: 18px;
}

.about-custom .assurance-tags .assurance-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about-custom .assurance-tags .assurance-tag i {
    font-size: 15px;
    color: #16a34a;
}

@media (max-width: 992px) {
    .about-custom .visual-block {
        max-width: 400px;
        margin: 0 auto 10px;
    }

    .about-custom .highlights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-custom .action-bar {
        justify-content: center;
    }

    .about-custom .assurance-tags {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-custom .highlights-grid {
        grid-template-columns: 1fr;
    }

    .about-custom .intro-text p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .about-custom .action-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-custom .assurance-tags {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .about-custom .stat-circle {
        width: 110px;
        height: 110px;
    }

    .about-custom .stat-circle .stat-value {
        font-size: 28px;
    }

    .about-custom .stat-circle .stat-label {
        font-size: 9px;
    }
}

/*--------------------------------------------------------------
# Custom-quote Section
--------------------------------------------------------------*/
.custom-quote {
    padding-top: 60px;
    padding-bottom: 60px;
    background: #f8f9fe;
}

.custom-quote h2 {
    font-size: 76px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #204391;
    margin-left: -4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 82px;
}

.custom-quote h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #676767;
}

.custom-quote .highlights-grid {
    margin-bottom: 32px;
}

.custom-quote .highlights-grid p {
    font-size: 20px;
    line-height: 1.8;
    color: #066ec9;
}

.custom-quote .highlights-grid .nowrap {
    white-space: nowrap;
}

.custom-quote .highlights-grid .btn-order {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #1f4290;
    font-weight: 600;
    font-size: 18px;
    text-decoration: underline;
    text-underline-offset: 6px;
    transition: all 0.3s ease;
}

.custom-quote .highlights-grid .btn-order:hover {
    color: #08379d;
    transform: translateY(-2px);
}

.custom-quote .action-bar {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.custom-quote .btn-browse {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.custom-quote .btn-browse i {
    font-size: 18px;
    line-height: 0;
    transition: transform 0.3s ease;
}

.custom-quote .btn-browse:hover {
    background: color-mix(in srgb, var(--accent-color) 88%, black);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.custom-quote .btn-browse:hover i {
    transform: scale(1.15);
}

.custom-quote .visual-block {
    border: 3px solid #20438e;
    border-radius: 18px;
}

.custom-quote .assurance-tags {
    display: flex;
    align-items: center;
    gap: 18px;
}

.custom-quote .assurance-tags .assurance-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.custom-quote .assurance-tags .assurance-tag i {
    font-size: 15px;
    color: #16a34a;
}

@media (max-width: 992px) {
    .custom-quote .visual-block {
        max-width: 400px;
        margin: 0 auto 10px;
    }

    .custom-quote .highlights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .custom-quote .action-bar {
        justify-content: center;
    }

    .custom-quote .assurance-tags {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .custom-quote .highlights-grid {
        grid-template-columns: 1fr;
    }

    .custom-quote .intro-text p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .custom-quote .action-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .custom-quote .assurance-tags {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .custom-quote .stat-circle {
        width: 110px;
        height: 110px;
    }

    .custom-quote .stat-circle .stat-value {
        font-size: 28px;
    }

    .custom-quote .stat-circle .stat-label {
        font-size: 9px;
    }
}


.vector-box {
    position: relative;
    overflow: hidden;
}

.vector-img {
    width: 100%;
    display: block;
}

.pixel-mask {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* 1. 父容器：相对定位 */
.visual-block {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    min-height: auto;
}

/* 图片层 */
.slide-bg-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-inner,
.carousel-item {
    height: 100%;
}

/* 2. 叠加层：Flex布局实现左右结构 */
.offers-overlay-split {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    display: flex;
    padding: 0 30px;
}

/* 3. 左右蓝色板块 */
.offer-box {
    flex: 1;
    /* 两侧宽度1:1 */
    background: linear-gradient(180deg, #2172d4 0%, #0a4180 100%);
    color: white;
    padding: 10px 15px;
    display: flex;
    flex-direction: column;
    /* 文字垂直排列 */
    align-items: left;
    /* 文字居中 */
    justify-content: left;
    text-align: left;
    line-height: 1.3;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);


}


/* 小标题 (Exclusive Offer / Signature Service) */
.offer-box .offer-label {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 5px;
}

.offer-box .offer-highlight {
    font-size: 1.7rem;
    font-weight: 600;
    color: #ffde59;
    margin-bottom: 5px;
}

/* 描述文字 */
.offer-box .offer-text {
    font-size: 0.8rem;
    font-weight: 100;
    letter-spacing: 0.25px;
}

.wood-divider {
    width: 40px;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .offers-overlay-split {
        flex-direction: column;
        display: none;
    }

    .wood-divider {
        width: 100%;
        height: 4px;
        background: linear-gradient(to right, #cfcfcf, #8a5a3c, #cfcfcf);
    }

    
}
@media (max-width: 992px) {
    .custom-quote h2{
        font-size:50px;
        line-height:48px;
    }
    .btn {
      --bs-btn-padding-x: 0rem;
      --bs-btn-padding-y: 0rem;
    }
}

/*--------------------------------------------------------------
# Portfolio 4 Section
--------------------------------------------------------------*/
.portfolio-4 {
    background: #F7F9FD;
    padding-bottom: 66px;
}

.portfolio-4 .section-title3 {
    text-align: center;
    margin-bottom: 40px;
}
.portfolio-4 .section-title3 h2 {
    font-weight: 700;
    color: #20438e;
    text-transform: uppercase;
}

.portfolio-4 .portfolio-filters {
    padding: 0 0 20px 0;
    margin: 0 auto;
    list-style: none;
    text-align: center;
}

.portfolio-4 .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    transition: all 0.3s ease-in-out;
    color: #444;
}

.portfolio-4 .portfolio-filters li:hover,
.portfolio-4 .portfolio-filters li.filter-active {
    color: #0e62d1;
}

.portfolio-4 .portfolio-filters li:first-child { margin-left: 0; }
.portfolio-4 .portfolio-filters li:last-child { margin-right: 0; }

@media (max-width: 575px) {
    .portfolio-4 .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

/* 描述文本样式 */
.portfolio-4 .miaoshu {
    font-size: 21px;
    color: #0e62d1;
    line-height: 33px;
    font-weight: 100;
}

/* 网格项容器 */
.portfolio-4 .portfolio-item {
    padding: 36px;
    box-sizing: border-box;
}

.portfolio-4 .row {
    margin-left: -40px;
    margin-right: -40px;
}

.portfolio-4 .col-lg-6 {
    padding-left: 40px;
    padding-right: 40px;
}

.portfolio-4 .portfolio-content {
    display: grid;
    gap: 32px;
    background-color: #ffffff;
    height: 100%;
    overflow: hidden; 
    border-radius: 10px;
    border: 3px solid #20438e;
    position: relative; 
    box-shadow: 0 10px 30px rgba(32, 67, 142, 0.1); 
}

.portfolio-4 .portfolio-content img {
    transition: transform 0.5s ease-in-out; 
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
}


.portfolio-4 .portfolio-content .gallery-overlay {
    position: absolute;
    inset: 0; 
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.15); 
    opacity: 0; 
    transition: opacity 0.35s ease;
    pointer-events: none; 
    z-index: 2;
    border-radius: 6px;
}

.portfolio-4 .portfolio-content .gallery-overlay i {
    font-size: 1.4rem;
    color: #ffffff;
    background: #20438e; 
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transform: scale(0.8); 
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}

.portfolio-4 .portfolio-content:hover .gallery-overlay {
    opacity: 1;
}

.portfolio-4 .portfolio-content:hover .gallery-overlay i {
    transform: scale(1);
}

.portfolio-4 .portfolio-content .portfolio-info {
    background-color: #ffffff;
    border-top: 1px solid #eee;
    padding: 25px 20px;
    position: relative;
    z-index: 2;
}

.portfolio-4 .portfolio-content .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
    margin: 0;
}

.portfolio-4 .portfolio-content .portfolio-info h4 a {
    color: #333;
    transition: 0.3s;
    text-decoration: none;
}

.portfolio-4 .portfolio-content .portfolio-info h4 a:hover {
    color: #0e62d1;
}

.portfolio-4 .portfolio-content .portfolio-info p {
    color: #666;
    font-size: 14px;
    margin: 5px 0 0 0;
    padding-right: 50px;
}

/*--------------------------------------------------------------
# Custom-quote 4 Section
--------------------------------------------------------------*/
.custom-4 .portfolio-filters {
    padding: 0 0 20px 0;
    margin: 0 auto;
    list-style: none;
    text-align: center;
}

.custom-4 .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}

.custom-4 .portfolio-filters li:hover,
.custom-4 .portfolio-filters li.filter-active {
    color: var(--accent-color);
}

.custom-4 .portfolio-filters li:first-child {
    margin-left: 0;
}

.custom-4 .portfolio-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .custom-4 .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.custom-4 .miaoshu {
    font-size: 21px;
    color: #0e62d1;
    line-height: 33px;
    letter-spacing: 1px;
    font-weight: 100;
}

.custom-4 .portfolio-item {
    padding: 24px;
    box-sizing: border-box;
}

.custom-4 .portfolio-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    background-color: var(--surface-color);
    height: 100%;
    overflow: hidden;
    border-radius: 10px;
    border: 3px solid #20438e;
}

.custom-4 .portfolio-content img {
    transition: 0.3s;
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
}

.custom-4 .portfolio-content .portfolio-info {
    background: linear-gradient(to bottom, #0e6acf, #01448d);
    padding: 20px 24px 24px 24px;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.custom-4 .portfolio-content .portfolio-info h4 {
    font-size: 24px;
    font-weight: 400;
    padding-right: 0;
    margin: 0 0 12px 0;
    color: #fff;
    line-height: 1.4;
    text-align: center;
}

.custom-4 .portfolio-content .portfolio-info .dashed-line {
    width: 100%;
    height: 0;
    border: none;
    border-top: 2px dashed #ffffff;
    margin: 0 0 14px 0;
    color: #ffffff;
}

.custom-4 .portfolio-content .portfolio-info p {
    color: #fff;
    font-size: 17px;
    margin: 0;
    padding-right: 0;
    line-height: 1.7;
    border-top: 2px dashed #ffffff;
    text-align: center;
    padding-top: 8px;
}

.custom-4 .row {
    margin-left: -30px;
    margin-right: -30px;
}

.custom-4 .col-lg-4 {
    padding-left: 30px;
    padding-right: 30px;
}

@media (max-width: 991px) {
    .custom-4 .col-md-6 {
        padding-left: 30px;
        padding-right: 30px;
    }

    .portfolio-4 .section-title3{
        margin-bottom: 5px;
     }
}

@media (max-width: 767px) {
    .custom-4 .portfolio-item {
        padding: 16px;
    }

    .custom-4 .row {
        margin-left: -16px;
        margin-right: -16px;
    }

    .custom-4 .col-lg-4,
    .custom-4 .col-md-6 {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/*--------------------------------------------------------------
# Portfolio 2 Section
--------------------------------------------------------------*/
.portfolio-2 .portfolio-filters {
    padding: 0 0 20px 0;
    margin: 0 auto;
    list-style: none;
    text-align: center;
}

.portfolio-2 .portfolio-filters li {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    font-size: 18px;
    font-weight: 500;
    margin: 0 10px;
    line-height: 1;
    transition: all 0.3s ease-in-out;
}

.portfolio-2 .portfolio-filters li:hover,
.portfolio-2 .portfolio-filters li.filter-active {
    color: var(--accent-color);
}

.portfolio-2 .portfolio-filters li:first-child {
    margin-left: 0;
}

.portfolio-2 .portfolio-filters li:last-child {
    margin-right: 0;
}

@media (max-width: 575px) {
    .portfolio-2 .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
}

.portfolio-2 .portfolio-content {
    background-color: var(--surface-color);
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    overflow: hidden;
}

.portfolio-2 .portfolio-content img {
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.portfolio-2 .portfolio-content .portfolio-info {
    background-color: var(--background-color);
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 25px 20px;
    position: relative;
    z-index: 2;
}

.portfolio-2 .portfolio-content .portfolio-info h4 {
    font-size: 18px;
    font-weight: 600;
    padding-right: 50px;
}

.portfolio-2 .portfolio-content .portfolio-info h4 a {
    color: var(--heading-color);
    transition: 0.3s;
}

.portfolio-2 .portfolio-content .portfolio-info h4 a:hover {
    color: var(--accent-color);
}

.portfolio-2 .portfolio-content .portfolio-info p {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 14px;
    margin-bottom: 0;
    padding-right: 50px;
}

.portfolio-2 .portfolio-content:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# About 2 Section
--------------------------------------------------------------*/
.about-2 .intro-text {
    max-width: 680px;
    margin: 0 auto 20px;
}

.about-2 .intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 0;
}

.about-2 .visual-block {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.about-2 .visual-block img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.about-2 .visual-block .stat-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    background: linear-gradient(to top, color-mix(in srgb, #000, transparent 30%) 0%, transparent 60%);
    border-radius: 16px;
}

.about-2 .visual-block .stat-circle {
    background: var(--accent-color);
    color: var(--contrast-color);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.about-2 .visual-block .stat-circle .stat-value {
    display: block;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--heading-font);
}

.about-2 .visual-block .stat-circle .stat-label {
    display: block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 4px;
    padding: 0 12px;
    line-height: 1.3;
}

.about-2 .highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

.about-2 .highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 10px;
    background: var(--surface-color);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.about-2 .highlight-item .highlight-icon-wrap {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent-color), transparent 85%);
    transition: all 0.3s ease;
}

.about-2 .highlight-item .highlight-icon-wrap i {
    font-size: 22px;
    color: var(--accent-color);
    transition: color 0.3s ease;
}

.about-2 .highlight-item .highlight-content h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.about-2 .highlight-item .highlight-content p {
    font-size: 13px;
    line-height: 1.65;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    margin-bottom: 0;
}

.about-2 .highlight-item:hover {
    border-bottom-color: var(--accent-color);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--default-color), transparent 92%);
}

.about-2 .highlight-item:hover .highlight-icon-wrap {
    background: var(--accent-color);
}

.about-2 .highlight-item:hover .highlight-icon-wrap i {
    color: var(--contrast-color);
}

.about-2 .action-bar {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

.about-2 .btn-browse {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--contrast-color);
    font-family: var(--heading-font);
    font-weight: 600;
    font-size: 15px;
    padding: 13px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.about-2 .btn-browse i {
    font-size: 18px;
    line-height: 0;
    transition: transform 0.3s ease;
}

.about-2 .btn-browse:hover {
    background: color-mix(in srgb, var(--accent-color) 88%, black);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 40%);
}

.about-2 .btn-browse:hover i {
    transform: scale(1.15);
}

.about-2 .assurance-tags {
    display: flex;
    align-items: center;
    gap: 18px;
}

.about-2 .assurance-tags .assurance-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.about-2 .assurance-tags .assurance-tag i {
    font-size: 15px;
    color: #16a34a;
}

@media (max-width: 992px) {
    .about-2 .visual-block {
        max-width: 400px;
        margin: 0 auto 10px;
    }

    .about-2 .highlights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-2 .action-bar {
        justify-content: center;
    }

    .about-2 .assurance-tags {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-2 .highlights-grid {
        grid-template-columns: 1fr;
    }

    .about-2 .intro-text p {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .about-2 .action-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-2 .assurance-tags {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .about-2 .stat-circle {
        width: 110px;
        height: 110px;
    }

    .about-2 .stat-circle .stat-value {
        font-size: 28px;
    }

    .about-2 .stat-circle .stat-label {
        font-size: 9px;
    }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
    background: #f7f9fd;
    padding-top: 14px;
    padding-bottom: 120px;
}

.pricing .pricing-card {
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid color-mix(in srgb, var(--default-color) 8%, transparent);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing .pricing-card:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
}

.pricing .pricing-card {
    background: white;
    border: 2px solid #2a4b96;
    border-radius: 18px;
    padding: 0;
    overflow: visible;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}


.pricing .pricing-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing .card-image-section {
    padding: 25px 20px 0;
    text-align: center;
}

/* 蝴蝶设计 - Simple */
.pricing .butterfly-design {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    position: relative;
}

.pricing .butterfly-design svg {
    width: 100%;
    height: 100%;
}

/* 徽章设计 - Medium */
.pricing .badge-design {
    width: 140px;
    height: 120px;
    margin: 0 auto;
}

/* 鹰徽设计 - Complex */
.pricing .eagle-design {
    width: 130px;
    height: 120px;
    margin: 0 auto;
}

.pricing .divider {
    border-top: 2px dashed #2a4b96;
    margin: 20px 20px 0;
}

.pricing .card-content-section {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.pricing .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.pricing .price-section {
    margin-bottom: 15px;
}

.pricing .original-price {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-right: 8px;
}

.pricing .current-price {
    color: var(--primary-blue);
    font-size: 1.8rem;
    font-weight: 700;
}

/* VIEW SAMPLES 按钮 - 在价格下方 */
.pricing .btn-view-samples {
    background: #fff;
    border: 2px solid #2a4b96;
    color:#2a4b96;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.pricing .btn-view-samples:hover {
    background: #2a4b96;
    color: #ffffff;
}

.pricing .btn-view-samples,
.pricing .btn-get-quote{
    text-decoration:none;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    transition:all .3s ease;
}

.pricing .features-list {
    padding: 0;
    list-style: none;
    margin: 0;
    text-align: left;
    flex-grow: 1;
}

.pricing .features-list li {
    padding: 8px 0;
    color: #414141;
    font-size: 1.02rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.pricing .features-list li i {
    color: var(--green-check);
    margin-right: 10px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.pricing .card-footer-section {
    padding: 0 20px 25px;
}

.pricing .btn-get-quote {
    background: var(--primary-blue);
    color: #fff;
    border:2px solid var(--primary-blue);
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s ease;
    margin-bottom: 28px;
}

.pricing .btn-get-quote:hover {
    background: #fff;
    color: #2a4b96;
    border-color:#2a4b96;
    border-radius: 6px;
    border:2px solid #2a4b96;
}

/* MOST POPULAR 标签 */
.pricing .popular-badge {
    position: relative;
}

.pricing .popular-badge::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--orange-badge);
    color: white;
    font-size: 0.75rem;
    padding: 5px 15px;
    border-radius: 20px;
    z-index: 10;
    white-space: nowrap;
}

/* 你的完整CSS可以这样写 */
.pricing .row {
    display: flex;
    flex-wrap: wrap;
}

.pricing .row {
    position: relative;
    padding-top: 20px;
}

.pricing .row>div:nth-child(2) .pricing-card::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6600;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    z-index: 10;
    white-space: nowrap;
}

.pricing .popular-badge .pricing-card {
    border-color: #2a4b96;
}

/* 底部按钮 */
.pricing .bottom-section {
    text-align: center;
    margin-top: 40px;
}

.pricing .btn-bottom-quote {
    background: white;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 4px;
    padding: 12px 40px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.pricing .btn-bottom-quote:hover {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.pricing .hover-tip {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .pricing .pricing-card {
        margin-bottom: 30px;
    }
}


/* ========== 信息图标样式 ========== */
.info-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-left: 5px;
}

.info-icon {
    color: #2a4b96;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

.info-icon:hover {
    color: #ff6600;
}

.tooltip-box {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 30%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    text-align: center;
    line-height: 1.4;
}

.tooltip-box::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #333;

}

.info-icon-wrapper:hover .tooltip-box{
    opacity: 0.9;
    visibility: visible;
}

/*--------------------------------------------------------------
# Mango Blog Section
--------------------------------------------------------------*/
.blog-section .blog-title {
    font-size: 36px;
    font-weight: 700;
    color: #2f4ea2;
}

.blog-section .blog-item {
    margin-bottom: 40px;
    align-items: stretch;
}

.blog-section .blog-right {
    display: flex;
    flex-direction: column;
}

.blog-section .blog-img {
    border-radius: 8px;
    border: 1px solid #eee;
    margin-bottom: 10px;
}

.blog-section .blog-heading {
    font-size: 32px;
    color: #2f4ea2;
    margin-bottom: 15px;
    font-weight: 500;
}

.blog-section .blog-desc {
    color: #7b7b7b;
    line-height: 1.8;
    margin-bottom: 15px;
}

.blog-section .blog-meta {
    font-size: 14px;
    color: #777;
}

.blog-section .blog-date {
    margin-right: 12px;
}

.blog-section .blog-btn {
    padding: 8px 20px;
    font-size: 14px;
    margin-top: auto;
    align-self: flex-end;
    background-color: #204390;
    border-color: #204390;
}

.blog-section .blog-btn:hover {
    background-color: #ffffff;
    border-color: #1a3570;
    color: #204390;
}

@media (max-width:768px) {

    .blog-section .blog-heading {
        font-size: 20px;
        margin-top: 10px;
    }

    .blog-section .blog-desc {
        font-size: 15px;
    }

    .blog-section .blog-meta {
        margin-bottom: 10px;
    }

    .blog-section .blog-btn {
        margin-top: 10px;
    }

}

/*--------------------------------------------------------------
# Mango Blog detail Section
--------------------------------------------------------------*/
.blog-detail {
    color: #615e5d;
}

.blog-detail .blog-title {
    font-size: 32px;
    font-weight: 500;
    color: #2c6ed5;
}

.blog-detail .blog-cover {
    border-radius: 10px;
    border: 1px solid #eee;
}

.blog-detail .blog-summary {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.blog-detail .blog-content {
    margin-top: 20px;
    line-height: 1.8;
    color: #444;
}

.blog-detail .blog-content p {
    margin-bottom: 16px;
}

.blog-detail .blog-pagination {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.blog-detail .blog-pagination a {
    text-decoration: none;
    color: #20438e;
    font-weight: 500;
}

.blog-detail .blog-pagination a:hover {
    text-decoration: underline;
}

@media (max-width:768px) {

    .blog-detail .blog-title {
        font-size: 24px;
        font-weight: 600;
    }

}

/*--------------------------------------------------------------
# Faq 2 Section
--------------------------------------------------------------*/
.faq-2 {
    background: #F7F9FD;
    padding-bottom: 120px;
}

.faq-2 .faq-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 992px) {
    .faq-2 .faq-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.faq-2 .faq-title {
    font-size: 56px;
    font-weight: 700;
    color: #204391;
    margin-bottom: 40px;

}

.faq-2 .category-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--surface-color);
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
    text-align: left;
}

@media (max-width: 992px) {
    .faq-2 .category-card {
        padding: 16px 20px;
    }
}

@media (max-width: 576px) {
    .faq-2 .category-card {
        padding: 14px 16px;
        gap: 12px;
    }
}

.faq-2 .category-card:hover {
    border-color: color-mix(in srgb, var(--accent-color) 30%, transparent);
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .faq-2 .category-card:hover {
        transform: translateY(-4px);
    }
}

.faq-2 .category-card.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.faq-2 .category-card.active .category-icon {
    background: color-mix(in srgb, var(--contrast-color) 20%, transparent);
    color: var(--contrast-color);
}

.faq-2 .category-card.active .category-info h5 {
    color: var(--contrast-color);
}

.faq-2 .category-card.active .category-info span {
    color: color-mix(in srgb, var(--contrast-color) 80%, transparent);
}

.faq-2 .category-card .category-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent-color) 12%, transparent);
    border-radius: 12px;
    color: var(--accent-color);
    font-size: 22px;
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .faq-2 .category-card .category-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: 10px;
    }
}

.faq-2 .category-card .category-info h5 {
    margin: 0 0 4px;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color);
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .faq-2 .category-card .category-info h5 {
        font-size: 14px;
    }
}

.faq-2 .category-card .category-info span {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color) 60%, transparent);
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .faq-2 .category-card .category-info span {
        font-size: 12px;
    }
}

.faq-2 .help-box {
    margin-top: 24px;
    padding: 28px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color) 10%, transparent) 0%, color-mix(in srgb, var(--accent-color) 5%, transparent) 100%);
    border-radius: 16px;
    text-align: center;
    border: 1px solid color-mix(in srgb, var(--accent-color) 20%, transparent);
}

@media (max-width: 992px) {
    .faq-2 .help-box {
        flex-basis: 100%;
        margin-top: 12px;
    }
}

.faq-2 .help-box .help-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    border-radius: 50%;
    color: var(--contrast-color);
    font-size: 24px;
}

.faq-2 .help-box h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
}

.faq-2 .help-box p {
    margin: 0 0 20px;
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color) 70%, transparent);
    line-height: 1.6;
}

.faq-2 .help-box .help-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-2 .help-box .help-link i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-2 .help-box .help-link:hover {
    gap: 12px;
}

.faq-2 .help-box .help-link:hover i {
    transform: translateX(4px);
}

.faq-2 .faq-content-area .faq-header-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.faq-2 .faq-content-area .faq-header-info .questions-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    padding: 8px 16px;
    background: color-mix(in srgb, var(--accent-color) 10%, transparent);
    border-radius: 20px;
}

.faq-2 .faq-content-area .faq-header-info .search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: var(--surface-color);
    border-radius: 30px;
    border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
    transition: all 0.3s ease;
}

.faq-2 .faq-content-area .faq-header-info .search-box:focus-within {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.faq-2 .faq-content-area .faq-header-info .search-box i {
    color: color-mix(in srgb, var(--default-color) 50%, transparent);
    font-size: 18px;
}

.faq-2 .faq-content-area .faq-header-info .search-box input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 14px;
    color: var(--default-color);
    width: 200px;
}

.faq-2 .faq-content-area .faq-header-info .search-box input::placeholder {
    color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

@media (max-width: 576px) {
    .faq-2 .faq-content-area .faq-header-info .search-box input {
        width: 140px;
    }
}

.faq-2 .tab-content .tab-pane.show {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.faq-2 .faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-2 .faq-item {
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #20438e;
    ;
    border-left: 3px solid #204391;
    margin-top: 12px;
}

.faq-2 .faq-item:hover {
    border-color: color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.faq-2 .faq-item.faq-active {
    border-color: var(--accent-color);
    box-shadow: 0 8px 32px color-mix(in srgb, var(--accent-color) 12%, transparent);
}

.faq-2 .faq-item.faq-active .faq-question {
    background: #f3f3f3;
}

.faq-2 .faq-item.faq-active .faq-question .question-icon {
    background: var(--accent-color);
    color: var(--contrast-color);
}

.faq-2 .faq-item.faq-active .faq-question .toggle-icon {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-2 .faq-item.faq-active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px 76px;
    opacity: 1;
}

@media (max-width: 576px) {
    .faq-2 .faq-item.faq-active .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

.faq-2 .faq-item .faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    font-size: 22px;
    font-weight: 600;
    color: #204391;
    line-height: 1.5;
}

@media (max-width: 576px) {
    .faq-2 .faq-item .faq-question {
        padding: 18px 20px;
        gap: 12px;
        font-size: 15px;
    }
}

.faq-2 .faq-item .faq-question .question-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--accent-color) 10%, transparent);
    border-radius: 50%;
    color: var(--accent-color);
    font-size: 18px;
    transition: all 0.3s ease;
}

@media (max-width: 576px) {
    .faq-2 .faq-item .faq-question .question-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}

.faq-2 .faq-item .faq-question .toggle-icon {
    flex-shrink: 0;
    margin-left: auto;
    color: color-mix(in srgb, var(--default-color) 50%, transparent);
    font-size: 20px;
    transition: all 0.4s ease;
}

@media (max-width: 576px) {
    .faq-2 .faq-item .faq-question .toggle-icon {
        font-size: 16px;
    }
}

.faq-2 .faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 28px 0 76px;
    opacity: 0;
    transition: all 0.4s ease;
}

@media (max-width: 576px) {
    .faq-2 .faq-item .faq-answer {
        padding: 0 20px 0 20px;
    }
}

.faq-2 .faq-item .faq-answer p {
    margin: 0;
    font-size: 15px;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color) 75%, transparent);
}

@media (max-width: 576px) {
    .faq-2 .faq-item .faq-answer p {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    background: linear-gradient(180deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
    position: relative;
}

.contact:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: radial-gradient(ellipse at top, color-mix(in srgb, var(--accent-color), transparent 94%), transparent);
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact .quick-contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact .contact-card {
    background: var(--surface-color);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 94%);
    box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 96%);
    transition: all 0.3s ease;
}

.contact .contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 92%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-card:hover .icon-wrapper {
    background: var(--accent-color);
    transform: scale(1.05);
}

.contact .contact-card:hover .icon-wrapper i {
    color: var(--contrast-color);
}

.contact .contact-card .icon-wrapper {
    width: 56px;
    height: 56px;
    background: color-mix(in srgb, var(--accent-color), transparent 94%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.contact .contact-card .icon-wrapper i {
    font-size: 26px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.contact .contact-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--heading-color);
}

.contact .contact-card .contact-detail {
    font-size: 15px;
    font-weight: 500;
    color: var(--default-color);
    margin-bottom: 6px;
    line-height: 1.5;
}

.contact .contact-card .availability {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 45%);
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact .contact-card .availability:before {
    content: "";
    width: 6px;
    height: 6px;
    background: color-mix(in srgb, var(--accent-color), #10b981 50%);
    border-radius: 50%;
    display: inline-block;
}

.contact .trust-indicators {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact .trust-indicators .indicator-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-radius: 14px;
}

.contact .trust-indicators .indicator-item .indicator-icon {
    width: 42px;
    height: 42px;
    background: var(--surface-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact .trust-indicators .indicator-item .indicator-icon i {
    font-size: 20px;
    color: var(--accent-color);
}

.contact .trust-indicators .indicator-item .indicator-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact .trust-indicators .indicator-item .indicator-text strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
}

.contact .trust-indicators .indicator-item .indicator-text span {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .main-form-container {
    background: var(--surface-color);
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 8px 40px color-mix(in srgb, var(--default-color), transparent 94%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.contact .form-intro {
    margin-bottom: 36px;
}

.contact .form-intro .intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 92%), color-mix(in srgb, var(--accent-color), transparent 96%));
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.contact .form-intro .intro-badge i {
    font-size: 14px;
}

.contact .form-intro h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--heading-color);
}

.contact .form-intro p {
    font-size: 16px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 0;
}

.contact .modern-form .form-control,
.contact .modern-form .form-select {
    height: 58px;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 14px;
    background: var(--surface-color);
    color: var(--default-color);
    font-size: 15px;
    padding: 16px 20px;
    transition: all 0.3s ease;
}

.contact .modern-form .form-control:focus,
.contact .modern-form .form-select:focus {
    border-color: var(--accent-color);
    background: var(--surface-color);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 94%);
    outline: none;
}

.contact .modern-form .form-control::placeholder,
.contact .modern-form .form-select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .modern-form .form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px 12px;
    padding-right: 48px;
}

.contact .modern-form textarea.form-control {
    height: auto !important;
    min-height: 140px;
    padding: 16px 20px;
    resize: none;
}

.contact .modern-form .form-extras {
    margin-top: 20px;
    padding: 18px 20px;
    background: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-radius: 12px;
}

.contact .modern-form .form-extras .form-check {
    margin-bottom: 0;
}

.contact .modern-form .form-extras .form-check .form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact .modern-form .form-extras .form-check .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.contact .modern-form .form-extras .form-check .form-check-input:focus {
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 92%);
}

.contact .modern-form .form-extras .form-check .form-check-label {
    font-size: 14px;
    color: var(--default-color);
    margin-left: 8px;
    cursor: pointer;
}

.contact .modern-form .btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 18px 32px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    margin-top: 24px;
    box-shadow: 0 4px 16px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .modern-form .btn-submit:hover {
    background: color-mix(in srgb, var(--accent-color), #000 10%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact .modern-form .btn-submit:hover i {
    transform: translateX(4px);
}

.contact .modern-form .btn-submit:active {
    transform: translateY(0);
}

.contact .modern-form .btn-submit i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.contact .modern-form .form-footer-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact .modern-form .form-footer-note i {
    font-size: 14px;
    color: var(--accent-color);
}

.contact .social-proof {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.contact .social-proof .proof-stats {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.contact .social-proof .proof-stats .stat-box {
    flex: 1;
    text-align: center;
    padding: 20px;
    background: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-radius: 14px;
}

.contact .social-proof .proof-stats .stat-box .stat-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 6px;
}

.contact .social-proof .proof-stats .stat-box .stat-label {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
    font-weight: 500;
}

.contact .social-proof .social-channels {
    text-align: center;
}

.contact .social-proof .social-channels p {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 16px;
}

.contact .social-proof .social-channels .channel-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.contact .social-proof .social-channels .channel-links .channel-link {
    width: 48px;
    height: 48px;
    background: color-mix(in srgb, var(--accent-color), transparent 96%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact .social-proof .social-channels .channel-links .channel-link:hover {
    background: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .social-proof .social-channels .channel-links .channel-link i {
    font-size: 18px;
}

@media (max-width: 992px) {
    .contact .quick-contact-wrapper {
        margin-bottom: 32px;
    }

    .contact .main-form-container {
        padding: 36px 28px;
    }

    .contact .main-form-container .form-intro h2 {
        font-size: 28px;
    }

    .contact .social-proof .proof-stats {
        gap: 12px;
    }

    .contact .social-proof .proof-stats .stat-box {
        padding: 16px 12px;
    }

    .contact .social-proof .proof-stats .stat-box .stat-value {
        font-size: 20px;
    }

    .contact .social-proof .proof-stats .stat-box .stat-label {
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .contact .main-form-container {
        padding: 28px 20px;
    }

    .contact .main-form-container .form-intro h2 {
        font-size: 24px;
    }

    .contact .main-form-container .form-intro p {
        font-size: 15px;
    }

    .contact .social-proof .proof-stats {
        flex-direction: column;
        gap: 12px;
    }

    .contact .trust-indicators .indicator-item {
        padding: 14px 16px;
    }
}

/*--------------------------------------------------------------
# Hero 4 Section
--------------------------------------------------------------*/
.hero-4 {
    --background-color: #20438e;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    padding: 40px 0;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-4 .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-4 .hero-background .bg-shape {
    position: absolute;
    border-radius: 50%;
    background: #0e6ace;
}

.hero-4 .hero-background .bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.hero-4 .hero-background .bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-4 .hero-background .bg-shape.shape-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    left: 10%;
    animation: float 10s ease-in-out infinite;
}

.hero-4 .hero-wrapper {
    position: relative;
    width: 100%;
}

.hero-4 .hero-wrapper .row {
    position: relative;
    z-index: 2;
}

.hero-4 .content-section {
    padding: 10px;
    position: relative;
}

.hero-4 .content-section .promo-ribbon {
    position: relative;
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
    color: var(--contrast-color);
    padding: 8px 20px 8px 15px;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-4 .content-section .promo-ribbon .ribbon-corner {
    position: absolute;
    right: -5px;
    top: 0;
    width: 0;
    height: 0;
    border-left: 5px solid color-mix(in srgb, var(--accent-color), #000 30%);
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

.hero-4 .content-section h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--heading-color);
}

@media (max-width: 1200px) {
    .hero-4 .content-section h1 {
        font-size: 3.5rem;
    }
}

.hero-4 .content-section p:first-of-type {
    font-weight: 700;
    font-size: 1.6rem;
    margin-top: 30px;
}

.hero-4 .content-section p {
    font-size: 1.5rem;
    line-height: 1.7;
    color: #fff;
}

.hero-4 .content-section .hero-features {
    list-style: disc;
    margin-top: 20px;
    display: inline-block;
    text-align: left;
    font-size: 22px;
    line-height: 1.8;
    max-width: 600px;
}

.hero-features li {
    margin-bottom: 8px;
}

.hero-4 .content-section .feature-highlights {
    display: flex;
    gap: 25px;
    margin-bottom: 2.5rem;
}

.hero-4 .content-section .feature-highlights .highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-4 .content-section .feature-highlights .highlight-item i {
    font-size: 1.25rem;
    color: var(--accent-color);
}

.hero-4 .content-section .feature-highlights .highlight-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--heading-color);
}

.hero-4 .content-section .price-offer {
    background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 5%));
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 2.5rem;
}

.hero-4 .content-section .price-offer .offer-details {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 8px;
}

.hero-4 .content-section .price-offer .offer-details .offer-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--heading-color);
    text-transform: uppercase;
}

.hero-4 .content-section .price-offer .offer-details .discount-info {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.hero-4 .content-section .price-offer .offer-details .discount-info .percentage {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.hero-4 .content-section .price-offer .offer-details .discount-info .off-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
}

.hero-4 .content-section .price-offer .savings-text {
    font-size: 0.875rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero-4 .content-section .action-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.hero-4 .content-section .action-buttons .btn {
    padding: 15px 30px;
    font-weight: 600;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-4 .content-section .action-buttons .btn.btn-shop {
    background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 20%));
    color: var(--contrast-color);
    border: none;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.hero-4 .content-section .action-buttons .btn.btn-shop:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero-4 .content-section .action-buttons .btn.btn-explore {
    background-color: transparent;
    color: var(--heading-color);
    border: 2px solid color-mix(in srgb, var(--heading-color), transparent 80%);
}

.hero-4 .content-section .action-buttons .btn.btn-explore i {
    font-size: 1.2rem;
}

.hero-4 .content-section .action-buttons .btn.btn-explore:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-3px);
}

.hero-4 .image-section {
    padding: 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-4 .image-section .product-showcase {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.hero-4 .image-section .product-showcase .main-product {
    position: relative;
    z-index: 3;
}

.hero-4 .image-section .product-showcase .main-product img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.hero-4 .image-section .product-showcase .floating-elements .floating-badge {
    position: absolute;
    z-index: 4;
    border-radius: 12px;
    padding: 10px 15px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 85%);
    animation: bounce 3s ease-in-out infinite;
}

.hero-4 .image-section .product-showcase .floating-elements .floating-badge.badge-1 {
    top: 20px;
    left: -30px;
    background-color: var(--surface-color);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.hero-4 .image-section .product-showcase .floating-elements .floating-badge.badge-2 {
    top: 50%;
    right: -25px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.hero-4 .image-section .product-showcase .floating-elements .floating-badge.badge-2 i {
    font-size: 1.2rem;
}

.hero-4 .image-section .product-showcase .floating-elements .floating-product {
    position: absolute;
    z-index: 2;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 20px color-mix(in srgb, var(--default-color), transparent 80%);
    animation: float 5s ease-in-out infinite;
}

.hero-4 .image-section .product-showcase .floating-elements .floating-product.product-mini-1 {
    top: 15%;
    right: -40px;
    animation-delay: -1s;
}

.hero-4 .image-section .product-showcase .floating-elements .floating-product.product-mini-2 {
    bottom: 20%;
    left: -40px;
    animation-delay: -2s;
}

.hero-4 .image-section .product-showcase .floating-elements .floating-product img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 992px) {
    .hero-4 {
        padding: 80px 0;
        min-height: auto;
    }

    .hero-4 .content-section {
        padding: 20px;
        text-align: center;
    }

    .hero-4 .content-section h1 {
        font-size: 3rem;
    }

    .hero-4 .content-section p {
        max-width: 100%;
        font-size: 1.1rem;
    }

    .hero-4 .content-section .feature-highlights {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-4 .content-section .action-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-4 .image-section {
        margin-top: 40px;
        padding: 20px;
    }

    .hero-4 .image-section .floating-elements .floating-product {
        display: none;
    }
}

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

    .hero-4 .content-section h1 {
        font-size: 2.5rem;
    }

    .hero-4 .content-section .feature-highlights {
        gap: 15px;
    }

    .hero-4 .content-section .feature-highlights .highlight-item span {
        font-size: 0.8rem;
    }

    .hero-4 .content-section .action-buttons {
        flex-direction: column;
    }

    .hero-4 .content-section .action-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-4 .hero-background .bg-shape.shape-1 {
        width: 200px;
        height: 200px;
    }

    .hero-4 .hero-background .bg-shape.shape-2 {
        width: 150px;
        height: 150px;
    }

    .hero-4 .hero-background .bg-shape.shape-3 {
        display: none;
    }
}

/*--------------------------------------------------------------
# Steps Section
--------------------------------------------------------------*/
.steps {
    padding-bottom: 120px;
    padding-top: 180px;
    margin-top: 120px;
}

.steps .timeline-container {
    position: relative;
    /* padding: 30px 0; */
}

.steps .timeline-track {
    position: relative;
    /* max-width: 1200px; */
    margin: 0 auto;
}

.steps .timeline-track::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 5px;
    background: var(--accent-color);
    transform: translateX(-50%);
    z-index: 1;
    margin-top: 90px;
}

.steps .timeline-item {
    position: relative;
    margin-bottom: 10px;
    margin-top: -190px;
}

.steps .timeline-item .timeline-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: 0.4s;
    border: 5px solid #20438e;
}


.steps .timeline-item:last-child {
    margin-bottom: 0;
}

.steps .timeline-item.left .timeline-content {
    padding-right: 50px;
    text-align: right;
}

.steps .timeline-item.left .timeline-content .timeline-marker {
    right: -40px;
}

.steps .timeline-item.right .timeline-content {
    padding-left: 50px;
    margin-left: 50%;
}

.steps .timeline-item.right .timeline-content .timeline-marker {
    left: -40px;
}

.steps .timeline-content {
    position: relative;
    width: 50%;
}

.steps .timeline-marker {
    position: absolute;
    top: 90px;
    width: 80px;
    height: 80px;
    background-color: var(--surface-color);
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--accent-color);
}

.steps .timeline-marker .step-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--heading-font);
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 3;
    border: 3px solid var(--surface-color);
}

.steps .timeline-marker .step-icon {
    font-size: 1.5rem;
    transition: all 0.3s ease;
    color: #fff;
    font-weight: 600;
}

.steps .timeline-body {
    border-radius: 10px;
    padding: 25px;
    transition: all 0.3s ease;
}

.steps .timeline-body h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #20438e;
    margin-top: 15px;
    letter-spacing: -0.5px;
    text-align: center;
}

.steps .timeline-body p {
    color: #000;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-align: center;
}

@media (max-width: 991px) {
    .steps .timeline-track::before {
        left: 30px;
    }

    .steps .timeline-item.left .timeline-content,
    .steps .timeline-item.right .timeline-content {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
        margin-left: 0;
        text-align: left;
    }

    .steps .timeline-item.left .timeline-content .timeline-marker,
    .steps .timeline-item.right .timeline-content .timeline-marker {
        left: 0;
        right: auto;
    }
}

@media (max-width: 767px) {
    .steps{
        padding-top: 10px;
        margin-top: 0;
    }

    .steps .timeline-item {
        margin-bottom: 50px;
        margin-top: 0px;
    }

    .steps .timeline-marker {
        width: 60px;
        height: 60px;
    }

    .steps .timeline-marker .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .steps .timeline-marker .step-icon {
        font-size: 1.3rem;
    }

    .steps .timeline-body {
        padding: 20px;
        padding-top: 50px;
    }

    .steps .timeline-body h3 {
        font-size: 1.2rem;
    }

    .steps .timeline-body p {
        font-size: 0.9rem;
    }
}

@media (max-width: 575px) {
    .steps .timeline-marker {
        width: 64px;
        height: 64px;
    }

    .steps .timeline-marker .step-icon {
        font-size: 1.1rem;
    }

    .steps .timeline-item.left .timeline-content,
    .steps .timeline-item.right .timeline-content {
        padding-left: 70px;
    }
}

/*--------------------------------------------------------------
# Enroll Section
--------------------------------------------------------------*/
.enroll {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
}

.enroll .enrollment-form-wrapper {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 768px) {
    .enroll .enrollment-form-wrapper {
        padding: 30px 20px;
        border-radius: 15px;
    }
}

.enroll .enrollment-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .enroll .enrollment-header h2 {
        font-size: 2rem;
    }
}

.enroll .enrollment-header p {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    line-height: 1.6;
}

.enroll .enrollment-form .form-group {
    margin-bottom: 1.5rem;
}

.enroll .enrollment-form .form-group .form-label {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.enroll .enrollment-form .form-group .form-control,
.enroll .enrollment-form .form-group .form-select {
    background-color: var(--surface-color);
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--default-color);
}

.enroll .enrollment-form .form-group .form-control:focus,
.enroll .enrollment-form .form-group .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
    outline: none;
}

.enroll .enrollment-form .form-group .form-control::placeholder,
.enroll .enrollment-form .form-group .form-select::placeholder {
    color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.enroll .enrollment-form .form-group textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.enroll .enrollment-form .schedule-options .form-check {
    margin-bottom: 12px;
    padding: 15px 20px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 10px;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    transition: all 0.3s ease;
}

.enroll .enrollment-form .schedule-options .form-check:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.enroll .enrollment-form .schedule-options .form-check .form-check-input {
    margin-top: 3px;
    margin-left: 0px;
}

.enroll .enrollment-form .schedule-options .form-check .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.enroll .enrollment-form .schedule-options .form-check .form-check-label {
    font-weight: 500;
    margin-left: 10px;
    cursor: pointer;
}

.enroll .enrollment-form .agreement-section {
    background: color-mix(in srgb, var(--heading-color), transparent 95%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
}

.enroll .enrollment-form .agreement-section .form-check {
    margin-bottom: 15px;
}

.enroll .enrollment-form .agreement-section .form-check:last-child {
    margin-bottom: 0;
}

.enroll .enrollment-form .agreement-section .form-check .form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.enroll .enrollment-form .agreement-section .form-check .form-check-label {
    font-size: 0.95rem;
    line-height: 1.5;
}

.enroll .enrollment-form .agreement-section .form-check .form-check-label a {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
}

.enroll .enrollment-form .agreement-section .form-check .form-check-label a:hover {
    color: var(--heading-color);
}

.enroll .enrollment-form .btn-enroll {
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.enroll .enrollment-form .btn-enroll:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, color-mix(in srgb, var(--contrast-color), transparent 80%), transparent);
    transition: left 0.5s;
}

.enroll .enrollment-form .btn-enroll:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.enroll .enrollment-form .btn-enroll:hover:before {
    left: 100%;
}

.enroll .enrollment-form .btn-enroll:active {
    transform: translateY(-1px);
}

.enroll .enrollment-form .btn-enroll .bi {
    font-size: 1.2rem;
}

.enroll .enrollment-form .enrollment-note {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    font-style: italic;
}

.enroll .enrollment-form .enrollment-note .bi {
    color: var(--accent-color);
    margin-right: 5px;
}

.enroll .enrollment-benefits {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.enroll .enrollment-benefits h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--heading-color);
    text-align: center;
}

.enroll .enrollment-benefits .benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 20px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.enroll .enrollment-benefits .benefit-item:hover {
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    transform: translateX(5px);
}

.enroll .enrollment-benefits .benefit-item .benefit-icon {
    background: var(--accent-color);
    color: var(--contrast-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.enroll .enrollment-benefits .benefit-item .benefit-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--heading-color);
}

.enroll .enrollment-benefits .benefit-item .benefit-content p {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin: 0;
    line-height: 1.4;
}

.enroll .enrollment-benefits .enrollment-stats {
    background: var(--accent-color);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item {
    display: block;
    margin-bottom: 15px;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item:last-child {
    margin-bottom: 0;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--contrast-color);
    line-height: 1;
}

.enroll .enrollment-benefits .enrollment-stats .stat-item .stat-label {
    display: block;
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--contrast-color), transparent 20%);
    margin-top: 5px;
}

@media (max-width: 992px) {
    .enroll .enrollment-benefits {
        margin-top: 50px;
        position: static;
        top: auto;
    }
}


/*--------------------------------------------------------------
# CONTACTUS Section
--------------------------------------------------------------*/
.contact-section {
    background: #eef7ff;
    padding: 80px 0;
    padding-bottom: 120px;
}

.contact-section .contact-header h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #254792;
}

.contact-section .contact-header p {
    color: #585858;
    font-size: 20px;
}

.contact-section .contact-wrapper {
    margin-top: 40px;
}

#contactForm input,
#contactForm textarea {
    width: 100%;
    border: none;
    padding: 15px;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-size: 16px;
}

#contactForm textarea {
    min-height: 180px;
    resize: none;
}

.form-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
}

.upload-box input {
    display: none;
}

.btn-upload {
    background: #20438e;
    color: #fff;
    padding: 10px 28px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 17px;
    border-radius: 7px
}

.btn-upload:hover {
    background: #fff;
    color: #20438e;
    border: 1px solid #20438e;
}

#fileName {
    margin-left: 10px;
    font-size: 13px;
    color: #555;
}

.btn-send {
    background: #f39c12;
    color: #fff;
    padding: 10px 38px;
    border: 1px solid transparent;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 7px;
}

.btn-send:hover {
    border: 1px solid #f19928 !important;
    color: #f19928;
    background: #fff;
    transform: translateY(-2px);
}

.contact-section .contact-info {
    padding-left: 80px;
    border-left: 2px dashed #ccc;
    margin-left: 50px;
}

.contact-section .contact-info h5 {
    font-size: 16px;
    font-weight: 700;
    color: #2b3c6b;
}

.contact-section .info-card {
    background: #fff;
    margin-bottom: 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding: 18px 25px;
}

.contact-section .info-card .icon {
    font-size: 28px;
    margin-bottom: 10px;
}

.contact-section .info-card h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-section .info-card p {
    color: #666;
    font-size: 16px;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
}

@media (max-width: 991px) {
    .contact-section .contact-info {
        padding-left: 0;
        border-left: none;
        margin-top: 30px;
    }

    .form-bottom {
        align-items: flex-start;
        gap: 15px;
    }

    .contact-section .contact-info {
        padding-left: 0px;
        border-left: none;
        margin-left: 0px;
    }
}

.tiaozhuan-form-section {
    position: relative;
    display: block;
    background-image: url(../images/tiaozhuan.png);
    margin-top: 60px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.tiaozhuan-info-section {
    position: relative;
    display: block;
    margin: 0 auto;
}

.tiaozhuan-info-section .sec-title {
    position: relative;
    display: block;
    margin-bottom: 60px;
}

.tiaozhuan-info-section .single-info-box .inner-box {
    position: relative;
    display: block;
    background: #fff;
    padding: 22px 40px 22px 40px;
    box-shadow: 0 16px 16px rgba(65, 65, 65, 0.4);
    margin-bottom: 160px;
    border-top: 3px solid #068cf5;
    border-radius: 10px;
}

.tiaozhuan-info-section .single-info-box .inner-box .icon-box {
    position: relative;
    display: inline-block;
    font-size: 50px;
    line-height: 50px;
    color: #fbb419;
    font-weight: 400;
    margin-bottom: 13px;
}

.tiaozhuan-info-section .single-info-box:hover .inner-box .icon-box:before {
    transform: rotate(25deg);
}

.tiaozhuan-info-section .info-column:nth-child(2) .single-info-box .inner-box .icon-box {
    color: #02b7f7;
}

.tiaozhuan-info-section .info-column:last-child .single-info-box .inner-box .icon-box {
    color: #ff7162;
}

.tiaozhuan-info-section .single-info-box .inner-box .icon-box:before {
    position: absolute;
    content: '';
    background: url(../images/icons/icon-3.png);
    width: 65px;
    height: 70px;
    right: -20px;
    top: -10px;
    background-repeat: no-repeat;
    transition: all 500ms ease;
}

.tiaozhuan-info-section .info-column:nth-child(2) .single-info-box .inner-box .icon-box:before {
    position: absolute;
    content: '';
    background: url(../images/icons/icon-2.png);
    width: 64px;
    height: 70px;
    right: -20px;
    top: -10px;
    background-repeat: no-repeat;
    transition: all 500ms ease;
}

.tiaozhuan-info-section .info-column:last-child .single-info-box .inner-box .icon-box:before {
    position: absolute;
    content: '';
    background: url(../images/icons/icon-1.png);
    width: 56px;
    height: 71px;
    right: -20px;
    top: -10px;
    background-repeat: no-repeat;
    transition: all 500ms ease;
}

.tiaozhuan-info-section .single-info-box .inner-box .text {
    position: relative;
    display: block;
    font-size: 17px;
    line-height: 28px;
    color: #848484;
    font-weight: 400;
    margin-top: 30px;
}

.tiaozhuan-info-section .single-info-box .inner-box .text1 {
    position: relative;
    display: block;
    font-size: 26px;
    line-height: 28px;
    color: #068cf5;
    font-weight: 400;
    margin-top: 20px;
}

.tiaozhuan-info-section .single-info-box .inner-box .text2 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #068cf5;
    font-weight: 400;
    background: #93d6f1;
    margin-top: 40px;
    border-radius: 5px;
    padding-top: 8px;
    padding-bottom: 8px;
}

.tiaozhuan-info-section .single-info-box .inner-box .text3 {
    position: relative;
    display: block;
    font-size: 18px;
    line-height: 28px;
    color: #ac2f11;
    font-weight: 500;
    margin-top: 30px;
}

.tiaozhuan-info-section .single-info-box .inner-box .text3 span {
    color: #fff;
    background: #e4972d;
    padding-top: 3px;
    padding-bottom: 3px;
}

.tiaozhuan-info-section .single-info-box .inner-box .text a {
    position: relative;
    display: inline-block;
    font-size: 17px;
    line-height: 26px;
    color: #848484;
    font-weight: 400;
}

.tiaozhuan-info-section .single-info-box .inner-box .text a:hover {
    color: #ff7162;
}

.tiaozhuan-info-section .single-info-box .inner-box h3 {
    margin-bottom: 5px;
}

:root {
    --bg-body: #f7f9fd;
    --bg-card: #ffffff;
    --primary-color: #20438e;
    --primary-hover: #1a3672;
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-muted: #999999;
    --border-color: #e0e0e0;
    --border-focus: #20438e;
    --error-color: #dc3545;
    --success-color: #28a745;
    --bg-input: #f7f9fd;
}

* {
    box-sizing: border-box;
}

.vector-quote {
    background-color: var(--bg-body);
    color: var(--text-primary);
    min-height: 100vh;
    padding: 5px 20px 60px 20px;
}

.quote-form {
    max-width: 860px;
    margin: 0 auto;
    border-radius: 12px;
    padding: 5px 50px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-primary);
    text-align: center;
}

.section-label {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #1f3f90;
    display: block;
    margin-top: 40px;
}

.section-label .required {
    color: var(--error-color);
    margin-left: 2px;
}

.form-control {
    background-color: var(--bg-input);
    color: #000000 !important;
    border: 2px solid #23458c !important;
    padding: 14px 16px;
    font-size: 18px !important;
    transition: all 0.2s;
    border-radius: 0 !important;
    outline: none;
}

textarea.form-control {
    background: #fff;
    line-height: 1.5;
}

#budget {
    color: #000000;
    font-size: 24px;
    font-weight: 500;
    height: auto;
    padding: 10px 16px;
    border-radius: 0 !important;
    border: 1px solid #23458c;
}

.form-control:focus {
    background-color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(32, 67, 142, 0.1);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* File Upload Area */
.file-upload-area {
    border: 2px solid #23458c;
    border-radius: 0 !important;
    padding: 35px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background-color: #fff;
}

.file-upload-area:hover,
.file-upload-area.dragover {
    border-color: #0c3661;
    background-color: #e1f2ff;
}

.upload-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    color: #20438e;
}

.upload-text {
    color: #000000;
    font-size: 16px;
    margin-bottom: 4px;
}

.upload-hint {
    font-size: 15px;
    color: #444;
}

.file-input {
    display: none;
}

/* File Upload Footer */
.upload-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    min-height: 24px;
}

.progress-wrapper {
    flex: 1;
    max-width: 200px;
    display: none;
}

.progress-wrapper.show {
    display: block;
}

.progress {
    height: 6px;
    background-color: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar {
    background-color: var(--primary-color);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.file-status {
    font-size: 13px;
    color: #000000;
    text-align: right;
}

.file-status .count {
    color: var(--primary-color);
    font-weight: 600;
}

/* File List */
.file-list {
    margin-top: 12px;
    max-height: 120px;
    overflow-y: auto;
    border: 1px solid #eee;
    border-radius: 6px;
    display: none;
}

.file-list.show {
    display: block;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 13px;
    background-color: #fff;
}

.file-item:last-child {
    border-bottom: none;
}

.file-item-name {
    color: var(--text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
}

.file-item-remove {
    color: var(--text-muted);
    cursor: pointer;
    padding: 2px;
    transition: color 0.2s;
}

.file-item-remove:hover {
    color: var(--error-color);
}

/* Format Grid */
.format-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 20px;
    border: 2px solid #23458c;
    padding: 25px;
    background: #fff;
}

.form-check-input {
    width: 22px;
    height: 22px;
    /* margin-top: 0.15em; */
    background-color: var(--bg-body);
    border: 1px solid #234493;
    border-radius: 0 !important;
    margin-right: 5px;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(32, 67, 142, 0.25);
}

.form-check-label {
    font-size: 20px;
    color: #000000;
    cursor: pointer;
}

/* Color Scheme */
.color-scheme-section {
    position: relative;
}

.color-scheme-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 2px solid #23458c;
    overflow: hidden;
}

.color-scheme-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 2px solid #20438e;
    transition: all 0.2s;
    position: relative;
}

.color-scheme-item:last-child {
    border-bottom: none;
}

.color-scheme-item input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    cursor: pointer;
    margin: 0;
    z-index: 1;
}

.color-scheme-item-text {
    font-size: 20px;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.color-scheme-item.active {
    background-color: var(--primary-color);
}

.color-scheme-item.active .color-scheme-item-text {
    color: #fff;
}

.color-scheme-item:not(.active):hover {
    background-color: #f8f9fa;
}

/* Popup */
.color-scheme-popup {
    position: absolute;
    right: -320px;
    top: 60px;
    width: 300px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    overflow: hidden;
}

.color-scheme-section:hover .color-scheme-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.popup-header {
    padding: 12px 16px;
    background-color: #efefef;
    font-weight: 600;
    font-size: 18px;
    border-bottom: 1px solid #eee;
    color: var(--text-primary);
}

.popup-content {
    padding: 0;
}

.popup-row {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #f0f0f0;
}

.popup-row:last-child {
    border-bottom: none;
}

.popup-row-text {
    flex: 1;
    padding: 12px 16px;
    font-size: 15px;
    color: #000000;
    display: flex;
    align-items: center;
}

.popup-row-img {
    width: 120px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.quote-form,
.progress,
.file-list,
.format-grid,
.color-scheme-list,
.color-scheme-popup,
.validation-errors {
    border-radius: 0 !important;
}

/* .img-bw {
    background: linear-gradient(135deg, #000 50%, #fff 50%);
}

.img-spot {
    background: linear-gradient(90deg, #e74c3c 33%, #3498db 33%, #3498db 66%, #f1c40f 66%);
}

.img-cmyk {
    background: linear-gradient(90deg, #00bcd4, #e91e63, #ffeb3b, #000);
}

.img-rgb {
    background: linear-gradient(90deg, #ff0000, #00ff00, #0000ff);
}

.img-pms {
    background: linear-gradient(135deg, #ff6b6b 50%, #4ecdc4 50%);
}

.img-full {
    background: conic-gradient(red, yellow, lime, aqua, blue, magenta, red);
} */



/* Separation */
.separation-btn {
    width: 100%;
    padding: 12px;
    border: 2px solid #23458c;
    background-color: #fff;
    color: #2e2e2e;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.separation-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.separation-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.separation-hint {
    display: block;
    text-align: center;
    font-size: 18px;
    color: #292929;
    margin-top: 8px;
}

/* Validation Errors */
.validation-errors {
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(220, 53, 69, 0.05);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 6px;
    display: none;
}

.validation-errors.show {
    display: block;
}

.validation-errors .error-item {
    color: var(--error-color);
    font-size: 13px;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Submit Button */
.submit-btn {
    display: block;
    width: fit-content;
    padding: 11px 40px;
    margin: 60px auto 0;
    background: linear-gradient(to bottom, #0b65c5, #014687);
    border-radius: 50px;
    border: 1px solid transparent;
    /* 关键 */
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .3s ease;
    margin-bottom: 60px;
}

.submit-btn:hover {
    background: #fff;
    color: #206bb2;
    border: 1px solid #206bb2;
}

/* Responsive */
@media (max-width: 992px) {
    .color-scheme-popup {
        position: fixed;
        left: 20px;
        right: 20px;
        top: auto;
        bottom: 20px;
        width: auto;
        transform: translateY(100%);
        z-index: 1050;
    }

    .color-scheme-section:hover .color-scheme-popup {
        transform: translateY(0);
    }

    .quote-form {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .format-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .color-scheme-popup{
        display: none;
    }
}

/** * Inquiry Success Section  */
.inquiry-success-section {
    position: relative;
    min-height: 80vh;
    background: #004188;
    overflow: hidden;
}

/* 蓝色圆形 */
.inquiry-success-section .bg-circle {
    position: absolute;
    width: 1280px;
    height: 1280px;
    background: #0e6ace;
    border-radius: 50%;
    left: -400px;
    top: -200px;
}

/* 卡片 */
.success-card {
    background: #f3f4f6;
    padding: 80px 70px;
    max-width: 680px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    border-top-right-radius: 45px;
    border-bottom-left-radius: 45px;
}

.success-card h2 {
    font-weight: 500;
    color: #204391;
    margin-bottom: 45px;
    font-size: 41px;
}

.success-card p {
    color: #204391;
    line-height: 2;
    font-size: 19px;
    text-align: left;
}

/* 按钮 */
.btn-pill {
    border-radius: 30px;
    padding: 10px 26px;
    margin-top: 36px;
}

.success-card .btn-primary {
    background: linear-gradient(to bottom, #0c63c1, #01448b);
    border: none;
    color: #fff;
    border-radius: 30px;
    padding: 10px 26px;
    font-weight: 500;
}

.success-card .btn-primary:hover {
    background: #0c63c1;
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.success-card .btn-outline-primary {
    border: 2px solid #204391;
    color: #204391;
}

.success-card .btn-outline-primary:hover {
    background: linear-gradient(to bottom, #0c63c1, #01448b);
    filter: brightness(1.1);
    transform: translateY(-1px);
    color: #fff;
}

/* embroidery-quote */

:root {
    --emb-bg-body: #f7f9fd;
    --emb-bg-card: #ffffff;
    --emb-primary: #20438e;
    --emb-primary-hover: #1a3672;
    --emb-text-primary: #333333;
    --emb-text-secondary: #666666;
    --emb-text-muted: #999999;
    --emb-border: #e0e0e0;
    --emb-error: #dc3545;
    --emb-input-bg: #f7f9fd;
}

* {
    box-sizing: border-box;
}

.embroidery-quote {
    background-color: var(--emb-bg-body);
    color: var(--emb-text-primary);
    min-height: 100vh;
    padding: 5px 20px 120px 20px;
}

.emb-form {
    max-width: 860px;
    margin: 0 auto;
    border-radius: 12px;
    padding: 5px 50px;
}

.emb-label {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    display: block;
    color: #1f3f90;
    margin-top: 40px;
}

.emb-label .required {
    color: var(--emb-error);
    margin-left: 2px;
}

.emb-input {
    background-color: #fff;
    border: 2px solid #23458c !important;
    padding: 12px 16px;
    font-size: 17px;
    width: 100%;
    color: #000;
    transition: all 0.2s;
}

.emb-input:focus {
    background-color: #fff;
    border: 2px solid #23458c !important;
    box-shadow: 0 0 0 3px rgba(32, 67, 142, 0.1);
    outline: none;
}

/* ========== YES/NO 按钮 ========== */
.emb-btn-group {
    display: flex;
    gap: 15px;
    position: relative;
}

.emb-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #23458c !important;
    background-color: #fff;
    color: #23458c;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

.emb-btn:hover {
    border-color: var(--emb-primary);
    color: var(--emb-primary);
}

.emb-btn.active {
    background-color: var(--emb-primary);
    border-color: var(--emb-primary);
    color: #fff;
}

.emb-pre-existing-wrapper {
    position: relative;
}

/* NO 弹窗 */
.emb-hover-popup {
    position: absolute;
    left: auto;          
    right: -390px;       
    top: 25px;           
    width: 380px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px); 
    transition: all 0.3s;
    z-index: 10;
    pointer-events: none;
    border: 1px solid #1f4391;
}
.emb-pre-existing-wrapper:hover .emb-hover-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.emb-no-wrapper {
    position: relative;
    flex: 1;
}

.emb-no-wrapper .emb-btn {
    width: 100%;
}

.emb-no-wrapper:hover .emb-hover-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.emb-hover-title {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--emb-primary);
    font-size: 20px;
}

.emb-hover-text {
    font-size: 16px;
    color: var(--emb-text-secondary);
    line-height: 1.5;
}

/* ========== 文件上传 ========== */
.emb-upload-area {
    border: 2px solid #23458c !important;
    padding: 35px 20px;
    text-align: center;
    cursor: pointer;
    background: #fcfdff;
    transition: all 0.2s;
}

.emb-upload-area:hover {
    border-color: var(--emb-primary);
    background: rgba(32, 67, 142, 0.03);
}

.emb-upload-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 10px;
    color: var(--emb-primary);
}

.emb-upload-text {
    font-size: 16px;
    color: #000;
    margin-bottom: 4px;
}

.emb-upload-hint {
    font-size: 15px;
    color: #444;
}

.emb-upload-input {
    display: none;
}

.emb-upload-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    min-height: 24px;
}

.emb-progress-wrapper {
    flex: 1;
    max-width: 200px;
    display: none;
}

.emb-progress-wrapper.show {
    display: block;
}

.emb-progress {
    height: 6px;
    background-color: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.emb-progress-bar {
    height: 100%;
    background-color: var(--emb-primary);
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 3px;
}

.emb-file-status {
    font-size: 13px;
    color: var(--emb-text-secondary);
    text-align: right;
}

.emb-file-status .count {
    color: var(--emb-primary);
    font-weight: 600;
}

.emb-file-list {
    margin-top: 10px;
    border: 1px solid #eee;
    border-radius: 6px;
    display: none;
    max-height: 120px;
    overflow-y: auto;
}

.emb-file-list.show {
    display: block;
}

.emb-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 13px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.emb-file-item:last-child {
    border-bottom: none;
}

.emb-file-item-name {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--emb-text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ========== Pre-Existing ========== */
.emb-pre-upload-section {
    display: none;
    margin-top: 20px;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

.emb-pre-upload-section.show {
    display: block;
}

.emb-pre-text {
    font-size: 17px;
    color: #23458c;
    margin-bottom: 12px;
}

.emb-browse-btn {
    display: inline-block;
    background-color: var(--emb-primary);
    color: #fff;
    padding: 10px 30px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    border: none;
    transition: background 0.2s;
}

.emb-browse-btn:hover {
    background-color: var(--emb-primary-hover);
}

/* ========== Tackle Twill ========== */
.emb-conditional {
    display: none;
    margin-top: 15px;
    animation: fadeIn 0.3s ease;
}

.emb-conditional.show {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

.emb-hint {
    display: block;
    text-align: center;
    font-size: 18px;
    color: #2d2d2d;
    margin-top: 8px;
}

/* ========== 自定义下拉（触发器 + 面板） ========== */
.emb-dropdown {
    position: relative;
}

.emb-dropdown-trigger {
    background-color: #fff;
    border: 2px solid #23458c;
    padding: 12px 40px 12px 16px;
    font-size: 17px;
    color: #000;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    position: relative;
}

.emb-dropdown-trigger::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 7px solid #23458c;
    transition: transform 0.2s;
}

.emb-dropdown-trigger.open {
    border-color: #23458c;
    box-shadow: 0 0 0 3px rgba(32, 67, 142, 0.1);
}

.emb-dropdown-trigger.open::after {
    transform: translateY(-50%) rotate(180deg);
}

.emb-dropdown-panel {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #23458c;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 20;
    display: none;
    overflow: hidden;
}

.emb-dropdown-panel.show {
    display: block;
}

.emb-dropdown-option {
    padding: 12px 14px;
    font-size: 17px;
    color: #23458c;
    cursor: pointer;
    transition: all 0.15s;
    border-bottom: 1px solid #e8ecf3;
}

.emb-dropdown-option:last-child {
    border-bottom: none;
}

.emb-dropdown-option:hover {
    background: #23458c;
    color: #fff;
}

.emb-dropdown-option.selected {
    background: #23458c;
    color: #fff;
}

/* ========== Summary ========== */
.emb-summary {
    margin-top: 40px;
    border-top: 2px solid var(--emb-border);
    padding-top: 30px;
}

.emb-summary-title {
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--emb-primary);
}

.emb-summary-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: #fff;
    padding: 20px;
    border: 2px solid #23458c !important;
}

.emb-summary-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--emb-text-primary);
    border-bottom: 1px solid #ddd;
    padding-bottom: 5px;
}

.emb-summary-item {
    font-size: 13px;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
}

.emb-summary-label {
    color: var(--emb-text-muted);
}

.emb-summary-val {
    color: var(--emb-text-primary);
    font-weight: 500;
    text-align: right;
    max-width: 60%;
    word-break: break-all;
}

/* ========== 提交 & 错误 ========== */
.emb-submit {
    display: block;
    width: fit-content;
    padding: 11px 40px;
    margin: 65px auto 0;
    background: linear-gradient(to bottom, #0b65c5, #014687);
    border-radius: 50px;
    border: 1px solid transparent;
    color: #fff;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .3s ease;
}

.emb-submit:hover {
    background: #fff;
    color: #206bb2;
    border: 1px solid #206bb2;
}

.emb-errors {
    margin-top: 20px;
    padding: 15px;
    background: rgba(220, 53, 69, 0.05);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 6px;
    display: none;
}

.emb-errors.show {
    display: block;
}

.emb-error-item {
    color: var(--emb-error);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .emb-summary-grid {
        grid-template-columns: 1fr;
    }

    .emb-hover-popup {
       display: none !important;
    }

    .emb-pre-existing-wrapper:hover .emb-hover-popup {
        transform: translateY(0);
    }
}

/* ==========================================
   全局通用按钮：GET QUOTE
   ========================================== */
.btn-get-quote {
    display: inline-block;
    padding: 11px 40px;
    background: linear-gradient(to bottom, #0b65c5, #014687);
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
    box-sizing: border-box;
    line-height: 1.2;
}

.btn-get-quote:hover {
    background: #ffffff;
    color: #206bb2;
    border: 1px solid #204bb2;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(32, 67, 142, 0.15);
    text-decoration: none;
}

/* 点击按压反馈 */
.btn-get-quote:active {
    transform: scale(0.97);
}

/* --- 可选：如果你有时候需要小一点的按钮，加个 .sm 修饰符 --- */
.btn-get-quote.sm {
    padding: 10px 24px;
    font-size: 13px;
}

/* ==========================================
        表单三：Custom-QuoteE
   ========================================== */
.cq-section {
    background: #f8f9fe;
    padding: 80px 0;
    padding-bottom: 120px;
    padding-top: 10px;
}

/* ========== 左侧：三张图竖排 ========== */
.patch-gallery {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 50px;
}

.patch-gallery img {
    width: 100%;
    object-fit: cover;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 3px solid #1d4696;
}

/* ========== 右侧表单卡片 ========== */
.cq-card {
    border-radius: 16px;
    /* box-shadow: 0 4px 28px rgba(0, 0, 0, 0.06); */
}

/* ========== Label ========== */
.cq-label {
    font-size: 32px;
    font-weight: 600;
    color: #1f3f90;
    text-align: center;
    margin-top: 40px;
    display: block;
}

.cq-label .req {
    color: #dc3545;
    margin-left: 2px;
    font-size: 22px;
}

/* ========== 输入框 ========== */
.cq-input,
.cq-textarea {
    background: #fff;
    border: 2px solid #23458c !important;
    padding: 12px 14px;
    font-size: 17px;
    width: 100%;
    color: #000;
    transition: all 0.2s;
}

.cq-input:focus,
.cq-textarea:focus {
    background: #fff;
    border-color: #204492;
    box-shadow: 0 0 0 3px rgba(32, 68, 146, 0.1);
    outline: none;
}

.cq-textarea {
    resize: vertical;
    min-height: 76px;
}

/* ========== 文件上传 ========== */
.cq-upload {
    border: 2px solid #23458c;
    padding: 22px 16px;
    text-align: center;
    cursor: pointer;
    background: #fafbfe;
    transition: all 0.2s;
}

.cq-upload:hover {
    border-color: #204492;
    background: rgba(32, 68, 146, 0.02);
}

.cq-upload-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 8px;
    color: #204492;
}

.cq-upload-text {
    font-size: 16px;
    color: #000;
}

.cq-upload-hint {
    font-size: 12px;
    color: #000;
    margin-top: 2px;
}

.cq-upload-input {
    display: none;
}

.cq-progress-wrap {
    margin-top: 10px;
    display: none;
}

.cq-progress-wrap.show {
    display: block;
}

.cq-progress {
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    overflow: hidden;
}

.cq-progress-bar {
    height: 100%;
    background: #204492;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 3px;
}

.cq-upload-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    min-height: 22px;
}

.cq-file-status {
    font-size: 13px;
    color: #666;
}

.cq-file-status .count {
    color: #204492;
    font-weight: 600;
}

.cq-file-list {
    margin-top: 8px;
    border: 1px solid #eee;
    border-radius: 6px;
    display: none;
    max-height: 130px;
    overflow-y: auto;
}

.cq-file-list.show {
    display: block;
}

.cq-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    font-size: 13px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.cq-file-item:last-child {
    border-bottom: none;
}

.cq-file-item-name {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    flex: 1;
}

.cq-file-remove {
    cursor: pointer;
    color: #999;
    transition: color 0.2s;
    flex-shrink: 0;
    margin-left: 8px;
}

.cq-file-remove:hover {
    color: #dc3545;
}

/* ========== 单位切换器 ========== */
.cq-unit-switch {
    display: flex;
    gap: 40px;
    margin-top: 8px;
}

.cq-unit-switch label {
    flex: 1;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    position: relative;
    border: 1px solid #4765a5;
    background: #204492;
    color: #fff;
}

.cq-unit-switch input[type="radio"] {
    display: none;
}

.cq-unit-switch label .unit-text {
    position: relative;
    z-index: 1;
}

.cq-unit-switch label .unit-bg {
    position: absolute;
    inset: 0;
    background: #fff;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.2s;
}

.cq-unit-switch input[type="radio"]:not(:checked)~.unit-bg {
    opacity: 1;
}

.cq-unit-switch input[type="radio"]:not(:checked)~.unit-text {
    color: #4765a5;
}

/* ========== Patch Type 标签 ========== */
.cq-patch-badge {
    display: inline-block;
    background: #204492;
    color: #fff;
    padding: 12px 32px;
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    margin-top: 8px;
    width: 100%;
}

/* ========== 自定义下拉 Backing Options ========== */
.cq-select-wrap {
    position: relative;
    margin-top: 8px;
}

.cq-select-trigger {
    background: #fff;
    border: 2px solid #23458c !important;
    padding: 10px 40px 10px 14px;
    font-size: 17px;
    width: 100%;
    color: #000;
    cursor: pointer;
    transition: all 0.2s;
    user-select: none;
    position: relative;
}

.cq-select-trigger.open {
    border-color: #204492;
    box-shadow: 0 0 0 3px rgba(32, 68, 146, 0.1);
}

.cq-select-trigger.has-value {
    color: #333;
}

/* 箭头 */
.cq-select-trigger::after {
    content: '';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #999;
    transition: transform 0.2s;
}

.cq-select-trigger.open::after {
    transform: translateY(-50%) rotate(180deg);
}

/* 下拉面板 */
.cq-select-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border: 2px solid #23458c !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 20;
    display: none;
    overflow: hidden;
}

.cq-select-dropdown.show {
    display: block;
}

.cq-select-option {
    padding: 12px 14px;
    font-size: 17px;
    font-weight: 500;
    color: #204393;
    cursor: pointer;
    transition: all 0.15s;
    border-bottom: 1px solid #0656a7;
}

.cq-select-option:hover {
    background: #204492;
    color: #fff;
}

.cq-select-option.selected {
    background: #204492;
    color: #fff;
}

/* ========== 字段间距 ========== */
.cq-field {
    margin-bottom: 18px;
}

/* ========== GET QUOTE ========== */
.cq-submit-wrap {
    text-align: center;
    margin-top: 8px;
}

.cq-submit {
    display: inline-block;
    padding: 11px 40px;
    background: transparent;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.25s;
    background: linear-gradient(to bottom, #0b65c5, #014687);
    border: 1px solid transparent;
}

.cq-submit:hover {
    color: #206bb2;
    border: 1px solid #204bb2;
    background: #fff;
}

/* ========== 错误提示 ========== */
.cq-errors {
    margin-top: 14px;
    padding: 12px 14px;
    background: rgba(220, 53, 69, 0.05);
    border: 1px solid rgba(220, 53, 69, 0.2);
    border-radius: 8px;
    display: none;
}

.cq-errors.show {
    display: block;
}

.cq-error-item {
    color: #dc3545;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.cq-error-item:last-child {
    margin-bottom: 0;
}

/* ========== 响应式 ========== */
@media (max-width: 991px) {
    .patch-gallery {
        margin-bottom: 8px;
    }

    .cq-card {
        padding: 30px 24px;
    }
}

@media (max-width: 575px) {
    .cq-section {
        padding: 50px 0;
    }

    .cq-card {
        padding: 24px 16px;
    }

    .cq-label {
        font-size: 20px;
    }

    .cq-label .req {
        font-size: 18px;
    }

    .cq-unit-switch {
        gap: 20px;
    }

    .cq-submit {
        padding: 10px 40px;
        font-size: 14px;
    }
}

.pagination-wrapper{
    margin-bottom: 120px;
}

.pagination {
    position: relative;
    display: block;
    margin-top: 40px;
    float: right;
    border-radius: 4px;
}

.pagination li {
    display: inline-block;
}


.pagination li a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    font-family: 'Arial', sans-serif;
    height: 45px;
    padding-left: 16px;
    padding-right: 16px;
    line-height: 45px;
    text-align: center;
    color: #20438e !important;
    transition: all 500ms ease;
    border: 1px solid #ddd;
    margin-left: -1px;
}

.pagination>li:last-child>a {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px;
}

.pagination li a:hover,
.pagination li a.active {
    background: #20438e !important;
    color: #ffffff !important;
}

.pagination li.active{
    background: #20438e !important;
    color: #ffffff !important;
}

.pagination li.active a {
    color: #ffffff !important;

}
