/* Modern Agriculture-Oriented Font Implementation */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600&display=swap');

/* Base styles */
:root {
    --primary-color: #136C39;
    --primary-dark: #0a4724;
    --secondary-color: #FFFEE0;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
    --text-color: #333333;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Open Sans', sans-serif;
}

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

body {
    font-family: var(--body-font);
    color: var(--text-color);
    line-height: 1.6;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 0;
}

.navbar .nav-link {
    font-family: var(--heading-font);
    font-weight: 500;
}

.btn {
    font-family: var(--heading-font);
    font-weight: 500;
}

.section-header h2 {
    font-weight: 700;
}

.story-heading, 
.mission-box h3, 
.vision-box h3, 
.values-box h3 {
    font-weight: 600;
}

.stat-number {
    font-family: var(--heading-font);
}

.hero-badge {
    font-family: var(--heading-font);
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 60px;
    width: auto;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-dark);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.8em;
    margin-left: 0.2rem;
    transition: transform 0.3s ease;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    padding: 0.8rem 0;
    border-radius: 8px;
    box-shadow: 0 4px 20px var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    border: 1px solid rgba(19, 108, 57, 0.1);
}

.dropdown.active .dropdown-menu,
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-color);
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(19, 108, 57, 0.05);
    padding-left: 2rem;
}

/* Order Button */
.order-btn .nav-link {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.order-btn .nav-link:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        gap: 0;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 2px 10px var(--shadow);
        padding: 1rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        width: 90%;
        margin: 0.5rem auto;
        box-shadow: none;
        border: 1px solid rgba(19, 108, 57, 0.1);
        transform: none;
        display: none;
        opacity: 1;
        visibility: visible;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        animation: slideDown 0.3s ease-out;
    }

    .dropdown-menu a {
        padding: 1rem;
        border-radius: 8px;
        margin: 0.25rem 0.5rem;
    }

    .logo-image {
        height: 50px;
    }

    .order-btn {
        margin: 1rem auto;
        width: 80%;
    }

    /* Hamburger Animation */
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Animation for mobile dropdown */
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Adjust dropdown arrow rotation */
    .dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
}

/* Tablet Adjustments */
@media (min-width: 768px) and (max-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }

    .nav-menu {
        padding: 1.5rem 0;
    }

    .nav-link {
        font-size: 0.95rem;
    }
}

/* Add subtle animation to dropdown */
@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover only for non-touch devices */
@media (hover: hover) {
    .dropdown:hover .dropdown-menu {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    
    .dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

/* Icon styles */
.nav-link i {
    margin-right: 8px;
    font-size: 1.1em;
}

.dropdown-menu i {
    width: 20px;
    text-align: center;
    margin-right: 10px;
    opacity: 0.8;
}

/* Updated Footer Styles */
.footer {
    background-color: var(--secondary-color);
    margin-top: 3rem;
}

.footer-top {
    padding: 4rem 0 3rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 2.5rem;
}

/* Logo Section Styles */
.footer-logo-section {
    padding-right: 2rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1.5rem;
}

/* Section Headers */
.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

/* Contact Info Styles */
.contact-info, 
.location-info p,
.hours-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #444;
}

.contact-info i,
.location-info i,
.hours-info i {
    color: var(--primary-color);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Social Media Links */
.social-links {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transition: all 0.3s ease;
    position: relative;
}

.social-links a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-links i {
    font-size: 1.1rem;
}

/* Platform-specific hover colors */
.social-links a:hover[href*="facebook"] {
    background-color: #1877f2;
}

.social-links a:hover[href*="x.com"] {
    background-color: #000000;
}

.social-links a:hover[href*="linkedin"] {
    background-color: #0a66c2;
}

.social-links a:hover[href*="youtube"] {
    background-color: #ff0000;
}

/* Footer Bottom */
.footer-bottom {
    background-color: var(--primary-color);
    padding: 1.5rem 0;
    color: var(--secondary-color);
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

    .footer-logo-section {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info p,
    .location-info p,
    .hours-info p,
    .location {
        justify-content: center;
    }

    .footer-bottom-content {
        justify-content: center;
        text-align: center;
    }

    .footer-top {
        padding: 3rem 0 2rem;
    }
}

/* General section styles */
.section-padding {
    padding: 5rem 0;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    position: relative;
}

.section-line {
    height: 3px;
    width: 60px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.section-header.light h2 {
    color: var(--secondary-color);
}

.section-header.light .section-line {
    background-color: var(--secondary-color);
}

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

.bg-light {
    background-color: #f9f9f7;
}

.bg-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    margin: 0.5rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.bg-primary .btn-outline {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.bg-primary .btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
}

.slides-container {
    height: 100%;
    width: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide-content {
    width: 50%;
    padding: 0 5%;
    z-index: 10;
    animation: fadeInLeft 1s ease forwards;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #333;
}

.slide-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.slide-buttons {
    margin-top: 2rem;
}

.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
}

.prev-btn, .next-btn {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 1rem;
}

.dots-container {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active {
    background-color: var(--primary-color);
}

/* Enhanced Hero Section Styles */
.hero-badge {
    display: inline-block;
    background-color: rgba(19, 108, 57, 0.1);
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 30px;
    margin-bottom: 1rem;
    border: 1px solid rgba(19, 108, 57, 0.2);
}

.slide-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-tagline {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #333;
    max-width: 90%;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #444;
}

.hero-feature i {
    color: var(--primary-color);
}

.btn-primary i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(3px);
}

.hero-trust {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #666;
    display: flex;
    align-items: center;
}

.hero-trust::before {
    content: "";
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
    margin-right: 0.8rem;
}

/* Media queries */
@media (max-width: 992px) {
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .slide-content h1 {
        font-size: 2.4rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Enhanced Story Section with Multiple Segments */
.story-segment {
    margin-bottom: 5rem;
}

.story-segment:last-child {
    margin-bottom: 0;
}

.story-segment .story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-segment.reverse .story-content {
    direction: rtl;
}

.story-segment.reverse .story-text,
.story-segment.reverse .story-image {
    direction: ltr;
}

.story-segment .story-text {
    animation: fadeInLeft 1s ease-out;
}

.story-segment.reverse .story-text {
    animation: fadeInRight 1s ease-out;
}

.story-segment .story-image {
    animation: fadeInRight 1s ease-out;
}

.story-segment.reverse .story-image {
    animation: fadeInLeft 1s ease-out;
}

.story-segment:nth-child(even) {
    background-color: rgba(245, 245, 245, 0.5);
    padding: 3rem 0;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .story-segment .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-segment .story-text {
        order: 2;
    }
    
    .story-segment .story-image {
        order: 1;
    }
    
    .story-segment.reverse .story-content {
        direction: ltr;
    }
}

/* Products Showcase */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-category {
    background-color: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.product-category:hover {
    transform: translateY(-10px);
}

.category-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(19, 108, 57, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.product-category h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-category p {
    color: #555;
    margin-bottom: 1.5rem;
}

.category-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
}

.category-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(5px);
}

/* Featured Product */
.featured-product-content {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.featured-product-image {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.featured-product-image .featured-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    padding: 1rem;
}

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

.featured-product-details {
    flex: 1;
    min-width: 300px;
}

.featured-product-details h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.featured-product-details p {
    color: #555;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.feature-list i {
    color: var(--primary-color);
    margin-right: 0.8rem;
}

/* Enhanced Services Section Styling */
.services-overview {
    background-color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.services-overview .section-header {
    margin-bottom: 40px;
}

.services-overview .section-header h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 15px;
}

.services-overview .section-line {
    height: 4px;
    width: 70px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
}

.services-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.service-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover:before {
    width: 7px;
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(19, 108, 57, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(19, 108, 57, 0.2);
    transform: scale(1.05);
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.service-card h4 {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 12px;
    position: relative;
    padding-left: 10px;
    border-left: 3px solid var(--primary-color);
}

.service-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-top: auto;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #555;
}

.service-features li:last-child {
    margin-bottom: 0;
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
    font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .service-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .services-overview {
        padding: 60px 0;
    }
    
    .services-overview .section-header h2 {
        font-size: 2rem;
    }
    
    .services-intro {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
}

/* Company Stats Section */
.company-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.stat-item {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(19, 108, 57, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.95rem;
    color: #555;
}

@media (max-width: 992px) {
    .company-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .company-stats {
        grid-template-columns: 1fr;
    }
}

/* Enhanced Blog and Social Feed Layout */
.latest-blog {
    background-color: #f9f9f9;
}

.blog-social-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
}

.blog-column, .social-column {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-column:hover, .social-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.column-header {
    background-color: var(--primary-color);
    padding: 1rem 1.5rem;
    color: white;
}

.column-header h3 {
    font-size: 1.4rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.column-header h3 i {
    font-size: 1.2rem;
}

.blog-featured {
    border: none;
    box-shadow: none;
    background-color: transparent;
    display: flex;
    flex-direction: column;
}

.blog-image {
    height: auto;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-image img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    padding: 1rem;
}

.blog-column:hover .blog-image img {
    transform: scale(1.05);
}

.blog-date {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.8rem;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 1;
}

.blog-content {
    padding: 1.5rem 1.5rem 2rem;
}

.blog-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.4;
}

.blog-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

/* Simplified Facebook styles */
.social-column {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.facebook-content {
    background-color: white;
    border-radius: 0 0 12px 12px;
    padding: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.facebook-content iframe {
    width: 100%;
    min-height: 400px;
    border: none;
    margin-bottom: 0;
    border-radius: 0 0 0 0;
    background-color: #f5f5f5;
}

.facebook-link {
    padding: 1.5rem;
    text-align: center;
    border-top: 1px solid #eaeaea;
    background-color: white;
    border-radius: 0 0 12px 12px;
}

.facebook-button {
    display: inline-block;
    background-color: #1877F2;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.facebook-button i {
    margin-right: 0.5rem;
}

.facebook-button:hover {
    background-color: #0e5fc0;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Media queries for responsive design */
@media (max-width: 992px) {
    .blog-social-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .facebook-content iframe {
        height: 350px;
        min-height: 350px;
    }
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Call to Action */
.cta {
    background-color: var(--secondary-color);
    background-image: linear-gradient(rgba(19, 108, 57, 0.9), rgba(19, 108, 57, 0.9)), url('images/hero/magoba.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin-top: 0; /* Remove any top margin */
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: white;
}

/* Ensure sections above the CTA have no bottom margin */
.section-padding + .cta,
.services-overview + .cta,
.diagonal-bg + .cta {
    margin-top: 0;
}

/* For sections after the CTA, ensure no top margin */
.cta + .section-padding,
.cta + .footer,
.cta + .diagonal-footer {
    margin-top: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .slide-content {
        width: 70%;
    }
    
    .slide-image {
        width: 50%;
    }
    
    .story-content,
    .featured-product-content {
        flex-direction: column;
    }
    
    .story-image {
        order: -1;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .blog-featured {
        flex-direction: column;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 3rem 0;
    }
    
    .slide-content {
        width: 100%;
        text-align: center;
        padding: 0 2rem;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .slide-image {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        right: auto;
        opacity: 0.3;
        clip-path: none;
        z-index: 1;
    }
    
    .slide-content {
        position: relative;
        z-index: 2;
    }
    
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .slide-buttons .btn,
    .cta-buttons .btn,
    .blog-buttons .btn {
        display: block;
        width: 100%;
    }
}

/* Simple Partner Logos Slider */
.partners-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin: 2rem 0;
}

.partners-track {
    display: flex;
    width: max-content; /* Allow natural width */
    animation: partnerScroll 40s linear infinite;
}

.partner-logo {
    flex: 0 0 auto;
    width: 200px;
    height: 120px;
    margin: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Simple animation for partner logos */
@keyframes partnerScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

/* Enhanced About Page Styles */

/* Page Banner Improvements */
.page-banner {
    position: relative;
    background: linear-gradient(rgba(0, 60, 20, 0.7), rgba(0, 60, 20, 0.8)), url('images/hero/DSC_0733.JPG');
    background-size: cover;
    background-position: center;
    padding: 5rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.page-banner .banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-banner h1 {
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.8s ease-out;
}

.breadcrumb {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    color: #fff;
    font-weight: 500;
    animation: fadeIn 1s ease-out;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
}

/* Story Section Improvements */
.index-our-story {
    position: relative;
    color: #fff;
    background: linear-gradient(rgba(19, 108, 57, 0.85), rgba(0, 0, 0, 0.8)), 
                url('images/hero/DSC_0733.JPG');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.section-header.light h2,
.mission-vision-brief.light h3,
.stat-item.light .stat-number,
.about-cta.light p {
    color: #fff;
}

.story-content-overlay {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(2px);
}

.story-intro {
    font-size: 1.6rem; /* Increased from 1.3rem */
    line-height: 1.7;
    margin-bottom: 2rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.mission-vision-brief.light {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.mission-vision-brief.light h3 i {
    background-color: #fff;
    color: var(--primary-color);
}

.stat-item.light {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item.light .stat-icon {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.stat-item.light .stat-text {
    color: rgba(255, 255, 255, 0.9);
}

.about-cta.light {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mission Vision Values Section */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
}

.mission-box, .vision-box, .values-box {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mission-box:hover, .vision-box:hover, .values-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.mission-box .icon, .vision-box .icon, .values-box .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(19, 108, 57, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.mission-box h3, .vision-box h3, .values-box h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

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

.values-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.values-list li i {
    color: var(--primary-color);
    margin-right: 0.8rem;
    margin-top: 0.3rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.member-photo {
    height: 320px;
    overflow: hidden;
    position: relative;
}

.member-photo::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    z-index: 1;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
    display: block;
}

.member-social {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.member-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.member-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Partner Section Enhancement */
.partner-logo {
    transform: scale(0.9);
    transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
    opacity: 0.85;
}

.partner-logo:hover {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-text {
        order: 2;
    }
    
    .story-image {
        order: 1;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .page-banner h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 4rem 1.5rem;
    }
    
    .page-banner h1 {
        font-size: 2.4rem;
    }
    
    .story-heading {
        font-size: 2rem;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

/* Additional About Page Styles */

/* Story priorities list styling */
.story-priorities {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.story-priorities li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #444;
}

.story-priorities li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

/* Section intro paragraph styling */
.section-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}

/* Join Team Section Styles */
.join-team-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
}

.join-team-text h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.join-team-text h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.benefits-list li i {
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.3rem;
}

.career-notice {
    display: flex;
    align-items: flex-start;
    background-color: rgba(19, 108, 57, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.career-notice i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.join-team-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.join-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.join-team-image:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments for Join Team section */
@media (max-width: 992px) {
    .join-team-content {
        grid-template-columns: 1fr;
    }
    
    .join-team-text {
        order: 2;
    }
    
    .join-team-image {
        order: 1;
    }
}

/* Map container and overlay styles */
.map-container {
    position: relative;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.map-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #444;
}

.dealer-dot, .distribution-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dealer-dot {
    background-color: #4285F4;
}

.distribution-dot {
    background-color: #EA4335;
}

/* Distribution stats styling */
.distribution-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
    background-color: rgba(19, 108, 57, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

@media (max-width: 576px) {
    .distribution-stats {
        gap: 1rem;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Partnerships description styling */
.partnerships-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(19, 108, 57, 0.1);
}

.partnerships-description h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.partnerships-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

/* Condensed Story Section Styles */
.mission-vision-brief {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

.brief-item {
    margin-bottom: 1rem;
}

.brief-item:last-child {
    margin-bottom: 0;
}

.brief-item h3 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.brief-item h3 i {
    background-color: var(--primary-color);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.company-stats-highlight {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.about-cta {
    background-color: rgba(19, 108, 57, 0.05);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    text-align: center;
}

.about-cta p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.btn-large {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .company-stats-highlight {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Updated Mission/Vision Cards */
.mission-vision-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mission-vision-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.mission-vision-card h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.6rem; /* Increased from 1.4rem */
}

.mission-vision-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem; /* Increased from 1rem */
    line-height: 1.6;
}

/* Reach Network Cards */
.reach-header {
    color: white;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem; /* Increased from 1.6rem */
}

.reach-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.reach-card {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem 1rem;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.reach-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.reach-icon {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
}

.reach-number {
    font-size: 2.2rem; /* Increased from 2rem */
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.reach-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem; /* Increased from 0.9rem */
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .mission-vision-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .reach-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .reach-cards {
        grid-template-columns: 1fr;
    }
}

/* Alternating Service Layout */
.service-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 80px;
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-row:last-child {
    margin-bottom: 0;
}

.service-info {
    flex: 1;
    padding: 50px;
    min-width: 300px;
}

.service-info h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.service-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.service-info p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    overflow: hidden;
    height: 450px;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(19, 108, 57, 0.2), rgba(255, 254, 224, 0.1));
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-row:hover .service-image::before {
    opacity: 1;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-row:hover .service-image img {
    transform: scale(1.1);
}

/* Reverse layout for alternating rows */
.service-row.reverse {
    flex-direction: row-reverse;
}

.service-row.reverse .service-info h3::after {
    left: 0;
    right: auto;
}

/* Service icon styling */
.service-info .service-icon {
    margin-bottom: 25px;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(19, 108, 57, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-row:hover .service-info .service-icon {
    background-color: var(--primary-color);
}

.service-info .service-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-row:hover .service-info .service-icon i {
    color: var(--white);
}

/* Service features styling */
.service-info .service-features {
    margin-top: 25px;
    list-style: none;
}

.service-info .service-features li {
    padding: 8px 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.service-info .service-features li:hover {
    transform: translateX(5px);
}

.service-info .service-features li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .service-info, .service-image {
        flex: 100%;
    }
    
    .service-image {
        height: 300px;
    }
    
    .service-row, .service-row.reverse {
        flex-direction: column;
    }
    
    .service-info {
        order: 2;
    }
    
    .service-image {
        order: 1;
    }
}

@media (max-width: 576px) {
    .service-info {
        padding: 30px 20px;
    }
    
    .service-image {
        height: 250px;
    }
}

/* Diagonal Background for Services Section */
.diagonal-bg {
    position: relative;
    background: #fff;
    overflow: hidden;
    z-index: 1;
}

.diagonal-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 40%);
}

/* Ensure proper spacing for diagonal section */
.services-overview.diagonal-bg {
    padding-top: 100px;
    padding-bottom: 100px;
}

/* Ensure cards stand out against the diagonal background */
.services-overview .service-card {
    background-color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-overview .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Make the section header more visible on the cream background */
.diagonal-bg .section-header h2 {
    position: relative;
    z-index: 2;
    font-weight: 700;
}

/* Adapt diagonal angle for different screen sizes */
@media (max-width: 992px) {
    .diagonal-bg::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 35%);
    }
}

@media (max-width: 768px) {
    .diagonal-bg::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 25%);
    }
    
    .services-overview.diagonal-bg {
        padding-top: 80px;
        padding-bottom: 80px;
    }
}

@media (max-width: 576px) {
    .diagonal-bg::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 15%);
    }
    
    .services-overview.diagonal-bg {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

/* Modern Diagonal Footer */
.diagonal-footer {
    position: relative;
    margin-top: 5rem;
    background-color: var(--secondary-color);
    overflow: hidden;
    /* Removing the green border line */
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
}

/* Diagonal top edge for footer */
.diagonal-footer::before {
    content: '';
    position: absolute;
    top: -70px;
    left: 0;
    right: 0;
    height: 70px;
    background-color: var(--secondary-color);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
}

/* Add subtle grain texture to footer */
.diagonal-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.05"/%3E%3C/svg%3E');
    opacity: 0.4;
    pointer-events: none;
}

.footer-top {
    position: relative;
    padding: 5rem 0 3rem;
    z-index: 1;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 2.5rem;
}

/* Logo Section Enhancements */
.footer-logo-section {
    padding-right: 2rem;
    animation: fadeInUp 0.8s ease forwards;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-logo:hover {
    transform: scale(1.05) rotate(-2deg);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

/* Footer Tagline */
.footer-tagline {
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 1.5rem;
    opacity: 0.85;
    font-size: 1.05rem;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.7);
}

/* Enhanced Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.social-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.social-links a:hover {
    color: white;
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-hover:hover::before {
    transform: translateY(0);
}

.social-links i {
    font-size: 1.2rem;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-links a:hover i {
    transform: scale(1.1);
}

/* Section Headers with Animation */
.footer-section {
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(0.1s * var(--animation-order, 1));
    opacity: 0;
    transform: translateY(20px);
}

.footer-section:nth-child(2) {
    --animation-order: 2;
}

.footer-section:nth-child(3) {
    --animation-order: 3;
}

.footer-section:nth-child(4) {
    --animation-order: 4;
}

.footer-section h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--primary-color-light, #1d8d4e));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.footer-section:hover h3::after {
    width: 65px;
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    color: #444;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.4rem 0;
    border-radius: 4px;
}

.footer-link:hover {
    color: var(--primary-color);
    transform: translateX(8px);
    background-color: rgba(255, 255, 255, 0.5);
    padding-left: 0.5rem;
}

.footer-link:active {
    transform: translateX(8px) scale(0.98);
}

.contact-info i,
.location-info i {
    color: var(--primary-color);
    font-size: 1.15rem;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.footer-link:hover i {
    transform: scale(1.2);
}

/* Location Info Styles */
.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location {
    display: flex;
    gap: 0.9rem;
    transition: transform 0.3s ease;
    padding: 0.4rem 0;
    border-radius: 4px;
}

.location:hover {
    transform: translateX(8px);
    background-color: rgba(255, 255, 255, 0.5);
    padding-left: 0.5rem;
}

.location:hover i {
    transform: scale(1.2);
    color: var(--primary-color-dark, #0e5028);
}

.location p {
    color: #444;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.location:hover p {
    color: var(--primary-color);
}

/* Hours Info Styles */
.hours-info {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.hours-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.4rem 0;
    border-radius: 4px;
}

.hours-item:hover {
    transform: translateX(8px);
    background-color: rgba(255, 255, 255, 0.5);
    padding-left: 0.5rem;
}

.hours-item:hover i {
    transform: scale(1.2);
    color: var(--primary-color-dark, #0e5028);
}

.hours-detail {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.day-label {
    font-weight: 600;
    color: #444;
    transition: color 0.3s ease;
}

.hours-item:hover .day-label {
    color: var(--primary-color);
}

.time {
    color: #555;
    transition: color 0.3s ease;
}

.hours-item:hover .time {
    color: var(--primary-color-dark, #0e5028);
}

/* Footer Bottom Enhancement */
.footer-bottom {
    background: linear-gradient(45deg, var(--primary-dark, #0b4020), var(--primary-color));
    padding: 1.4rem 0;
    color: white;
    position: relative;
    box-shadow: inset 0 3px 8px rgba(0, 0, 0, 0.1);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--secondary-color), 
        rgba(255, 254, 224, 0.3), 
        var(--secondary-color));
    opacity: 0.7;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.3rem 0.5rem;
    border-radius: 4px;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.footer-links a:hover {
    color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.footer-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.footer-divider {
    opacity: 0.4;
    color: rgba(255, 255, 255, 0.7);
}

.designer-credit a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
}

.designer-credit a::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: right;
}

.designer-credit a:hover {
    color: var(--secondary-color);
    background-color: rgba(255, 255, 255, 0.1);
}

.designer-credit a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
    
    .diagonal-footer::before {
        top: -50px;
        height: 50px;
    }
    
    .footer-section {
        animation-delay: calc(0.1s * var(--mobile-animation-order, 1));
    }
    
    .footer-section:nth-child(1) {
        --mobile-animation-order: 1;
    }
    
    .footer-section:nth-child(2) {
        --mobile-animation-order: 2;
    }
    
    .footer-section:nth-child(3) {
        --mobile-animation-order: 3;
    }
    
    .footer-section:nth-child(4) {
        --mobile-animation-order: 4;
    }
}

@media (max-width: 768px) {
    .footer-top {
        padding: 4rem 0 2rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-section h3 {
        text-align: center;
    }
    
    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
    }
    
    .footer-section:hover h3::after {
        width: 80px;
    }
    
    .footer-logo-section {
        text-align: center;
        padding-right: 0;
    }
    
    .footer-tagline {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .footer-link {
        width: 100%;
        max-width: 280px;
        justify-content: flex-start;
    }
    
    .footer-link:hover {
        transform: translateX(0) translateY(-3px);
    }
    
    .location {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .location:hover {
        transform: translateX(0) translateY(-3px);
    }
    
    .hours-item {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hours-item:hover {
        transform: translateX(0) translateY(-3px);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1.2rem;
    }
    
    .hours-detail {
        align-items: flex-start;
    }
    
    .diagonal-footer::before {
        top: -35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .diagonal-footer::before {
        top: -25px;
        height: 25px;
    }
    
    .footer-top {
        padding: 3.5rem 0 2rem;
    }
    
    .footer-bottom-content {
        gap: 1rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .footer-divider {
        display: none;
    }
}

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

/* Contact Page Styles */

/* Contact Info Section */
.contact-info-section {
    padding: 5rem 0;
    background-color: var(--white);
}

/* Contact Info Grid Layout - Improved */
.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 3rem;
}

.contact-info-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--primary-color);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card:hover::before {
    transform: scaleY(1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(19, 108, 57, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.contact-icon i {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.contact-info-card:hover .contact-icon i {
    transform: scale(1.1);
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 0.7rem;
}

.contact-info-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.5;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.contact-info-card:hover h3::after {
    width: 60px;
    opacity: 1;
}

.info-details {
    color: #555;
    line-height: 1.5;
}

.info-details p {
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.info-details p:last-child {
    margin-bottom: 0;
}

.info-details p strong {
    color: #333;
    font-weight: 600;
    display: inline-block;
    margin-right: 0.3rem;
}

.info-details p small {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .contact-info-grid {
        flex-wrap: wrap;
    }
    
    .contact-info-card {
        flex: 1 1 40%;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .contact-info-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 576px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 20px;
    }
}

/* Contact Form Section */
.contact-form-section {
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="%23136C39" fill-opacity="0.05" fill-rule="evenodd"%3E%3Ccircle cx="3" cy="3" r="3"/%3E%3Ccircle cx="13" cy="13" r="3"/%3E%3C/g%3E%3C/svg%3E');
    z-index: 0;
}

.contact-form-container {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.form-wrapper {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.form-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-header p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 1.5rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: #444;
    font-weight: 500;
    font-size: 0.95rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--body-font);
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    background-color: #fcfcfc;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(19, 108, 57, 0.1);
    background-color: #fff;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.form-check label {
    margin-bottom: 0;
    line-height: 1.4;
    font-size: 0.9rem;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    font-size: 1.1rem;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Social Media Section */
.contact-social {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 15px;
    color: var(--white);
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-social::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
}

.social-content {
    position: relative;
    z-index: 1;
}

.social-content h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.social-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(0);
    border-radius: 50%;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
    transform: translateY(-5px);
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.25);
}

.social-icon:hover::before {
    transform: scale(1.5);
}

.social-icon i {
    z-index: 1;
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.2);
}

.whatsapp-business {
    margin-top: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.whatsapp-business h4 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button i {
    font-size: 1.2rem;
}

.whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Map Section */
.map-section {
    position: relative;
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.map-wrapper {
    height: 100%;
    width: 100%;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-tabs {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
}

.location-tab {
    background-color: var(--white);
    color: #444;
    border: 2px solid transparent;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.location-tab::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.location-tab:hover {
    background-color: #f9f9f9;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    color: var(--primary-color);
}

.location-tab:hover::before {
    transform: scaleX(0.8);
}

.location-tab.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(19, 108, 57, 0.3);
}

.location-tab.active::before {
    transform: scaleX(1);
    background-color: var(--white);
}

@media (max-width: 768px) {
    .location-tabs {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        width: 90%;
        max-width: 400px;
        justify-content: center;
    }
    
    .location-tab {
        flex: 1;
        text-align: center;
        padding: 10px 15px;
    }
}

/* FAQ Section - Improved */
.faq-section {
    background-color: #f9f9f7;
    position: relative;
    padding: 5rem 0;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(19, 108, 57, 0.03);
}

.faq-question h3 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(19, 108, 57, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    background-color: rgba(19, 108, 57, 0.02);
    visibility: hidden;
    opacity: 0;
}

.faq-item.active .faq-answer {
    visibility: visible;
    opacity: 1;
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .contact-form-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-social {
        height: auto;
    }
}

@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .location-tabs {
        top: auto;
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .map-container {
        height: 400px;
    }
    
    .contact-info-grid {
        gap: 20px;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .map-container {
        height: 350px;
    }
    
    .location-tab {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-info-card .contact-icon {
        width: 70px;
        height: 70px;
    }
    
    .contact-info-card .contact-icon i {
        font-size: 1.8rem;
    }
}

/* Policy Pages Styles */
.policy-content {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeIn 0.6s ease-in-out forwards;
}

.policy-section:last-child {
    border-bottom: none;
}

.policy-section h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    position: relative;
}

.policy-section h4 {
    font-size: 1.2rem;
    color: #333;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.policy-section p {
    margin-bottom: 1rem;
}

.policy-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy-section ul li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 0.5rem;
}

.policy-section ul li::before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 0 1rem;
        font-size: 15px;
    }
    
    .policy-section h3 {
        font-size: 1.3rem;
    }
    
    .policy-section h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .policy-content {
        font-size: 14px;
    }
    
    .policy-section {
        margin-bottom: 1.8rem;
        padding-bottom: 1.2rem;
    }
    
    .policy-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .services-overview {
        padding: 70px 0 50px;
    }
    
    .services-overview .section-header h2 {
        font-size: 2.2rem;
    }
    
    .service-info, .service-image {
        flex: 100%;
    }
    
    .service-image {
        height: 350px;
    }
    
    .service-row, .service-row.reverse {
        flex-direction: column;
        margin-bottom: 50px;
    }
    
    .service-info {
        order: 2;
        padding: 40px 30px;
    }
    
    .service-image {
        order: 1;
    }
    
    .service-info h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .services-overview {
        padding: 50px 0 30px;
    }
    
    .services-overview .section-header h2 {
        font-size: 1.8rem;
    }
    
    .services-intro {
        font-size: 1.05rem;
        margin-bottom: 40px;
    }
    
    .service-info {
        padding: 30px 20px;
    }
    
    .service-image {
        height: 250px;
    }
    
    .service-info .service-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-info .service-icon i {
        font-size: 24px;
    }
    
    .service-info h3 {
        font-size: 1.5rem;
    }
    
    .service-info p {
        font-size: 1rem;
    }
}

/* Products Page Styling */
.products-overview {
    background-color: var(--white);
    padding: 90px 0 70px;
    position: relative;
}

.products-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.products-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.products-intro p:last-child {
    margin-bottom: 0;
}

/* Product Category Cards */
.product-categories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-category-card {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 1px solid rgba(19, 108, 57, 0.05);
}

.product-category-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(19, 108, 57, 0.1);
}

.category-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.category-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.product-category-card:hover .category-image::after {
    opacity: 0.4;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.category-content {
    padding: 30px;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(19, 108, 57, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: absolute;
    top: -35px;
    left: 30px;
    box-shadow: 0 5px 15px rgba(19, 108, 57, 0.2);
}

.product-category-card:hover .category-icon {
    background-color: var(--primary-color);
}

.category-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.product-category-card:hover .category-icon i {
    color: var(--white);
}

.category-content h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 15px;
    margin-top: 15px;
}

.category-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.category-highlights {
    list-style: none;
    margin-bottom: 25px;
    padding-left: 5px;
}

.category-highlights li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 28px;
    font-size: 1rem;
    color: #444;
    transition: transform 0.2s ease;
}

.category-highlights li:hover {
    transform: translateX(5px);
}

.category-highlights li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

.category-content .btn {
    margin-top: auto;
    align-self: flex-start;
}

/* Featured Product Section */
.featured-product {
    background-color: #F8F9FA;
    position: relative;
    overflow: hidden;
}

.featured-product::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23136c39' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.6;
}

.featured-product-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.featured-product-image {
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.featured-product-image .featured-img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.3s ease;
    padding: 1rem;
}

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

.featured-product-details {
    flex: 1.2;
    min-width: 300px;
}

.featured-product-details h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.featured-product-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.featured-product-details p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.feature-list {
    margin-bottom: 30px;
    list-style: none;
    padding-left: 5px;
}

.feature-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
    color: #444;
}

.feature-list li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 3px;
}

/* Product Quality Section */
.product-quality {
    background-color: var(--white);
}

.quality-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.quality-text {
    flex: 1.3;
    min-width: 300px;
}

.quality-text > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}

.quality-image {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

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

.quality-point {
    background-color: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(19, 108, 57, 0.03);
}

.quality-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(19, 108, 57, 0.08);
}

.point-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(19, 108, 57, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.quality-point:hover .point-icon {
    background-color: var(--primary-color);
}

.point-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.quality-point:hover .point-icon i {
    color: var(--white);
}

.point-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.point-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (min-width: 992px) {
    .product-categories {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .product-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .quality-points {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-product-content {
        flex-direction: column;
    }
    
    .featured-product-image {
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .products-overview {
        padding: 70px 0 50px;
    }
    
    .product-categories {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .category-content h3 {
        font-size: 1.6rem;
    }
    
    .featured-product-details h3 {
        font-size: 1.7rem;
    }
    
    .quality-points {
        grid-template-columns: 1fr;
    }
    
    .featured-product-content,
    .quality-content {
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .products-intro {
        margin-bottom: 40px;
    }
    
    .products-intro p {
        font-size: 1rem;
    }
    
    .category-content {
        padding: 25px 20px;
    }
    
    .category-icon {
        width: 60px;
        height: 60px;
        left: 20px;
        top: -30px;
    }
    
    .category-content h3 {
        font-size: 1.4rem;
    }
    
    .featured-product-details h3 {
        font-size: 1.5rem;
    }
    
    .featured-product-details p,
    .feature-list li {
        font-size: 1rem;
    }
    
    .quality-point {
        padding: 20px;
    }
}

/* Agricultural Solutions Section */
.agricultural-solutions {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.agricultural-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23136c39' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.solutions-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    position: relative;
    z-index: 1;
}

.solutions-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #444;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.solution-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 35px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    border: 1px solid rgba(19, 108, 57, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(19, 108, 57, 0.1);
}

.solution-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(19, 108, 57, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    background-color: var(--primary-color);
}

.solution-icon i {
    font-size: 28px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon i {
    color: #fff;
}

.solution-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.solution-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.solution-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.solution-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
    color: #555;
    transition: transform 0.2s ease;
}

.solution-list li:hover {
    transform: translateX(5px);
}

.solution-list li i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 12px;
}

/* Responsive adjustments for agricultural solutions */
@media (max-width: 992px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .solution-card {
        padding: 30px 25px;
    }
}

@media (max-width: 768px) {
    .solutions-intro p {
        font-size: 1.1rem;
    }
    
    .solution-card h3 {
        font-size: 1.4rem;
    }
    
    .solution-list li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .solutions-intro {
        margin-bottom: 30px;
    }
    
    .solution-card {
        padding: 25px 20px;
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
    }
    
    .solution-icon i {
        font-size: 24px;
    }
    
    .solution-card h3 {
        font-size: 1.3rem;
    }
}

/* Farm Tools Showcase */
.farm-tools-showcase {
    background-color: #f8f9fa;
    position: relative;
}

/* Tools Introduction Styling */
.tools-intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tools-intro-text p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tools-intro-text p:last-child {
    margin-bottom: 0;
}

/* End of Tools Introduction Styling */

.section-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tool-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(19, 108, 57, 0.05);
}

.tool-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(19, 108, 57, 0.1);
}

.tool-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.tool-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tool-card:hover .tool-image::after {
    opacity: 1;
}

.tool-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.tool-details {
    padding: 25px;
}

.tool-details h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 12px;
}

.tool-details h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.tool-details p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .tool-image {
        height: 200px;
    }
    
    .tool-details {
        padding: 20px;
    }
    
    .tool-details h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .section-intro {
        font-size: 1rem;
    }
    
    .tool-image {
        height: 180px;
    }
}

/* Tool Maintenance Guide Styling */
.maintenance-guide {
    background-color: #fff;
    position: relative;
    padding: 90px 0;
}

.maintenance-guide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23136c39' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.maintenance-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.guide-text {
    flex: 1;
    width: 100%;
}

.guide-text > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.maintenance-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.maintenance-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(19, 108, 57, 0.05);
}

.maintenance-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(19, 108, 57, 0.1);
}

.step-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background-color: rgba(19, 108, 57, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.maintenance-step:hover .step-icon {
    background-color: var(--primary-color);
}

.step-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.maintenance-step:hover .step-icon i {
    color: white;
}

.step-content h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.step-content p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.maintenance-note {
    margin-top: 30px;
    padding: 20px;
    background-color: rgba(19, 108, 57, 0.05);
    border-radius: 8px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border: 1px solid rgba(19, 108, 57, 0.1);
}

.maintenance-note p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.maintenance-note strong {
    color: var(--primary-color);
}

/* Responsive adjustments for maintenance guide */
@media (max-width: 992px) {
    .maintenance-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .guide-text > p {
        font-size: 1rem;
    }
    
    .maintenance-step {
        padding: 15px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .step-icon i {
        font-size: 20px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .maintenance-guide {
        padding: 70px 0;
    }
    
    .guide-text > p {
        font-size: 1rem;
    }
    
    .maintenance-step {
        padding: 15px;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
    }
    
    .step-icon i {
        font-size: 20px;
    }
    
    .step-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .maintenance-guide {
        padding: 50px 0;
    }
    
    .maintenance-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .maintenance-note {
        padding: 15px;
    }
}

/* End of Tool Maintenance Guide Styling */

/* Enhanced Footer Text Sizes */
.footer-section h3 {
    font-size: 1.5rem;
}

.footer-tagline {
    font-size: 1.2rem;
}

.footer-link, 
.location p, 
.hours-detail .day-label,
.hours-detail .time {
    font-size: 1.1rem;
}

.footer-bottom-content p,
.footer-links a,
.designer-credit a {
    font-size: 1.05rem;
}

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

/* Floating Contact Buttons */
.floating-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    outline: none;
}

.floating-btn:hover, .floating-btn:focus, .floating-btn:active {
    transform: scale(1.1);
    text-decoration: none;
    border: none;
    outline: none;
}

.floating-btn i {
    font-size: 28px;
    color: #fff;
    text-decoration: none;
}

.whatsapp-btn {
    background-color: #25D366;
}

.phone-btn {
    background-color: #4285F4;
}

/* Blog Post Link Styles */
.blog-post {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid rgba(19, 108, 57, 0.05);
}

.blog-post:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.post-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.post-content {
    padding: 30px;
    text-align: left;
}

.post-title {
    color: var(--text-dark);
    font-size: 24px;
    margin-bottom: 20px;
    line-height: 1.4;
    font-weight: 700;
    transition: color 0.3s ease;
    text-align: left;
}

.read-more-btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(19, 108, 57, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    float: left;
    clear: both;
}

.read-more-btn:hover {
    background-color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(19, 108, 57, 0.3);
}

@media (max-width: 768px) {
    .post-image {
        height: 250px;
    }
    
    .post-title {
        font-size: 20px;
    }
    
    .post-content {
        padding: 20px;
    }
    
    .read-more-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}

/* Blog Post Full Page Styles */
.blog-post-full {
    background: #fff;
    padding: 80px 0;
    position: relative;
}

.blog-post-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(rgba(19, 108, 57, 0.9), rgba(19, 108, 57, 0.8));
    z-index: 0;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.post-header {
    text-align: left;
    padding: 40px 40px 0;
}

.post-header .post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: #666;
    font-size: 15px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-meta i {
    color: var(--primary-color);
}

.post-header .post-title {
    font-size: 36px;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 700;
}

.post-image {
    margin: 0;
    height: 400px;
    position: relative;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 1));
}

.post-content {
    padding: 40px;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.post-content h3 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--text-dark);
    font-weight: 600;
}

.post-content h4 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul {
    margin: 20px 0;
    padding-left: 20px;
}

.post-content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.post-content li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-color);
}

.post-content .feature-list,
.post-content .growing-tips,
.post-content .benefits-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    background: rgba(19, 108, 57, 0.05);
    border-radius: 10px;
    padding: 25px;
}

.post-content .feature-list li,
.post-content .growing-tips li,
.post-content .benefits-list li {
    padding-left: 35px;
    margin-bottom: 15px;
}

.post-content .feature-list li:last-child,
.post-content .growing-tips li:last-child,
.post-content .benefits-list li:last-child {
    margin-bottom: 0;
}

.post-content .feature-list li i,
.post-content .growing-tips li i,
.post-content .benefits-list li i {
    font-size: 18px;
}

/* Social Share Section */
.social-share {
    margin: 40px;
    padding: 30px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    text-align: center;
}

.social-share h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.share-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.linkedin {
    background: #0077B5;
}

/* Related Posts Section */
.related-posts {
    padding: 40px;
    background: #f9f9f9;
    border-radius: 0 0 15px 15px;
}

.related-posts h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-post {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.related-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.related-post-image {
    height: 180px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-post:hover .related-post-image img {
    transform: scale(1.1);
}

.related-post-content {
    padding: 20px;
}

.related-post-title {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

.related-post-meta {
    font-size: 13px;
    color: #666;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .blog-post-full {
        padding: 60px 0;
    }
    
    .blog-post-content {
        margin: 0 20px;
    }
    
    .related-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .post-header {
        padding: 30px 25px 0;
    }
    
    .post-header .post-title {
        font-size: 28px;
    }
    
    .post-image {
        height: 300px;
    }
    
    .post-content {
        padding: 25px;
        font-size: 16px;
    }
    
    .post-content h3 {
        font-size: 24px;
    }
    
    .post-content h4 {
        font-size: 20px;
    }
    
    .social-share,
    .related-posts {
        padding: 25px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .post-header .post-meta {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 576px) {
    .blog-post-full {
        padding: 40px 0;
    }
    
    .blog-post-content {
        margin: 0 15px;
    }
    
    .post-header .post-title {
        font-size: 24px;
    }
    
    .post-image {
        height: 250px;
    }
    
    .share-btn {
        width: 40px;
        height: 40px;
    }
}

/* Image optimization styles */
img {
    content-visibility: auto; /* Helps with rendering performance */
}

.partner-logo img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    will-change: transform; /* Optimize animations */
    backface-visibility: hidden; /* Reduce paint during animations */
}

/* Add loading animation */
@keyframes imageLoadingAnimation {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

img[loading] {
    opacity: 0;
}

img.loaded {
    animation: imageLoadingAnimation 0.3s ease-in forwards;
}