/*!
 * app.css for dreameebike.com
 * Author wzcoder.com
 * @Copyright 2005-2025 wzcoder.com (http://www.wzcoder.com)
 * @version 1.0
 * @date 2025-12-02
 * @lang pt-PT
 */

/*--------------------------------------------------------------
# App通用
--------------------------------------------------------------*/
.gslide .gslide-media {
    background: color-mix(in srgb, var(--surface-color), transparent 0%);;
}

.breadcrumb-container,
.banner-inner-wrapper {
    text-align: center;
}

.wz-table {
    width: 100%;
}


.wz-table tr {
    box-sizing: border-box;
    outline: 0px;
    border-top: none;
    border-bottom: 1px solid color-mix(in srgb, var(--border-color), transparent 0%);
    height: 18px;
}

.wz-table tr td,
.wz-table tr th {
    box-sizing: border-box;
    outline: 0px;
    padding: 12px 16px;
    display: table-cell;
    border: medium;
    vertical-align: middle;
    text-align: center;
}

.wz-table tr td p,
.wz-table tr th p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
.intro {
    position: relative;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
    overflow: hidden;
}

.intro::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 70%);
    transform: rotate(-15deg);
    z-index: 1;
}

.intro .container {
    position: relative;
    z-index: 2;
}

.intro .content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    background-clip: text;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .intro .content h2 {
        font-size: 26px;
    }
}

.intro .content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.intro .content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.intro .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem 0;
}

.intro .stat-item {
    text-align: left;
    position: relative;
}

.intro .stat-item .stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.intro .stat-item .stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--heading-color);
}

.intro .stat-item::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    /*left: 50%;*/
    /*transform: translateX(-50%);*/
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 70%));
    border-radius: 2px;
}

.intro .cta-section {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.intro .cta-section .btn {
    padding: 10px 30px;
    display: flex;
    align-items: center;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.intro .cta-section .btn.btn-primary {
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
    border: none;
    color: var(--surface-color);
}

.intro .cta-section .btn.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.intro .cta-section .btn.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.intro .cta-section .btn.btn-outline:hover {
    background: var(--accent-color);
    color: var(--surface-color);
    transform: translateY(-3px);
}

.intro .visual-section {
    position: relative;
}

.intro .image-wrapper {
    position: relative;
    border-radius: var(--border-radius-larger);
    overflow: hidden;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    /*transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);*/
    transition: all 0.5s ease;
}

.intro .image-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.intro .image-wrapper:hover img {
    transform: scale(1.05);
    /*transform: perspective(1000px) rotateY(0deg) rotateX(0deg);*/
}

.intro .image-wrapper .gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    opacity: 0;
    visibility: hidden;
}

.intro .image-wrapper:hover .gradient-overlay {
    opacity: 1;
    visibility: visible;
}

.intro .image-wrapper .floating-badge {
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--surface-color);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    background: color-mix(in srgb, var(--accent-color), transparent 0%);
    gap: 0.5rem;
}

.intro .image-wrapper:hover .floating-badge {
    opacity: 1;
    visibility: visible;
}

.intro .image-wrapper .floating-badge i {
    font-size: 1.1rem;
}

.intro .highlight-cards {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .intro .highlight-cards {
        flex-direction: column;
    }

    .cta-section {
        flex-direction: column;
    }

    .cta-section a {
        justify-content: center;
    }
}

.intro .highlight-card {
    flex: 1;
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
    transition: all 0.3s ease;
}

.intro .highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.intro .highlight-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 30%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro .highlight-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.intro .highlight-card p {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .intro .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .intro .cta-section {
        justify-content: center;
    }

    .intro .cta-section .btn {
        flex: 1;
        text-align: center;
    }
}


/*--------------------------------------------------------------
# grid post
--------------------------------------------------------------*/


.grid-post {
    background: var(--surface-color);
    border-radius: var(--border-radius-larger);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.grid-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px color-mix(in srgb, var(--default-color), transparent 88%);
}

.grid-post:hover .post-img img {
    transform: scale(1.05);
}

.grid-post .post-img {
    position: relative;
    overflow: hidden;
}

.grid-post .post-img img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.grid-post .post-img .post-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.grid-post .post-img .category-tag {
    background: var(--surface-color);
    color: var(--accent-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--default-color), transparent 90%);
}

.grid-post .post-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.grid-post .title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.grid-post .title a {
    color: var(--heading-color);
    transition: color 0.3s ease;
}

.grid-post .title a:hover {
    color: var(--accent-color);
}

.grid-post .excerpt {
    color: color-mix(in srgb, var(--heading-color), transparent 30%);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.grid-post .post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.grid-post .author-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.grid-post .author-info .author-img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.grid-post .author-info .author-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--heading-color);
}

.grid-post .read-time {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-weight: 500;
}

@media (max-width: 992px) {
    .hero-post .post-title {
        font-size: 24px;
    }

    .hero-post .post-content {
        padding: 25px;
    }

    .sidebar-posts {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-post .post-title {
        font-size: 20px;
    }

    .hero-post .post-content {
        padding: 20px;
    }

    .hero-post .author-info .author-avatar {
        width: 40px;
        height: 40px;
    }

    .sidebar-post {
        padding: 15px;
    }

    .sidebar-post .post-img img {
        width: 60px;
        height: 60px;
    }

    .sidebar-post .title {
        font-size: 13px;
    }

    .grid-post .title {
        font-size: 16px;
    }

    .grid-post .post-content {
        padding: 20px;
    }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    transition: 0.3s;
}

.gallery .gallery-links {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all ease-in-out 0.3s;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    line-height: 1.2;
    margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
    color: #ffffff;
}

.gallery .gallery-links .details-link {
    font-size: 30px;
    line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
    opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
    margin-top: 0;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

.glightbox-clean .gslide-description {
    background: #272727;
}

.glightbox-clean .gslide-title {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/*--------------------------------------------------------------
# Slider Section
--------------------------------------------------------------*/
.slider {
    --nav-pading-top: 80px;
    width: 100%;
    height: calc(60vh + var(--nav-pading-top));
    background-color: rgba(63, 73, 83, 0.8);
    overflow: hidden;
    position: relative;
    padding-top: var(--nav-pading-top);
}

.slider .carousel-inner .caption {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider .carousel-inner .caption p {
    display: inline-block;
    margin-bottom: 0;
    font-size: 16px;
}

.slider .carousel, .slider .carousel-inner, .slider .carousel-item, .slider .carousel-item::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}


.slider .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.slider .carousel-item:before {
    content: "";
    background-color: color-mix(in srgb, var(--dark-color), transparent 100%);
    /*background-image: url("../img/mask.png");*/
    /*background-repeat: no-repeat;*/
    /*background-size: cover;*/
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
}

.slider .carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 0;
    top: 70px;
    left: 50px;
    right: 50px;
    z-index: 20;
}

.slider .container {
    text-align: center;
}

.slider h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 60px;
    font-weight: 700;
}

.slider p {
    font-size: 32px;
    margin: 0 auto 30px auto;
    color: #fff;
}

.slider .carousel-inner .carousel-item {
    transition-property: opacity;
    background-position: center center;
}

.slider .carousel-inner .carousel-item,
.slider .carousel-inner .active.carousel-item-start,
.slider .carousel-inner .active.carousel-item-end {
    opacity: 0;
}

.slider .carousel-inner .active,
.slider .carousel-inner .carousel-item-next.carousel-item-start,
.slider .carousel-inner .carousel-item-prev.carousel-item-end {
    opacity: 1;
    transition: 0.5s;
}

.slider .carousel-inner .carousel-item-next,
.slider .carousel-inner .carousel-item-prev,
.slider .carousel-inner .active.carousel-item-start,
.slider .carousel-inner .active.carousel-item-end {
    left: 0;
    transform: translate3d(0, 0, 0);
}

.slider .carousel-control-next, .slider .carousel-control-prev {
    opacity: .2;
}

.slider:hover .carousel-control-next, .slider:hover .carousel-control-prev {
    opacity: 1;
}

.slider .carousel-control-next-icon, .slider .carousel-control-prev-icon {
    background: none;
    font-size: 48px;
    line-height: 1;
    width: auto;
    height: auto;
}

.slider .carousel-control-next-icon:hover, .slider .carousel-control-prev-icon:hover {
    color: rgba(255, 255, 255, 0.8);
}

.slider .carousel-indicators li {
    cursor: pointer;
    background: #fff;
    overflow: hidden;
    border: 0;
    width: 30px;
    height: 4px;
    opacity: .6;
    transition: 0.3s;
}

.slider .carousel-indicators li.active {
    opacity: 1;
    background: var(--accent-color);
}


@media (max-width: 992px) {
    .slider {
        height: 40vh;
    }

    .slider .carousel-container {
        top: 8px;
    }
}

@media (max-width: 768px) {
    .slider {
        --nav-pading-top: 55px;
        padding-top: var(--nav-pading-top);
        height: calc(100vw * 10 / 16 + var(--nav-pading-top)) !important;
    }

    .slider h2 {
        font-size: 24px;
    }

    .slider p {
        font-size: 16px;
    }

    .slider .carousel-control-next-icon, .slider .carousel-control-prev-icon {
        font-size: 24px;
    }
}

@media (min-width: 1024px) {
    .slider .carousel-control-prev, .slider .carousel-control-next {
        width: 5%;
    }
}


.animate__delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
    -webkit-animation-delay: calc(var(--animate-delay) * 1);
    animation-delay: calc(var(--animate-delay) * 1);
}

.animate__delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-delay: calc(var(--animate-delay) * 2);
    animation-delay: calc(var(--animate-delay) * 2);
}

.animate__delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s;
    -webkit-animation-delay: calc(var(--animate-delay) * 3);
    animation-delay: calc(var(--animate-delay) * 3);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
    background-color: color-mix(in srgb, var(--nav-color), transparent 20%);
    transition: all 0.5s ease-in-out;
    z-index: 997;
    padding: 10px 0;
    /*box-shadow: 0 0 10px rgb(0 0 0 / 10%);*/
}

.header.header-scrolled {
    padding: 10px 0;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header.header-scrolled::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: none;
    z-index: -1;
}

.header .logo {
    font-size: 26px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.header .logo a {
    color: #FFFFFF;
}

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

@media (max-width: 768px) {
    .header, .header.header-scrolled {
        padding: 10px 0;
    }

    .header .logo img {
        max-height: 35px;
    }

}

.navbar-other {
    z-index: 500;
}

.top-contact i {
    width: 20px;
    text-align: center;
    display: inline-block;
    margin-right: 3px;
}

.top-contact p {
    margin: 0;
    font-weight: 700;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

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

.navbar > ul > li {
    position: relative;
    padding: 0 0 0 20px;
}

.navbar a, .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.3s;
    padding: 5px 2px;
    font-family: var(--heading-font);
    text-transform: uppercase;
}


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

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

.navbar > ul > li > a:before {
    content: "";
    position: absolute;
    left: 20px;
    height: 2px;
    bottom: 3px;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active a:before {
    visibility: visible;
    width: calc(100% - 20px);
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

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

.navbar .dropdown ul a {
    padding: 5px 15px;
    text-transform: none;
    font-weight: normal;
}

.navbar .dropdown ul a:hover {
    background: var(--accent-color);
}

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

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
    color: #FFFFFF;
}

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

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

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

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover > ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: var(--accent-color);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: var(--accent-color);
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: color-mix(in srgb, var(--accent-color), transparent 0%);
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}


@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 55px;
    right: 0;
    left: 0;
    bottom: 0;
    background: color-mix(in srgb, var(--accent-color), transparent 20%);
    transition: 0.5s;
    z-index: 400;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 25px;
    right: 12px;
}

.header-scrolled .navbar-mobile .mobile-nav-toggle {
    top: 25px;
}

.navbar-mobile .navbar-other {
    position: absolute;
    top: 11px;
    right: 24px;
}

@media (min-width: 768px) and (max-width: 992px) {
    .navbar-mobile .navbar-other {
        position: absolute;
        top: 22px;
        right: 42px;
    }

    .navbar-mobile {
        top: 82px;
    }
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 15px;
    left: 0;
    padding: 10px 0;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile ul li {
    padding: 0;
}

.navbar-mobile > ul > li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    position: relative !important;
}

.navbar-mobile a,
.navbar-mobile a:focus,
.navbar-mobile a:active,
.navbar-mobile a:hover {
    color: #FFFFFF;
}

.navbar-mobile a:before {
    display: none;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
    color: #FFFFFF;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    padding: 10px;
}

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

.navbar-mobile .dropdown ul a {
    padding: 5px 0;
    font-size: 16px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 20px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
    color: #FFFFFF;
    background: none;
}


.navbar-mobile .dropdown .sub-nav-container {
    position: relative;
    opacity: 1;
    height: auto;
    visibility: visible;
    padding: 0;
    transform: none !important;
    background-image: none !important;
    top: initial;
    left: initial;
    z-index: 100;
    padding-top: 10px;
    display: none;
}

.navbar-mobile .dropdown .sub-nav-container .container-mx {
    padding: 0;
}

.navbar-mobile .dropdown .sub-nav-container .sub-nav {
    padding: 0;
    transform: none;
}

.navbar-mobile .dropdown > .dropdown-active {
    display: block;
}

.navbar-mobile .dropdown > .dropdown-active .sub-nav {
    opacity: 1;
    display: block;
}

/*--/search--*/
a.search-icon, a.search-icon:focus {
    padding-left: 20px;
}

.navbar-other a i, .navbar-other a:hover i {
    font-size: 16px;
}

.wz-form-search {
    max-width: 500px;
    margin: 0 auto;
}

.layer-popup form {
    border-radius: var(--border-radius);
    background: var(--light-bg-color);
    max-width: 640px;
    padding: 40px 40px;
}

.layer-popup form input {
    font-style: normal;
    font-weight: normal;
    font-size: 16px;
    line-height: 26px;
    height: 55px;
    padding: 0px 20px;
    width: 100%;
    border: 1px solid var(--border-color);
    border-right: none;
    background: var(--light-bg-color);
    border-radius: var(--border-radius);

}

.layer-popup form button {
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    font-weight: 400;
    border: none;
    background: var(--accent-color);
    padding: 0 20px;
    border-radius: var(--border-radius);
    height: 55px;
}

.layer-popup form button:hover {
    opacity: .8;
    box-shadow: none;
}

.layer-popup form input[type="search"]:focus {
    outline: none;
    border: 1px solid var(--accent-color);
}

.wzpop-overlay {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    transition: opacity 0ms;
    visibility: hidden;
    opacity: 0;
    z-index: 99;
    background: rgba(0, 0, 0, .5);
    box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.1);
    height: 100%;
    width: 100%;
}

.wzpop-overlay:target {
    visibility: visible;
    opacity: 1;
}

.layer-popup {
    position: relative;
    margin: 0rem auto;
    padding: 15px;
    top: 40%;
    max-width: 600px;
}

.layer-popup .close {
    position: absolute;
    right: 0px;
    top: -80px;
    transition: all 200ms;
    font-size: 50px;
    text-decoration: none;
    color: var(--light-bg-color);
}

.layer-popup a.close:focus {
    font-size: 50px;
}

.layer-popup .close:hover {
    opacity: 0.8;
    color: var(--light-bg-color);
}


/*--//serach--*/
@media only screen and (max-width: 992px) {
    .search-header input {
        padding: 12px 15px;
    }

    .search-header .btn {
        display: block;
        width: 100%;
        margin-top: 16px;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        color: var(--nav-color);
        padding: 8px 0 10px;
    }

    li.search-right {
        margin: 20px 0;
    }
}


.navbar-other {
    z-index: 500;
}

.navbar-stock-code {
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 600;
    color: color-mix(in srgb, var(--accent-color), transparent 0%);
}

/* nav lang */
.nav-lang i {
    display: inline-block;
    font-size: 16px;
}

.nav-lang .dropdown-toggle::after {
    display: none;
}

.nav-lang ul.dropdown-menu {
    border: none;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    width: 100%;
    min-width: 50px;
    border-radius: 0;
}

.nav-lang ul a {
    padding: 5px 15px;
    text-transform: none;
    color: var(--nav-color);
    display: inline-block;
    transition: 0.3s;
    font-size: 15px;
}

.nav-lang ul.dropdown-menu a {
    color: var(--default-color);
}

.nav-lang .dropdown:hover > ul,
.nav-lang .dropdown .dropdown-menu.show {
    inset: unset;
    transform: none;
}

.header .header-lang {
    padding-left: 30px;
}

.header .header-lang a.dropdown-item:hover {
    color: var(--surface-color);
    background: var(--accent-color);
}

.header .header-lang a {
    display: block;
}

.header .header-lang a i {
    line-height: 0px;
}

/*--------------------------------------------------------------
# products Section
--------------------------------------------------------------*/
.products .prod-card {
    margin-bottom: 3rem;
}

.products .prod-card .prod-visual {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
}

.products .prod-card .prod-visual img {
    width: 100%;
    height: calc(100% * 10 / 16);
    object-fit: cover;
    transition: transform 0.5s ease;
}

@media (max-width: 768px) {
    .products .prod-card .prod-visual img {
        height: 250px;
    }
}

.products .prod-card .prod-visual .prod-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.products .prod-card .prod-visual .prod-overlay .overlay-content {
    display: flex;
    gap: 20px;
}

.products .prod-card .prod-visual .prod-overlay .overlay-content a {
    width: 48px;
    height: 48px;
    background-color: var(--contrast-color);
    color: var(--accent-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.products .prod-card .prod-visual .prod-overlay .overlay-content a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.products .prod-card .prod-visual:hover img {
    transform: scale(1.05);
}

.products .prod-card .prod-visual:hover .prod-overlay {
    opacity: 1;
    visibility: visible;
}

.products .prod-card .prod-details {
    padding: 20px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.products .prod-card .prod-details .prod-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.products .prod-card .prod-details .prod-header .prod-category {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
}

.products .prod-card .prod-details .prod-header .prod-year {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    font-weight: 300;
}

.products .prod-card .prod-details .prod-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--heading-color);
    line-height: 1.3;
}

@media (max-width: 768px) {
    .products .prod-card .prod-details .prod-title {
        font-size: 1.5rem;
    }
}

.products .prod-card .prod-details .prod-description {
    font-size: 0.95rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 30px;
    line-height: 1.7;
    /*flex-grow: 1;*/
}

.products .prod-card .prod-details .prod-btn {
    display: inline-flex;
}

.products .prod-card .prod-details .prod-meta {
    margin-top: auto;
}

.products .prod-card .prod-details .prod-meta .client-name {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--default-color);
    margin-bottom: 16px;
}

.products .prod-card .prod-details .prod-meta .prod-scope {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.products .prod-card .prod-details .prod-meta .prod-scope .scope-item {
    font-size: 0.8rem;
    font-weight: 400;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    padding: 6px 0;
    position: relative;
}

.products .prod-card .prod-details .prod-meta .prod-scope .scope-item:not(:last-child)::after {
    content: "·";
    position: absolute;
    right: -8px;
    color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.products .portfolio-conclusion {
    margin-top: 120px;
    text-align: center;
}

@media (max-width: 768px) {
    .products .portfolio-conclusion {
        margin-top: 80px;
    }
}

.products .portfolio-conclusion .conclusion-content {
    max-width: 600px;
    margin: 0 auto;
}

.products .portfolio-conclusion .conclusion-content h4 {
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--heading-color);
}

@media (max-width: 768px) {
    .products .portfolio-conclusion .conclusion-content h4 {
        font-size: 1.5rem;
    }
}

.products .portfolio-conclusion .conclusion-content p {
    font-size: 1rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 40px;
    line-height: 1.7;
}

.products .portfolio-conclusion .conclusion-content .conclusion-actions {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
}

@media (max-width: 576px) {
    .products .portfolio-conclusion .conclusion-content .conclusion-actions {
        flex-direction: column;
        gap: 20px;
    }
}

.products .portfolio-conclusion .conclusion-content .conclusion-actions .primary-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

.products .portfolio-conclusion .conclusion-content .conclusion-actions .primary-action i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.products .portfolio-conclusion .conclusion-content .conclusion-actions .primary-action:hover {
    background-color: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-1px);
}

.products .portfolio-conclusion .conclusion-content .conclusion-actions .primary-action:hover i {
    transform: translateX(2px);
}

.products .portfolio-conclusion .conclusion-content .conclusion-actions .secondary-action {
    color: var(--default-color);
    font-size: 0.95rem;
    font-weight: 400;
    text-decoration: none;
    position: relative;
}

.products .portfolio-conclusion .conclusion-content .conclusion-actions .secondary-action::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--default-color);
    transition: width 0.3s ease;
}

.products .portfolio-conclusion .conclusion-content .conclusion-actions .secondary-action:hover {
    color: var(--default-color);
}

.products .portfolio-conclusion .conclusion-content .conclusion-actions .secondary-action:hover::after {
    width: 100%;
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
    padding: 100px 0;
}

.why-us .content {
    margin-bottom: 60px;
}

.why-us .content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .why-us .content h2 {
        font-size: 26px;
    }
}

.why-us .content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
}

.why-us .image-wrapper {
    position: relative;
}

.why-us .image-wrapper img {
    border-radius: 8px;
    box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
    transition: transform 0.4s ease-in-out;
}

.why-us .image-wrapper img:hover {
    transform: translateY(-8px);
}

.why-us .mission-grid {
    margin-top: 60px;
}

.why-us .mission-item {
    display: flex;
    gap: 25px;
    padding: 40px 0;
    transition: transform 0.3s ease-in-out;
}

.why-us .mission-item:hover {
    transform: translateY(-5px);
}

.why-us .mission-item:hover .icon-wrapper {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .why-us .mission-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 0;
    }
}

.why-us .icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 768px) {
    .why-us .icon-wrapper {
        margin: 0 auto;
    }
}

.why-us .mission-content {
    flex: 1;
}

.why-us .mission-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .why-us .mission-content h3 {
        font-size: 1.25rem;
    }
}

.why-us .mission-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin: 0;
}

@media (max-width: 992px) {
    .why-us .content {
        margin-bottom: 40px;
        text-align: center;
    }

    .why-us .mission-grid {
        margin-top: 60px;
    }
}

.why-us .image-wrapper {
    position: relative;
}

.why-us .image-wrapper img {
    border-radius: 8px;
    box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
    transition: transform 0.4s ease-in-out;
}

.why-us .image-wrapper img:hover {
    transform: translateY(-8px);
}

.why-us .features-grid {
    margin-top: 80px;
}

.why-us .feature-item {
    display: flex;
    gap: 25px;
    padding: 40px 0;
    transition: transform 0.3s ease-in-out;
}

.why-us .feature-item:hover {
    transform: translateY(-5px);
}

.why-us .feature-item:hover .icon-wrapper {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .why-us .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 0;
    }
}

.why-us .icon-wrapper {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    transition: all 0.4s ease-in-out;
}

@media (max-width: 768px) {
    .why-us .icon-wrapper {
        margin: 0 auto;
    }
}

.why-us .feature-content {
    flex: 1;
}

.why-us .feature-content h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .why-us .feature-content h3 {
        font-size: 1.25rem;
    }
}

.why-us .feature-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin: 0;
}

@media (max-width: 992px) {
    .why-us .content {
        margin-bottom: 40px;
        text-align: center;
    }

    .why-us .features-grid {
        margin-top: 60px;
    }
}


/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
    position: relative;
    overflow: hidden;
    /* Swiper Navigation */
    /* Swiper Pagination */
    /* Responsive Styles */
}

.testimonials .testimonial-slider {
    position: relative;
    padding-bottom: 50px;
}

.testimonials .testimonial-slider .swiper-wrapper {
    height: auto !important;
}

.testimonials .testimonial-item {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
    border-radius: var(--border-radius-larger);
    padding: 0;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

.testimonials .testimonial-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimonials .testimonial-item:hover {
    border-color: var(--accent-color);
}

.testimonials .testimonial-item:hover::before {
    transform: scaleX(1);
}

.testimonials .testimonial-item:hover .testimonial-header img {
    transform: scale(1.05);
}

.testimonials .testimonial-item:hover .quote-icon {
    color: var(--accent-color);
    transform: scale(1.1);
}

.testimonials .testimonial-header {
    position: relative;
    text-align: center;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

.testimonials .testimonial-header img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .testimonial-header .rating {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.testimonials .testimonial-header .rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.testimonials .testimonial-body {
    padding: 0 30px 20px;
}

.testimonials .testimonial-body p {
    font-size: 1rem;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin: 0;
    font-style: italic;
    text-align: center;
    position: relative;
}

.testimonials .testimonial-body .t-cont {
    position: relative;
}

.testimonials .testimonial-body .t-cont::before,
.testimonials .testimonial-body .t-cont::after {
    content: '"';
    font-size: 1.5rem;
    color: var(--accent-color);
    opacity: 0.6;
    font-family: serif;
    position: absolute;
}

.testimonials .testimonial-body .t-cont::before {
    top: -5px;
    left: -10px;
}

.testimonials .testimonial-body .t-cont::after {
    bottom: -20px;
    right: -5px;
}

.testimonials .testimonial-footer {
    padding: 20px 30px 30px;
    text-align: center;
    position: relative;
}

.testimonials .testimonial-footer h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--heading-color);
    margin: 0 0 5px;
}

.testimonials .testimonial-footer span {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    display: block;
    margin-bottom: 15px;
}

.testimonials .testimonial-footer .quote-icon {
    position: absolute;
    bottom: 15px;
    right: 25px;
    color: color-mix(in srgb, var(--accent-color), transparent 60%);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.testimonials .swiper-navigation {
    position: relative;
    margin-top: 25px;
    display: flex;
    justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
    position: static;
    width: 45px;
    height: 45px;
    margin: 0 10px;
    background: var(--accent-color);
    border-radius: 50%;
    color: var(--contrast-color);
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonials .swiper-button-prev:hover,
.testimonials .swiper-button-next:hover {
    background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
    transform: scale(1.05);
}

.testimonials .swiper-button-prev::after,
.testimonials .swiper-button-next::after {
    font-size: 16px;
    font-weight: 600;
}

.testimonials .swiper-pagination {
    position: static;
    margin-top: 30px;
    text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: color-mix(in srgb, var(--default-color), transparent 70%);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--accent-color);
    transform: scale(1.2);
}

@media (max-width: 1199px) {
    .testimonials .testimonial-item .testimonial-header {
        padding: 25px 25px 15px;
    }

    .testimonials .testimonial-item .testimonial-header img {
        width: 70px;
        height: 70px;
    }

    .testimonials .testimonial-item .testimonial-body,
    .testimonials .testimonial-item .testimonial-footer {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 991px) {
    .testimonials .testimonial-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .testimonials .testimonial-item .testimonial-header {
        padding: 20px 20px 10px;
    }

    .testimonials .testimonial-item .testimonial-header img {
        width: 60px;
        height: 60px;
    }

    .testimonials .testimonial-item .testimonial-header .rating i {
        font-size: 0.8rem;
    }

    .testimonials .testimonial-item .testimonial-body {
        padding: 0 20px 15px;
    }

    .testimonials .testimonial-item .testimonial-body p {
        font-size: 0.95rem;
    }

    .testimonials .testimonial-item .testimonial-footer {
        padding: 15px 20px 20px;
    }

    .testimonials .testimonial-item .testimonial-footer h5 {
        font-size: 1rem;
    }

    .testimonials .testimonial-item .testimonial-footer span {
        font-size: 0.8rem;
    }

    .testimonials .testimonial-item .testimonial-footer .quote-icon {
        font-size: 1.3rem;
        bottom: 10px;
        right: 15px;
    }

    .testimonials .swiper-button-prev,
    .testimonials .swiper-button-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .testimonials .swiper-button-prev::after,
    .testimonials .swiper-button-next::after {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .testimonials .testimonial-slider {
        padding-bottom: 30px;
    }

    .testimonials .testimonial-item .testimonial-header {
        padding: 15px 15px 10px;
    }

    .testimonials .testimonial-item .testimonial-header img {
        width: 55px;
        height: 55px;
    }

    .testimonials .testimonial-item .testimonial-body {
        padding: 0 15px 10px;
    }

    .testimonials .testimonial-item .testimonial-body p {
        font-size: 0.9rem;
    }

    .testimonials .testimonial-item .testimonial-footer {
        padding: 10px 15px 15px;
    }

    .testimonials .testimonial-item .testimonial-footer h5 {
        font-size: 0.95rem;
    }

    .testimonials .testimonial-item .testimonial-footer .quote-icon {
        font-size: 1.2rem;
    }

    .testimonials .swiper-navigation {
        margin-top: 10px;
    }
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients .swiper {
    padding: 10px 0;
}

.clients .swiper-wrapper {
    height: auto;
}

.clients .swiper-slide img {
    transition: 0.3s;
}

.clients .swiper-slide img:hover {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# mission Section
--------------------------------------------------------------*/
.mission {
    position: relative;
    overflow: hidden;
}


.mission .mission-content {
    padding-right: 2rem;
}

@media (max-width: 992px) {
    .mission .mission-content {
        padding-right: 0;
    }
}

.mission .mission-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .mission .mission-content h2 {
        font-size: 2rem;
    }
}

.mission .mission-content > p {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}


.intro .mission-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.intro .mission-item .mission-icon i {
    font-size: 28px;
    color: var(--accent-color);
}

.intro .mission-item .mission-content h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.intro .mission-item .mission-content p {
    margin-bottom: 0;
    line-height: 1.4;
    color: color-mix(in srgb, var(--default-color), transparent 35%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.wz-tabs .nav-pills {
    display: inline-flex;
    padding: 8px;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    border-radius: 50px;
}

.wz-tabs .nav-pills .nav-item {
    margin: 0 5px;
}

.wz-tabs .nav-pills .nav-item:first-child {
    margin-left: 0;
}

.wz-tabs .nav-pills .nav-item:last-child {
    margin-right: 0;
}

.wz-tabs .nav-pills .nav-link {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--default-color);
    transition: all 0.3s ease;
}

.wz-tabs .nav-pills .nav-link:hover {
    color: var(--accent-color);
}

.wz-tabs .nav-pills .nav-link.active {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wz-tabs .nav-pills .nav-link i {
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .wz-tabs .nav-pills {
        flex-wrap: wrap;
        justify-content: center;
    }

    .wz-tabs .nav-pills .nav-item {
        margin: 5px;
    }
}

.owner-services .owner-list .owner-item {
    margin-bottom: 20px;
    border-radius: 10px;
    background-color: var(--surface-color);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.owner-services .owner-list .owner-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.owner-services .owner-list .owner-item h3 {
    display: flex;
    align-items: center;
    padding: 20px 25px;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    background-color: var(--surface-color);
    transition: all 0.3s ease;
    position: relative;
}

.owner-services .owner-list .owner-item h3:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.owner-services .owner-list .owner-item h3 .num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin-right: 15px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
    color: var(--accent-color);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.owner-services .owner-list .owner-item h3 .question {
    flex: 1;
}

.owner-services .owner-list .owner-item h3 .owner-toggle {
    font-size: 1.2rem;
    transition: all 0.3s ease;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    margin-left: 15px;
}

.owner-services .owner-list .owner-item .owner-content {
    padding: 20px;
    display: none;
}

.owner-services .owner-list .owner-item .owner-content p {
    overflow: hidden;
    padding: 0;
    margin: 0.5rem;
}

.owner-services .owner-list .owner-item .owner-content p:last-child {
    margin-bottom: 0;
    overflow: hidden;
}

.owner-services .owner-list .owner-item.owner-active h3 {
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.owner-services .owner-list .owner-item.owner-active h3 .owner-toggle {
    transform: rotate(45deg);
    color: var(--accent-color);
}

.owner-services .owner-list .owner-item.owner-active .owner-content {
    display: block;
}

.owner-services .owner-cta {
    background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
    padding: 30px;
    border-radius: 10px;
}

.owner-services .owner-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.owner-services .owner-cta .btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.owner-services .owner-cta .btn-primary:hover {
    background-color: color-mix(in srgb, var(--accent-color), #000 15%);
    border-color: color-mix(in srgb, var(--accent-color), #000 15%);
    transform: translateY(-3px);
}

@media (max-width: 576px) {
    .owner-services .owner-list .owner-item h3 {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .owner-services .owner-list .owner-item h3 .num {
        width: 24px;
        height: 24px;
        margin-right: 10px;
        font-size: 0.8rem;
    }

    .owner-services .owner-list .owner-item .owner-content .content-inner {
        padding: 0 20px;
    }

    .owner-services .owner-list .owner-item .owner-content.owner-active .content-inner {
        padding: 15px 20px;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    padding: 120px 0 100px;
}

.contact .info-item {
    margin-bottom: 60px;
}

.contact .info-item .info-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
}

.contact .info-item .info-icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.contact .info-item .info-content h4 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--heading-color);
    letter-spacing: -0.3px;
}

.contact .info-item .info-content p {
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin: 0;
}

.contact .contact-details .detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.contact .contact-details .detail-item:last-child {
    margin-bottom: 0;
}

.contact .contact-details .detail-item .detail-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .contact-details .detail-item .detail-icon i {
    font-size: 18px;
    color: var(--accent-color);
}

.contact .contact-details .detail-item .detail-content {
    flex: 1;
}

.contact .contact-details .detail-item .detail-content .detail-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
}

.contact .contact-details .detail-item .detail-content .detail-value {
    display: block;
    font-size: 16px;
    color: var(--default-color);
    line-height: 1.6;
}

.contact .form-header {
    margin-bottom: 48px;
}

.contact .form-header h4 {
    font-size: 26px;
    font-weight: 400;
    color: var(--heading-color);
    margin: 0;
    letter-spacing: -0.4px;
}

.contact .form-wrapper {
    background-color: var(--surface-color);
    padding: 20px 30px;
    border-radius: 10px;
}

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

    .contact .info-item {
        margin-bottom: 50px;
    }

    .contact .info-item .info-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 24px;
    }

    .contact .info-item .info-icon i {
        font-size: 20px;
    }

    .contact .info-item .info-content h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .contact .contact-details .detail-item {
        margin-bottom: 32px;
    }

    .contact .form-header {
        margin-bottom: 32px;
    }

    .contact .form-header h3 {
        font-size: 24px;
    }

    .contact .modern-form .form-group {
        margin-bottom: 24px;
    }
}

/*--------------------------------------------------------------
# Products Navbar
--------------------------------------------------------------*/

.page-navbar {
    padding: 8px;
    background-color: color-mix(in srgb, var(--default-color), transparent 95%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.page-navbar-list {
    height: 70px;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-navbar-list li {
    display: inline-flex;
    position: relative;
    margin: 0 8px;
}


.page-navbar-list li:not(:last-child):after {
    display: none;
}

.page-navbar-list a {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 500;
    color: var(--default-color);
    transition: all 0.3s ease;
}

.page-navbar-list li:first-child a {
    padding-left: 20px;
}

.page-navbar-list li.active a,
.page-navbar-list a:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.page-navbar-list a:before,
.page-navbar-list a:after {
    display: none;
}

.grid-post.product .post-img {
    padding: 25px;
}

.grid-post.product .post-img img {
    aspect-ratio: 1/1;
}

@media (max-width: 768px) {
    .page-navbar-list {
        display: block;
        height: auto;
        width: 100%;
        padding-top: 8px;
    }

    .page-navbar-list li {
        display: inline-block;
        position: relative;
        margin: 0 8px 8px 0;
    }

    .page-navbar-list li a {
        display: block;
        padding: 5px 12px !important;
    }
}

/*--------------------------------------------------------------
# product gallery
--------------------------------------------------------------*/
.product-gallery {
    overflow: hidden;
    position: relative;
}

.product-gallery .swiper-thumbs {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.product-gallery .swiper-gallery .swiper-slide {
    background-color: #FFFFFF;
}

.product-gallery .swiper-thumbs .swiper-slide {
    padding: 3px;
    border: 1px var(--border-color) solid;
    background-color: #FFFFFF;
}
.product-gallery .swiper-thumbs .swiper-wrapper {
    flex-wrap: wrap;
}

.product-gallery .swiper-thumbs .swiper-wrapper .swiper-slide {
    margin-bottom: 5px;
}

.product-gallery .swiper-button-next, .product-gallery .swiper-button-prev {
    top: calc(50% - 30px);
}

.product-gallery .swiper-button-next::after, .product-gallery .swiper-button-prev::after {
    font-size: 18px !important;
    color: var(--accent-color) !important
}
.show-big {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 100;
}

.show-big i {
    font-size: 20px;
    color: #000000;
    transition: 0.3s;
}

.show-big:hover i {
    color: var(--focus-color);
}

.product-gallery .swiper-slide-thumb-active {
    border-color: color-mix(in srgb, var(--accent-color), transparent 0%) !important;
}

.prod-inquiry .email-form .loading-message,
.prod-inquiry .email-form .btn-send {
    text-align: center;
}

.prod-inquiry .form-header h4 {
    font-size: 26px;
    font-weight: 400;
    color: var(--heading-color);
    margin: 0;
    letter-spacing: -0.4px;
    text-align: center;
}


/*--------------------------------------------------------------
# Article
--------------------------------------------------------------*/
.article .article-pic {
    max-width: 100%;
    height: auto;
}

.article .article-title h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.article .category {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .article .article-title h1 {
        font-size: 24px;
    }
}

.article .article-parameter ul li {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.95rem;
}

.article-prev-next p {
    margin-bottom: 0;
}

.article-prev-next p.tit {
    font-weight: 600;
}

.article-prev-next p.tit i {
    font-weight: bold;
}

.article .article-body img {
    max-width: 1000px;
    height: auto;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
    font-size: 14px;
    color: var(--text-color-secondary);
    background-image: radial-gradient(circle at top left, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%), url('../img/footer-bg.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.footer .footer-logo {
    max-width: 200px;
}

.footer a {
    color: #FFFFFF;
}

.footer a:hover {
    color: #FFFFFF;
}

.footer .footer-top {
    padding: 60px 0 30px 0;

}

.footer .footer-top .footer-logo {
    max-width: 180px;
    height: auto;
}

.footer .footer-top .footer-contact {
    margin-bottom: 30px;

}

.footer .footer-top .footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer .footer-top .footer-contact p i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;;
}

.footer .footer-top .footer-contact h3 {
    font-size: 24px;
    margin: 0 0 15px 0;
    padding: 2px 0 2px 0;
    line-height: 1;
    font-weight: 700;
    color: #FFFFFF;
}

.footer .footer-top .footer-contact h3 span {
    color: var(--default-color);
}

.footer .footer-top .footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    color: color-mix(in srgb, var(--surface-color), transparent 20%);
}

.footer .footer-top .footer-contact p:hover {
    color: color-mix(in srgb, var(--surface-color), transparent 0%);
}

.footer .footer-top .nav-title {
    font-size: 16px;
    font-weight: bold;
    color: #FFFFFF;
    position: relative;
    padding-bottom: 12px;
    display: block;
}

.footer .footer-top .footer-links {
    margin-bottom: 10px;
}


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

.footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: color-mix(in srgb, var(--surface-color), transparent 20%);
    font-size: 14px;
    line-height: 1;
}

.footer .footer-top .footer-links ul li {
    display: flex;
    margin-bottom: 10px;
    align-items: baseline;
}

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

.footer .footer-top .footer-links ul a {
    color: color-mix(in srgb, var(--surface-color), transparent 20%);
    transition: 0.3s;
    display: inline-block;
}

.footer .footer-top .footer-links ul a:hover,
.footer .footer-top .footer-links ul a:hover i {
    text-decoration: none;
    color: #ffffff;
}

.footer .footer-top .social-links a {
    font-size: 18px;
    display: inline-block;
    background: #2b2b2b;
    color: #fff;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.footer .footer-top .social-links a:hover {
    background: var(--accent-color);
    color: #fff;
    text-decoration: none;
}

.footer .footer-copyright span, .footer .footer-copyright a {
    color: #FFFFFF;
    opacity: 0.6;
    transition: 0.3s;
}

.footer .footer-copyright a:hover {
    color: #FFFFFF;
    opacity: 1;
}

.footer .copyright {
    text-align: center;
    float: left;

}

.footer .poweredby {
    float: right;
    text-align: center;
    font-size: 13px;
}

@media (max-width: 768px) {
    .footer .copyright, .footer .poweredby {
        float: none;
        text-align: center;
        padding: 2px 0;
    }
}

.foot-nav .dropdown-menu {
    position: relative !important;
    background: none;
    border: none;
    min-width: auto;
    padding: 0;
    font-size: 14px;
    transform: none !important;
}

.foot-nav .dropdown-menu .dropdown-item {
    padding: 0;
    background: none !important;
}

.footer .footer-top .nav-title:after {
    display: none;
}

@media (min-width: 768px) {
    .foot-nav .dropdown-menu {
        display: block;
    }


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

.foot-tel {
    font-size: 22px;
    margin-top: 1rem;
}
