/* ===========================
   BASE RESET & GLOBALS
=========================== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}
html{
    scroll-behavior:smooth;
}
body{
    background:#f5fff7;
    color:#222;
    overflow-x:hidden;
}
section{
    padding:80px 8%;
    animation:fadeUp 1s ease;
}
.container{
    max-width:1200px;
    margin:auto;
}
 
/* ===========================
   BUTTONS
=========================== */
.btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}
.primary-btn{
    background:#00b140;
    color:white;
}
.primary-btn:hover{
    background:#009933;
    transform:translateY(-3px);
}
.secondary-btn{
    border:2px solid #00b140;
    color:#00b140;
}
.secondary-btn:hover{
    background:#00b140;
    color:white;
}
.white-btn{
    border:2px solid white;
    color:white;
}
.white-btn:hover{
    background:white;
    color:#00b140;
}
.view-all-btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 28px;
    background:#16a34a;
    color:white;
    text-decoration:none;
    border-radius:12px;
    font-weight:600;
    transition:0.3s;
}
.view-all-btn:hover{
    background:#15803d;
    transform:translateY(-3px);
}
 
/* ===========================
   NAVBAR
=========================== */
.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:12px 8%;
    background:rgba(255,255,255,0.12);
    backdrop-filter:blur(12px);
    z-index:1000;
    transition:0.4s;
}
.logo{
    display:flex;
    align-items:center;
}
.logo a{
    display:flex;
    align-items:center;
    text-decoration:none;
}
.logo img{
    height:100px;
    width:auto;
    max-width:350px;
    display:block;
    transition:transform 0.3s ease;
    filter:brightness(1.1) contrast(1.1);
    background:transparent !important;
}
.logo img:hover{
    transform:scale(1.05);
}
.nav-links{
    display:flex;
    gap:30px;
    list-style:none;
}
.nav-links a{
    text-decoration:none;
    color:white;
    font-weight:500;
    transition:0.3s;
    position:relative;
}
.nav-links a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0%;
    height:2px;
    background:#00ff84;
    transition:0.3s;
}
.nav-links a:hover::after,
.nav-links .active::after{
    width:100%;
}
.nav-links a:hover{
    color:#00ff84;
}
.nav-links .active{
    color:#00b140;
    font-weight:700;
}
 
/* ===========================
   HERO
=========================== */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    background:
        linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
        url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    color:white;
    padding-top:120px;
}
.hero-content{
    max-width:700px;
}
.badge{
    background:rgba(255,255,255,0.2);
    padding:10px 20px;
    border-radius:50px;
    display:inline-block;
    margin-bottom:20px;
    backdrop-filter:blur(10px);
}
.hero h1{
    font-size:65px;
    line-height:1.2;
    margin-bottom:20px;
}
.hero p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:30px;
}
.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:50px;
}
.stats{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
}
.stat-box{
    background:rgba(255,255,255,0.15);
    padding:20px 30px;
    border-radius:20px;
    backdrop-filter:blur(10px);
}
.stat-box h2{
    font-size:32px;
}
 
/* ===========================
   SECTION TITLES
=========================== */
.section-title{
    text-align:center;
    margin-bottom:60px;
}
.section-title span{
    color:#00b140;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}
.section-title h2{
    font-size:45px;
    margin:15px 0;
}
.section-title p{
    color:#666;
    font-size:18px;
}
 
/* ===========================
   WHY SECTION
=========================== */
.why-section{
    background:white;
}
.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}
.why-card{
    background:#f7fff9;
    padding:40px 30px;
    border-radius:25px;
    transition:0.4s;
    border:1px solid #e3f5e8;
}
.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
.icon{
    font-size:40px;
    margin-bottom:20px;
}
.why-card h3{
    margin-bottom:15px;
    font-size:24px;
}
.why-card p{
    color:#666;
    line-height:1.8;
}
 
/* ===========================
   PRODUCTS SECTION (HOME)
=========================== */
.products-section{
    background:#f5fff7;
}
.products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}
.product-card{
    background:white;
    padding:40px;
    border-radius:25px;
    transition:0.4s;
    position:relative;
    overflow:hidden;
}
.product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}
.product-card::before{
    content:'';
    position:absolute;
    width:100%;
    height:5px;
    background:#00b140;
    top:0;
    left:0;
}
.product-tag{
    display:inline-block;
    background:#e8fff0;
    color:#00b140;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}
.product-card h3{
    font-size:30px;
    margin-bottom:20px;
}
.product-card p{
    color:#666;
    line-height:1.8;
}
.popular{
    transform:scale(1.05);
    border:2px solid #00b140;
}
 
/* ===========================
   HOW IT WORKS
=========================== */
.work-section{
    background:white;
}
.steps{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}
.step{
    background:#f7fff9;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    transition:0.4s;
}
.step:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
.step-number{
    width:70px;
    height:70px;
    background:#00b140;
    color:white;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:700;
}
.step h3{
    margin-bottom:15px;
    font-size:24px;
}
.step p{
    color:#666;
    line-height:1.8;
}
 
/* ===========================
   AUDIENCE SECTION
=========================== */
.audience-section{
    background:#f5fff7;
}
.audience-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}
.audience-card{
    background:white;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    transition:0.4s;
}
.audience-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}
.audience-icon{
    font-size:50px;
    margin-bottom:20px;
}
.audience-card h3{
    font-size:24px;
    margin-bottom:15px;
}
.audience-card p{
    color:#666;
    line-height:1.8;
}
 
/* ===========================
   CTA SECTION
=========================== */
.cta-section{
    background:
        linear-gradient(rgba(0,177,64,0.9), rgba(0,120,40,0.9)),
        url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
}
.cta-content{
    max-width:800px;
    margin:auto;
}
.cta-content h2{
    font-size:55px;
    margin-bottom:20px;
}
.cta-content p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:40px;
}
.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
 
/* ===========================
   FOOTER
=========================== */
.footer{
    background:#07120a;
    color:white;
    padding-top:80px;
}
.footer-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
    padding-bottom:50px;
}
.footer-box h2,
.footer-box h3{
    margin-bottom:20px;
    color:#00b140;
}
.footer-box p{
    color:#bbb;
    line-height:1.8;
}
.footer-box ul{
    list-style:none;
}
.footer-box ul li{
    margin-bottom:12px;
}
.footer-box ul li a{
    color:#bbb;
    text-decoration:none;
    transition:0.3s;
}
.footer-box ul li a:hover{
    color:#00b140;
}
.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.1);
    text-align:center;
    padding:25px 0;
    color:#aaa;
}
 
/* ===========================
   PRODUCTS PAGE HERO
=========================== */
.products-hero{
    min-height:70vh;
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    padding:120px 8% 80px;
}
.products-hero-content{
    max-width:850px;
}
.hero-label{
    display:inline-block;
    background:rgba(255,255,255,0.2);
    padding:10px 24px;
    border-radius:50px;
    margin-bottom:25px;
    backdrop-filter:blur(10px);
}
.products-hero h1{
    font-size:65px;
    margin-bottom:25px;
    line-height:1.2;
}
.products-hero p{
    font-size:20px;
    line-height:1.8;
}
 
/* ===========================
   HERO STATS BAR
=========================== */
.hero-stats-bar{
    width:90%;
    margin:50px auto;
    background:white;
    border-radius:25px;
    padding:30px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:25px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    position:relative;
    z-index:10;
}
.hero-stat{
    text-align:center;
    padding:20px;
    border-radius:20px;
    transition:0.3s ease;
}
.hero-stat:hover{
    background:#f5fff7;
    transform:translateY(-5px);
}
.hero-stat h3{
    font-size:42px;
    color:#00b140;
    margin-bottom:10px;
    font-weight:700;
}
.hero-stat p{
    font-size:16px;
    color:#555;
    font-weight:500;
}
 
/* ===========================
   FILTER BUTTONS
=========================== */
.filter-section{
    padding:40px 8%;
    background:white;
}
.filter-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
.filter-btn{
    padding:14px 30px;
    border:none;
    border-radius:50px;
    background:#f1fdf5;
    color:#00b140;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    font-size:16px;
}
.filter-btn:hover,
.active-filter{
    background:#00b140;
    color:white;
}
 
/* ===========================
   MAIN PRODUCTS (PRODUCTS PAGE)
=========================== */
.main-products{
    background:#f5fff7;
}
.main-products-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}
.main-product-card{
    background:white;
    padding:45px 35px;
    border-radius:30px;
    position:relative;
    transition:0.4s;
    overflow:hidden;
}
.main-product-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}
.product-badge{
    display:inline-block;
    background:#e9fff1;
    color:#00b140;
    padding:10px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}
.main-product-card h3{
    font-size:32px;
    margin-bottom:20px;
}
.product-desc{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}
.product-features{
    margin-bottom:30px;
    padding-left:20px;
}
.product-features li{
    margin-bottom:12px;
    color:#444;
}
.product-price{
    font-size:32px;
    font-weight:700;
    color:#00b140;
    margin-bottom:25px;
}
.featured-product{
    border:3px solid #00b140;
    transform:scale(1.05);
}
.featured-tag{
    position:absolute;
    top:20px;
    right:-40px;
    background:#00b140;
    color:white;
    padding:10px 50px;
    transform:rotate(45deg);
    font-size:12px;
    font-weight:700;
}
 
/* ===========================
   COMPARISON TABLE
=========================== */
.comparison-section{
    background:white;
}
.table-container{
    overflow-x:auto;
    margin-top:40px;
}
.comparison-table{
    width:100%;
    border-collapse:collapse;
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}
.comparison-table thead{
    background:#00b140;
    color:white;
}
.comparison-table th,
.comparison-table td{
    padding:22px;
    text-align:center;
}
.comparison-table th{
    font-size:20px;
}
.comparison-table tbody tr{
    border-bottom:1px solid #eee;
    transition:0.3s;
}
.comparison-table tbody tr:hover{
    background:#f5fff7;
}
.comparison-table td:first-child{
    font-weight:600;
    color:#222;
}
 
/* ===========================
   ADDONS SECTION
=========================== */
.addons-section{
    background:#f5fff7;
}
.addons-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}
.addon-card{
    background:white;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    transition:0.4s;
}
.addon-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}
.addon-icon{
    font-size:50px;
    margin-bottom:20px;
}
.addon-card h3{
    font-size:24px;
    margin-bottom:15px;
}
.addon-card p{
    color:#666;
    line-height:1.8;
}
 
/* ===========================
   PRODUCTS CTA
=========================== */
.products-cta{
    background:
        linear-gradient(rgba(0,177,64,0.9), rgba(0,120,40,0.9)),
        url('https://images.unsplash.com/photo-1497440001374-f26997328c1b?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
    padding:100px 8%;
}
.products-cta-content{
    max-width:800px;
    margin:auto;
}
.products-cta-content h2{
    font-size:55px;
    margin-bottom:20px;
}
.products-cta-content p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:40px;
}
.products-cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
 
/* ===========================
   ABOUT HERO
=========================== */
.about-hero{
    min-height:70vh;
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('https://images.unsplash.com/photo-1466611653911-95081537e5b7?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    padding:120px 8% 80px;
}
.about-hero-content{
    max-width:900px;
}
.about-hero h1{
    font-size:60px;
    margin-bottom:25px;
    line-height:1.2;
}
.about-hero p{
    font-size:20px;
    line-height:1.8;
}
 
/* ===========================
   STORY SECTION
=========================== */
.story-section{
    background:white;
}
.story-content{
    max-width:1000px;
    margin:auto;
    text-align:center;
}
.story-content p{
    font-size:18px;
    line-height:2;
    color:#555;
    margin-bottom:25px;
}
.about-stats{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
}
.about-stat-card{
    background:#f5fff7;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    transition:0.4s;
}
.about-stat-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}
.about-stat-card h3{
    font-size:42px;
    color:#00b140;
    margin-bottom:10px;
}
.about-stat-card p{
    color:#555;
    font-weight:500;
}
 
/* ===========================
   MISSION SECTION
=========================== */
.mission-section{
    background:#f5fff7;
}
.mission-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}
.mission-card{
    background:white;
    padding:45px 35px;
    border-radius:25px;
    transition:0.4s;
}
.mission-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}
.mission-card h3{
    font-size:28px;
    margin-bottom:20px;
    color:#00b140;
}
.mission-card p{
    color:#555;
    line-height:1.9;
}
 
/* ===========================
   JOURNEY / TIMELINE
=========================== */
.journey-section{
    background:white;
}
.timeline{
    max-width:1000px;
    margin:auto;
    position:relative;
}
.timeline::before{
    content:'';
    position:absolute;
    left:50%;
    top:0;
    width:4px;
    height:100%;
    background:#00b140;
    transform:translateX(-50%);
}
.timeline-item{
    width:50%;
    padding:30px;
    position:relative;
}
.timeline-item:nth-child(odd){
    left:0;
    text-align:right;
}
.timeline-item:nth-child(even){
    left:50%;
}
.timeline-year{
    background:#00b140;
    color:white;
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    font-weight:700;
    margin-bottom:20px;
}
.timeline-content{
    background:#f5fff7;
    padding:30px;
    border-radius:20px;
    transition:0.4s;
}
.timeline-content:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
.timeline-content h3{
    margin-bottom:15px;
    font-size:24px;
}
.timeline-content p{
    color:#555;
    line-height:1.8;
}
 
/* ===========================
   TEAM SECTION
=========================== */
.team-section{
    background:#f5fff7;
}
.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}
.team-card{
    background:white;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    transition:0.4s;
}
.team-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}
.team-image{
    width:120px;
    height:120px;
    margin:auto;
    margin-bottom:25px;
    background:#eafff0;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:50px;
}
.team-card h3{
    font-size:24px;
    margin-bottom:10px;
}
.team-card p{
    color:#00b140;
    font-weight:600;
}
 
/* ===========================
   VALUES SECTION
=========================== */
.values-section{
    background:white;
}
.values-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}
.value-card{
    background:#f5fff7;
    padding:40px 30px;
    border-radius:25px;
    transition:0.4s;
}
.value-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}
.value-card h3{
    color:#00b140;
    font-size:26px;
    margin-bottom:20px;
}
.value-card p{
    color:#555;
    line-height:1.8;
}
 
/* ===========================
   CERTIFICATION SECTION
=========================== */
.certification-section{
    background:#f5fff7;
}
.certification-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}
.certification-card{
    background:white;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    transition:0.4s;
}
.certification-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}
.certification-icon{
    font-size:50px;
    margin-bottom:20px;
}
.certification-card h3{
    font-size:22px;
    line-height:1.5;
}
 
/* ===========================
   ABOUT CTA
=========================== */
.about-cta{
    background:
        linear-gradient(rgba(0,177,64,0.9), rgba(0,120,40,0.9)),
        url('https://images.unsplash.com/photo-1508514177221-188b1cf16e9d?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
    padding:100px 8%;
}
.about-cta-content{
    max-width:800px;
    margin:auto;
}
.about-cta-content h2{
    font-size:55px;
    margin-bottom:20px;
}
.about-cta-content p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:40px;
}
.about-cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
 
/* ===========================
   CONTACT HERO
=========================== */
.contact-hero{
    min-height:65vh;
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    padding:120px 8% 80px;
}
.contact-hero-content{
    max-width:850px;
}
.contact-hero h1{
    font-size:60px;
    margin-bottom:25px;
}
.contact-hero p{
    font-size:20px;
    line-height:1.8;
}
 
/* ===========================
   CONTACT INFO
=========================== */
.contact-info-section{
    background:white;
}
.contact-info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}
.contact-info-card{
    background:#f5fff7;
    padding:40px 30px;
    border-radius:25px;
    text-align:center;
    transition:0.4s;
}
.contact-info-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}
.contact-icon{
    font-size:50px;
    margin-bottom:20px;
}
.contact-info-card h3{
    margin-bottom:15px;
    font-size:24px;
}
.contact-info-card p{
    color:#555;
    line-height:1.8;
}
 
/* ===========================
   CONTACT FORM
=========================== */
.contact-form-section{
    background:#f5fff7;
}
.contact-form-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}
.form-left span{
    color:#00b140;
    font-weight:600;
}
.form-left h2{
    font-size:48px;
    margin:20px 0;
    line-height:1.3;
}
.form-left p{
    color:#555;
    line-height:1.9;
}
.form-right{
    background:white;
    padding:45px;
    border-radius:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}
.form-right form{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.form-right input,
.form-right select,
.form-right textarea{
    width:100%;
    padding:18px;
    border:1px solid #ddd;
    border-radius:15px;
    outline:none;
    font-size:16px;
}
.form-right textarea{
    resize:none;
}
.form-right button{
    border:none;
    cursor:pointer;
}
 
/* ===========================
   MAP SECTION
=========================== */
.map-section{
    background:white;
}
.map-container{
    border-radius:30px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
 
/* ===========================
   CONTACT CTA
=========================== */
.contact-cta{
    background:
        linear-gradient(rgba(0,177,64,0.9), rgba(0,120,40,0.9)),
        url('https://images.unsplash.com/photo-1497440001374-f26997328c1b?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    padding:100px 8%;
    text-align:center;
    color:white;
}
.contact-cta-content{
    max-width:850px;
    margin:auto;
}
.contact-cta-content h2{
    font-size:55px;
    margin-bottom:25px;
}
.contact-cta-content p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:40px;
}
.contact-cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
 
/* ===========================
   DETAILED PRODUCT CARD
=========================== */
.detailed-product-card{
    background:white;
    padding:40px;
    border-radius:30px;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    margin-bottom:40px;
    transition:0.4s;
}
.detailed-product-card:hover{
    transform:translateY(-10px);
}
.top-badge{
    display:inline-block;
    background:#eafff0;
    color:#00b140;
    padding:10px 20px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:20px;
}
.detailed-product-card h2{
    font-size:42px;
    color:#111;
    margin-bottom:10px;
}
.brand-name{
    color:#666;
    margin-bottom:25px;
    font-size:16px;
}
.capacity-pills{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:20px 0;
}
.capacity-pills span{
    background:#eafff0;
    color:#00b140;
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}
.detailed-desc{
    font-size:17px;
    line-height:1.8;
    color:#555;
    margin-top:20px;
}
.price-box{
    margin-top:30px;
    background:#f8fff9;
    padding:25px;
    border-radius:20px;
}
.price-box h3{
    color:#00b140;
    font-size:34px;
    margin-bottom:10px;
}
.warranty-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    margin-top:30px;
}
.warranty-item{
    background:#f5f5f5;
    padding:18px;
    border-radius:15px;
    font-weight:600;
}
 
/* ===========================
   PRODUCT TABS
=========================== */
.product-tabs{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:35px;
    margin-bottom:35px;
}
.tab-btn{
    background:#f5f5f5;
    color:#333;
    border:none;
    outline:none;
    padding:14px 28px;
    border-radius:50px;
    font-size:15px;
    font-weight:600;
    font-family:'Poppins',sans-serif;
    cursor:pointer;
    transition:0.3s ease;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
}
.tab-btn:hover{
    background:#00b140;
    color:white;
    transform:translateY(-3px);
}
.tab-btn.active{
    background:#00b140;
    color:white;
    box-shadow:0 8px 20px rgba(0,177,64,0.3);
}
 
/* ===========================
   SPEC TABLE
=========================== */
.specs-box{
    margin-top:30px;
}
.spec-table{
    width:100%;
    border-collapse:collapse;
    margin-top:20px;
}
.spec-table tr{
    border-bottom:1px solid #e5e5e5;
}
.spec-table td{
    padding:18px 10px;
    font-size:16px;
}
.spec-table td:first-child{
    font-weight:600;
    color:#111;
    width:40%;
}
.spec-table td:last-child{
    color:#555;
}
 
/* ===========================
   PRODUCT IMAGE
=========================== */
.product-image{
    width:100%;
    height:320px;
    overflow:hidden;
    border-radius:25px;
    margin-bottom:30px;
}
.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:0.5s ease;
}
.product-image:hover img{
    transform:scale(1.08);
}
 
/* ===========================
   CATALOG
=========================== */
.catalog-hero{
    padding:120px 10% 80px;
    text-align:center;
    background:linear-gradient(135deg, #eafff0, #ffffff);
}
.catalog-hero h1{
    font-size:48px;
    color:#111;
    margin-bottom:20px;
}
.catalog-hero p{
    font-size:18px;
    color:#555;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}
.catalog-section{
    padding:80px 10%;
}
.catalog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}
.catalog-card{
    background:white;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,0.08);
    transition:0.4s ease;
}
.catalog-card:hover{
    transform:translateY(-10px);
}
.catalog-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}
.catalog-content{
    padding:30px;
}
.catalog-tag{
    display:inline-block;
    background:#eafff0;
    color:#00b140;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    margin-bottom:18px;
}
.catalog-content h3{
    font-size:28px;
    margin-bottom:15px;
    color:#111;
}
.catalog-content p{
    color:#555;
    line-height:1.8;
    margin-bottom:20px;
}
.catalog-price{
    font-size:30px;
    color:#00b140;
    font-weight:700;
    margin-bottom:25px;
}
.catalog-card-link{
    text-decoration:none;
    color:inherit;
    display:block;
}
 
/* ===========================
   SHOPPING PAGE
=========================== */
.products-list-hero{
    padding:120px 10%;
    text-align:center;
    background:linear-gradient(to right, #052e16, #16a34a);
    color:white;
}
.products-list-hero h1{
    font-size:50px;
    margin-bottom:20px;
}
.products-list-hero p{
    font-size:18px;
    max-width:700px;
    margin:auto;
}
.shopping-products{
    padding:80px 10%;
    background:#f8fafc;
}
.shopping-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:35px;
}
.shopping-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    transition:0.3s;
    padding-bottom:30px;
}
.shopping-card:hover{
    transform:translateY(-10px);
}
.shopping-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}
.shopping-card h3{
    font-size:28px;
    margin:20px;
    color:#052e16;
}
.shopping-card p{
    margin:0 20px 20px;
    color:#475569;
    line-height:1.7;
}
.shopping-price{
    font-size:30px;
    font-weight:700;
    color:#16a34a;
    margin:20px;
}
.shopping-card .btn{
    margin-left:20px;
}
 
/* ===========================
   SCROLL REVEAL
=========================== */
.reveal{
    position:relative;
    transform:translateY(100px);
    opacity:0;
    transition:all 1s ease;
}
.reveal.active-reveal{
    transform:translateY(0);
    opacity:1;
}
 
/* ===========================
   WHATSAPP BUTTON
=========================== */
.whatsapp-btn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:white;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
    z-index:999;
    transition:0.4s;
    animation:pulse 2s infinite;
}
.whatsapp-btn:hover{
    transform:scale(1.1);
}
 
/* ===========================
   PREMIUM HOVER SHINE EFFECT
=========================== */
.why-card,
.product-card,
.mission-card,
.team-card,
.value-card,
.certification-card,
.contact-info-card,
.about-stat-card{
    position:relative;
    overflow:hidden;
}
.why-card::before,
.product-card::before,
.mission-card::before,
.team-card::before,
.value-card::before,
.certification-card::before,
.contact-info-card::before,
.about-stat-card::before{
    content:'';
    position:absolute;
    top:-100%;
    left:-100%;
    width:200%;
    height:200%;
    background:linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform:rotate(25deg);
    transition:0.7s;
}
.why-card:hover::before,
.product-card:hover::before,
.mission-card:hover::before,
.team-card:hover::before,
.value-card:hover::before,
.certification-card:hover::before,
.contact-info-card:hover::before,
.about-stat-card:hover::before{
    top:100%;
    left:100%;
}
 
/* ===========================
   ANIMATIONS
=========================== */
@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
@keyframes pulse{
    0%{ box-shadow:0 0 0 0 rgba(37,211,102,0.6); }
    70%{ box-shadow:0 0 0 20px rgba(37,211,102,0); }
    100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}
 
/* ===========================
   RESPONSIVE
=========================== */
@media(max-width:991px){
    .hero h1{ font-size:50px; }
    .cta-content h2{ font-size:40px; }
    .products-hero h1{ font-size:50px; }
    .products-cta-content h2{ font-size:42px; }
    .about-hero h1{ font-size:48px; }
    .about-cta-content h2{ font-size:42px; }
    .contact-hero h1{ font-size:48px; }
    .form-left h2{ font-size:38px; }
    .contact-cta-content h2{ font-size:42px; }
}
@media(max-width:768px){
    .navbar{
        flex-direction:column;
        gap:20px;
        padding:15px 5%;
    }
    .nav-links{ gap:15px; }
    .hero{ text-align:center; }
    .hero-buttons{ justify-content:center; flex-wrap:wrap; }
    .stats{ justify-content:center; }
    .hero h1{ font-size:42px; }
    .section-title h2{ font-size:34px; }
    .cta-content h2{ font-size:34px; }
    .cta-content p{ font-size:18px; }
    .products-hero h1{ font-size:40px; }
    .products-hero p{ font-size:18px; }
    .featured-product{ transform:none; }
    .comparison-table th,
    .comparison-table td{ padding:16px; font-size:14px; }
    .products-cta-content h2{ font-size:34px; }
    .about-hero h1{ font-size:38px; }
    .about-hero p{ font-size:18px; }
    .timeline::before{ left:20px; }
    .timeline-item{
        width:100%;
        left:0 !important;
        padding-left:60px;
        text-align:left !important;
    }
    .about-cta-content h2{ font-size:34px; }
    .contact-form-container{ grid-template-columns:1fr; }
    .contact-hero h1{ font-size:38px; }
    .contact-hero p{ font-size:18px; }
    .form-left h2{ font-size:32px; }
    .contact-cta-content h2{ font-size:34px; }
}
@media(max-width:500px){
    .hero h1{ font-size:34px; }
    .section-title h2{ font-size:28px; }
    .cta-content h2{ font-size:28px; }
    .hero-buttons{ flex-direction:column; }
    .products-hero h1{ font-size:32px; }
    .products-cta-content h2{ font-size:28px; }
    .about-hero h1{ font-size:30px; }
    .about-cta-content h2{ font-size:28px; }
    .contact-hero h1{ font-size:30px; }
    .form-right{ padding:30px 20px; }
    .contact-cta-content h2{ font-size:28px; }
}
 
/* ===========================
   GALLERY PAGE
=========================== */
.gallery-hero{
    min-height:60vh;
    background:
        linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
        url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    padding:120px 8% 80px;
}
.gallery-hero-content{
    max-width:800px;
}
.gallery-hero h1{
    font-size:60px;
    margin-bottom:20px;
    line-height:1.2;
}
.gallery-hero p{
    font-size:20px;
    line-height:1.8;
}
 
/* GALLERY FILTER */
.gallery-filter{
    padding:40px 8%;
    background:white;
    text-align:center;
}
.gallery-filter-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}
.gallery-filter-btn{
    padding:12px 28px;
    border:none;
    border-radius:50px;
    background:#f1fdf5;
    color:#00b140;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
    font-size:15px;
    font-family:'Poppins',sans-serif;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active-filter{
    background:#00b140;
    color:white;
}
 
/* GALLERY GRID */
.gallery-section{
    background:#f5fff7;
    padding:60px 8%;
}
.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill, minmax(320px,1fr));
    gap:25px;
}
.gallery-card{
    border-radius:20px;
    overflow:hidden;
    position:relative;
    background:white;
    box-shadow:0 8px 30px rgba(0,0,0,0.08);
    cursor:pointer;
    transition:0.4s ease;
}
.gallery-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}
.gallery-card img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.5s ease;
    display:block;
}
.gallery-card:hover img{
    transform:scale(1.08);
}
.gallery-overlay{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    padding:25px 20px 20px;
    background:linear-gradient(transparent, rgba(0,0,0,0.75));
    color:white;
    transform:translateY(10px);
    opacity:0;
    transition:0.4s ease;
}
.gallery-card:hover .gallery-overlay{
    opacity:1;
    transform:translateY(0);
}
.gallery-overlay h4{
    font-size:18px;
    font-weight:600;
    margin-bottom:5px;
}
.gallery-overlay p{
    font-size:14px;
    opacity:0.85;
}
.gallery-tag-label{
    position:absolute;
    top:15px;
    left:15px;
    background:#00b140;
    color:white;
    padding:6px 14px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}
 
/* LIGHTBOX */
.lightbox{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.92);
    z-index:9999;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    padding:20px;
}
.lightbox.active{
    display:flex;
}
.lightbox img{
    max-width:90vw;
    max-height:75vh;
    border-radius:16px;
    object-fit:contain;
    box-shadow:0 20px 60px rgba(0,0,0,0.5);
}
.lightbox-caption{
    color:white;
    margin-top:20px;
    text-align:center;
    font-size:18px;
    font-weight:500;
}
.lightbox-close{
    position:absolute;
    top:25px;
    right:30px;
    color:white;
    font-size:40px;
    cursor:pointer;
    line-height:1;
    transition:0.3s;
}
.lightbox-close:hover{
    color:#00b140;
    transform:rotate(90deg);
}
.lightbox-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    color:white;
    font-size:45px;
    cursor:pointer;
    padding:10px 20px;
    transition:0.3s;
    user-select:none;
}
.lightbox-nav:hover{
    color:#00b140;
}
.lightbox-prev{ left:20px; }
.lightbox-next{ right:20px; }
 
/* GALLERY STATS */
.gallery-stats{
    background:white;
    padding:60px 8%;
}
.gallery-stats-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
    text-align:center;
}
.gallery-stat-box{
    padding:30px;
    background:#f5fff7;
    border-radius:20px;
    transition:0.3s;
}
.gallery-stat-box:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}
.gallery-stat-box h3{
    font-size:42px;
    color:#00b140;
    font-weight:700;
    margin-bottom:10px;
}
.gallery-stat-box p{
    color:#555;
    font-weight:500;
}
 
/* GALLERY CTA */
.gallery-cta{
    background:
        linear-gradient(rgba(0,177,64,0.92), rgba(0,120,40,0.92)),
        url('https://images.unsplash.com/photo-1509391366360-2e959784a276?q=80&w=1600&auto=format&fit=crop');
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
    padding:100px 8%;
}
.gallery-cta-content{
    max-width:750px;
    margin:auto;
}
.gallery-cta-content h2{
    font-size:50px;
    margin-bottom:20px;
}
.gallery-cta-content p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}
.gallery-cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}
 
/* GALLERY RESPONSIVE */
@media(max-width:768px){
    .gallery-hero h1{ font-size:38px; }
    .gallery-grid{ grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); }
    .lightbox-nav{ font-size:32px; padding:5px 12px; }
    .gallery-cta-content h2{ font-size:34px; }
}
@media(max-width:500px){
    .gallery-hero h1{ font-size:30px; }
    .gallery-grid{ grid-template-columns:1fr; }
    .gallery-cta-content h2{ font-size:26px; }
}