/* Variables */
:root {
    --harvest-gold: #C89B3C;
    --forest-green: #164A2B;
    --bg-light: #f8f8f5;
    --white: #ffffff;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: 0.3s ease;
}

/* Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    color: #222;
    font-family: var(--font-body);
}

img {
    display: block;
    max-width: 100%;
}

button {
    cursor: pointer;
    transition: var(--transition-smooth);
}

button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Typography */
.section-title,
.center-title {
    text-align: center;
}

.section-title {
    margin-bottom: 60px;
}

.section-title h2 {
    color: var(--forest-green);
    font-size: 54px;
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--harvest-gold);
    font-size: 22px;
    font-weight: 600;
}

.section-title span {
    display: block;
    color: #666;
    font-size: 15px;
    margin-top: 12px;
}

.center-title {
    color: var(--forest-green);
    font-size: 36px;
    font-family: var(--font-heading);
    margin: 70px 0 35px;
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.divider {
    width: 120px;
    height: 4px;
    background: var(--harvest-gold);
    border-radius: 10px;
    margin: 80px auto;
}

.fade {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s;
}

.fade.show {
    opacity: 1;
    transform: none;
}

/* Consolidated Grids */
.about-highlights,
.business-grid,
.wellness-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.about-highlights,
.therapy-grid,
.project-grid,
.agro-product-grid,
.value-box {
    gap: 30px;
}

.services-grid,
.benefit-grid,
.principle-grid,
.farm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.therapy-grid,
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.agro-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.wellness-gallery,
.benefit-grid { gap: 20px; }
.principle-grid { gap: 22px; }
.services-grid { gap: 25px; }
.farm-grid { gap: 24px; margin-top: 35px; }

/* Consolidated Hover Effects */
.highlight-card:hover,
.business-card:hover,
.therapy-card:hover,
.project-card:hover,
.product-card:hover {
    transform: translateY(-10px);
}

.service-card:hover,
.principle-grid div:hover,
.agro-product-card:hover,
.farm-card:hover {
    transform: translateY(-8px);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: var(--white);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 70px;
}

.logo {
    color: var(--forest-green);
    font-size: 32px;
    font-weight: 700;
    font-family: var(--font-heading);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    position: relative;
    color: var(--forest-green);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.nav-links a::after {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    content: "";
    background: var(--harvest-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--harvest-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

.quick-links a {
    color: var(--white);
    text-decoration: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 10px 20px;
    transition: var(--transition-smooth);
}

.quick-links a:hover {
    color: var(--forest-green);
    background: var(--white);
}

.nav-btn {
    color: var(--white);
    font-weight: 600;
    background: var(--harvest-gold);
    border: none;
    border-radius: 25px;
    padding: 12px 25px;
    transition: var(--transition-smooth);
}

.nav-btn:hover,
.hero-buttons button:hover,
.about button:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

/* Hero */
.hero {
    display: flex;
    align-items: center;
    height: calc(100vh - 90px);
    background-image: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("images/hero.jpg");
    background-size: cover;
    background-position: center;
    padding-left: 80px;
    margin-top: 90px;
}

.hero-content {
    max-width: 650px;
    color: var(--white);
}

.hero-tag {
    display: inline-block;
    color: var(--white);
    font-size: 14px;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 8px 18px;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
}

.hero h1 {
    font-size: 70px;
    font-weight: 700;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.hero p {
    font-size: 18px;
    line-height: 1.7;
    margin-top: 25px;
}

.hero-buttons {
    margin-top: 35px;
}

.hero-buttons button {
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    margin-right: 15px;
    transition: var(--transition-smooth);
}

.hero-buttons button:first-child {
    color: var(--white);
    background: var(--harvest-gold);
}

.hero-buttons button:last-child {
    color: var(--forest-green);
    background: var(--white);
}

/* About */
.about {
    background: var(--bg-light);
    padding: 100px 0;
}

.about-showcase {
    position: relative;
    max-width: 900px;
    margin: 0 auto 80px;
}

.about-main-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.about-floating-image {
    position: absolute;
    right: -40px;
    bottom: -40px;
}

.about-floating-image img {
    width: 260px;
    border: 8px solid var(--white);
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.about-description {
    max-width: 800px;
    text-align: center;
    margin: 70px auto 0;
}

.about-description p {
    color: #555;
    font-size: 18px;
    line-height: 1.9;
}

.about-highlights {
    margin-top: 70px;
}

.highlight-card {
    color: #666;
    text-align: center;
    background: var(--white);
    border-top: 5px solid var(--harvest-gold);
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 35px 30px;
    transition: var(--transition-smooth);
}

.highlight-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.highlight-card h3 {
    color: var(--forest-green);
    font-size: 24px;
    margin-bottom: 15px;
}

.highlight-card p {
    line-height: 1.7;
}

/* Stats */
.stats {
    background: var(--forest-green);
    padding: 90px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    color: var(--white);
    text-align: center;
}

.stat-card h2 {
    color: var(--harvest-gold);
    font-size: 60px;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 18px;
}

/* Business */
.businesses {
    text-align: center;
    background: var(--bg-light);
    padding: 100px 80px;
}

.businesses h2 {
    color: var(--forest-green);
    font-size: 55px;
    font-family: var(--font-heading);
    margin-bottom: 60px;
}

.business-grid {
    gap: 40px;
}

.business-card {
    display: block;
    color: inherit;
    text-align: center;
    text-decoration: none;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    transition: var(--transition-smooth);
}

.business-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.business-card img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin: 0 auto 20px;
    transition: transform 0.35s ease;
}

.business-card:hover img {
    transform: scale(1.05);
}

.business-content h3 {
    color: #1d3b2b;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 15px;
}

.explore-btn {
    display: inline-block;
    color: var(--white);
    font-weight: 600;
    background: #0d5c2f;
    border-radius: 30px;
    padding: 10px 22px;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.business-card:hover .explore-btn {
    opacity: 1;
    transform: translateY(0);
}

.image-break {
    width: 100%;
    overflow: hidden;
    margin: 80px 0;
}

.image-break img {
    width: 100%;
    height: min(70vh, 700px);
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.image-break:hover img {
    transform: scale(1.03);
}

.business-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70vh;
    color: var(--white);
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)), url("images/hero.jpg") center/cover no-repeat;
    padding: 40px;
}

.business-hero h1 {
    font-size: 65px;
    font-family: var(--font-heading);
}

.business-hero p {
    font-size: 18px;
    margin-top: 20px;
}

.business-about,
.business-services {
    text-align: center;
    padding: 80px 10%;
}

.business-about h2,
.business-services h2 {
    color: #1d4d2f;
    font-size: 40px;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.business-about p {
    max-width: 900px;
    color: #555;
    line-height: 1.8;
    margin: auto;
}

.business-values {
    text-align: center;
    background: var(--bg-light);
    padding: 80px;
}

.business-values h2 {
    color: var(--forest-green);
    font-size: 50px;
    font-family: var(--font-heading);
}

.value-box {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.value-box div {
    font-weight: 600;
    background: var(--white);
    border-radius: 15px;
    padding: 25px 35px;
}

.wellness-gallery {
    margin: 40px 0 50px;
}

.wellness-gallery img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
}

.business-logo {
    width: 180px;
    height: auto;
    margin: 0 auto 20px;
}

.business-content h1 {
    color: #1d4d2f;
    font-size: 48px;
    font-family: var(--font-heading);
}

.business-content p {
    max-width: 700px;
    color: #555;
    font-size: 18px;
    margin: 20px auto;
}

/* Product Sections */
.nature-wellness {
    background: var(--white);
    padding: 100px 80px;
}

.agro-projects {
    background: var(--bg-light);
    padding: 100px 80px;
}

.wellness-intro,
.agro-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    margin-bottom: 40px;
}

.wellness-image img,
.agro-about img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.wellness-content h3,
.agro-about h3 {
    color: var(--forest-green);
    font-size: 42px;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.wellness-content p,
.agro-about p {
    color: #555;
    line-height: 1.9;
}

.service-card {
    text-align: center;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 25px;
    transition: var(--transition-smooth);
}

.service-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.service-card h4 {
    color: var(--forest-green);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.therapy-card,
.project-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 35px;
    transition: var(--transition-smooth);
}

.therapy-card h4,
.project-card h4 {
    color: var(--forest-green);
}

.therapy-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
}

.project-card h4 {
    margin-bottom: 15px;
}

.therapy-card p,
.project-card p {
    color: #666;
}

.therapy-card p {
    line-height: 1.7;
}

.project-card p {
    line-height: 1.8;
}

.benefit-grid div {
    color: var(--white);
    font-weight: 600;
    text-align: center;
    background: var(--forest-green);
    border-radius: 12px;
    padding: 22px;
    transition: var(--transition-smooth);
}

.benefit-grid div:hover {
    background: var(--harvest-gold);
}

.closing-message {
    text-align: center;
    margin-top: 90px;
}

.closing-message h2 {
    color: var(--forest-green);
    font-size: 56px;
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 20px;
}

.closing-message p {
    color: #666;
    font-size: 18px;
    margin-top: 8px;
}

.contact-box {
    max-width: 650px;
    text-align: center;
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    padding: 45px;
    margin: 70px auto 0;
}

.contact-box h3 {
    color: var(--forest-green);
    font-size: 38px;
    font-family: var(--font-heading);
    margin-bottom: 25px;
}

.contact-box strong {
    display: block;
    color: var(--forest-green);
    margin-top: 20px;
}

.contact-box p {
    color: #555;
    margin: 6px 0;
}

.beauty-care {
    background: var(--white);
    padding: 100px 80px;
}

.beauty-banner {
    margin: 50px 0 70px;
}

.beauty-banner img,
.agro-banner img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.product-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 20px;
    scroll-snap-type: x mandatory;
}

.product-card {
    display: flex;
    flex: 0 0 280px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    padding: 22px;
    scroll-snap-align: start;
    transition: var(--transition-smooth);
}

.product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #f8f8f8;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 18px;
    transition: var(--transition-smooth);
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h4 {
    min-height: 52px;
    color: var(--forest-green);
    font-size: 20px;
    font-weight: 600;
    margin: 8px 0 18px;
}

.product-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 6px;
}

.product-card small {
    display: inline-block;
    color: var(--harvest-gold);
    font-weight: 600;
    margin-top: 10px;
}

.product-card button {
    width: 100%;
    color: var(--white);
    font-weight: 600;
    background: var(--forest-green);
    border: none;
    border-radius: 30px;
    padding: 12px;
    margin-top: auto;
    transition: var(--transition-smooth);
}

.product-card button:hover {
    background: var(--harvest-gold);
}

.agro-products {
    background: var(--bg-light);
    padding: 100px 80px;
}

.product-badge {
    text-align: center;
    margin: 30px 0 50px;
}

.product-badge span {
    display: inline-block;
    color: var(--white);
    font-weight: 600;
    background: var(--forest-green);
    border-radius: 30px;
    padding: 12px 28px;
}

.agro-banner {
    margin-bottom: 70px;
}

.principle-grid div {
    text-align: center;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    padding: 24px;
    transition: var(--transition-smooth);
}

.agro-product-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 32px;
    transition: var(--transition-smooth);
}

.agro-product-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.agro-product-card h4 {
    color: var(--forest-green);
    margin-bottom: 6px;
}

.agro-product-card span {
    display: block;
    color: var(--harvest-gold);
    font-weight: 600;
    margin-bottom: 18px;
}

.agro-product-card ul {
    color: #555;
    line-height: 1.8;
    padding-left: 18px;
}

.agro-product-card li {
    margin-bottom: 6px;
}

.herbal-products {
    background: var(--white);
    padding: 100px 80px;
}

.farm-showcase {
    background: var(--bg-light);
    padding: 100px 80px;
}

.farm-card {
    color: var(--forest-green);
    font-weight: 600;
    text-align: center;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    padding: 28px;
    transition: var(--transition-smooth);
}

.farm-card:hover {
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.cta {
    text-align: center;
    background: var(--bg-light);
    padding: 120px 0;
}

.cta h2 {
    color: var(--forest-green);
    font-size: 58px;
    font-family: var(--font-heading);
}

.cta p {
    max-width: 650px;
    font-size: 19px;
    line-height: 1.8;
    margin: 25px auto;
}

.cta-btn {
    display: inline-block;
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    background: var(--forest-green);
    border-radius: 35px;
    padding: 16px 40px;
    margin-top: 20px;
}

/* Footer */
footer {
    position: relative;
    color: var(--white);
    background: url("images/footer-banner.jpg") center center / cover no-repeat;
    padding: 100px 0 30px;
    overflow: hidden;
}

footer::before {
    position: absolute;
    inset: 0;
    content: "";
    background: rgba(0, 0, 0, 0.65);
}

footer .container {
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 28px;
    margin-bottom: 25px;
}

.footer-col h4 {
    color: var(--white);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--harvest-gold);
}

.contact-details p {
    margin-bottom: 15px;
}

.contact-details strong {
    color: var(--white);
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 130px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    margin-top: 20px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 25px;
    margin-top: 30px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .wellness-intro,
    .agro-about {
        grid-template-columns: 1fr;
    }

    .nature-wellness,
    .agro-projects {
        padding: 80px 30px;
    }

    .section-title h2 {
        font-size: 40px;
    }

    .center-title {
        font-size: 30px;
    }

    .closing-message h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .wellness-gallery {
        grid-template-columns: 1fr;
    }

    .wellness-gallery img {
        height: 220px;
    }

    footer {
        padding: 70px 0 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .product-grid {
        gap: 20px;
    }

    .product-card {
        padding: 18px;
    }

    .product-card img {
        height: 180px;
    }
}
