*,*::before,*::after {
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html {
    scroll-behavior:smooth;
}
body {
    font-family:"Noto Sans SC","PingFang SC","Microsoft YaHei",sans-serif;
    background:#f8faf8;
    color:#1d1d1f;
    overflow-x:hidden;
    line-height:1.7;
}
:root {
    --primary:#2f6d43;
    --primary-light:#4f9b68;
    --accent:#8bd46e;
    --bg:#f8faf8;
    --white:#fff;
    --text:#1d1d1f;
    --gray:#666;
    --border:rgba(255,255,255,.45);
    --glass:rgba(255,255,255,.55);
    --shadow:0 15px 40px rgba(0,0,0,.08);
    --radius:24px;
}
.container {
    width:min(1180px,92%);
    margin:auto;
}
img {
    width:100%;
    display:block;
}
a {
    text-decoration:none;
    color:inherit;
}
ul {
    list-style:none;
}
section {
    padding:120px 0;
    position:relative;
}
.section-heading {
    text-align:center;
    margin-bottom:80px;
}
.section-heading span {
    display:inline-block;
    color:var(--primary);
    letter-spacing:3px;
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
    margin-bottom:18px;
}
.section-heading h2 {
    font-size:52px;
    font-weight:800;
    line-height:1.2;
    margin-bottom:22px;
}
.section-heading p {
    width:min(700px,100%);
    margin:auto;
    color:#666;
    font-size:18px;
}
.btn {
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:100px;
    font-weight:700;
    transition:.35s;
    cursor:pointer;
}
.btn-primary {
    background:linear-gradient(135deg,#2f6d43,#4f9b68);
    color:#fff;
    box-shadow:0 15px 40px rgba(47,109,67,.3);
}
.btn-primary:hover {
    transform:translateY(-4px);
    box-shadow:0 20px 60px rgba(47,109,67,.45);
}
.btn-secondary {
    background:white;
    border:1px solid rgba(0,0,0,.08);
}
.btn-secondary:hover {
    background:#f3f3f3;
}
.btn-outline {
    border:2px solid var(--primary);
    color:var(--primary);
}
.btn-outline:hover {
    background:var(--primary);
    color:white;
}
.bg-gradient {
    position:fixed;
    inset:0;
    z-index:-5;
    background:linear-gradient(180deg,#eef8ef,#ffffff,#f7faf7);
}
.blur {
    position:fixed;
    border-radius:50%;
    filter:blur(120px);
    z-index:-4;
    opacity:.45;
}
.blur-one {
    width:500px;
    height:500px;
    background:#63b76d;
    top:-150px;
    left:-120px;
}
.blur-two {
    width:450px;
    height:450px;
    background:#8bd46e;
    right:-120px;
    top:250px;
}
.noise {
    position:fixed;
    inset:0;
    pointer-events:none;
    opacity:.04;
    background-image:url("images/noise.png");
    z-index:-3;
}
#loader {
    position:fixed;
    inset:0;
    background:white;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    z-index:99999;
    transition:1s;
}
.loader-logo {
    font-size:72px;
    animation:float 2s infinite;
}
#loader h2 {
    margin-top:15px;
    font-size:28px;
    font-weight:800;
    color:var(--primary);
}

@keyframes float{0%{transform:translateY(0);}50% {
    transform:translateY(-10px);
}
100% {
    transform:translateY(0);
}
}.navbar {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:18px 0;
    z-index:999;
    transition:.4s;
    background:linear-gradient(135deg,rgba(47,109,67,.95),rgba(35,85,52,.95));
    backdrop-filter:blur(20px);
}
.navbar.scrolled {
    background:linear-gradient(135deg,rgba(47,109,67,.98),rgba(35,85,52,.98));
    box-shadow:0 10px 40px rgba(0,0,0,.15);
}
.nav-wrapper {
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo {
    display:flex;
    align-items:center;
    gap:12px;
    font-size:24px;
    font-weight:800;
    color:white;
}
.logo-icon {
    font-size:32px;
    animation:float 4s infinite;
    color:#a8e6c5;
}
.nav-links {
    display:flex;
    gap:42px;
}
.nav-links a {
    position:relative;
    font-weight:600;
    color:rgba(255,255,255,.9);
}
.nav-links a::after {
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:#a8e6c5;
    transition:.35s;
}
.nav-links a:hover::after,.nav-links a.active::after {
    width:100%;
}
.nav-links a:hover,.nav-links a.active {
    color:white;
}
.nav-btn {
    padding:14px 26px;
    border-radius:999px;
    background:rgba(255,255,255,.15);
    color:white;
    font-weight:700;
    transition:.35s;
    border:1px solid rgba(255,255,255,.25);
}
.nav-btn:hover {
    transform:translateY(-3px);
    background:rgba(255,255,255,.25);
}
.menu-toggle {
    display:none;
    width:42px;
    height:42px;
    border:none;
    background:none;
    cursor:pointer;
}
.menu-toggle span {
    display:block;
    height:3px;
    margin:6px 0;
    background:white;
    border-radius:999px;
    transition:.35s;
}
.mobile-menu {
    position:fixed;
    top:0;
    right:-100%;
    width:300px;
    height:100vh;
    background:linear-gradient(180deg,rgba(47,109,67,.98),rgba(35,85,52,.98));
    backdrop-filter:blur(30px);
    padding:120px 40px;
    display:flex;
    flex-direction:column;
    gap:28px;
    transition:.5s;
    z-index:998;
}
.mobile-menu a {
    color:rgba(255,255,255,.9);
    font-size:20px;
    font-weight:600;
}
.mobile-menu.active {
    right:0;
}
.hero {
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    padding-top:120px;
    overflow:hidden;
}
.hero-container {
    display:grid;
    grid-template-columns:1.1fr 1fr;
    gap:80px;
    align-items:center;
}
.hero-tag {
    display:inline-flex;
    padding:10px 20px;
    border-radius:999px;
    background:rgba(255,255,255,.6);
    backdrop-filter:blur(15px);
    margin-bottom:30px;
    font-weight:600;
}
.hero h1 {
    font-size:72px;
    line-height:1.1;
    font-weight:900;
    margin-bottom:28px;
}
.hero p {
    font-size:20px;
    color:#666;
    margin-bottom:42px;
    max-width:600px;
}
.hero-buttons {
    display:flex;
    gap:20px;
    margin-bottom:60px;
}
.hero-stats {
    display:flex;
    gap:70px;
}
.stat h2 {
    font-size:42px;
    color:var(--primary);
    font-weight:800;
}
.hero-stats span {
    color:#777;
}
.hero-image-card {
    position:relative;
    border-radius:36px;
    overflow:hidden;
    box-shadow:0 40px 80px rgba(0,0,0,.15);
}
.hero-image-card img {
    height:620px;
    object-fit:cover;
    transition:1s;
}
.hero-image-card:hover img {
    transform:scale(1.06);
}
.about {
    position:relative;
}
.about-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:90px;
    align-items:center;
}
.about-image {
    position:relative;
}
.image-wrapper {
    position:relative;
    border-radius:32px;
    overflow:hidden;
    box-shadow:0 40px 90px rgba(0,0,0,.12);
}
.image-wrapper img {
    height:620px;
    object-fit:cover;
    transition:.8s;
}
.image-wrapper:hover img {
    transform:scale(1.05);
}
.experience-card {
    position:absolute;
    right:-30px;
    bottom:50px;
    width:180px;
    padding:28px;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.6);
    border-radius:28px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}
.experience-card h2 {
    font-size:52px;
    color:var(--primary);
    font-weight:800;
    line-height:1;
    margin-bottom:10px;
}
.experience-card span {
    color:#666;
    font-size:15px;
}
.about-badge {
    display:inline-flex;
    align-items:center;
    padding:10px 18px;
    border-radius:999px;
    background:#eef8ef;
    color:var(--primary);
    font-weight:700;
    margin-bottom:25px;
}
.about-content h3 {
    font-size:48px;
    line-height:1.2;
    margin-bottom:30px;
    font-weight:800;
}
.about-content p {
    color:#666;
    font-size:18px;
    margin-bottom:40px;
}
.about-actions {
    display:flex;
    gap:18px;
}
/* .advantage-grid {
    background:linear-gradient(180deg,#ffffff,#f7fbf8);
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
    margin: 20px;
}
.feature-card {
    position:relative;
    overflow:hidden;
    padding:42px 32px;
    border-radius:28px;
    background:rgba(255,255,255,.72);
    backdrop-filter:blur(24px);
    border:1px solid rgba(255,255,255,.65);
    box-shadow:0 20px 60px rgba(0,0,0,.06);
    transition:.45s;
}
.feature-card::before {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,rgba(79,155,104,.08),transparent);
    opacity:0;
    transition:.4s;
}
.feature-card:hover {
    transform:translateY(-12px);
    box-shadow:0 35px 80px rgba(0,0,0,.12);
}
.feature-card:hover::before {
    opacity:1;
}
.feature-icon {
    width:72px;
    height:72px;
    border-radius:20px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:34px;
    background:linear-gradient(135deg,#4f9b68,#8bd46e);
    color:white;
    margin-bottom:28px;
}
.feature-card h4 {
    font-size:24px;
    margin-bottom:15px;
}
.feature-card p {
    color:#666;
    line-height:1.8;
} */
 /*==========================================
PRODUCT ADVANTAGES
==========================================*/
.advantage-grid{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;
    margin:50px auto 70px;
    padding:28px 36px;
    max-width:1100px;
    border-top:1px solid rgba(0,0,0,.08);
    border-bottom:1px solid rgba(0,0,0,.08);
}

.feature-card{
    display:flex;
    align-items:center;
    gap:16px;
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-4px);
}

.feature-icon{
    width:54px;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #58b26a,
        #83cf91
    );
    color:#fff;
    font-size:20px;
    flex-shrink:0;
    box-shadow:
        0 10px 25px rgba(88,178,106,.28);

}

.feature-content h4{
    font-size:17px;
    font-weight:700;
    margin-bottom:4px;
    color:#1f2937;
}

.feature-content p{
    font-size:13px;
    color:#6b7280;
    line-height:1.5;
}

@media(max-width:768px){
    .advantage-grid{
        flex-direction:column;
        align-items:flex-start;
        gap:24px;
        padding:24px;
    }

}
.stats-section {
    padding:100px 0;
}
.stats-grid {
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}
.stat-card {
    padding:48px;
    border-radius:28px;
    background:white;
    text-align:center;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
    transition:.35s;
}
.stat-card:hover {
    transform:translateY(-10px);
}
.stat-card h2 {
    font-size:58px;
    color:var(--primary);
    margin-bottom:10px;
    font-weight:800;
}
.stat-card p {
    color:#777;
    font-size:17px;
}
.culture {
    position:relative;
}
.culture-modern-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
.culture-card {
    overflow:hidden;
    border-radius:28px;
    background:white;
    box-shadow:0 18px 60px rgba(0,0,0,.08);
    transition:.45s;
}
.culture-card:hover {
    transform:translateY(-10px);
}
.culture-image {
    height:260px;
    object-fit:cover;
    transition:.8s;
}
.culture-card:hover .culture-image {
    transform:scale(1.08);
}
.culture-info {
    padding:28px;
}
.culture-info h4 {
    font-size:24px;
    margin-bottom:12px;
}
.culture-info p {
    color:#666;
}

.gallery {
    position:relative;
    overflow:hidden;
    padding:140px 0;
    background:linear-gradient(
        180deg,
        #ffffff 0%,
        #f8fbf9 45%,
        #eef6f1 100%
    );
}


.gallery::before {
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    right:-220px;
    top:-220px;
    border-radius:50%;
    background:radial-gradient(rgba(88,180,115,.14),transparent 70%);
    pointer-events:none;
}
.gallery::after {
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    left:-180px;
    bottom:-180px;
    border-radius:50%;
    background:radial-gradient(rgba(150,220,180,.12),transparent 70%);
    pointer-events:none;
}

.gallery-grid {
    position:relative;
    z-index:2;
    display:flex;
    gap:30px;
    overflow-x:auto;
    padding:20px 0;
    scroll-behavior:smooth;
    scrollbar-width:thin;
    scrollbar-color:var(--primary) transparent;
}

.gallery-grid::-webkit-scrollbar {
    height:6px;
}

.gallery-grid::-webkit-scrollbar-track {
    background:transparent;
}

.gallery-grid::-webkit-scrollbar-thumb {
    background:var(--primary);
    border-radius:3px;
}

.scroll-hint {
    text-align:center;
    margin-bottom:20px;
    color:var(--primary);
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    opacity:.8;
    animation:pulseHint 2s ease-in-out infinite;
}

@keyframes pulseHint {
    0%,100% {opacity:.6;}
    50% {opacity:1;}
}

.gallery-card {
    flex:0 0 calc(25% - 22.5px);
    position:relative;
    overflow:hidden;
    aspect-ratio:1/1;
    cursor:pointer;
    border-radius:28px;
    background:#fff;
    transform-style:preserve-3d;
    perspective:1000px;
    border:1px solid rgba(255,255,255,.75);
    transition:transform .45s cubic-bezier(.22,1,.36,1),box-shadow .45s;
    box-shadow:0 10px 25px rgba(0,0,0,.05),0 25px 70px rgba(0,0,0,.08);
}

.gallery-card:hover {
    transform:translateY(-12px);
    box-shadow:0 25px 70px rgba(0,0,0,.16),0 50px 120px rgba(0,0,0,.12);
}


.gallery-card img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease,filter .8s ease;
}
.gallery-card:hover img {
    transform:scale(1.08);
    filter:brightness(1.06) saturate(1.08);
}


.gallery-card::after {
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(120deg, transparent 20%, rgba(255,255,255,.28) 50%,transparent 80%);
    transform:translateX(-160%);
    transition:
    transform .9s ease;
    pointer-events:none;
}
.gallery-card:hover::after {
    transform:translateX(160%);
}


.gallery-overlay {
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:flex-end;
    padding:28px;
    color:#fff;
    opacity:0;
    backdrop-filter:blur(3px);
    transition:opacity .4s ease;
    background:linear-gradient(180deg, rgba(0,0,0,0) 25%,rgba(0,0,0,.18) 55%, rgba(0,0,0,.78) 100%);
}
.gallery-card:hover .gallery-overlay {
    opacity:1;
}


.gallery-overlay h4 {
    font-size:22px;
    font-weight:700;
    margin-bottom:10px;
    transform:translateY(18px);
    opacity:0;
    transition:all .45s ease;
}
.gallery-overlay p {
    font-size:15px;
    line-height:1.7;
    opacity:0;
    transform:translateY(30px);
    transition: all .6s ease;
}
.gallery-card:hover h4 {
    opacity:1;
    transform:translateY(0);
}
.gallery-card:hover p {
    opacity:.92;
    transform:translateY(0);
}

.gallery-card::before {
    content:"";
    position:absolute;
    inset:-1px;
    border-radius:inherit;
    border:1px solid rgba(255,255,255,.45);
    opacity:0;
    transition:.4s;
    z-index:2;
}
.gallery-card:hover::before {
    opacity:1;
}

@media(max-width:1024px){
    .gallery{padding:110px 0; }
    .gallery-card {
        flex:0 0 calc(33.333% - 20px);
    }
}

@media(max-width:768px){
    .gallery{padding:80px 0;}
    .gallery-card { 
        flex:0 0 calc(50% - 15px);
        border-radius:22px;
    }
}
.cta {
    padding:120px 0;
}
.cta-box {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    padding:70px;
    border-radius:36px;
    background:linear-gradient(135deg,#2f6d43,#63b76d);
    color:white;
    box-shadow:0 40px 90px rgba(47,109,67,.35);
}
.cta-box span {
    letter-spacing:3px;
    opacity:.75;
    font-size:14px;
}
.cta-box h2 {
    margin:18px 0;
    font-size:52px;
    line-height:1.2;
}
.cta-box p {
    opacity:.9;
    max-width:600px;
}
.btn-light {
    background:white;
    color:var(--primary);
    font-weight:700;
    padding:18px 36px;
    border-radius:999px;
    transition:.35s;
}
.btn-light:hover {
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(255,255,255,.25);
}
.reveal,.reveal-left,.reveal-right {
    opacity:0;
    transition:opacity .8s ease,transform .8s ease;
}
.reveal {
    transform:translateY(50px);
}
.reveal-left {
    transform:translateX(-60px);
}
.reveal-right {
    transform:translateX(60px);
}
.reveal.active,.reveal-left.active,.reveal-right.active {
    opacity:1;
    transform:none;
}
.products {
    position:relative;
    overflow:hidden;
}
.products::before {
    content:"";
    position:absolute;
    top:-200px;
    right:-200px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:radial-gradient(rgba(99,183,109,.18),transparent 70%);
    pointer-events:none;
}
.products-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:36px;
}
.product-card {
    position:relative;
    overflow:hidden;
    border-radius:28px;
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.65);
    box-shadow:0 18px 60px rgba(0,0,0,.08);
    transition:transform .45s,box-shadow .45s;
    cursor:pointer;
    transform-style:preserve-3d;
}
.product-card:hover {
    transform:translateY(-12px);
    box-shadow:0 35px 80px rgba(0,0,0,.14);
}
.product-image {
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.8s;
}
.product-card:hover .product-image {
    transform:scale(1.08);
}
.product-content {
    padding:28px;
}
.product-content::before {
    content:"Organic";
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 16px;
    border-radius:999px;
    background:#eef8ef;
    color:var(--primary);
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}
.product-name {
    font-size:26px;
    font-weight:800;
    margin-bottom:15px;
}
.product-description {
    color:#666;
    margin-bottom:28px;
    line-height:1.8;
}
.product-info {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding-top:20px;
    border-top:1px solid rgba(0,0,0,.06);
}
.product-price {
    color:var(--primary);
    font-size:28px;
    font-weight:800;
}
.product-weight {
    background:#f3f7f3;
    padding:8px 16px;
    border-radius:999px;
    color:#666;
    font-size:14px;
}
.product-image-wrapper {
    position:relative;
    cursor:pointer;
}
.product-badge {
    position:absolute;
    top:20px;
    right:20px;
    padding:10px 20px;
    border-radius:999px;
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(10px);
    color:var(--primary);
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    box-shadow:0 4px 16px rgba(0,0,0,.08);
    z-index:10;
}
.product-btn {
    width:100%;
    margin-top:24px;
    padding:16px 32px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg,var(--primary),var(--primary-light));
    color:white;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:.4s;
    box-shadow:0 12px 32px rgba(47,109,67,.3);
}
.product-btn:hover {
    transform:translateY(-3px);
    box-shadow:0 18px 48px rgba(47,109,67,.4);
}
.product-btn:active {
    transform:translateY(-1px);
}
.btn-icon {
    font-size:18px;
}
.banner {
    padding:80px 0;
}
.banner-box {
    position:relative;
    overflow:hidden;
    border-radius:40px;
    padding:90px;
    color:white;
    background:linear-gradient(135deg,#2f6d43,#5eb876);
    box-shadow:0 40px 100px rgba(47,109,67,.35);
}
.banner-box::after {
    content:"";
    position:absolute;
    right:-120px;
    top:-120px;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}
.banner-box h2 {
    font-size:54px;
    margin:18px 0;
}
.banner-box p {
    max-width:600px;
    opacity:.92;
}
.contact-layout {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:stretch;
}
.contact-info {
    display:grid;
    gap:24px;
}
.contact-card {
    display:flex;
    align-items:center;
    gap:22px;
    padding:28px;
    border-radius:24px;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(20px);
    box-shadow:0 15px 45px rgba(0,0,0,.08);
    transition:.35s;
}
.contact-card:hover {
    transform:translateY(-8px);
}
.contact-card .icon {
    width:70px;
    height:70px;
    border-radius:20px;
    background:linear-gradient(135deg,#2f6d43,#63b76d);
    color:white;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
}
.contact-card small {
    color:#888;
    display:block;
    margin-bottom:8px;
}
.contact-card h4 {
    font-size:22px;
}
.map-card {
    border-radius:32px;
    overflow:hidden;
    background:white;
    box-shadow:0 25px 70px rgba(0,0,0,.08);
}
.map-container {
    padding:24px;
}
.map-actions {
    display:flex;
    gap:16px;
    margin-top:20px;
}
.map-nav-btn {
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:14px 20px;
    border:none;
    border-radius:12px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;
    text-decoration:none;
}
.map-nav-btn-amap {
    background:linear-gradient(135deg,#34c759,#30d158);
    color:white;
}
.map-nav-btn-amap:hover {
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(52,199,89,.35);
}
.map-nav-btn-google {
    background:linear-gradient(135deg,#4285f4,#3367d6);
    color:white;
}
.map-nav-btn-google:hover {
    transform:translateY(-3px);
    box-shadow:0 12px 30px rgba(66,133,244,.35);
}
.footer {
    margin-top:120px;
    background:#121714;
    color:#cfd8d2;
    padding:90px 0 30px;
}
.footer-grid {
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:50px;
}
.footer-logo {
    color:white;
    font-size:30px;
    font-weight:800;
    margin-bottom:22px;
}
.footer h4 {
    color:white;
    margin-bottom:20px;
}
.footer a {
    display:block;
    margin-bottom:12px;
    color:#a8b5ad;
    transition:.3s;
}
.footer a:hover {
    color:white;
    transform:translateX(5px);
}
.footer p {
    color:#9eaba3;
    line-height:1.8;
}
.socials {
    display:flex;
    flex-direction:column;
}
.footer-bottom {
    margin-top:60px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
    color:#7f8b84;
}
.lightbox {
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.85);
    opacity:0;
    visibility:hidden;
    transition:.4s;
    z-index:9999;
}
.lightbox.active {
    opacity:1;
    visibility:visible;
}
.lightbox-content {
    position:relative;
    width:min(90%,1000px);
}
.lightbox-content img {
    border-radius:24px;
}
.close {
    position:absolute;
    top:-55px;
    right:0;
    width:44px;
    height:44px;
    border:none;
    border-radius:50%;
    background:white;
    cursor:pointer;
    font-size:24px;
}
.back-top {
    position:fixed;
    right:35px;
    bottom:35px;
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#2f6d43,#63b76d);
    color:white;
    font-size:22px;
    cursor:pointer;
    box-shadow:0 18px 45px rgba(47,109,67,.35);
    opacity:0;
    transform:translateY(30px);
    transition:.35s;
    z-index:999;
}
.back-top.visible {
    opacity:1;
    transform:none;
}
.back-top:hover {
    transform:translateY(-6px) rotate(180deg);
}

@media (max-width:1024px){
.hero-container,.about-grid,.values-wrapper,.contact-layout{grid-template-columns:1fr;gap:50px;
}.hero h1 {
    font-size:56px;
}
.advantage-grid,.stats-grid,.footer-grid {
    grid-template-columns:repeat(2,1fr);
}
.culture-modern-grid {
    grid-template-columns:repeat(2,1fr);
}
.gallery-card {
    flex:0 0 calc(33.333% - 20px);
}
}
@media (max-width:768px){
.nav-links,.nav-btn{display:none;
}.menu-toggle {
    display:block;
}
section {
    padding:80px 0;
}
.hero {
    padding-top:100px;
}
.hero-container {
    text-align:center;
}
.hero-buttons {
    justify-content:center;
    flex-wrap:wrap;
}
.hero-stats {
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}
.hero h1 {
    font-size:42px;
}
.section-heading h2 {
    font-size:34px;
}
.about-content h3,.values-left h2,.banner-box h2,.cta-box h2 {
    font-size:34px;
}
.banner-box,.cta-box {
    padding:45px 30px;
}
.products-grid,.advantage-grid,.stats-grid,.culture-modern-grid,.footer-grid {
    grid-template-columns:1fr;
}
.gallery-card {
    flex:0 0 calc(50% - 15px);
}
.contact-card {
    padding:22px;
}
.image-wrapper img {
    height:360px;
}
.hero-image-card img {
    height:420px;
}
.experience-card {
    right:15px;
    bottom:15px;
}
.footer {
    text-align:center;
}
.socials {
    align-items:center;
}
.back-top {
    right:20px;
    bottom:20px;
}
}
@media (max-width:480px){
    .gallery-card{
        flex:0 0 calc(100% - 0px);
    }
}

/*==================================================
Hero Right Visual
==================================================*/

.hero-visual{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    min-height:520px;
}

/*==========================
Main Circle
==========================*/

.hero-circle{
    position:absolute;
    width:430px;
    height:430px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(20px);
    box-shadow:
        0 0 100px rgba(91,180,120,.22),
        inset 0 0 50px rgba(255,255,255,.12);
    animation:pulse 5s ease-in-out infinite;
}

/* 外圈 */

.hero-circle::before{

    content:"";

    position:absolute;

    inset:-35px;

    border-radius:50%;

    border:1px dashed rgba(255,255,255,.18);

    animation:rotateCircle 30s linear infinite;

}

/* 第二圈 */

.hero-circle::after{

    content:"";

    position:absolute;

    inset:-70px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.08);

}

/*==========================
Floating Cards
==========================*/

.hero-card{

    position:absolute;

    display:flex;

    align-items:center;

    gap:16px;

    padding:18px 22px;

    min-width:200px;

    border-radius:22px;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.28);

    box-shadow:
        0 18px 40px rgba(0,0,0,.08);

    transition:
        transform .4s,
        box-shadow .4s;

    z-index:2;

}

.hero-card:hover{

    transform:translateY(-8px);

    box-shadow:
        0 28px 60px rgba(0,0,0,.15);

}

/*==========================
Icon
==========================*/

.card-icon{

    width:58px;

    height:58px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    color:#fff;

    background:
        linear-gradient(
            135deg,
            #56b86d,
            #8ad49a
        );

    box-shadow:
        0 10px 25px rgba(86,184,109,.28);

    flex-shrink:0;

}

/*==========================
Text
==========================*/

.hero-card h4{

    margin:0;

    font-size:18px;

    color:#fff;

    font-weight:700;

}

.hero-card p{

    margin:4px 0 0;

    font-size:13px;

    color:rgba(255,255,255,.9);

}

/*==========================
Position
==========================*/

.card-top{

    top:10px;

    left:50%;

    transform:translateX(-50%);

    animation:floatTop 5s ease-in-out infinite;

}

.card-left{

    left:-30px;

    top:58%;

    animation:floatLeft 5s ease-in-out infinite;

    animation-delay:.8s;

}

.card-right{

    right:-30px;

    top:58%;

    animation:floatRight 5s ease-in-out infinite;

    animation-delay:1.6s;

}

/*==========================
Animation
==========================*/

@keyframes pulse{

    0%,100%{

        transform:scale(1);

        opacity:.7;

    }

    50%{

        transform:scale(1.05);

        opacity:1;

    }

}

@keyframes rotateCircle{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

@keyframes floatTop{

    0%,100%{

        transform:translate(-50%,0);

    }

    50%{

        transform:translate(-50%,-12px);

    }

}

@keyframes floatLeft{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

}

@keyframes floatRight{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

}

/*==========================
Responsive
==========================*/

@media(max-width:992px){

    .hero-visual{

        min-height:420px;

    }

    .hero-circle{

        width:300px;

        height:300px;

    }

    .hero-card{

        min-width:170px;

        padding:14px 18px;

    }

    .card-icon{

        width:48px;

        height:48px;

        font-size:22px;

    }

}

@media(max-width:768px){

    .hero-right{

        margin-top:60px;

    }

    .hero-visual{

        min-height:360px;

    }

    .hero-circle{

        width:260px;

        height:260px;

    }

    .card-top{

        top:-10px;

    }

    .card-left{

        left:0;

        top:72%;

    }

    .card-right{

        right:0;

        top:72%;

    }

    .hero-card{
        color: #2f6d43;
        font-weight: bold;
        min-width:150px;
        padding:12px 16px;
    }

    .hero-card h4{

        font-size:15px;

    }
    .hero-card p{

        font-size:12px;

    }

}
/*==============================
Hero Image
==============================*/

.hero-image{

    position:absolute;

    width:320px;

    height:320px;

    z-index:3;

    display:flex;

    justify-content:center;

    align-items:center;

    animation:heroImageFloat 6s ease-in-out infinite;

}

.hero-image img{

    width:100%;

    height:100%;

    object-fit:contain;

    filter:

        drop-shadow(0 35px 45px rgba(0,0,0,.18));

    transition:

        transform .5s ease;

}

.hero-image:hover img{

    transform:scale(1.05);

}
@keyframes heroImageFloat{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-12px);

    }

}
