/* =========================================
   CANEPLUS
   PREMIUM JAGGERY WEBSITE CSS
   ========================================= */


/* ---------- VARIABLES ---------- */

:root {
    

    --forest-green: #244b32;
    --dark-green: #173522;

    --jaggery-brown: #8b4e25;
    --jaggery-dark: #5f3218;

    --gold: #d89b35;
    --light-gold: #f0c66d;

    --cream: #f8f4eb;
    --beige: #eadcc3;

    --white: #ffffff;
    --dark: #241b15;
    --gray: #70685f;

    --container: 1200px;

    --radius: 14px;

    --shadow:
        0 10px 30px rgba(45, 30, 15, 0.12);
}


/* ---------- RESET ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    font-family: "Poppins", Arial, sans-serif;

    background: var(--cream);

    color: var(--dark);

    line-height: 1.6;
}


img {

    max-width: 100%;

    display: block;
}


a {

    text-decoration: none;

    color: inherit;
}


button,
input,
textarea,
select {

    font-family: inherit;
}


/* ---------- COMMON ---------- */

.container {

    width: min(90%, var(--container));

    margin: auto;
}


section {

    padding: 90px 0;
}


/* =========================================
   HEADER
   ========================================= */

.header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(248, 244, 235, 0.96);

    backdrop-filter: blur(10px);

    border-bottom:
        1px solid rgba(95, 50, 24, 0.1);
}


.navbar {

    min-height: 75px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.logo {

    font-size: 30px;

    font-weight: 800;

    color: var(--forest-green);

    letter-spacing: -1px;
}


.logo span {

    color: var(--gold);
}


.nav-menu {

    display: flex;

    align-items: center;

    gap: 32px;

    list-style: none;
}


.nav-menu a {

    font-size: 15px;

    font-weight: 500;

    transition: 0.3s;
}


.nav-menu a:hover {

    color: var(--jaggery-brown);
}


.nav-button {

    padding: 11px 22px;

    border-radius: 30px;

    background: var(--forest-green);

    color: white !important;
}


.nav-button:hover {

    background: var(--dark-green);
}


/* =========================================
   HERO
   ========================================= */

.hero {

    min-height: 680px;

    display: flex;

    align-items: center;

    background:

        linear-gradient(
            90deg,
            rgba(248, 244, 235, 0.98) 0%,
            rgba(248, 244, 235, 0.88) 45%,
            rgba(248, 244, 235, 0.2) 100%
        ),

        url("image/BGI.png")
        center / cover
        no-repeat;
}


.hero-content {

    max-width: 650px;
}


.hero-tag {

    display: inline-block;

    padding: 8px 16px;

    margin-bottom: 20px;

    border-radius: 30px;

    background: var(--beige);

    color: var(--jaggery-dark);

    font-size: 14px;

    font-weight: 600;
}


.hero h1 {

    font-size: clamp(42px, 6vw, 76px);

    line-height: 1.05;

    color: var(--forest-green);

    margin-bottom: 25px;

    letter-spacing: -2px;
}


.hero h1 span {

    color: var(--jaggery-brown);
}


.hero p {

    max-width: 560px;

    font-size: 18px;

    color: var(--gray);

    margin-bottom: 35px;
}


/* =========================================
   BUTTONS
   ========================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 14px 28px;

    border-radius: 50px;

    font-size: 15px;

    font-weight: 600;

    border: none;

    transition: 0.3s ease;
}


.btn-primary {

    background: var(--forest-green);

    color: white;
}


.btn-primary:hover {

    background: var(--dark-green);

    transform: translateY(-3px);

    box-shadow: var(--shadow);
}


.btn-secondary {

    margin-left: 10px;

    background: transparent;

    color: var(--jaggery-dark);

    border: 1px solid var(--jaggery-brown);
}


.btn-secondary:hover {

    background: var(--jaggery-brown);

    color: white;
}


/* =========================================
   SECTION HEADING
   ========================================= */

.section-heading {

    max-width: 700px;

    margin:
        0 auto 50px;

    text-align: center;
}


.small-title {

    color: var(--jaggery-brown);

    font-size: 14px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 2px;
}


.section-heading h2 {

    margin-top: 10px;

    margin-bottom: 15px;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    color: var(--forest-green);
}


.section-heading p {

    color: var(--gray);
}


/* =========================================
   PRODUCTS
   ========================================= */

.products {

    background: var(--white);
}


.product-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}


.product-card {

    overflow: hidden;

    background: var(--cream);

    border-radius: var(--radius);

    transition: 0.3s ease;

    border:
        1px solid rgba(95, 50, 24, 0.08);
}


.product-card:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow);
}


.product-image {

    height: 280px;

    overflow: hidden;

    background: var(--beige);
}


.product-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.5s;
}


.product-card:hover
.product-image img {

    transform: scale(1.06);
}


.product-info {

    padding: 22px;
}


.product-info h3 {

    color: var(--forest-green);

    font-size: 20px;

    margin-bottom: 8px;
}


.product-info p {

    font-size: 14px;

    color: var(--gray);

    margin-bottom: 15px;
}


.product-price {

    color: var(--jaggery-brown);

    font-size: 16px;

    font-weight: 700;
}


/* =========================================
   ABOUT
   ========================================= */

.about {

    background: var(--cream);
}


.about-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    align-items: center;

    gap: 70px;
}


.about-image {

    border-radius: 20px;

    overflow: hidden;

    box-shadow: var(--shadow);
}


.about-content h2 {

    margin:
        12px 0 20px;

    font-size: 46px;

    line-height: 1.15;

    color: var(--forest-green);
}


.about-content p {

    color: var(--gray);

    margin-bottom: 18px;
}


/* =========================================
   QUALITY / FEATURES
   ========================================= */

.features {

    background: var(--forest-green);

    color: white;
}


.features .section-heading h2 {

    color: white;
}


.features .section-heading p {

    color: rgba(255,255,255,0.75);
}


.features .small-title {

    color: var(--light-gold);
}


.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 25px;
}


.feature-card {

    padding: 30px 20px;

    text-align: center;

    border:
        1px solid rgba(255,255,255,0.15);

    border-radius: var(--radius);

    transition: 0.3s;
}


.feature-card:hover {

    background:
        rgba(255,255,255,0.08);

    transform: translateY(-5px);
}


.feature-icon {

    font-size: 38px;

    margin-bottom: 15px;
}


.feature-card h3 {

    margin-bottom: 8px;

    font-size: 19px;
}


.feature-card p {

    font-size: 14px;

    opacity: 0.8;
}


/* =========================================
   WHY US
   ========================================= */

.why-us {

    background: var(--white);
}


.why-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 25px;
}


.why-card {

    padding: 35px;

    background: var(--cream);

    border-radius: var(--radius);

    border-left:
        4px solid var(--gold);
}


.why-card h3 {

    color: var(--forest-green);

    margin-bottom: 10px;
}


.why-card p {

    color: var(--gray);

    font-size: 15px;
}


/* =========================================
   EXPORT CTA
   ========================================= */

.cta {

    background:

        linear-gradient(
            rgba(36, 75, 50, 0.92),
            rgba(36, 75, 50, 0.92)
        ),

        url("image/cane.jpg")
        center / cover;

    color: white;

    text-align: center;
}


.cta h2 {

    font-size:
        clamp(34px, 5vw, 56px);

    margin-bottom: 15px;
}


.cta p {

    max-width: 600px;

    margin:
        0 auto 30px;

    opacity: 0.85;
}


.cta .btn-secondary {

    color: white;

    border-color: white;
}


.cta .btn-secondary:hover {

    background: white;

    color: var(--forest-green);
}


/* =========================================
   CONTACT
   ========================================= */

.contact {

    background: var(--cream);
}


.contact-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 50px;
}


.contact-info h2 {

    color: var(--forest-green);

    font-size: 40px;

    margin:
        12px 0 20px;
}


.contact-info p {

    color: var(--gray);

    margin-bottom: 20px;
}


.contact-item {

    margin-bottom: 15px;
}


.contact-item strong {

    color: var(--jaggery-dark);
}


/* =========================================
   FORM
   ========================================= */

.contact-form {

    background: white;

    padding: 35px;

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}


.form-group {

    margin-bottom: 18px;
}


.form-group label {

    display: block;

    margin-bottom: 7px;

    font-size: 14px;

    font-weight: 600;
}


.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    padding: 13px 15px;

    border:
        1px solid #ddd2c2;

    border-radius: 8px;

    outline: none;

    background: #fffdf8;
}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color:
        var(--jaggery-brown);
}


.form-group textarea {

    min-height: 130px;

    resize: vertical;
}


/* =========================================
   FOOTER
   ========================================= */

.footer {

    padding:
        60px 0 25px;

    background: var(--dark-green);

    color: white;
}


.footer-grid {

    display: grid;

    grid-template-columns:
        2fr 1fr 1fr 1fr;

    gap: 40px;

    margin-bottom: 40px;
}


.footer-logo {

    font-size: 30px;

    font-weight: 800;
}


.footer-logo span {

    color: var(--gold);
}


.footer p {

    margin-top: 15px;

    color:
        rgba(255,255,255,0.7);

    font-size: 14px;
}


.footer h4 {

    margin-bottom: 15px;
}


.footer ul {

    list-style: none;
}


.footer li {

    margin-bottom: 8px;
}


.footer li a {

    color:
        rgba(255,255,255,0.7);

    font-size: 14px;

    transition: 0.3s;
}


.footer li a:hover {

    color: var(--light-gold);
}


.footer-bottom {

    padding-top: 25px;

    border-top:
        1px solid rgba(255,255,255,0.15);

    text-align: center;

    color:
        rgba(255,255,255,0.6);

    font-size: 13px;
}


/* =========================================
   WHATSAPP
   ========================================= */

.whatsapp {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 58px;

    height: 58px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #25d366;

    color: white;

    font-size: 26px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.2);

    z-index: 999;

    transition: 0.3s;
}


.whatsapp:hover {

    transform: scale(1.1);
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 1000px) {

    .product-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .feature-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .footer-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

    section {

        padding: 65px 0;
    }


    .nav-menu {

        display: none;
    }


    .hero {

        min-height: 600px;

        background:

            linear-gradient(
                rgba(248,244,235,0.88),
                rgba(248,244,235,0.88)
            ),

            url("image/cane.jpg")
            center / cover;
    }


    .hero h1 {

        font-size: 45px;
    }


    .hero p {

        font-size: 16px;
    }


    .btn {

        padding:
            12px 20px;
    }


    .about-grid,
    .contact-grid {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .about-content h2 {

        font-size: 36px;
    }


    .why-grid {

        grid-template-columns: 1fr;
    }
}


/* =========================================
   SMALL MOBILE
   ========================================= */

@media (max-width: 550px) {

    .product-grid,
    .feature-grid,
    .footer-grid {

        grid-template-columns: 1fr;
    }


    .hero h1 {

        font-size: 38px;
    }


    .btn-secondary {

        margin-left: 0;

        margin-top: 10px;
    }


    .contact-form {

        padding: 25px;
    }
}


