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

:root {
    --primary-color: #00843d;
    --primary-dark: #006b32;
    --primary-light: #4caf50;
    --secondary-color: #00a651;
    --accent-color: #ffd700;
    --light-bg: #e8f5e9;
    --lighter-bg: #f1f8f4;
    --dark-text: #1b5e20;
    --light-text: #fff;
    --border-color: #c8e6c9;
    --shadow: 0 2px 10px rgba(0, 132, 61, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    background: var(--lighter-bg);
}

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

/* Header Styles */
header {
    background: var(--light-text);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--primary-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo p {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}


/* Hero Video Section - Replace the old .hero-carousel styles with these */
.hero-video {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(to bottom, rgba(0, 132, 61, 0.4), rgba(0, 107, 50, 0.8));*/
    z-index: 2;
}

.hero-video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 80%;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.hero-video-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-video-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.hero-video-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-video-btn:hover {
    background: transparent;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Responsive Design for Video Hero */
@media (max-width: 768px) {
    .hero-video {
        height: 500px;
    }

    .hero-video-content h1 {
        font-size: 2.2rem;
    }

    .hero-video-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-video {
        height: 400px;
    }

    .hero-video-content h1 {
        font-size: 1.8rem;
    }

    .hero-video-content p {
        font-size: 1rem;
    }

    .hero-video-btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

/* Hero Carousel Styles */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

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

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

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

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

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 132, 61, 0.3), rgba(0, 107, 50, 0.7));
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    width: 80%;
    max-width: 800px;
    animation: fadeInUp 1s ease;
}

.carousel-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carousel-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.carousel-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.carousel-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-btn:hover {
    background: transparent;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* Carousel Navigation Dots */
.carousel-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

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

.dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(0, 132, 61, 0.5);
}

.dot:hover {
    background: white;
    transform: scale(1.1);
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255,255,255,0.3);
}

.carousel-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 30px;
}

.carousel-arrow.next {
    right: 30px;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-carousel {
        height: 500px;
    }

    .carousel-content h1 {
        font-size: 2.2rem;
    }

    .carousel-content h2 {
        font-size: 2rem;
    }

    .carousel-content p {
        font-size: 1.1rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .carousel-arrow.prev {
        left: 15px;
    }

    .carousel-arrow.next {
        right: 15px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        height: 400px;
    }

    .carousel-content h1 {
        font-size: 1.8rem;
    }

    .carousel-content h2 {
        font-size: 1.6rem;
    }

    .carousel-content p {
        font-size: 1rem;
    }

    .carousel-btn {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
}

/* Floating Cart Button - Fixed position when scrolling */
.floating-cart {
    position: fixed;
    top: 100px;
    right: 30px;
    z-index: 9999;
    cursor: pointer;
    background: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 132, 61, 0.3);
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.floating-cart:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 132, 61, 0.4);
    background: var(--primary-color);
}

.floating-cart:hover i {
    color: white;
}

.floating-cart i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.floating-cart .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary-color);
    color: white;
    font-size: 0.75rem;
    padding: 4px 8px;
    border-radius: 50%;
    font-weight: bold;
    min-width: 24px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Hide the original header cart icon */
.header-actions .cart-icon {
    display: none !important;
}

/* Mobile floating cart */
@media (max-width: 768px) {
    .floating-cart {
        top: auto;
        bottom: 30px;
        right: 20px;
        width: 65px;
        height: 65px;
    }
    
    .floating-cart i {
        font-size: 1.6rem;
    }
    
    .floating-cart .cart-count {
        font-size: 0.8rem;
        padding: 5px 9px;
        min-width: 26px;
    }
}

/* Cart bounce animation when item added */
@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.floating-cart.bounce {
    animation: cartBounce 0.3s ease;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Products Section */
.products-section {
    padding: 4rem 0;
    background: var(--lighter-bg);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.section-title:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--secondary-color);
    margin: 1rem auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    padding: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background: var(--light-text);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 132, 61, 0.2);
    border-color: var(--primary-light);
}

.product-image {
    height: 280px;
    overflow: hidden;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-info {
    padding: 1.5rem;
    background: white;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.product-description {
    font-size: 0.95rem;
    color: #546e7a;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--secondary-color);
}

.product-gauge {
    font-size: 0.8rem;
    color: var(--accent-color);
    margin-top: 0.3rem;
    font-weight: 500;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 132, 61, 0.3);
    animation: fadeIn 0.3s ease;
    backdrop-filter: blur(3px);
}

.modal-content {
    background-color: var(--light-text);
    margin: 3% auto;
    padding: 2rem;
    width: 90%;
    max-width: 700px;
    border-radius: 12px;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 132, 61, 0.3);
    border: 1px solid var(--border-color);
}

.close-modal {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-color);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-modal:hover {
    color: var(--primary-dark);
    background: var(--light-bg);
}

.modal-body {
    margin-top: 1rem;
}

.modal-product-detail {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-product-image {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: 12px;
    margin: 0 auto;
    display: block;
    background: var(--light-bg);
    padding: 20px;
    border: 2px solid var(--border-color);
}

.modal-product-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    text-align: center;
}

.modal-product-description {
    margin: 1rem 0;
    line-height: 1.8;
    color: #455a64;
    text-align: center;
}

.modal-product-price {
    font-size: 1.8rem;
    color: var(--secondary-color);
    font-weight: bold;
    margin: 1rem 0;
    text-align: center;
}

/* Quantity Selector Styles */
.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.quantity-btn {
    background: var(--light-bg);
    border: 2px solid var(--border-color);
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 8px;
    color: var(--primary-color);
    font-weight: bold;
}

.quantity-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.quantity-input {
    width: 70px;
    height: 45px;
    text-align: center;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
}

.add-to-cart-btn {
    background: var(--primary-color);
    color: var(--light-text);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    margin-top: 1rem;
}

.add-to-cart-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 132, 61, 0.3);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -400px;
    top: 0;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--light-text);
    box-shadow: -2px 0 20px rgba(0, 132, 61, 0.2);
    z-index: 1500;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    border-left: 3px solid var(--primary-color);
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--light-bg);
}

.cart-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.close-cart {
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-color);
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-cart:hover {
    color: var(--primary-dark);
    background: white;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: var(--light-bg);
    padding: 5px;
    border: 1px solid var(--border-color);
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.cart-item-price {
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.cart-item-quantity button {
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    width: 28px;
    height: 28px;
    cursor: pointer;
    border-radius: 6px;
    color: var(--primary-color);
    font-weight: bold;
    transition: var(--transition);
}

.cart-item-quantity button:hover {
    background: var(--primary-color);
    color: white;
}

.cart-item-quantity span {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
    color: var(--dark-text);
}

.remove-item {
    color: #e74c3c;
    cursor: pointer;
    font-size: 0.9rem;
    margin-left: 0.5rem;
    transition: var(--transition);
}

.remove-item:hover {
    color: #c0392b;
    transform: scale(1.1);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 2px solid var(--border-color);
    background: var(--light-bg);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.checkout-btn {
    background: #25D366;
    color: var(--light-text);
    border: none;
    padding: 1rem;
    width: 100%;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
}

.checkout-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Footer Styles */
footer {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
    color: white;
}

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

.footer-section p {
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.9);
}

.footer-section i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--light-text);
    font-size: 1.5rem;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.8);
}

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--light-text);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
        border-top: 2px solid var(--border-color);
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        max-width: 100%;
    }

    .modal-content {
        margin: 5% auto;
        width: 95%;
        padding: 1rem;
    }

    .modal-product-image {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .header-content {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 1.4rem;
    }

    .hero {
        height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-image {
        height: 220px;
    }
}

/* Page Header (for about & contact pages) */
.page-header {
    background: linear-gradient(rgba(0, 132, 61, 0.9), rgba(0, 107, 50, 0.9)), url('https://images.unsplash.com/photo-1581094794329-c8112c89d12e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 4rem 0;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

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

/* About Page Styles */
.about-story {
    padding: 4rem 0;
}

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

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #455a64;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.values-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.value-card p {
    color: #546e7a;
    line-height: 1.6;
}

.testimonials-preview {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    border: 1px solid var(--border-color);
}

.testimonial p {
    font-style: italic;
    color: #546e7a;
    line-height: 1.6;
}

.customer-name {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal !important;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.contact-card p {
    color: #546e7a;
    margin-bottom: 0.3rem;
}

.contact-card .small {
    font-size: 0.85rem;
    color: #78909c;
    margin-top: 0.5rem;
}

.service-centers {
    padding: 4rem 0;
    background: var(--light-bg);
}

.section-subtitle {
    text-align: center;
    color: #546e7a;
    margin-bottom: 2rem;
}

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

.center-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.center-card:hover {
    border-color: var(--primary-light);
}

.center-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.center-card h3 i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.center-card p {
    color: #546e7a;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.contact-form-section {
    padding: 4rem 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.form-container h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 132, 61, 0.1);
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    width: 100%;
    transition: var(--transition);
    font-weight: 600;
}

.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 132, 61, 0.3);
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Responsive for new pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        order: -1;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .centers-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Styles for New Pages */

/* Header CTA Button */
.header-cta {
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.header-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Stats Row */
.stats-row {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: #546e7a;
}

/* Products Detail Page */
.products-detail-section {
    padding: 4rem 0;
    background: var(--lighter-bg);
}

.product-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.product-detail-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.product-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 132, 61, 0.15);
}

.product-image-large {
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.product-image-large img {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
}

.product-detail-content {
    padding: 2rem;
}

.product-detail-content h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.product-badge {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.badge-premium {
    background: #fff3e0;
    color: #e65100;
}

.badge-pro {
    background: #fce4ec;
    color: #c2185b;
}

.product-price-large {
    font-size: 2rem;
    color: var(--secondary-color);
    font-weight: bold;
    margin: 1rem 0;
}

.product-price-large small {
    font-size: 1rem;
    color: #78909c;
}

.product-desc {
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: #455a64;
}

.product-features li i {
    color: #4caf50;
    margin-right: 0.5rem;
}

.order-btn {
    background: #25D366;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.order-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.quality-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.quality-content i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.quality-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.quality-content p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.7;
}

/* Commercial Page */
.commercial-section {
    padding: 4rem 0;
    background: var(--lighter-bg);
}

.commercial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.commercial-info h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.commercial-info > p {
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: var(--light-bg);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.benefit-item h4 {
    color: var(--dark-text);
    margin-bottom: 0.3rem;
}

.benefit-item p {
    color: #78909c;
    font-size: 0.95rem;
}

.commercial-form-container {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.commercial-form-container h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.commercial-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.commercial-form select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    cursor: pointer;
}

.clients-section {
    padding: 4rem 0;
    background: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.industry-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.industry-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-light);
}

.industry-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.industry-item span {
    font-size: 0.9rem;
    color: #546e7a;
    font-weight: 500;
}

/* Projects Page */
.projects-section {
    padding: 4rem 0;
    background: var(--lighter-bg);
}

.projects-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #546e7a;
    font-size: 1.1rem;
    line-height: 1.7;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 132, 61, 0.15);
}

.project-image {
    height: 220px;
    overflow: hidden;
}

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

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-content {
    padding: 1.5rem;
}

.project-tag {
    display: inline-block;
    background: var(--light-bg);
    color: var(--primary-color);
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.project-tag.residential { background: #e8f5e9; color: #2e7d32; }
.project-tag.infrastructure { background: #fff3e0; color: #ef6c00; }
.project-tag.industrial { background: #e3f2fd; color: #1565c0; }
.project-tag.institutional { background: #f3e5f5; color: #6a1b9a; }
.project-tag.retail { background: #fce4ec; color: #c2185b; }

.project-content h3 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.project-content p {
    color: #78909c;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.project-stats {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
    color: #90a4ae;
}

.project-stats i {
    color: var(--primary-color);
}

.testimonial-highlight {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.testimonial-card-large {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 16px;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(255,255,255,0.2);
}

.quote-icon {
    font-size: 3rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-card-large p {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Environment Page */
.environment-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    text-align: center;
}

.environment-intro {
    max-width: 700px;
    margin: 0 auto;
}

.environment-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1rem;
}

.environment-intro h2 {
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.environment-intro p {
    color: #546e7a;
    line-height: 1.7;
    font-size: 1.1rem;
}

.sustainability-section {
    padding: 4rem 0;
    background: white;
}

.sustainability-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.sustainability-card {
    text-align: center;
    padding: 2rem;
    background: var(--lighter-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.sustainability-card:hover {
    transform: translateY(-5px);
    border-color: #4caf50;
}

.sustainability-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4caf50, #66bb6a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.sustainability-icon i {
    font-size: 2rem;
    color: white;
}

.sustainability-card h3 {
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.sustainability-card p {
    color: #78909c;
    line-height: 1.6;
}

.green-products-section {
    padding: 4rem 0;
    background: var(--light-bg);
}

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

.green-product-highlight {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 2px solid #4caf50;
    align-items: center;
}

.green-product-highlight img {
    max-width: 100%;
}

.green-product-info h3 {
    color: #2e7d32;
    margin-bottom: 0.5rem;
}

.green-product-info > p {
    color: #546e7a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.green-benefits {
    list-style: none;
}

.green-benefits li {
    padding: 0.5rem 0;
    color: #455a64;
}

.green-benefits li i {
    color: #4caf50;
    margin-right: 0.5rem;
}

.environment-stats {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-box {
    padding: 1.5rem;
}

.stat-box .stat-number {
    color: white;
    font-size: 3rem;
    display: block;
}

.stat-box .stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
}

.community-section {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.community-content h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.community-content > p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #546e7a;
    line-height: 1.7;
}

.community-initiatives {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.initiative {
    text-align: center;
}

.initiative i {
    font-size: 2.5rem;
    color: #4caf50;
    display: block;
    margin-bottom: 0.5rem;
}

.initiative span {
    color: #546e7a;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .product-detail-card {
        grid-template-columns: 1fr;
    }

    .product-image-large {
        padding: 1rem;
    }

    .commercial-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .commercial-form .form-row {
        grid-template-columns: 1fr;
    }

    .green-product-highlight {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .header-cta span {
        display: none;
    }
}