:root {
    --primary-green: #2e7d32;
    /* Deep Green */
    --light-green: #4caf50;
    /* Vibrant Green */
    --accent-green: #81c784;
    --dark-black: #1a1a1a;
    --light-black: #333333;
    --white: #ffffff;
    --light-gray: #f4f6f4;

    --font-primary: 'Outfit', sans-serif;

    --transition-speed: 0.3s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--light-black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-speed);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(46, 125, 50, 0.3);
}

.btn-primary:hover {
    background: var(--dark-black);
    transform: translateY(-3px);
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--light-gray);
}

.text-center {
    text-align: center;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    z-index: 1000;
    transition: all 0.4s ease;
}

header.sticky {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 50px;
}

.logo h1 {
    font-size: 1.8rem;
    color: var(--dark-black);
}

.logo span.dot {
    color: var(--primary-green);
}

.circle-menu {
    position: relative;
    background: rgba(255, 255, 255, 0.8);
    padding: 5px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

.circle-menu ul {
    display: flex;
    align-items: center;
    gap: 5px;
}

.circle-menu a {
    position: relative;
    padding: 10px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--light-black);
    border-radius: 30px;
    z-index: 1;
}

.circle-menu a.active,
.circle-menu a:hover {
    color: var(--white);
}

/* The magic moving circle background for menu items could be done with JS + absolute div, 
   but for CSS-only simplicity + high performance, we'll use individual hover/active states with pseudo-elements or just background.
   To make it "circle menu", let's give the active item a pill shape background.
*/
.circle-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-green);
    border-radius: 30px;
    z-index: -1;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.circle-menu a.active::before,
.circle-menu a:hover::before {
    transform: scale(1);
    opacity: 1;
}

.cta-btn .btn {
    background: var(--dark-black);
    color: var(--white);
}

.cta-btn .btn:hover {
    background: var(--primary-green);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    /* Changed from height to min-height for mobile content */
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 50px;
    /* Added top/bottom padding */
    overflow: hidden;
    background: linear-gradient(135deg, #f0fff0 0%, #ffffff 100%);
}

.hero-content {
    flex: 6;
    padding-right: 20px;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-image {
    flex: 4;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out;
}

.hero-image img {
    max-width: 75%;
    /* Ratio adjusted */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero h2 {
    font-size: 3.5rem;
    /* Slightly smaller for better fit */
    margin-bottom: 20px;
    color: var(--dark-black);
}

.hero .highlight {
    color: var(--primary-green);
    position: relative;
    display: inline-block;
}

.hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 15px;
    background: rgba(76, 175, 80, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
    max-width: 500px;
    /* Limit text width */
}

/* Abstract Background Shapes Animation */
.hero-bg::before,
.hero-bg::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.hero-bg::before {
    width: 400px;
    height: 400px;
    background: rgba(46, 125, 50, 0.15);
    top: -100px;
    right: -50px;
    animation: float 8s infinite alternate;
}

.hero-bg::after {
    width: 300px;
    height: 300px;
    background: rgba(129, 199, 132, 0.2);
    bottom: 50px;
    right: 20%;
    animation: float 6s infinite alternate-reverse;
}

/* About Section */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h3 {
    color: var(--primary-green);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-black);
}

.section-header .line {
    width: 60px;
    height: 4px;
    background: var(--primary-green);
    margin: 15px auto 0;
    border-radius: 2px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 60px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #444;
}

.mission-vision-values {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mvv-card {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-green);
    transition: transform 0.3s;
}

.mvv-card:hover {
    transform: translateX(10px);
}

.mvv-card i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
    border: 1px solid transparent;
}

.value-item:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-10px);
}

.value-item:hover i,
.value-item:hover h5,
.value-item:hover p {
    color: var(--white);
}

.value-item i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.team-member {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-img {
    height: 250px;
    background: #e0e0e0;
    position: relative;
    overflow: hidden;
}

/* Placeholder for team images if not provided */
.member-img::before {
    content: '\f007';
    /* font-awesome user icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #ccc;
}

.member-info {
    padding: 25px;
    text-align: center;
}

.member-info h4 {
    color: var(--primary-green);
    margin-bottom: 5px;
}

.member-info span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-black);
    margin-bottom: 15px;
}

.member-info p {
    font-size: 0.9rem;
    color: #666;
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #eee;
    overflow: hidden;
    position: relative;
}

.product-card.featured {
    grid-column: span 2;
    /* Make the greenhouse card larger if possible */
    padding: 0;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .product-card.featured {
        grid-column: span 1;
    }
}

.product-card.featured img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.product-card.featured h4,
.product-card.featured p {
    padding: 0 30px;
}

.product-card.featured h4 {
    margin-top: 20px;
}

.product-card.featured p {
    margin-bottom: 30px;
}

.product-card:not(.featured):hover {
    background: var(--dark-black);
    color: var(--white);
    border-color: var(--dark-black);
}

.product-card:not(.featured):hover .product-icon i,
.product-card:not(.featured):hover h4,
.product-card:not(.featured):hover p {
    color: var(--white);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: rgba(46, 125, 50, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.product-icon i {
    font-size: 2rem;
    color: var(--primary-green);
}

.product-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

/* Services */
.services-list {
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    background: var(--white);
    margin-bottom: 20px;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.service-item:hover {
    transform: scale(1.02);
    border-left: 5px solid var(--primary-green);
}

.service-item .num {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ddd;
    margin-right: 30px;
}

.service-item:hover .num {
    color: var(--primary-green);
}

.service-item h4 {
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: var(--dark-black);
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.footer-info .dot {
    color: var(--primary-green);
}

.socials {
    margin-top: 20px;
}

.socials a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--white);
    transition: 0.3s;
}

.socials a:hover {
    background: var(--primary-green);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-contact i {
    color: var(--primary-green);
}

.btn-footer {
    background: var(--white);
    color: var(--dark-black);
    margin-top: 15px;
}

.btn-footer:hover {
    background: var(--primary-green);
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Animations Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    100% {
        transform: translateY(20px) rotate(5deg);
    }
}

/* Mobile Responsive */
/* Mobile Responsive */
@media (max-width: 992px) {
    header {
        padding: 15px 20px;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .circle-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 80%;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        border-radius: 0;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        display: flex;
    }

    .circle-menu.open {
        transform: translateX(0);
    }

    .circle-menu ul {
        flex-direction: column;
        gap: 30px;
    }

    .circle-menu a {
        font-size: 1.4rem;
    }

    .mobile-toggle {
        display: block;
        z-index: 1000;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .cta-btn {
        display: none;
    }

    /* Stack everything vertically on mobile */
    .hero {
        flex-direction: column;
        padding: 120px 20px 60px;
        text-align: center;
        height: auto;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
        width: 100%;
    }

    .hero-content p {
        margin: 0 auto 30px;
    }

    .hero-image {
        justify-content: center;
        width: 100%;
    }

    .hero-image img {
        max-width: 90%;
    }

    .about-grid,
    .contact-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text {
        text-align: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Page Header for Subpages */
.page-header {
    background: linear-gradient(135deg, var(--primary-green), #1b5e20);
    color: var(--white);
    padding: 150px 0 80px;
    text-align: center;
    clip-path: ellipse(150% 100% at 50% 0%);
}

.page-header h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Scroll Animation */
.reveal {
    position: relative;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal.active {
    transform: translateY(0);
    opacity: 1;
}