* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f7faf8;
    color: #222;
}

.container {
    width: 88%;
    max-width: 1200px;
    margin: auto;
}

/* NAVBAR */
.navbar {
    background: #063f25;
    padding: 16px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff !important;
    font-size: 30px;
    font-weight: 800;
}

.navbar-brand img {
    height: 62px;
    width: 62px;
    object-fit: contain;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
}

.navbar-nav .nav-link {
    color: #fff !important;
    font-weight: 700;
    margin-left: 28px;
    font-size: 17px;
}

.navbar-nav .nav-link:hover {
    color: #b7f2c6 !important;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #064126, #0b6b3a);
    color: white;
    padding: 90px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 60px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero .lead {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-logo {
    width: 100%;
    max-width: 480px;
    background: white;
    border-radius: 25px;
    padding: 30px;
    box-shadow: 0 20px 45px rgba(0,0,0,.25);
}

.btn-farm {
    background: #12a05c;
    color: white;
    padding: 14px 32px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    margin-right: 12px;
}

.btn-farm:hover {
    background: #0d834a;
    color: white;
}

.btn-outline-farm {
    border: 2px solid white;
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-farm:hover {
    background: white;
    color: #0b6b3a;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 35px;
}

.call-btn,
.whatsapp-btn {
    text-decoration: none;
    padding: 20px 38px;
    border-radius: 14px;
    font-size: 22px;
    font-weight: 800;
    display: inline-block;
}

.call-btn {
    background: #fff;
    color: #064126;
}

.whatsapp-btn {
    background: #18c66a;
    color: #fff;
}

.call-btn:hover {
    background: #f1f1f1;
    color: #064126;
}

.whatsapp-btn:hover {
    background: #12a05c;
    color: #fff;
}

.floating-whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    background: #18c66a;
    color: #fff;
    border-radius: 50%;
    text-decoration: none;
    font-size: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,.3);
    z-index: 9999;
}

.floating-whatsapp:hover {
    background: #12a05c;
    color: #fff;
}

@media(max-width:768px) {
    .call-btn,
    .whatsapp-btn {
        width: 100%;
        font-size: 18px;
    }
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.section-white {
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2,
.section-title h1 {
    color: #0b6b3a;
    font-size: 44px;
    font-weight: 800;
}

.section-title p {
    max-width: 780px;
    margin: 15px auto 0;
    font-size: 18px;
    line-height: 1.7;
}

/* CARDS */
.farm-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.farm-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0,0,0,.14);
    transition: .3s;
}

.farm-card:hover {
    transform: translateY(-7px);
}

.farm-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.farm-card-body {
    padding: 28px;
    text-align: center;
}

.farm-card h3 {
    color: #0b6b3a;
    font-size: 28px;
    font-weight: 800;
}

.farm-card p {
    line-height: 1.7;
}

/* STATS */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-box {
    background: #fff;
    padding: 30px;
    text-align: center;
    border-radius: 16px;
    box-shadow: 0 8px 22px rgba(0,0,0,.12);
}

.stat-box h3 {
    color: #0b6b3a;
    font-size: 38px;
    font-weight: 900;
}

/* TABLE */
.table-wrapper {
    background: white;
    border-radius: 14px;
    overflow-x: auto;
    box-shadow: 0 8px 22px rgba(0,0,0,.13);
}

.farm-table {
    width: 100%;
    border-collapse: collapse;
}

.farm-table th {
    background: #0b6b3a;
    color: white;
    padding: 16px;
}

.farm-table td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.farm-table tr:nth-child(even) {
    background: #f1f1f1;
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
}

.contact-box {
    background: white;
    border-radius: 18px;
    padding: 35px;
    box-shadow: 0 8px 22px rgba(0,0,0,.13);
}

/* FOOTER */
.site-footer {
    background: #1f2529;
    color: white;
    padding: 38px 20px;
    margin-top: 60px;
}

/* MOBILE */
@media (max-width: 768px) {
    .hero-grid,
    .farm-cards,
    .stats,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero .lead {
        font-size: 21px;
    }

    .navbar-brand {
        font-size: 22px;
    }

    .navbar-nav .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }

    .farm-card img {
        height: 240px;
    }
}