/* =========================
   GLOBAL
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:;
    background:#f8f8f6;
    overflow-x:hidden;
}

img{
    width:100%;
    display:block;
}

.tc-container,
.premium-plant,
.why-choose,
.contact-section,
.bottom-strip{
    width:95%;
    max-width:1300px;
    margin:auto;
}

/* =========================
   HERO SECTION
========================= */

.tc-hero{
    padding:140px 0 70px; /* top right/left bottom */
    background:#fafaf7;
}
.tc-hero .tc-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.tc-left{
    flex:1;
}

.tc-tag{
    color:#4b8d3d;
    font-size:14px;
    font-weight:600;
    display:inline-flex;
    gap:8px;
    align-items:center;
    margin-bottom:20px;
}

.tc-left h1{
    font-size:40px;
    line-height:1;
    font-weight:800;
    color:#111;
    margin-bottom:20px;
}

.tc-left p{
    color:#666;
    font-size:18px;
    line-height:1.8;
    max-width:650px;
}

.tc-features{
    display:flex;
    gap:25px;
    margin-top:40px;
    flex-wrap:wrap;
}

.tc-feature{
    text-align:center;
}

.tc-icon{
    width:80px;
    height:80px;
    background:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    margin-bottom:10px;
}

.tc-icon i{
    font-size:34px;
    color:#2e7d32;
}

.tc-feature h5{
    font-size:17px;
    margin-bottom:5px;
}

.tc-feature span{
    color:#666;
    font-size:14px;
}

.tc-btns{
    margin-top:40px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.tc-btn-primary{
    background:#2e7d32;
    color:#fff;
    padding:14px 30px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
}

.tc-btn-outline{
    border:2px solid #2e7d32;
    color:#2e7d32;
    padding:14px 30px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
}

.hero-right{
    position:relative;
    width:700px;
    height:650px;
}

/* RIGHT IMAGE */

.plant-img-main{
    position:absolute;
    right:0;
    top:0;
    width:520px;
    height:650px;
    overflow:hidden;
    border-radius:40px;
}

.plant-img-main img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* LEFT IMAGE */

.banana-img{
    position:absolute;
    left:0;
    top:0;
    width:300px;
    height:650px;
    overflow:hidden;
    z-index:2;

    border-top-right-radius:160px;
    border-bottom-right-radius:160px;

    border-right:6px solid #fff;
}

.banana-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}
/* =========================
   PREMIUM PLANT
========================= */

.premium-plant{
    background:#fff;
    margin-top:30px;
    border-radius:35px;
    padding:70px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#2e7d32;
    font-weight:700;
}

.section-title h2{
    font-size:48px;
    margin-top:15px;
    margin-bottom:15px;
}

.section-title p{
    color:#666;
}

.premium-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
}

.premium-images{
    display:flex;
    gap:20px;
    position:relative;
}

.plant-img{
    border-radius:20px;
    overflow:hidden;
    flex:1;
}

.plant-img img{
    height:100%;
    object-fit:cover;
}

.quality-badge{
    position:absolute;
    left:-50px;
    bottom:20px;
    width:150px;
    height:150px;
    background:#fff;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    z-index:10;
}

.quality-badge h3{
    margin:0;
    font-size:30px;
    line-height:1;
    color:#2e7d32;
    font-weight:700;
}

.quality-badge span{
    display:block;
    margin-top:10px;
    font-size:22px;
    line-height:1.3;
    color:#333;
    width:90px;
}

.specification-card{
    border-radius:25px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.specification-card h3{
    padding:25px;
    font-size:28px;
    color:#2e7d32;
}

.spec-row{
    padding:20px 25px;
    border-top:1px solid #eee;
    display:grid;
    grid-template-columns:180px 1fr;
    gap:20px;
    align-items:start;
}

.spec-label{
    font-weight:600;
}

.spec-value{
    font-weight:700;
    line-height:1.7;
}

.spec-row i{
    color:#2e7d32;
    margin-right:10px;
}

.spec-bottom{
    background:linear-gradient(90deg,#0f5e18,#2e7d32);
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.spec-bottom div{
    text-align:center;
    padding:25px 15px;
    color:#fff;
}

.spec-bottom i{
    font-size:28px;
    margin-bottom:10px;
    display:block;
}

/* =========================
   WHY CHOOSE
========================= */

.why-choose{
    padding:80px 0;
    text-align:center;
}

.why-choose h2{
    font-size:48px;
    margin-bottom:50px;
}

.why-choose span{
    color:#2e7d32;
}

.choose-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
}

.choose-card{
    background:#eef5e8;
    padding:35px 20px;
    border-radius:20px;
    transition:.3s;
}

.choose-card:hover{
    transform:translateY(-8px);
}

.choose-card i{
    font-size:50px;
    color:#2e7d32;
    margin-bottom:15px;
}

/* =========================
   CONTACT
========================= */

.contact-section{
    margin-bottom:60px;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    overflow:hidden;
    border-radius:30px;
}

.contact-left{
    background:linear-gradient(rgba(0,70,20,.8),rgba(0,70,20,.8)),
    url('images/contact-bg.jpg');
    background-size:cover;
    color:#fff;
    padding:60px;
    position:relative;
}

.contact-left span{
    color:#c4f07f;
    font-weight:600;
}

.contact-left h2{
    font-size:52px;
    margin:20px 0;
}

.contact-left h2 span{
    color:#ffe56d;
}

.contact-left p{
    line-height:1.8;
}

.contact-left ul{
    list-style:none;
    margin-top:30px;
}

.contact-left li{
    margin-bottom:20px;
    display:flex;
    gap:15px;
    align-items:center;
}

.contact-left i{
    width:30px;
    height:30px;
    background:#fff;
    color:#2e7d32;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.jar-plant{
    position:absolute;
    right:30px;
    bottom:0;
    width:220px;
}

.callback-form{
    background:#fff;
    padding:50px;
}

.callback-form h3{
    margin-bottom:25px;
    font-size:32px;
    color:#2e7d32;
}

.row2{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
}

.callback-form input,
.callback-form textarea{
    width:100%;
    border:1px solid #ddd;
    padding:14px;
    border-radius:10px;
    margin-bottom:15px;
}

.callback-form button{
    border:none;
    background:#2e7d32;
    color:#fff;
    padding:14px 35px;
    border-radius:10px;
    cursor:pointer;
    font-weight:600;
}

/* =========================
   BOTTOM STRIP
========================= */

.bottom-strip{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:25px;
    padding:35px 0;
    border-top:1px solid #e6e6e6;
}

.bottom-strip div{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    color:#444;
}

.bottom-strip i{
    color:#2e7d32;
    font-size:28px;
}

/* =========================
   RESPONSIVE
========================= */

/* ==========================================
   LARGE TABLETS
========================================== */

@media (max-width:1200px){

    .hero-right{
        width:600px;
        height:550px;
    }

    .plant-img-main{
        width:450px;
        height:550px;
    }

    .banana-img{
        width:250px;
        height:550px;
    }

    .tc-left h1{
        font-size:50px;
    }

    .choose-grid{
        grid-template-columns:repeat(3,1fr);
    }
}


/* ==========================================
   TABLETS
========================================== */

@media (max-width:991px){

    .tc-hero .tc-container{
        flex-direction:column;
        text-align:center;
    }

    .premium-grid{
        grid-template-columns:1fr;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .hero-right{
        width:100%;
        max-width:650px;
        height:500px;
        margin-top:50px;
    }

    .plant-img-main{
        width:75%;
        height:500px;
    }

    .banana-img{
        width:40%;
        height:500px;
    }

    .tc-features{
        justify-content:center;
    }

    .tc-btns{
        justify-content:center;
    }

    .choose-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .bottom-strip{
        grid-template-columns:repeat(2,1fr);
    }

    .spec-bottom{
        grid-template-columns:repeat(2,1fr);
    }

    .row2{
        grid-template-columns:1fr;
    }

    .premium-plant{
        padding:40px;
    }

    .section-title h2,
    .why-choose h2,
    .contact-left h2{
        font-size:36px;
    }

    .quality-badge{
        left:0;
        bottom:20px;
        width:120px;
        height:120px;
    }

    .quality-badge h3{
        font-size:28px;
    }

    .quality-badge span{
        font-size:16px;
    }

    .jar-plant{
        display:none;
    }
}


/* ==========================================
   MOBILE
========================================== */

@media (max-width:767px){

    .tc-hero{
        padding:110px 0 50px;
    }

    .tc-hero{
        padding-top:150px;
    }
    .tc-left h1{
        font-size:34px;
        line-height:1.2;
    }

    .tc-left p{
        font-size:16px;
    }

    .hero-right{
        height:400px;
    }

    .plant-img-main{
        width:75%;
        height:400px;
        border-radius:25px;
    }

    .banana-img{
        width:42%;
        height:400px;
        border-top-right-radius:100px;
        border-bottom-right-radius:100px;
    }

    .premium-plant{
        padding:30px 20px;
    }

    .section-title h2{
        font-size:32px;
    }

    .premium-images{
        flex-direction:column;
    }

    .plant-img{
        height:280px;
    }

    .quality-badge{
        width:100px;
        height:100px;
        left:10px;
        bottom:10px;
    }

    .quality-badge h3{
        font-size:22px;
    }

    .quality-badge span{
        font-size:13px;
        width:auto;
    }

    .spec-row{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
    }

    .specification-card h3{
        font-size:24px;
    }

    .contact-left,
    .callback-form{
        padding:30px 20px;
    }

    .contact-left h2{
        font-size:30px;
    }

    .spec-bottom{
        grid-template-columns:repeat(2,1fr);
    }
}


/* ==========================================
   SMALL MOBILE
========================================== */

@media (max-width:576px){

    .choose-grid,
    .bottom-strip,
    .spec-bottom{
        grid-template-columns:1fr;
    }

    .tc-tag{
        font-size:12px;
    }

    .tc-left h1{
        font-size:28px;
    }

    .hero-right{
        height:320px;
    }

    .plant-img-main{
        height:320px;
    }

    .banana-img{
        height:320px;
    }

    .tc-btns{
        flex-direction:column;
    }

    .tc-btn-primary,
    .tc-btn-outline{
        width:100%;
        justify-content:center;
    }

    .section-title h2{
        font-size:28px;
    }

    .why-choose h2{
        font-size:28px;
    }

    .contact-left h2{
        font-size:26px;
    }

    .quality-badge{
        width:90px;
        height:90px;
    }

    .quality-badge h3{
        font-size:20px;
    }

    .quality-badge span{
        font-size:12px;
        line-height:1.2;
    }

    .bottom-strip div{
        justify-content:center;
        text-align:center;
    }
}
/* Tablet */
@media (max-width: 768px){

    .contact-left ul{
        margin-top:20px;
    }

    .contact-left li{
        gap:12px;
        margin-bottom:18px;
        align-items:flex-start;
    }

    .contact-left i{
        width:40px;
        height:40px;
        font-size:16px;
        flex-shrink:0;
    }

}

/* Mobile */
@media (max-width: 576px){

    .contact-left li{
        gap:10px;
        margin-bottom:15px;
    }

    .contact-left i{
        width:36px;
        height:36px;
        font-size:14px;
    }

    .contact-left li span,
    .contact-left li p,
    .contact-left li a{
        font-size:14px;
        line-height:1.5;
        word-break:break-word;
    }

}
/* Tablet */
@media (max-width: 768px){

    .spec-row{
        grid-template-columns:150px 1fr;
        gap:15px;
        padding:18px 20px;
    }

    .spec-label{
        font-size:15px;
    }

    .spec-value{
        font-size:15px;
        line-height:1.6;
    }

}
/* Mobile */
@media (max-width: 576px){

    .spec-row{
        grid-template-columns:1fr;
        gap:8px;
        padding:15px;
    }

    .spec-label{
        font-size:15px;
        display:flex;
        align-items:center;
    }

    .spec-value{
        font-size:14px;
        line-height:1.6;
        padding-left:30px; /* aligns with icon */
    }

    .spec-row i{
        margin-right:8px;
    }

}