* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    margin: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.navbar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: transparent;
    border-bottom: none;
}

.navbar-overlay .nav-links > .nav-item > .nav-item__link--solo:not(.active),
.navbar-overlay .nav-links > .nav-item .nav-item__row .nav-item__link:not(.active) {
    color: #111;
}

.navbar-overlay .nav-links > .nav-item > .nav-item__link--solo.active,
.navbar-overlay .nav-links > .nav-item .nav-item__row .nav-item__link.active {
    color: #149473;
    border-bottom: 2px solid #149473;
    padding-bottom: 4px;
}

.navbar-overlay .search-icon {
    color: #111;
}

.navbar .container,
.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-inner {
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 6px;
    -webkit-tap-highlight-color: transparent;
}

.nav-toggle:focus-visible {
    outline: 2px solid #149473;
    outline-offset: 2px;
}

.nav-toggle-bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #111;
    border-radius: 1px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.navbar-overlay.nav-open .nav-toggle .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-overlay.nav-open .nav-toggle .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.navbar-overlay.nav-open .nav-toggle .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
    line-height: 0;

}

.logo-img {
    display: block;
    height: auto;
    width: auto;
    max-height: 64px;
    max-width: min(220px, 52vw);
    object-fit: contain;
    object-position: left center;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #149473;
}

.navbar:not(.navbar-overlay) .nav-links a.active,
.navbar:not(.navbar-overlay) .nav-item__link.active {
    color: #149473;
}

/* —— 主导航：二级 / 三级下拉（数据来自栏目树 childlist） —— */
.nav-links .nav-item {
    position: relative;
    list-style: none;
}

.nav-item__link {
    text-decoration: none;
    color: #666;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-item__link:hover {
    color: #149473;
}

.nav-item__link--solo {
    display: inline-block;
}

.nav-item__row {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav-item__caret {
    display: none;
    align-items: center;
    justify-content: center;

    height: 40px;
    margin: 0;
    margin-left:5px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 6px;
    color: #666;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}

.nav-item__caret::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid currentColor;
    transition: transform 0.2s ease;
}

.nav-item--open > .nav-item__row .nav-item__caret::after {
    transform: rotate(180deg);
}

.nav-item--has-children .nav-submenu {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.nav-submenu__link,
.nav-submenu-nested__link {
    display: block;
    padding: 0.7rem 1.35rem;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    color: #444;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.nav-submenu-nested__link {
    font-weight: 500;
    font-size: 16px;
    padding: 0.6rem 1.2rem 0.6rem 1.45rem;
    line-height: 1.45;
    white-space: normal;
}

.nav-submenu__link:hover,
.nav-submenu-nested__link:hover {
    background: rgba(20, 148, 115, 0.08);
    color: #149473;
}

.nav-submenu .active,
.nav-submenu-nested .active {
    color: #149473;
    background: rgba(20, 148, 115, 0.1);
}

.nav-submenu-nested {
    list-style: none;
    margin: 0;
    padding: 0.2rem 0 0.35rem 0.5rem;
    border-left: 2px solid rgba(20, 148, 115, 0.28);
}

@media (min-width: 901px) {
    .nav-item--has-children .nav-item__caret {
        display: inline-flex;
    }

    .nav-item--has-children .nav-submenu {
        position: absolute;
        left: 50%;
        /*top: calc(100% + 6px);*/
        transform: translateX(-50%) translateY(4px);
        min-width: 220px;
        max-width: min(340px, 90vw);
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 14px 44px rgba(0, 0, 0, 0.14);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
        z-index: 300;
    }

    .nav-item--has-children:hover .nav-submenu,
    .nav-item--has-children:focus-within .nav-submenu,
    .nav-item--has-children.nav-item--open .nav-submenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(-50%) translateY(0);
    }

    .nav-item--has-children .nav-submenu__link {
        white-space: normal;
    }
}

.search-icon {
    color: #666;
    display: flex;
    align-items: center;
}

/* Hero */
.hero {
    position: relative;
    width: 100%;
    max-width: 100%;
    /* overflow: hidden;  */
}

.hero-bg {
    position: relative;
    z-index: 0;
    overflow: hidden;
    /* background: #e8e4dc; */
    width: 100%;
}

.hero-bg-img {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: middle;
}

/* Swiper inside .hero-bg (additive) */
.hero-bg.swiper .swiper-slide {
    line-height: 0;
    position: relative;
}

.hero-swiper-pagination.swiper-pagination-bullets {
    bottom: 10px;
    z-index: 2;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.95);
    opacity: 1;
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: #111;
    border-color: #111;
}

.hero-main {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 25%;
    z-index: 1;
    
   
}

.hero-main .container {
    display: flex;
    justify-content: flex-start;
    /* align-items: center; */
    width: 100%;
}

.hero-content {
    max-width: 520px;
}

.hero-content h1 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.25;
    color: #111;
}

.hero-content p {
    color: #111;
    font-size: clamp(15px, 1.8vw, 18px);
    margin-bottom: 28px;
    font-weight: 400;
}

.carousel-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 36px;
    z-index: 2;
    text-align: center;
    margin-top: 0;
}
.hero .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.hero .dot.active {
    background: #111;
    border-color: #111;
}







.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 4px;
    cursor: pointer;
}

.dot.active {
    background: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #149473;
    color: #fff;
}

.btn-primary:hover {
    background: #158a7d;
}
.more-btn{
    margin-top:35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:15px;
}
.btn-outline {
    background: transparent;
    color: #149473;
    border: 1px solid #149473;
}

.btn-outline:hover {
    background: #149473;
    color: #fff;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: #fff;
}

.about-section .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.about-content {
    width:50%;
}

.about-content h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #333;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 14px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #149473;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    margin-top: 10px;
}

.link-arrow span {
    transition: transform 0.3s;
}

.link-arrow:hover span {
    transform: translateX(5px);
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img{
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* 播放/暂停图标不要用整块区域宽度，否则图标会被拉满容器导致看不见或异常 */
.about-image .play-btn img,
.about-image .pause-btn img {
    width: auto;
    max-width: 120px;
    height: auto;
    box-shadow: none;
}


.video-bar{
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.play-btn,.pause-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    /*width: 60px;*/
    /*height: 60px;*/
    /*background: rgba(26, 155, 140, 0.9);*/
    /*border-radius: 50%;*/
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}
.pause-btn{
    display: none;
}

.about-image.is-playing .play-btn {
    display: none !important;
}

.about-image.is-playing .pause-btn {
    display: none !important;
}

.about-image.is-playing:hover .pause-btn,
.about-image.is-playing.video-hover .pause-btn {
    display: flex !important;
}

.play-btn:hover, .pause-btn:hover {
    /*background: #149473;*/
    transform: translate(-50%, -50%) scale(1.1);
}

/* Products Categories */
.products-categories {
    padding: 30px 0 ;
    background: #fff;
}

.section-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

.categories-grid {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}

.category-card {
    position: relative;
    text-align: center;
    color: #fff;
    width:25%;
    flex:1;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.category-card__media {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.category-card__media img {
    width: 100%;
    height: auto;
    display: block;
}

.category-card__mask {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 0;
    background: rgba(45, 156, 130, 0.88);
    z-index: 1;
    pointer-events: none;
    transition: height 0.45s ease;
}

.category-card:hover .category-card__mask,
.category-card.is-active .category-card__mask {
    height: 100%;
}

.category-card .card-content{
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index: 2;
    padding-bottom: 10px;
    box-sizing: border-box;
    transition: padding-bottom 0.35s ease;
}

.category-card:hover .card-content,
.category-card.is-active .card-content {
    padding-bottom: 38px;
}

.category-card__tab {
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 56px;
    height: 28px;
    margin-left: -28px;
    background: #fff;
    border-radius: 28px 28px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    box-sizing: border-box;
    overflow: visible;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.35s ease, transform 0.4s ease;
    pointer-events: none;
}

.category-card__tab-arrow {
    display: block;
    width: auto;
    height: 7px;
    
    
}

.category-card:hover .category-card__tab,
.category-card.is-active .category-card__tab {
    opacity: 1;
    transform: translateY(0);
}

.category-card .card-content .ctitle{
    font-family: Blatant;
    font-weight: 400;
    font-size: 24px;
    color: #000000;
    line-height: 40px;
    transition: color 0.35s ease;
}
.category-card .card-content .ftitle{
    margin-top:15px;
    margin-bottom:15px;
    font-family: Blatant;
    font-weight: 400;
    font-size: 14px;
    color: #666666;
    line-height: 18px;
    transition: color 0.35s ease;
}

.category-card .card-content .bline {
    transition: border-bottom-color 0.35s ease;
}

.category-card:hover .card-content .ctitle,
.category-card.is-active .card-content .ctitle {
    color: #fff;
}

.category-card:hover .card-content .ftitle,
.category-card.is-active .card-content .ftitle {
    color: rgba(255, 255, 255, 0.95);
}

.category-card:hover .card-content .bline,
.category-card.is-active .card-content .bline {
    border-bottom-color: #fff;
}

.category-card .card-content img{
    width:90px;
    height:auto;
    margin-bottom:15px;
    transition: filter 0.35s ease;
}

.category-card .card-content .category-card__tab img{
    width:15px !important;
    margin-bottom:0 !important;
}

.category-card:hover .card-content > img,
.category-card.is-active .card-content > img {
    filter: brightness(0) invert(1);
}

.category-card.seasonings .card-content img, .category-card.cargo .card-content img{
    width:70px;
}

.category-card.preservation .card-content img{
    width:50px;
}


.category-card.preservation {
    background: #149473;
}

.category-card.frozen {
    background: #e8e8e8;
    color: #333;
}

.category-card.seasonings {
    background: #d4a574;
    color: #fff;
}

.category-card.cargo {
    background: #f4d03f;
    color: #333;
}

.category-icon {
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Products Slider */
.products-slider {
    padding: 30px 0 60px;
    background:#fff;
    text-align: center;
    --products-visible: 5;
    --products-gap: 40px;
    --products-item-size: 120px;
    --products-edge-safe: 18px;
}

.slider-wrapper {
    display: block;
    margin-bottom: 20px;
}

.products-viewport {
    width: 100%;
    max-width: calc(var(--products-visible) * var(--products-item-size) + (var(--products-visible) - 1) * var(--products-gap) + var(--products-edge-safe) * 2);
    margin: 0 auto;
    overflow: hidden;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: #149473;
    border-color: #149473;
    color: #fff;
}

.products-track {
    display: flex;
    gap: var(--products-gap);
    justify-content: center;
    transition: transform 0.35s ease;
    will-change: transform;
    width: max-content;
    margin: 0 auto;
    padding: 0 var(--products-edge-safe);
    box-sizing: border-box;
}

.products-track.is-scrollable {
    justify-content: flex-start;
    margin:0;
    margin-left: 6px;

}


.products-track[hidden] {
    display: none !important;
}

.product-item {
    width: var(--products-item-size);
    flex: 0 0 var(--products-item-size);
    text-align: center;
    position: relative;
    cursor: pointer;
    text-decoration: none;
}

.product-img {
    width: 120px;
    height: 120px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    background:#f7f5f0;
    margin-bottom:10px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product-img img {
    width: 80px;
    height: auto;
    
}

.product-item span {
    font-size: 14px;
    
    font-family: Blatant;
    color: #000;
}

.products-empty {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #9aa0a6;
}

.more-btn .slider-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.product-item .product-img::after {
    content: "VIEW MORE";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border-radius: 0 0 40px 40px;
    background: #149473;
    color: #fff;
    font-size: 12px;
    line-height: 24px;
    font-family: Blatant;
    white-space: nowrap;
    text-align: center;
    opacity: 0;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.25s ease;
}

.product-item:hover .product-img {
    border-color: #149473;
    box-shadow: 0 4px 12px rgba(20, 148, 115, 0.2);
}

.product-item:hover .product-img::after {
    width: 110px;
    height: 26px;
    opacity: 1;
}

.slider-dots {
    margin-bottom: 20px;
}

/* About Features */
.about-features {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-desc {
    text-align: center;
    color: #666;
    
    margin: -20px auto 50px;
    font-size: 16px;
    line-height: 1.8;
}

.features-grid {
    display: flex;
    justify-content: space-between;
   
    margin-bottom: 60px;
}

.feature-item {
    text-align: center;
}

.feature-icon {
    width: 70px;
    height: 70px;
   
   
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: #149473;
}

.feature-item span {
    font-size: 14px;
    color: #000;
    font-weight:bold;
    font-family: "BlatantRegular";
    
}

.advantages {
    display: flex;
   
    gap: clamp(20px, 3vw, 32px);
    justify-content: space-between;
    align-items: stretch;
}



.advantage-card__inner {
    position: relative;
    border-radius: 14px;
    
    display: flex;
    
    transition: box-shadow 0.35s ease;
}

.advantage-card__photo {
    display: block;
    width:378px;
    margin-left:-38px;
   
    
    transition: transform 0.5s ease;
}

.advantage-card__panel {
    width: 260px;
    position:relative;
    z-index: 1;

    margin-top:-18px;
    height:378px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    padding:20px;
    
    
}

.advantage-card__panel h3 {
    margin: 20px 0 18px 0;
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 700;
    color: #111;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.advantage-card__panel p {
    
    font-size: 13px;
    color: #555;
    line-height: 1.65;
}

.advantage-card__plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #149473;
    color: #fff;
    text-decoration: none;
    font-size: 26px;
    font-weight: 300;
    line-height: 1;
    position: absolute;
    left:20px;
    bottom:20px;

    transition: transform 0.35s ease, background 0.25s ease;
}

.advantage-card__plus span {
    display: block;
    margin-top: -3px;
}


.advantage-card__inner:hover .advantage-card__photo {
    transform: scale(1.1);
}

.advantage-card__inner:hover .advantage-card__panel {
    transform: translate(4px, -4px);
    /* box-shadow: 0 14px 44px rgba(0, 0, 0, 0.16); */
}

.advantage-card__plus:hover {
    background: #158a7d;
    transform: rotate(90deg) scale(1.06);
}

.link-arrow-sm {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #149473;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: 60px 0;
    background: #fff;
}

.process-gallery {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 30px;
}

.process-img {
    width: 180px;
    height: 180px;
    border-radius: 8px;
    overflow: hidden;
}

.process-img:hover img{
    transform: scale(1.2);
}

.process-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #333;
    border-radius: 8px;
    padding: 15px 30px;
   
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    color: #fff;
    position: relative;
}
.arrow-bar{
    width:10px;
    height:18px;
}

/* .step:not(:last-child)::after {
    content: '>';
    position: absolute;
    right: -5px;
    color: #fff;
} */

.step.active {
    color: #fff;
}

.step-num {
    font-size: 12px;
    font-weight: 600;
}

.step-name {
    font-size: 14px;
    font-family: Barlow;
    
}

/* Contact Section — map background + teal title + white form card */
.contact-section {
    padding: 0;
    position: relative;
   
}

.contact-hero {
    position: relative;
   
}

.contact-hero__bg {
   
    width: 100%;
    height: auto;
   
    display: block;
}

.contact-hero__inner {
    position: relative;
    z-index: 1;
    height: 100%;
    max-width: 1200px;
}

.contact-title{
    max-width: 1200px;
    margin:0 auto;
    background:none;
    position: relative;
    z-index: 1;
}

.contact-info-box {
    margin-bottom:-60px;
    background: #149473;
    color: #fff;
    padding: 22px 28px 24px;
    max-width: 200px;
    box-sizing: border-box;
}

.contact-info-box h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
}

.contact-info-box__line {
    display: block;
    width: 42px;
    height: 2px;
    margin-top: 14px;
    background: #fff;
}

.contact-form-card {
    /*position: absolute;*/
    /*left:0;*/
    /*bottom:-180px;*/
    margin-bottom:-180px;
    width:100%;
    padding: clamp(24px, 4vw, 36px);
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
}

.contact-form {
    max-width: 100%;
    margin: 0;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    background: #fff;
    font-family: inherit;
}

.form-textarea {
    width: 100%;
    min-height: 120px;
    resize: vertical;
}

.form-input:focus {
    outline: none;
    border-color: #149473;
}

.submit-row {
    justify-content: flex-end;
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 230px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-brand {
    flex: 1;
}

.footer-brand .logo {
    margin-bottom: 20px;
    display: inline-flex;
}

.contact-email {
    color: #149473;
    margin-bottom: 20px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap:10px;
}

.social-links {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    /* background: #444; */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #149473;
}

.social-icon img{
    width:100%;
}

.social-icon.facebook:hover {
    background: #3b5998;
}

.social-icon.twitter:hover {
    background: #1da1f2;
}

.social-icon.linkedin:hover {
    background: #0077b5;
}

.social-icon.instagram:hover {
    background: #e4405f;
}

.social-icon.youtube:hover {
    background: #ff0000;
}

.copyright {
    color: #888;
    font-size: 12px;
}

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

.link-column h4 {
    font-size: 14px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
}

.link-column ul {
    list-style: none;
}

.link-column li {
    margin-bottom: 10px;
}

.link-column a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.link-column a:hover {
    color: #149473;
}


.abls{
    color:#149473;
}
.bline{
    border-bottom:3px solid #149473;
}
.wline{
    width:40px;
    margin:0 auto;
}


/* Nav + hero: tablet */
@media (max-width: 1200px) {
    .nav-links {
        gap: clamp(12px, 2vw, 24px);
    }

    


    /* .nav-links a {
        font-size: clamp(12px, 1.2vw, 14px);
    } */
}



/* Responsive */
@media (max-width: 1024px) {
    .categories-grid {
        flex-wrap: wrap;
    }

    
    
    .features-grid {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .advantages {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
}


@media (max-width:1024px) and (min-width:900px) {
    .category-card .card-content .ctitle{
        font-size:18px;
    }
}


/* Nav: mobile menu */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
        z-index: 21;
    }

    .hero-content h1{
        font-size:24px;
    }

    .navbar-overlay .nav-inner {
        position: relative;
        align-items: center;
    }

    .navbar-overlay .nav-links {
        display: none;
        flex-direction: column;
        align-items: stretch;
        flex-basis: 100%;
        width: 100%;
        gap: 0;
        margin: 0;
        padding: 0.75rem 0 1rem;
        list-style: none;
        border-radius: 0 0 12px 12px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    }

    .navbar-overlay .nav-links > .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .navbar-overlay .nav-links > .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-overlay .nav-links a {
        display: block;
        padding: 0.85rem 0.25rem;
        color: #111;
    }

    .navbar-overlay .nav-item__row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 0;
    }

    .navbar-overlay .nav-item__link {
        flex: 1;
        display: flex;
        align-items: center;
        padding: 0.85rem 0.25rem;
        color: #111;
        border-bottom: none;
    }

    .navbar-overlay .nav-item__link--solo {
        display: block;
        width: 100%;
    }

    .navbar-overlay .nav-item__link.active {
        border-bottom: none;
        padding-bottom: 0.85rem;
        color: #149473;
        box-shadow: inset 3px 0 0 #149473;
    }

    .navbar-overlay .nav-item__caret {
        display: inline-flex;
        margin-right: 0.15rem;
        color: #111;
    }

    .nav-item--has-children .nav-submenu {
        position: static;
        transform: none;
        left: auto;
        top: auto;
        min-width: 0;
        max-width: none;
        width: 100%;
        background: rgba(0, 0, 0, 0.04);
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        transition: max-height 0.35s ease;
    }

    .nav-item--has-children.nav-item--open .nav-submenu {
        pointer-events: auto;
        max-height: 85vh;
        overflow-y: auto;
        padding: 0.35rem 0 0.65rem;
    }

    .navbar-overlay .nav-submenu__link,
    .navbar-overlay .nav-submenu-nested__link {
        white-space: normal;
        padding: 0.75rem 0.95rem 0.75rem 1.25rem;
        color: #222;
        font-size: 16px;
        font-weight: 600;
        line-height: 1.45;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .navbar-overlay .nav-submenu-nested__link {
        font-size: 16px;
        font-weight: 500;
        line-height: 1.45;
        padding-left: 1.65rem;
    }

    .navbar-overlay .nav-submenu .active,
    .navbar-overlay .nav-submenu-nested .active {
        box-shadow: inset 3px 0 0 #149473;
        color: #149473;
    }

    .navbar-overlay .nav-submenu-nested {
        border-left: none;
        padding-left: 0.75rem;
        margin-left: 0.5rem;
        border-left: 2px solid rgba(20, 148, 115, 0.25);
    }

    .navbar-overlay .search-icon {
        justify-content: flex-start;
    }

    .navbar-overlay.nav-open .nav-links {
        display: flex;
    }

    .logo-img {
        max-height: clamp(36px, 11vw, 48px);
        max-width: min(200px, 48vw);
    }

    .category-card {
        width: 50%;
        flex: 0 0 50%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-main{
        bottom:13%;
    }
    
    .hero-main .container,
    .about-section .container {
        flex-direction: column;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .categories-grid {
        flex-wrap: wrap;
    }

    

    .category-card .card-content .ctitle {
        font-size: 20px;
        line-height: 30px;
    }

    .category-card .card-content .ftitle {
        font-size: 13px;
        line-height: 17px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .category-card .card-content img {
        width: 72px;
        margin-bottom: 10px;
    }
    
    .products-slider {
        --products-visible: 3;
        --products-gap: 24px;
        --products-item-size: 120px;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantage-card {
        max-width: 100%;
    }

    .advantage-card__panel {
        width: min(90%, 260px);
    }
    
    .process-gallery {
        flex-wrap: wrap;
    }
    
    .contact-info-box {
        position: relative;
        top: auto;
        left: auto;
        max-width: none;
        margin-bottom: 20px;
    }

    .contact-form-card {
        margin-top: 0;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 30px;
        margin-top: 40px;
    }
    
    .form-row {
        flex-direction: column;
    }
}

/* Hero: small screens */
@media (max-width: 600px) {
    .hero-main {
        justify-content: center;
       
    }

    

    .hero-main .container {
        align-items: flex-start;
    }

    .hero-content {
        max-width: 100%;
    }

    /* .hero-content h1 {
        font-size: clamp(1.35rem, 6.5vw, 1.75rem);
    } */
    .hero-content h1{
        font-size:18px;
    }

    .hero-content p {
        font-size: clamp(0.875rem, 3.8vw, 1rem);
    }

    .carousel-dots {
        bottom: clamp(1rem, 5vw, 1.5rem);
    }

    .btn-primary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .products-categories {
        padding: 20px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .category-card .card-content .ctitle {
        font-size: 18px;
        line-height: 26px;
    }

    .category-card .card-content .ftitle {
        font-size: 12px;
        line-height: 16px;
    }

    .category-card__tab {
        width: 46px;
        height: 24px;
        margin-left: -23px;
    }

    .products-slider {
        --products-visible: 2;
        --products-gap: 16px;
        --products-item-size: 110px;
    }
}
