/* ============================================
   Nature Green Herbal - B2C Website Styles
   Organic Sophistication Design - IMPROVED
   Mobile Responsive + Enhanced Design
   ============================================ */

/* ========== CSS VARIABLES ========== */
:root {
    /* Color Palette - Natural Greens */
    --primary-green: #2d5016;
    --secondary-green: #4a7c29;
    --light-green: #6fbf73;
    --accent-green: #8dd891;
    --pale-green: #a8e6a3;
    
    /* Neutral Colors */
    --cream: #faf8f5;
    --off-white: #f5f3ef;
    --white: #ffffff;
    --dark-gray: #2a2a2a;
    --medium-gray: #666666;
    --light-gray: #e8e6e3;
    
    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1200px;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-fast: all 0.2s ease-in-out;
    
    /* Shadows */
    --shadow-sm: 0 2px 12px rgba(45, 80, 22, 0.08);
    --shadow-md: 0 4px 20px rgba(45, 80, 22, 0.12);
    --shadow-lg: 0 8px 32px rgba(45, 80, 22, 0.16);
    --shadow-xl: 0 12px 48px rgba(45, 80, 22, 0.2);
}

/* ========== RESET & BASE STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    background-color: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========== CONTAINER ========== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER / NAVBAR ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-main {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1.2;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    flex: 1;
    justify-content: center;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--dark-gray);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--light-green);
    transition: width var(--transition-fast);
}

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

.nav-link.active {
    color: var(--light-green);
    font-weight: 600;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--off-white);
    border-radius: 50%;
    color: var(--primary-green);
    transition: var(--transition-fast);
    cursor: pointer;
}

.btn-icon:hover {
    background: var(--light-green);
    color: var(--white);
    transform: scale(1.08);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-gray);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ========== HERO SECTION ========== */
.hero {
    margin-top: 76px;
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(111, 191, 115, 0.05) 0%, rgba(45, 80, 22, 0.03) 100%);
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.5;
}

.botanical-bg {
    position: absolute;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.botanical-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -100px;
    animation-delay: 0s;
}

.botanical-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -150px;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(20px); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e8f5e9;
    color: var(--primary-green);
    padding: 12px 24px;
    border-radius: 30px;
    width: fit-content;
    font-weight: 600;
    font-size: 14px;
    animation: slideInLeft 0.8s ease-out;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--dark-gray);
    animation: fadeInUp 0.8s ease-out 0.1s backwards;
}

.highlight {
    color: var(--light-green);
    position: relative;
}

.highlight::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 8px;
    background: rgba(111, 191, 115, 0.2);
    border-radius: 4px;
    z-index: -1;
}

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

.hero-description {
    font-size: 18px;
    color: var(--medium-gray);
    line-height: 1.8;
    max-width: 500px;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.hero-cta {
    display: flex;
    gap: 20px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(111, 191, 115, 0.2);
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--light-green);
}

.stat-label {
    font-size: 13px;
    color: var(--medium-gray);
    font-weight: 500;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: slideInRight 0.8s ease-out;
}

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

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover .hero-image {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(45, 80, 22, 0.25);
}

.hero-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--white);
    border-radius: 50%;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(111, 191, 115, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(111, 191, 115, 0.4);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--light-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: block;
    color: var(--light-green);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
    color: var(--primary-green);
    margin: 0;
}

.section-description {
    color: var(--medium-gray);
    font-size: 16px;
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: var(--off-white);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.feature-card:hover {
    background: var(--white);
    border-color: var(--light-green);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(111, 191, 115, 0.1), rgba(74, 124, 41, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--secondary-green) 100%);
    transform: scale(1.1) rotate(5deg);
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.feature-text {
    color: var(--medium-gray);
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
}

/* ========== PRODUCTS SECTION ========== */
.products-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.products-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-spring);
    position: relative;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(111, 191, 115, 0.1), rgba(74, 124, 41, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.product-content {
    padding: 24px;
}

.product-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-description {
    color: var(--medium-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.benefit-tag {
    display: inline-block;
    padding: 6px 12px;
    background: #e8f5e9;
    color: var(--primary-green);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.product-actions {
    display: flex;
    gap: 12px;
}

.btn-product {
    flex: 1;
    padding: 12px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 13px;
    text-align: center;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-add {
    background: var(--light-green);
    color: var(--white);
}

.btn-add:hover {
    background: var(--secondary-green);
    transform: scale(1.05);
}

.btn-view {
    background: var(--off-white);
    color: var(--primary-green);
    border: 1px solid var(--light-green);
}

.btn-view:hover {
    background: var(--light-green);
    color: var(--white);
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin-top: 50px;
}

.btn-large {
    padding: 18px 45px;
    font-size: 17px;
    font-weight: 600;
}

/* Products Page Grid - ALL products */
.products-grid-all {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* ========== MODAL STYLES ========== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

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

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideUp 0.4s ease-out;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition-fast);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--primary-green);
    transform: rotate(90deg);
}

.modal-content h2 {
    font-family: var(--font-display);
    color: var(--primary-green);
    margin-bottom: 24px;
    font-size: 28px;
}

/* ========== FORM STYLES ========== */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--light-green);
    box-shadow: 0 0 0 3px rgba(111, 191, 115, 0.1);
}

.form-group small {
    display: block;
    margin-top: 6px;
    color: var(--medium-gray);
    font-size: 12px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.modal-actions .btn {
    flex: 1;
    padding: 14px 24px;
    border-radius: 8px;
}

/* ========== ADMIN PANEL ========== */
.admin-panel {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-admin {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-admin:hover {
    background: var(--secondary-green);
    transform: scale(1.05);
}

.btn-admin-secondary {
    background: var(--secondary-green);
}

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

/* ========== ABOUT SECTION ========== */
.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transition: var(--transition-smooth);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--white);
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: slideInUp 0.6s ease-out;
}

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

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-gray);
}

.about-feature svg {
    color: var(--light-green);
    flex-shrink: 0;
}

/* ========== SERVICES SECTION ========== */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    text-align: center;
    padding: 50px 30px 40px;
    background: var(--off-white);
    border-radius: 16px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--light-green), var(--secondary-green));
    border-radius: 50%;
    margin-top: -30px;
}

.service-card:hover {
    background: var(--white);
    border-color: var(--light-green);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-green);
    margin: 30px 0 16px;
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.8;
    font-size: 15px;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, rgba(111, 191, 115, 0.05) 0%, rgba(45, 80, 22, 0.03) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    position: relative;
    border-left: 4px solid var(--light-green);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--medium-gray);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-green);
    font-size: 15px;
}

.testimonial-role {
    font-size: 13px;
    color: var(--medium-gray);
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

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

.faq-item {
    background: var(--off-white);
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--light-green);
    box-shadow: 0 4px 12px rgba(111, 191, 115, 0.1);
}

.faq-question {
    padding: 24px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 0;
    flex: 1;
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--light-green);
    width: 20px;
    height: 20px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 30px;
}

.faq-answer p {
    margin: 0;
    padding-bottom: 24px;
    color: var(--medium-gray);
    line-height: 1.8;
}

/* ========== BLOG SECTION ========== */
.blog-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(111, 191, 115, 0.2);
}

.blog-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(111, 191, 115, 0.1), rgba(74, 124, 41, 0.1));
}

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

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

.blog-content {
    padding: 28px;
}

.blog-category {
    display: inline-block;
    padding: 6px 14px;
    background: #e8f5e9;
    color: var(--primary-green);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
    margin: 12px 0;
    line-height: 1.4;
}

.blog-excerpt {
    color: var(--medium-gray);
    line-height: 1.7;
    margin: 12px 0 20px;
    font-size: 15px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--light-gray);
    font-size: 0.85rem;
    color: var(--medium-gray);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: var(--off-white);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid var(--light-green);
    transition: var(--transition-smooth);
}

.contact-info-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.contact-info-card h3 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-info-card p {
    color: var(--medium-gray);
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 30px;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* ========== FOOTER ========== */
footer {
    background: linear-gradient(90deg, #6FB36A 0%, #4E8B2F 100%);
    color: #ffffff;
    padding: 60px 0 20px;
}

/* Make all footer text bright white */
footer h3,
footer h4,
footer p,
footer span,
footer a {
    color: #ffffff;
}

/* Extra bright hover effect */
footer a:hover {
    color: #f1fff1;
}





.footer-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-section h3 {
    font-family: var(--font-display);
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column a:hover {
    color: var(--light-green);
    transform: translateX(4px);
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.contact-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.copyright {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(111, 191, 115, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ========== ALL PRODUCTS PAGE ========== */
.page-hero {
    background: linear-gradient(135deg, var(--light-green) 0%, var(--secondary-green) 100%);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
    margin-top: 76px;
}

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

.page-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.page-description {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
}

.back-link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(-5px);
}

.all-products-page {
    padding: 80px 0;
}

.upload-note {
    margin-top: 24px;
    padding: 16px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 8px;
}

.upload-note p {
    margin: 0;
    color: #856404;
    font-size: 0.9rem;
}

.modal-description {
    color: var(--medium-gray);
    margin-bottom: 24px;
    font-size: 0.95rem;
}

/* ========== DESKTOP RESPONSIVE (Keep Laptop Layout) ========== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid-home,
    .products-grid-all {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-right {
        order: -1;
    }
    
    .hero-title {
        font-size: 42px;
    }
}

/* ========== TABLET RESPONSIVE ========== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    /* Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: var(--white);
        padding: 20px 0;
        box-shadow: var(--shadow-md);
        border-radius: 0 0 16px 16px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-link {
        padding: 14px 24px;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Hero Section */
    .hero {
        padding: 40px 0;
        margin-top: 76px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    /* Products Grid */
    .products-grid-home,
    .products-grid-all {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .product-card {
        margin: 0;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    /* FAQ */
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
    
    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .blog-card {
        margin: 0;
    }
    
    /* Modal */
    .modal-content {
        width: 95%;
        padding: 30px;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 80px 0 60px;
    }
    
    .page-title {
        font-size: 42px;
    }
}

/* ========== MOBILE RESPONSIVE ========== */
@media (max-width: 480px) {
    :root {
        --section-padding: 40px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    /* Logo */
    .logo-img {
        height: 40px;
    }
    
    .logo-main {
        font-size: 14px;
    }
    
    .navbar {
        padding: 12px 16px;
        gap: 16px;
    }
    
    /* Hero */
    .hero {
        padding: 30px 0;
        min-height: auto;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 10px 16px;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 14px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    /* Section Headers */
    .section-title {
        font-size: 28px;
    }
    
    .section-label {
        font-size: 12px;
    }
    
    /* Feature Cards */
    .feature-card {
        padding: 28px 20px 24px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-title {
        font-size: 18px;
    }
    
    .feature-text {
        font-size: 14px;
    }
    
    /* Products */
    .products-grid-home,
    .products-grid-all {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-content {
        padding: 16px;
    }
    
    .product-name {
        font-size: 18px;
    }
    
    .product-description {
        font-size: 13px;
    }
    
    /* Buttons */
    .btn-product {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .btn-admin {
        padding: 12px 16px;
        font-size: 13px;
    }
    
    /* Services */
    .service-card {
        padding: 40px 20px 30px;
    }
    
    .service-card h3 {
        font-size: 18px;
        margin-top: 25px;
    }
    
    .service-card p {
        font-size: 13px;
    }
    
    /* Contact Form */
    .contact-form-wrapper {
        padding: 24px;
    }
    
    .contact-form-wrapper h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 16px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    /* Footer */
    footer {
        padding: 40px 0 16px;
    }
    
    .footer-container {
        gap: 24px;
    }
    
    .footer-logo-section h3 {
        font-size: 18px;
    }
    
    .footer-column h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .footer-column a {
        font-size: 13px;
    }
    
    .copyright {
        font-size: 12px;
        padding-top: 16px;
    }
    
    /* Page Hero */
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .page-description {
        font-size: 14px;
    }
    
    /* Blog */
    .blog-title {
        font-size: 1.1rem;
    }
    
    .blog-excerpt {
        font-size: 13px;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    /* FAQ */
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
    
    /* Modal */
    .modal-content {
        max-width: 90%;
        width: 100%;
        padding: 24px;
    }
    
    .modal-content h2 {
        font-size: 22px;
    }
    
    /* Testimonials */
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonial-author {
        font-size: 14px;
    }
}
