/* Root Variables - Green & Earthy Color Palette */
:root {
    --primary-green: #2d5a27;
    --secondary-green: #4a7c59;
    --light-green: #6b8e23;
    --accent-green: #8fbc8f;
    --sage-green: #9caf88;
    --earthy-brown: #8b4513;
    --warm-beige: #f5f5dc;
    --cream-white: #fefefe;
    --soft-brown: #d2b48c;
    --dark-brown: #654321;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --border-light: #e8e8e8;
    --shadow-light: rgba(45, 90, 39, 0.1);
    --shadow-medium: rgba(45, 90, 39, 0.2);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream-white);
    overflow-x: hidden;
    font-size: 17.6px; /* Increased from 16px to match 110% zoom */
}

.container {
    max-width: 95vw; /* Use viewport width instead of fixed pixels */
    margin: 0 auto;
    padding: 0 2.5vw; /* Use viewport width for padding */
    width: 100%;
}

/* New Arrivals Section Layout Improvements */
.new-arrivals-section {
    padding: 4rem 0;
    background: #EFF7F0; /* Light mint green background for elegant appearance */
    width: 100%;
    position: relative;
    overflow: hidden;
}
/* New Arrivals Section Headings - Unique Design */
.new-arrivals-section .section-header h2 {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Larger, more prominent title */
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 1.5rem;
    position: relative;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(45, 90, 39, 0.1);
    letter-spacing: -0.5px;
}

.new-arrivals-section .section-header h2::before {
    content: '✨';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.6;
}

.new-arrivals-section .section-header h2::after {
    content: '🌟';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.6;
}

/* Add subtle texture overlay for elegance */
.new-arrivals-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

/* New Arrivals Hero Section - Enhanced Typography */
.new-arrivals-hero h2 {
    font-size: clamp(2.8rem, 6vw, 4rem); /* Larger, more impactful hero title */
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 3px 6px rgba(45, 90, 39, 0.15);
    letter-spacing: -1px;
    line-height: 1.2;
}

.new-arrivals-hero p {
    font-size: clamp(1.1rem, 3vw, 1.4rem); /* Increased subtitle font size */
    color: #4a7c59;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.new-arrivals-section .container {
    max-width: 95vw;
    margin: 0 auto;
    padding: 0 2.5vw;
    width: 100%;
    position: relative;
    z-index: 2; /* Ensure content appears above background effects */
}

.new-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25vw, 1fr)); /* Use viewport width */
    gap: 2vw; /* Use viewport width for gap */
    margin-bottom: 3rem;
    justify-items: center;
    width: 100%;
}

.coming-soon {
    padding: 4.4rem 0;
    background: var(--cream-white);
    width: 100%;
}

.coming-soon .container {
    max-width: 95vw;
    margin: 0 auto;
    padding: 0 2.5vw;
    width: 100%;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); /* Fixed minimum width for better sizing */
    gap: 2rem; /* Fixed gap for consistency */
    margin-top: 3rem;
    justify-items: center;
    width: 100%;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem); /* Responsive font size */
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
    position: relative;
    width: 100%;
}

/* Coming Soon: prevent decorative icons overlapping the heading */
.coming-soon .section-title {
    position: relative;
    z-index: 2;
}
.coming-soon .section-title::before,
.coming-soon .section-title::after {
    display: none;
}

/* Specific fix for New Arrivals page layout */
body:has(.new-arrivals-section) .container,
body:has(.coming-soon) .container {
    max-width: 100vw !important;
    width: 100vw !important;
    padding: 0 2vw !important;
    margin: 0 !important;
}

/* Alternative approach - target the page directly */
.new-arrivals-section,
.coming-soon {
    width: 100vw !important;
    margin-left: calc(-50vw + 50%) !important;
    margin-right: calc(-50vw + 50%) !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

h1 { font-size: 3.85rem; font-weight: 700; } /* Increased from 600 to 700 */
h2 { font-size: 2.75rem; font-weight: 600; } /* Increased from 500 to 600 */
h3 { font-size: 1.98rem; font-weight: 600; } /* Increased from 500 to 600 */

p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.21rem; /* Increased from 1.1rem */
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 13.2px 33px; /* Increased from 12px 30px */
    border-radius: 33px; /* Increased from 30px */
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem; /* Increased from 1rem */
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E, #075E54);
}

/* Checkout buttons container */
.checkout-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.checkout-buttons .btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-outline {
    background: transparent;
    color: var(--secondary-green);
    border: 1px solid var(--accent-green);
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-outline:hover {
    background: var(--accent-green);
    color: white;
}

/* Button with icon spacing */
.btn i {
    margin-right: 0.5rem;
}

.btn i:last-child {
    margin-right: 0;
    margin-left: 0.5rem;
}

.btn i:only-child {
    margin: 0;
}

/* Navigation */
.navbar {
    background: white;
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.75rem 0;
    box-shadow: 0 2px 20px var(--shadow-light);
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

.logo i {
    font-size: 2rem;
    margin-right: 10px;
    color: var(--light-green);
}

.logo-image {
    height: 60px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.footer-logo-image {
    height: 90px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    margin: 0 auto 5px auto;
    display: block;
}

/* Responsive logo styles */
@media (max-width: 768px) {
    .logo-image {
        height: 50px;
        max-width: 180px;
    }
    
    
    .footer-logo-image {
        height: 70px;
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 45px;
        max-width: 150px;
    }
    
    .footer-logo-image {
        height: 55px;
        max-width: 170px;
    }
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

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

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

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--cream-white);
    min-width: 200px;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 8px 16px var(--shadow-medium);
    border-radius: 10px;
    z-index: 1001;
    top: 100%;
    left: 0;
    margin-top: 5px;
    border: 1px solid var(--border-light);
}

.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 4px;
}

.dropdown-content a:hover {
    background-color: var(--accent-green);
    color: white;
    transform: translateX(5px);
}

/* Custom scrollbar for dropdown */
.dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: var(--warm-beige);
    border-radius: 3px;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: var(--accent-green);
    border-radius: 3px;
    transition: background 0.3s ease;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-green);
}

/* Firefox scrollbar styling */
.dropdown-content {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-green) var(--warm-beige);
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.3s ease;
}

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

.dropdown .nav-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Individual item styles removed - only categories shown in dropdowns */

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--accent-green);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--cream-white) 50%, #f0f8e8 100%);
    overflow: hidden;
    padding-top: 70px;
}

/* Add sophisticated background texture to hero section */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="elegant-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="0.8" fill="%23ffffff" opacity="0.3"/><circle cx="0" cy="0" r="0.4" fill="%23ffffff" opacity="0.15"/><circle cx="60" cy="60" r="0.4" fill="%23ffffff" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23elegant-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.02) 25%, transparent 50%, rgba(255, 255, 255, 0.02) 75%, transparent 100%),
        linear-gradient(-45deg, transparent 0%, rgba(255, 255, 255, 0.01) 25%, transparent 50%, rgba(255, 255, 255, 0.01) 75%, transparent 100%);
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
    position: relative;
}

.hero-content > :first-child {
    text-align: left;
}

.hero-title {
    font-size: 4.4rem; /* Increased from 4rem */
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 1.1rem; /* Increased from 1rem */
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.65rem; /* Increased from 1.5rem */
    color: var(--secondary-green);
    font-weight: 500;
    margin-bottom: 1.65rem; /* Increased from 1.5rem */
    text-align: left;
}

.hero-description {
    font-size: 1.32rem; /* Increased from 1.2rem */
    color: var(--text-light);
    margin-bottom: 2.2rem; /* Increased from 2rem */
    line-height: 1.8;
    text-align: left;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 160px;
    text-align: center;
}

.plant-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 1fr;
    gap: 2rem;
    padding: 2rem;
}

/* Position the third card to start new row (bottom-left) */
.plant-showcase > .plant-item:nth-child(3) {
    grid-column: 1;
}

.plant-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform 0.3s ease;
    border: 1px solid var(--accent-green);
}

.plant-item:hover {
    transform: translateY(-10px);
}

.plant-icon {
    font-size: 3rem;
    color: var(--light-green);
    margin-bottom: 1rem;
}

.plant-item span {
    font-weight: 500;
    color: var(--primary-green);
}

/* Floating Leaves Animation */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-leaves i {
    position: absolute;
    color: var(--accent-green);
    animation: float 6s ease-in-out infinite;
    opacity: 0.6;
}

.leaf-1 { top: 20%; left: 10%; font-size: 2rem; animation-delay: 0s; }
.leaf-2 { top: 60%; left: 85%; font-size: 1.5rem; animation-delay: 2s; }
.leaf-3 { top: 80%; left: 20%; font-size: 2.5rem; animation-delay: 4s; }
.leaf-4 { top: 30%; left: 70%; font-size: 1.8rem; animation-delay: 1s; }
.leaf-5 { top: 70%; left: 60%; font-size: 2rem; animation-delay: 3s; }

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

/* About Section */
.about {
    padding: 88px 0; /* Increased from 80px 0 */
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--cream-white) 50%, #f0f8e8 100%);
    position: relative;
    overflow: hidden;
}

/* Add sophisticated background texture */
.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="elegant-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="0.8" fill="%23ffffff" opacity="0.3"/><circle cx="0" cy="0" r="0.4" fill="%23ffffff" opacity="0.15"/><circle cx="60" cy="60" r="0.4" fill="%23ffffff" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23elegant-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.02) 25%, transparent 50%, rgba(255, 255, 255, 0.02) 75%, transparent 100%),
        linear-gradient(-45deg, transparent 0%, rgba(255, 255, 255, 0.01) 25%, transparent 50%, rgba(255, 255, 255, 0.01) 75%, transparent 100%);
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    justify-content: end;
    max-width: 100%;
    margin: 0 auto;
    margin-left: auto;
    margin-right: 0;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.08);
    border: 1px solid rgba(45, 90, 39, 0.1);
}

.feature i {
    font-size: 1.5rem;
    color: var(--light-green);
}

.about-image img {
    max-width: 420px;    /* Increased from 350px */
    width: 100%;
    height: auto;
    border-radius: 16px; /* Optional: rounded corners */
    box-shadow: 0 4px 16px rgba(0,0,0,0.08); /* Optional: subtle shadow */
    object-fit: cover;
}

/* Dark and Attractive About Section Title Styling */
.about-text h2 {
    font-size: 3.2rem; /* Reduced size to fit on one line */
    font-weight: 800; /* Bold for strong presence */
    font-family: 'Playfair Display', serif; /* Elegant serif font */
    color: #2E7D32; /* Dark green color matching website palette */
    margin-bottom: 2rem;
    line-height: 1.1; /* Tighter line height */
    letter-spacing: -0.02em; /* Tighter letter spacing */
    position: relative;
    text-shadow: 
        0 2px 4px rgba(46, 125, 50, 0.2),
        0 4px 8px rgba(46, 125, 50, 0.1);
    text-align: left;
    display: inline-block;
    padding-left: 1rem; /* Space for accent line */
    white-space: nowrap; /* Prevent line breaks */
    max-width: 100%; /* Ensure it fits within container */
}

/* Green accent line on the left */
.about-text h2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, 
        #4CAF50 0%, 
        #66BB6A 50%, 
        #4CAF50 100%
    );
    border-radius: 2px;
    z-index: 1;
}

/* Elegant dark underline - REMOVED */
.about-text h2::after {
    display: none; /* Remove the underline completely */
}
/* Add subtle background highlight */
.about-text h2 {
    background: linear-gradient(135deg, 
        rgba(46, 125, 50, 0.03), 
        rgba(76, 175, 80, 0.05), 
        rgba(46, 125, 50, 0.02)
    );
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 
        0 4px 15px rgba(46, 125, 50, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(46, 125, 50, 0.1);
}

/* Responsive About Title Styling */
@media (max-width: 768px) {
    .about-text h2 {
        font-size: 2.8rem; /* Smaller for mobile but still on one line */
        margin-bottom: 2rem;
        padding: 0.8rem 1.2rem;
        white-space: nowrap;
    }
}

@media (max-width: 480px) {
    .about-text h2 {
        font-size: 2.2rem; /* Further reduced for small screens */
        margin-bottom: 1.5rem;
        padding: 0.6rem 1rem;
        white-space: nowrap;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .about-text h2 {
        font-size: 1.8rem; /* Very small for tiny screens */
        white-space: nowrap;
    }
}
.image-placeholder {
    width: 100%;
    height: auto;
    min-height: 350px;
    max-height: 500px;
    aspect-ratio: 4/3;
    background: 
        linear-gradient(135deg, #fafbfc 0%, #f5f7fa 25%, #f0f4f8 50%, #e8f2f0 75%, #e0f0e8 100%),
        radial-gradient(circle at 30% 20%, rgba(139, 195, 74, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(45, 90, 39, 0.02) 0%, transparent 50%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--primary-green);
    text-align: center;
    box-shadow: 
        0 20px 40px rgba(45, 90, 39, 0.08),
        0 8px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(139, 195, 74, 0.15);
    padding: 20px;
}

/* Add sophisticated texture pattern */
.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="subtle-dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23ffffff" opacity="0.4"/><circle cx="0" cy="0" r="0.3" fill="%23ffffff" opacity="0.2"/><circle cx="40" cy="40" r="0.3" fill="%23ffffff" opacity="0.2"/></pattern></defs><rect width="100" height="100" fill="url(%23subtle-dots)"/></svg>'),
        linear-gradient(45deg, transparent 48%, rgba(255, 255, 255, 0.1) 49%, rgba(255, 255, 255, 0.1) 51%, transparent 52%);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.6;
}

/* Add elegant geometric overlay */
.image-placeholder::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 25%, rgba(139, 195, 74, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 75% 75%, rgba(45, 90, 39, 0.03) 0%, transparent 60%),
        linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    border-radius: 20px;
    z-index: 2;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 16px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 3;
    box-shadow: 
        0 8px 25px rgba(45, 90, 39, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: block;
}

.image-placeholder:hover img {
    transform: scale(1.02);
}

/* Add subtle floating animation to the image container */
.image-placeholder {
    animation: gentleFloat 6s ease-in-out infinite;
    min-height: 350px;
    max-height: 500px;
}

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

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 3;
    color: var(--primary-green);
    opacity: 0.8;
}

/* Featured Products */
.featured-products {
    padding: clamp(3rem, 8vh, 6rem) 0; /* Responsive padding */
    background: linear-gradient(135deg, #f8fdf8 0%, var(--warm-beige) 100%);
}

.featured-products .section-title {
    text-align: center;
    margin-bottom: clamp(0.75rem, 2vh, 1.5rem);
    font-size: clamp(2rem, 5vw, 2.75rem); /* Responsive font size */
    font-weight: 700;
    color: var(--primary-green);
    position: relative;
}

.featured-products .section-title::after {
    content: '';
    position: absolute;
    bottom: clamp(-0.5rem, -1vh, -0.75rem);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(60px, 8vw, 80px); /* Responsive width */
    height: clamp(3px, 0.5vh, 4px); /* Responsive height */
    background: linear-gradient(to right, var(--primary-green), var(--light-green));
    border-radius: clamp(2px, 0.3vh, 4px);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    font-weight: 600;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-green), var(--light-green));
    border-radius: 3px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Featured Products Grid - Optimized for 3 products */
.featured-products .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem auto;
}

/* Enhanced Featured Product Cards */
.featured-products .product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.featured-products .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(45, 90, 39, 0.15);
    border-color: var(--accent-green);
}

.featured-products .product-image {
    height: 280px;
    background: #8FBC8F; /* Light sage green background */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible; /* Changed from hidden to visible to prevent cropping */
    border-radius: 12px 12px 0 0;
    padding: 10px; /* Added padding to prevent edge cropping */
}

.featured-products .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain to match image design */
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 12px;
}

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

.featured-products .product-info {
    padding: 1.5rem;
    text-align: center;
}

.featured-products .product-info h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.featured-products .product-info p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-products .product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.featured-products .product-rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

.featured-products .product-rating span {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.featured-products .product-price {
    margin-bottom: 1.5rem;
}

.featured-products .current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.featured-products .original-price {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.featured-products .product-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.featured-products .product-actions .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

@media (max-width: 1200px) {
    .featured-products .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .featured-products .product-image {
        height: 250px;
    }
}

@media (max-width: 900px) {
    .featured-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .featured-products .product-image {
        height: 220px;
    }
    
    .featured-products .product-info h3 {
        font-size: 1.3rem;
    }
    
    .featured-products .current-price {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .featured-products .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto 2rem auto;
    }
    
    .featured-products .product-image {
        height: 200px;
    }
    
    .featured-products .product-info {
        padding: 1.25rem;
    }
    
    .featured-products .product-info h3 {
        font-size: 1.2rem;
    }
    
    .featured-products .product-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .featured-products .product-actions .btn {
        width: 100%;
    }
    
    .featured-products .section-title {
        font-size: 2.2rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .featured-products .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .featured-products .section-title::after {
        width: 60px;
        height: 3px;
    }
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.product-image {
    height: 220px; /* Increased from 200px */
    background: #8FBC8F;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2d5a27;
    border-radius: 12px 12px 0 0;
}

/* Ensure product images are fully visible without cropping */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 10px;
}

.product-image i {
    font-size: 4rem;
}

.product-card h3 {
    padding: 1rem 1.5rem 0;
    margin-bottom: 0.5rem;
}

.product-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.price {
    display: block;
    padding: 0 1.5rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.product-card .btn {
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
}

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

/* Call to Action */
.cta {
    padding: 88px 0; /* Increased from 80px 0 */
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.cta .btn-primary:hover {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

.cta .btn-secondary {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.cta .btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-green), var(--primary-green));
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-medium);
}

/* Meet Our Team Section */
.meet-team {
    padding: 88px 0;
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--cream-white) 50%, #f0f8e8 100%);
    position: relative;
    overflow: hidden;
}

/* Add sophisticated background texture */
.meet-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="elegant-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="0.8" fill="%23ffffff" opacity="0.3"/><circle cx="0" cy="0" r="0.4" fill="%23ffffff" opacity="0.15"/><circle cx="60" cy="60" r="0.4" fill="%23ffffff" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23elegant-pattern)"/></svg>');
    opacity: 0.4;
    z-index: 1;
}

.meet-team::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 0%, rgba(255, 255, 255, 0.02) 25%, transparent 50%, rgba(255, 255, 255, 0.02) 75%, transparent 100%),
        linear-gradient(-45deg, transparent 0%, rgba(255, 255, 255, 0.01) 25%, transparent 50%, rgba(255, 255, 255, 0.01) 75%, transparent 100%);
    z-index: 1;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.team-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    position: relative;
    display: inline-block;
}

.team-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-green), var(--light-green));
    border-radius: 3px;
}

.team-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--secondary-green);
    font-weight: 400;
    margin-top: 1.5rem;
    font-style: italic;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.team-card {
    background: linear-gradient(to bottom, #ffffff 0%, #fafbfa 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem 2.5rem;
    text-align: center;
    box-shadow: 
        0 10px 30px rgba(45, 90, 39, 0.08),
        0 2px 8px rgba(45, 90, 39, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(107, 142, 35, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Subtle top accent */
.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-green) 0%, 
        var(--light-green) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-card:hover::before {
    opacity: 1;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 50px rgba(45, 90, 39, 0.15),
        0 8px 20px rgba(45, 90, 39, 0.1);
    border-color: var(--light-green);
}

.team-image-wrapper {
    width: 190px;
    height: 190px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--light-green), var(--accent-green));
    padding: 5px;
    box-shadow: 
        0 8px 25px rgba(45, 90, 39, 0.15),
        0 0 0 8px rgba(107, 142, 35, 0.05);
    transition: all 0.4s ease;
}

.team-card:hover .team-image-wrapper {
    box-shadow: 
        0 12px 35px rgba(45, 90, 39, 0.2),
        0 0 0 8px rgba(107, 142, 35, 0.1);
    transform: scale(1.02);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid white;
    transition: transform 0.4s ease;
    display: block;
}

.team-card:hover .team-image {
    transform: scale(1.06);
}

.team-info {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-name {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.75rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.3px;
    line-height: 1.2;
}

.team-role {
    font-size: 0.95rem;
    color: var(--light-green);
    font-weight: 600;
    margin-bottom: 1.25rem;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1.25rem;
    display: inline-block;
    background: rgba(107, 142, 35, 0.08);
    border-radius: 25px;
    border: 1px solid rgba(107, 142, 35, 0.15);
    transition: all 0.3s ease;
}

.team-card:hover .team-role {
    background: rgba(107, 142, 35, 0.12);
    border-color: rgba(107, 142, 35, 0.25);
}

.team-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
    min-height: 5rem;
    flex: 1;
    padding: 0 0.5rem;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(107, 142, 35, 0.1);
    width: 100%;
}

.team-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f9f5, var(--warm-beige));
    border-radius: 50%;
    color: var(--primary-green);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(107, 142, 35, 0.15);
    position: relative;
}

.team-social a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-green), var(--accent-green));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-social a:hover::before {
    opacity: 1;
}

.team-social a:hover {
    color: white;
    transform: translateY(-4px);
    box-shadow: 
        0 6px 20px rgba(107, 142, 35, 0.25),
        0 2px 8px rgba(107, 142, 35, 0.15);
    border-color: var(--light-green);
}

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

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

/* Responsive Design for Team Section */
@media (max-width: 968px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .team-card {
        padding: 2.5rem 2rem 2rem;
    }

    .team-image-wrapper {
        width: 175px;
        height: 175px;
    }
}

@media (max-width: 640px) {
    .meet-team {
        padding: 60px 0;
    }

    .team-header {
        margin-bottom: 3rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
    }

    .team-card {
        padding: 2.5rem 2rem 2rem;
    }

    .team-image-wrapper {
        width: 170px;
        height: 170px;
        margin-bottom: 1.75rem;
    }

    .team-name {
        font-size: 1.5rem;
    }

    .team-role {
        font-size: 0.9rem;
        padding: 0.45rem 1rem;
    }

    .team-description {
        font-size: 0.95rem;
        min-height: auto;
        margin-bottom: 1.75rem;
    }

    .team-social {
        gap: 0.9rem;
        padding-top: 1.25rem;
    }

    .team-social a {
        width: 40px;
        height: 40px;
    }

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

@media (max-width: 480px) {
    .team-title {
        font-size: 2rem;
    }

    .team-subtitle {
        font-size: 1rem;
    }

    .team-image-wrapper {
        width: 150px;
        height: 150px;
    }

    .team-name {
        font-size: 1.35rem;
    }

    .team-card {
        padding: 2rem 1.5rem 1.75rem;
    }
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 30px 0 15px;
    margin-top: 0; /* Removed top margin */
    position: relative; /* Ensure footer stays above map section */
    z-index: 10; /* Ensure footer is above map section */
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-logo i {
    font-size: 2rem;
    margin-right: 10px;
    color: var(--light-green);
}

.footer-section p {
    color: #ccc;
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.footer-section h3 {
    color: var(--light-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.footer-section:first-child {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-left: 0;
    gap: 0.5rem;
    max-width: 300px;
    justify-content: center;
}

.footer-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05rem;
}

.footer-section ul li a:hover {
    color: var(--light-green);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.25rem;
    justify-content: center;
    align-items: center;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--light-green);
}

.contact-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-info p {
    color: #ccc;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.05rem;
}

.contact-info i {
    color: var(--light-green);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

.footer-bottom i {
    color: var(--light-green);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb i {
    font-size: 0.8rem;
}

/* Cart Page */
.cart-section {
    padding: 3rem 0;
    background: var(--cream-white);
}

.cart-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
}

.cart-list {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
    overflow: hidden;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr 60px;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

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

.cart-item-info h4 {
    margin: 0 0 .25rem 0;
}

.cart-item-info .price {
    padding: 0;
    margin: .25rem 0 .75rem 0;
}

.quantity-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

.qty-input {
    width: 48px;
    height: 36px;
    border: none;
    text-align: center;
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
}
.cart-actions-row {
    display: flex;
    gap: 1rem;
    margin-top: .75rem;
}

.link-btn {
    background: none;
    border: none;
    color: var(--primary-green);
    font-weight: 600;
    cursor: pointer;
}

.cart-item-actions {
    display: flex;
    justify-content: flex-end;
}

.cart-summary {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    box-shadow: 0 5px 20px var(--shadow-light);
    padding: 1rem 1rem 1.25rem;
    height: fit-content;
}

.cart-summary h3 { margin-bottom: .75rem; }

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: .6rem 0;
    color: var(--text-dark);
}

.summary-row.total {
    border-top: 1px solid var(--border-light);
    margin-top: .5rem;
    font-weight: 700;
}

.empty-cart {
    padding: 3rem 1rem;
    text-align: center;
}

.empty-cart i { font-size: 3rem; color: var(--accent-green); margin-bottom: .5rem; }

@media (max-width: 900px){
    .cart-wrapper { grid-template-columns: 1fr; }
}

/* Filters Section */
.filters-section {
    padding: 2rem 0;
    background: var(--warm-beige);
    border-bottom: 1px solid var(--border-light);
}

.filters-container {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 2rem;
    align-items: center;
}

.search-box {
    position: relative;
    max-width: 400px;
}

.search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    z-index: 1;
}

.search-box input {
    width: 100%;
    padding: 12px 15px 12px 50px;
    border: 2px solid var(--border-light);
    border-radius: 25px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.filter-categories {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid var(--accent-green);
    background: transparent;
    color: var(--primary-green);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

/* Filter section styling removed - no longer needed for services */

.sort-options select {
    padding: 10px 15px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    background: white;
    font-size: 1rem;
    cursor: pointer;
}

/* Products Section */
.products-section {
    padding: 3rem 0;
    background: var(--cream-white);
}

/* Enhanced Product Cards for Products Section */
.products-section .product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.products-section .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(45, 90, 39, 0.12);
    border-color: var(--accent-green);
}

.products-section .product-image {
    height: 240px;
    background: #8FBC8F;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

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

.products-section .product-card:hover .product-image img {
    transform: scale(1.03);
}

.products-section .product-info {
    padding: 1.25rem;
    text-align: center;
}

.products-section .product-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.products-section .product-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products-section .product-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    margin-bottom: 0.75rem;
}

.products-section .product-rating i {
    color: #ffc107;
    font-size: 0.8rem;
}

.products-section .product-rating span {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-left: 0.5rem;
}

.products-section .product-price {
    margin-bottom: 1rem;
}

.products-section .current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-green);
}

.products-section .original-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.products-section .product-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.products-section .product-actions .btn {
    flex: 1;
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.product-image {
    height: 220px; /* Increased from 200px */
    background: #8FBC8F;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2d5a27;
    position: relative;
    border-radius: 12px 12px 0 0;
}

/* Product grid images: contain and center */
.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 10px;
}

.product-image i {
    font-size: 3rem;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.product-badge.new {
    background: var(--light-green);
    color: white;
}

.product-badge.popular {
    background: #4a7c59;
    color: white;
}

.product-badge {
    background: #ffd93d;
    color: var(--text-dark);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.product-info p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

.product-rating span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.product-price {
    margin-bottom: 1.5rem;
}

.current-price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

.original-price {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.product-actions .btn {
    flex: 1;
    padding: 10px 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}


.load-more-container {
    text-align: center;
}

.load-more-btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}


/* Services Page Styles */
.services-overview {
    padding: 4.4rem 0; /* Increased from 4rem 0 */
    background: linear-gradient(135deg, #fefcf7 0%, #f8f5f0 50%, #f2ede4 100%);
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.services-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.services-intro h2 {
    margin-bottom: 1rem;
}

.services-intro p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
}

/* Services Grid - New Design */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Enhanced Service Card Design - Matching First Image */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 1px solid #D9EAD3;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 500px;
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    z-index: 3;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid #2d5a27;
    outline: 3px solid rgba(45, 90, 39, 0.2);
    outline-offset: 2px;
}

/* NEW LAUNCH Tag */
.service-new-launch-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #2d5a27;
    color: white;
    padding: 7px 14px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(45, 90, 39, 0.3);
}

/* Price Tag */
.service-price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2d5a27;
    color: white;
    padding: 7px 14px;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(45, 90, 39, 0.3);
    font-family: 'Poppins', sans-serif;
}
.service-card.featured {
    border: 4px solid var(--primary-green);
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(45, 90, 39, 0.2);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-green);
    color: white;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Enhanced Service Image Styling - Plant Tag Design */
.service-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
    padding: 0;
    border-radius: 20px 20px 0 0;
}

.service-card:hover .service-uploaded-image {
    transform: scale(1.05);
}

/* Ensure all service images completely fill their frames */
.service-image img,
.service-image .service-uploaded-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 20px 20px 0 0 !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Plant Care Tag Styling */
.service-plant-tag {
    width: 100%;
    max-width: 360px;
    height: 356px;
    background: white;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 2px solid #8B4513;
}

.plant-tag-header {
    margin-bottom: 15px;
}

.plant-tag-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 8px;
}

.plant-tag-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: #8B4513;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plant-tag-content {
    margin-bottom: 22px;
}

.care-tip {
    font-size: 0.85rem;
    color: #8B4513;
    margin-bottom: 5px;
    text-align: left;
    line-height: 1.4;
}

.plant-tag-contact {
    margin-bottom: 15px;
}

.contact-text {
    font-size: 0.8rem;
    color: #8B4513;
    margin-bottom: 5px;
}

.contact-phone {
    font-size: 0.9rem;
    font-weight: 600;
    color: #8B4513;
    margin-bottom: 4px;
}

.contact-email {
    font-size: 0.8rem;
    color: #8B4513;
}

.plant-tag-social {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.social-icons i {
    font-size: 1rem;
    color: #8B4513;
}

.social-handle {
    font-size: 0.8rem;
    color: #8B4513;
    font-weight: 500;
}

.plant-tag-grass {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(135deg, #4F6F52 0%, #77A87A 100%);
    border-radius: 0 0 18px 18px;
}


/* Fallback for service cards without images */
.service-card:not(:has(.service-image)) .service-card-header {
    padding-top: 2rem;
}

.service-card:not(:has(.service-image)) .service-price-badge {
    top: 12px;
    right: 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 50%, #6b9b6b 100%);
    box-shadow: 
        0 6px 20px rgba(45, 90, 39, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.service-card:not(:has(.service-image)) .service-price-badge::before,
.service-card:not(:has(.service-image)) .service-price-badge::after {
    display: none;
}

/* Plant Tag Element - White tag with plant care info */
.service-plant-tag {
    width: 90%;
    max-width: 300px;
    height: 200px;
    background: white;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-plant-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
}

.service-plant-logo::before {
    content: "🌱";
    font-size: 20px;
    color: white;
}

.service-plant-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 8px;
}

.service-care-tips {
    font-size: 0.7rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.service-tips-list li {
    font-size: 0.65rem;
    color: #555;
    margin-bottom: 4px;
    padding-left: 15px;
    position: relative;
}

.service-tips-list li::before {
    content: "•";
    color: #2d5a27;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-contact-info {
    margin-top: 10px;
    font-size: 0.6rem;
    color: #666;
    text-align: center;
}

.service-contact-info .phone {
    font-weight: 600;
    color: #2d5a27;
    margin: 2px 0;
}

.service-contact-info .email {
    color: #2d5a27;
    margin: 2px 0;
}

.service-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.6rem;
    color: #2d5a27;
}
.service-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f8f0 0%, #e0f0e0 100%);
    color: var(--primary-green);
    font-size: 3rem;
    opacity: 0.6;
}

.image-count {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(4px);
}

.service-card-header {
    padding: 0.8rem 1.5rem 0.4rem 1.5rem;
    text-align: center;
    position: relative;
    background: transparent;
    flex: 1;
}

.service-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #4F6F52;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.service-description {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.4rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.service-description.expanded {
    -webkit-line-clamp: unset;
    display: block;
}

.service-see-more {
    background: transparent;
    border: none;
    color: #2d5a27;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    margin-top: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-see-more:hover {
    background: rgba(45, 90, 39, 0.1);
    color: #1e3d1a;
}

.service-card-body {
    padding: 0 1.5rem 1rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: transparent;
    justify-content: center;
    align-items: center;
}

/* New Launch Tag */
.service-new-tag {
    background: #f5f5f5;
    color: #666;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: inline-block;
    margin: 0 auto 1rem auto;
    border: 1px solid #ddd;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
    justify-content: flex-start;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.service-tag {
    background: linear-gradient(135deg, var(--primary-green) 0%, #1e3a1f 100%);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(45, 90, 39, 0.3);
    transition: all 0.3s ease;
    cursor: default;
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(45, 90, 39, 0.2);
    position: relative;
    display: inline-block;
}

/* Special styling for different tag types */
.service-tag:contains("popular"),
.service-tag[data-tag="popular"] {
    background: linear-gradient(135deg, #4a7c59 0%, #2d5a27 100%);
    color: white;
    border: 1px solid rgba(45, 90, 39, 0.3);
    box-shadow: 0 2px 6px rgba(45, 90, 39, 0.2);
}

.service-tag:contains("new launch"),
.service-tag[data-tag="new launch"] {
    background: linear-gradient(135deg, #5a8a5a 0%, #3d6b3d 100%);
    color: white;
    border: 1px solid rgba(45, 90, 39, 0.3);
    box-shadow: 0 2px 6px rgba(45, 90, 39, 0.2);
}

.service-tag:contains("trending"),
.service-tag[data-tag="trending"] {
    background: linear-gradient(135deg, #6b9a6b 0%, #4a7c59 100%);
    color: white;
    border: 1px solid rgba(45, 90, 39, 0.3);
    box-shadow: 0 2px 6px rgba(45, 90, 39, 0.2);
}

/* Hover effects for tags */
.service-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(45, 90, 39, 0.3);
    background: linear-gradient(135deg, #2d5a27 0%, #1e3a1f 100%);
}

/* Enhanced Professional Price Badge Design */
.service-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
    z-index: 10;
    transform: translateX(0);
    transition: all 0.3s ease;
    min-width: 70px;
    text-align: center;
    animation: priceBadgeEntrance 0.8s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

@keyframes priceBadgeEntrance {
    0% {
        opacity: 0;
        transform: translateX(20px) scale(0.8);
    }
    50% {
        opacity: 0.8;
        transform: translateX(10px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Arrow pseudo-elements removed for clean rounded badge design */

.service-card:hover .service-price-badge {
    transform: scale(1.05);
    box-shadow: 
        0 8px 25px rgba(45, 90, 39, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #2d5a27 0%, #5a8a69 50%, #7aab7a 100%);
}

.service-price-badge:hover {
    animation: priceBadgePulse 0.6s ease-in-out;
}

@keyframes priceBadgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.price-text {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 1px 2px rgba(0, 0, 0, 0.2);
    display: block;
    line-height: 1.1;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

/* Currency symbol is now handled in JavaScript for better control */

.service-card-footer {
    padding: 0.8rem 1.5rem 1.2rem 1.5rem;
    margin-top: auto;
    background: transparent;
    border-top: none;
    display: flex;
    gap: 1rem;
}

.service-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.service-btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    min-width: 100px;
    justify-content: center;
    border: 2px solid transparent;
    flex: 1;
    line-height: 1.2;
}

/* Contact Us Button - Darker Gradient Green */
.btn-contact {
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.4);
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.5);
    background: linear-gradient(135deg, #1e3d1a 0%, #2d5a27 100%);
}

/* Learn More Button - White with Darker Green Border */
.btn-learn-more {
    background: white;
    color: #2d5a27;
    border: 2px solid #2d5a27;
}

.btn-learn-more:hover {
    background: #2d5a27;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.4);
}
.service-btn-primary {
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
    flex: 1;
}

.service-btn-primary:hover {
    background: linear-gradient(135deg, #1e3d1a, #2d5a27);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(45, 90, 39, 0.3);
}

.service-btn-secondary {
    background: white;
    color: #2d5a27;
    border: 2px solid #2d5a27;
    flex: 1;
}

.service-btn-secondary:hover {
    background: #2d5a27;
    color: white;
    transform: translateY(-2px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.service-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.service-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.service-features i {
    color: var(--light-green);
    font-size: 0.9rem;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
}

.service-pricing .price {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-green);
}

/* Additional Services */
.additional-services {
    padding: 4.4rem 0; /* Increased from 4rem 0 */
    background: linear-gradient(135deg, #f8fdf8 0%, var(--warm-beige) 100%);
}

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

.additional-service {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: transform 0.3s ease;
}

.additional-service:hover {
    transform: translateY(-5px);
}

.additional-service i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.additional-service h4 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.additional-service p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Service Process */
.service-process {
    padding: 4.4rem 0; /* Increased from 4rem 0 */
    background: var(--cream-white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.step-number {
    width: 70px; /* Increased from 60px */
    height: 70px; /* Increased from 60px */
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem; /* Increased from 1.5rem */
    font-weight: 600;
    margin: 0 auto 1rem;
}

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-green);
    font-size: 1.2rem; /* Increased font size */
}

.step-content p {
    color: var(--text-light);
    font-size: 1rem; /* Increased from 0.9rem */
}

.process-arrow {
    color: var(--accent-green);
    font-size: 1.8rem; /* Increased from 1.5rem */
}

/* Testimonials */
.testimonials {
    padding: 4.4rem 0; /* Increased from 4rem 0 */
    background: linear-gradient(135deg, var(--sage-green), var(--accent-green));
    color: white;
}

.testimonials .section-title {
    color: white;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-content p {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-rating {
    margin-bottom: 1.5rem;
}

.testimonial-rating i {
    color: #ffd700;
    margin-right: 0.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info h5 {
    margin-bottom: 0.2rem;
    color: white;
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* CTA Services */
.cta-services {
    padding: 4.4rem 0; /* Increased from 4rem 0 */
    background: var(--text-dark);
    color: white;
    text-align: center;
}

.cta-services h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-services p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-size: 1.2rem;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-green);
    margin-bottom: 0.5rem;
}

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

/* Blog Page Styles */
.news-intro {
    padding: 4.4rem 0; /* Increased from 4rem 0 */
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--cream-white) 100%);
    position: relative;
    overflow: hidden;
}

.news-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.intro-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.intro-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.intro-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.intro-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    animation: statCardEntrance 0.6s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

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

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--primary-green);
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:active {
    transform: translateY(-4px) scale(1.02);
    transition: all 0.1s ease;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
    color: var(--accent-green);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.stat-item:hover .stat-label {
    color: var(--text-dark);
    transform: translateY(-2px);
    letter-spacing: 0.8px;
}

/* Articles Container - Single Column Layout for Horizontal Cards */
.articles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

/* Single Column Layout for Horizontal Cards */
.plant-news-page .articles-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 4rem 2rem;
}

.plant-news-page .articles-container .news-article-simple {
    margin: 0;
}

.plant-news-page .articles-container .news-article-simple:first-child {
    margin-top: 0;
}

.plant-news-page .articles-container .news-article-simple:last-child {
    margin-bottom: 0;
}

.articles-loading {
    text-align: center;
    padding: 4.4rem 0; /* Increased from 4rem 0 */
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--primary-green);
}

.loading-spinner i {
    font-size: 2rem;
    animation: spin 1s linear infinite;
}

.loading-spinner p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.no-articles {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--text-muted);
}

.no-articles i {
    font-size: 3rem;
    color: var(--light-green);
    margin-bottom: 1rem;
}
.no-articles h3 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

/* News Article Styles - Simple Two-Column Layout */
.news-article-simple {
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-article-simple:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.article-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 440px; /* Increased from 400px */
    align-items: center;
}

.article-content-wrapper.image-left {
    grid-template-columns: 1fr 1fr;
}

.article-content-wrapper.image-right {
    grid-template-columns: 1fr 1fr;
}

.article-content-wrapper.image-right .article-image-section {
    order: 2;
}

.article-content-wrapper.image-right .article-text-section {
    order: 1;
}

.article-image-section {
    height: 100%;
    min-height: 440px; /* Increased from 400px */
    display: flex;
    align-items: stretch;
}

.article-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--light-green), var(--accent-green));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 100%;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.3s ease;
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.article-image:hover img {
    transform: scale(1.02);
}

.article-image-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    opacity: 0.8;
}

.article-image-placeholder i {
    margin-bottom: 1rem;
}

.article-text-section {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.article-category {
    background: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: inline-block;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.article-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
}

.article-content {
    margin-bottom: 2rem;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin: 0;
    font-weight: 400;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.article-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-date::before {
    content: "📅";
    font-size: 0.8rem;
}

/* Article Modal */
.article-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

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

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

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

.modal-header {
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.modal-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
    padding-right: 1rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.modal-body {
    padding: 2rem;
}

.modal-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.modal-category {
    background: var(--primary-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.modal-image {
    width: 100%;
    height: 330px; /* Increased from 300px */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.modal-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.modal-text p {
    margin: 0 0 1.5rem 0;
}

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

.modal-footer {
    padding: 1rem 2rem 2rem 2rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Pagination Container */
.load-more-container {
    margin-top: 3rem;
    padding: 2rem 0;
}

.pagination-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.pagination-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pagination-info span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pagination-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.pagination-btn:not(:disabled):hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.2);
}

.pagination-numbers {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.pagination-number {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-light);
    background: white;
    color: var(--text-muted);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-number:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
    background: rgba(45, 90, 39, 0.05);
}

.pagination-number.active {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
}

.pagination-number.active:hover {
    background: var(--secondary-green);
    border-color: var(--secondary-green);
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid var(--accent-green);
    background: transparent;
    color: var(--primary-green);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* Featured Article */
.featured-article {
    padding: 4.4rem 0; /* Increased from 4rem 0 */
    background: linear-gradient(135deg, #f8fdf8 0%, var(--cream-white) 100%);
}

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

.featured-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.featured-image .image-placeholder {
    height: 440px; /* Increased from 400px */
    background: linear-gradient(135deg, var(--sage-green), var(--accent-green));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.featured-image .image-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-green);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.featured-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Featured highlights section removed */

/* Articles Section */
.articles-section {
    padding: 4.4rem 0; /* Increased from 4rem 0 */
    background: linear-gradient(135deg, var(--warm-beige) 0%, #f0f8e8 30%, #e8f4ee 70%, #f8f9f5 100%);
    position: relative;
    overflow: hidden;
}

.articles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23e8ddd4" opacity="0.2"/><circle cx="75" cy="75" r="1" fill="%23e8ddd4" opacity="0.15"/><circle cx="50" cy="10" r="0.5" fill="%23e8ddd4" opacity="0.25"/><circle cx="10" cy="60" r="0.5" fill="%23e8ddd4" opacity="0.2"/><circle cx="90" cy="40" r="0.5" fill="%23e8ddd4" opacity="0.15"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.articles-results-count {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--border-light);
    position: relative;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.article-image {
    height: 220px; /* Increased from 200px */
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
}

.article-image i {
    font-size: 3rem;
}

.article-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-green);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.article-content {
    padding: 1.5rem;
    position: relative;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

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

.article-content p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.article-tags {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(45, 90, 39, 0.3);
}

/* Product Tags Styles */
.product-tags {
    position: absolute;
    top: 50px;
    left: 8px;
    right: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    z-index: 10;
    max-width: calc(100% - 16px);
    align-items: flex-start;
    pointer-events: none;
}

/* Ensure product image container has relative positioning for absolute tags */
.product-image {
    position: relative !important;
}

/* Specific styles for home page featured products */
#featuredGrid .product-image {
    position: relative !important;
    overflow: visible !important;
}

#featuredGrid .product-tags {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    z-index: 15;
    pointer-events: none;
    justify-content: flex-start;
}

#featuredGrid .product-tags .tag {
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1.3;
    box-shadow: 0 3px 8px rgba(45, 90, 39, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

#featuredGrid .product-tags .tag:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.product-tags .tag {
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
    padding: 3px 6px;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    backdrop-filter: blur(5px);
    white-space: nowrap;
    flex-shrink: 0;
    margin-bottom: 3px;
    line-height: 1.2;
    max-width: calc(50% - 2px);
    overflow: hidden;
    text-overflow: ellipsis;
    box-shadow: 0 2px 6px rgba(45, 90, 39, 0.4);
}

/* All product tags now use consistent green gradient */

/* Responsive adjustments for product tags */
@media (max-width: 768px) {
    .product-tags {
        top: 6px;
        left: 6px;
        right: 6px;
        gap: 3px;
        max-width: calc(100% - 12px);
    }
    
    .product-tags .tag {
        font-size: 0.6rem;
        padding: 3px 6px;
        margin-bottom: 2px;
        max-width: calc(50% - 1.5px);
    }
    
    /* Home page specific responsive adjustments */
    #featuredGrid .product-tags {
        top: 8px;
        left: 8px;
    }
    
    #featuredGrid .product-tags .tag {
        font-size: 0.7rem;
        padding: 5px 10px;
        border-radius: 12px;
    }
    
    /* New Arrivals tablet adjustments */
    .card-badges {
        top: 12px;
        left: 12px;
        gap: 0.35rem;
        max-width: calc(100% - 24px);
    }
    
    .badge {
        padding: 5px 10px;
        font-size: 0.65rem;
        border-radius: 10px;
        letter-spacing: 0.4px;
    }
}

@media (max-width: 480px) {
    .product-tags {
        top: 4px;
        left: 4px;
        right: 4px;
        gap: 2px;
        max-width: calc(100% - 8px);
    }
    
    .product-tags .tag {
        font-size: 0.55rem;
        padding: 2px 5px;
        border-radius: 8px;
        margin-bottom: 1px;
        max-width: calc(50% - 1px);
    }
    
    /* Home page specific mobile adjustments */
    #featuredGrid .product-tags {
        top: 6px;
        left: 6px;
    }
    
    #featuredGrid .product-tags .tag {
        font-size: 0.65rem;
        padding: 4px 8px;
        border-radius: 10px;
    }
    
    /* New Arrivals mobile adjustments */
    .card-badges {
        top: 10px;
        left: 10px;
        gap: 0.3rem;
        max-width: calc(100% - 20px);
    }
    
    .badge {
        padding: 4px 8px;
        font-size: 0.6rem;
        border-radius: 8px;
        letter-spacing: 0.3px;
    }
}

.read-more {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondary-green);
    transform: translateX(5px);
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover i {
    transform: translateX(3px);
}

.share-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-green);
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
}

.article-card:hover .share-btn {
    opacity: 1;
}

.share-btn:hover {
    background: var(--primary-green);
    transform: scale(1.1);
}
/* Article Search */
.article-search {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.article-search .search-box {
    max-width: 400px;
    width: 100%;
}

/* New Arrivals Page Styles */
.new-arrivals-hero {
    padding: 4.4rem 0; /* Increased from 4rem 0 */
    background: linear-gradient(135deg, #f8fdf8 0%, var(--warm-beige) 100%);
}

.new-arrivals-hero .hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.new-arrivals-hero .hero-text {
    text-align: center;
}

.new-arrivals-hero .hero-text h2 {
    text-align: center;
}

.new-arrivals-hero .hero-text p {
    text-align: center;
}

.arrival-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
    align-items: center;
}

.arrival-stats .stat {
    text-align: center;
}

.arrival-stats .number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.arrival-stats .label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.section-controls {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.view-toggle {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 8px 12px;
    border: 1px solid var(--border-light);
    background: white;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.view-btn.active {
    background: var(--primary-green);
    color: white;
}

.new-arrivals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25vw, 1fr)); /* Use viewport width */
    gap: 2vw; /* Use viewport width for gap */
    margin-bottom: 3rem;
    justify-items: center;
    width: 100%;
}

.new-arrivals-grid.list-view {
    grid-template-columns: 1fr;
}

.new-arrival-card {
    background: white;
    border-radius: 16px;
    overflow: visible; /* Changed from hidden to visible to prevent image cropping */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(45, 90, 39, 0.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.new-arrival-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(45, 90, 39, 0.2);
}

.new-arrival-card.featured {
    border: 2px solid var(--primary-green);
    transform: scale(1.02);
}
/* Card Image Section - Green Header */
.card-image-section {
    background: #8CBF8C; /* Muted green background */
    position: relative;
    border-radius: 16px 16px 0 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
    overflow: visible; /* Prevent cropping of images */
}
.card-badges {
    position: absolute;
    top: 15px;
    right: 15px; /* Changed from left to right */
    z-index: 15;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-end; /* Changed from flex-start to flex-end */
    max-width: calc(100% - 30px);
}

.badge {
    background: #4CAF50; /* Bright green like in second image */
    color: white;
    padding: 8px 16px;
    border-radius: 20px; /* More rounded like oval in second image */
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(76, 175, 80, 0.4);
    border: none;
}

.badge.new {
    background: linear-gradient(135deg, #4a7c59, #6b9b6b);
    color: white;
}

.badge.new-arrival {
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
}

.badge.featured {
    background: linear-gradient(135deg, #1e3d1a, #2d5a27);
    color: white;
}

.badge.limited {
    background: linear-gradient(135deg, #4a7c59, #6b9b6b);
    color: white;
}

.badge.bestseller {
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
}

.card-image {
    width: 100%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2d5a27;
    position: relative;
    overflow: visible; /* Changed from hidden to visible to prevent cropping */
    border-radius: 12px;
    padding: 8px; /* Added padding to prevent edge cropping */
}

.card-image i {
    font-size: 3rem;
    opacity: 0.8;
    color: #2d5a27;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain to prevent cropping */
    object-position: center;
    border-radius: 12px;
    transition: transform 0.3s ease;
    background: #f8f9fa; /* Light background for better image visibility */
}

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

/* Specific styling for uploaded product images to prevent cropping */
.service-uploaded-image,
.card-image img[src*="http"],
.card-image img[src*="data:image"] {
    object-fit: contain !important; /* Force contain to prevent cropping */
    object-position: center;
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Ensure images don't get cropped on different screen sizes */
@media (max-width: 768px) {
    .card-image {
        padding: 4px; /* Reduced padding on mobile */
    }
    
    .card-image img {
        object-fit: contain !important;
        max-width: 100%;
        max-height: 100%;
    }
}

@media (max-width: 480px) {
    .card-image {
        padding: 2px; /* Minimal padding on small screens */
    }
}


.card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 0 0 16px 16px;
}

.arrival-date {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d5a27;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}
.card-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 2.8rem;
}

.card-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.feature {
    background: #f0f8f0;
    color: #2d5a27;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    white-space: nowrap;
}

.card-pricing {
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a27;
}

.discount {
    background: #e74c3c;
    color: white;
    padding: 2px 6px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 600;
}

.card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.card-actions .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 50px; /* More curved format */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.card-actions .btn-primary {
    background: #2d5a27;
    color: white;
    border: none;
    box-shadow: 0 2px 8px rgba(45, 90, 39, 0.2); /* Subtle shadow for curved buttons */
}

.card-actions .btn-primary:hover {
    background: #1e3d1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4); /* Enhanced shadow on hover */
}

.card-actions .btn-outline {
    background: white;
    color: #2d5a27;
    border: 2px solid #2d5a27;
    box-shadow: 0 2px 8px rgba(45, 90, 39, 0.1); /* Subtle shadow for curved buttons */
}

.card-actions .btn-outline:hover {
    background: #2d5a27;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4); /* Enhanced shadow on hover */
}

.card-actions .wishlist-btn {
    flex: 0 0 auto;
    width: 45px;
    height: 45px;
    padding: 0;
    background: white;
    color: #666;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.card-actions .wishlist-btn:hover {
    background: #2d5a27;
    color: white;
    border-color: #2d5a27;
    transform: scale(1.05);
}

/* Responsive design for New Arrival cards */
@media (max-width: 768px) {
    .new-arrivals-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card-image {
        height: 180px;
    }
    
    .card-content {
        padding: 1.25rem;
    }
    
    .card-content h3 {
        font-size: 1.2rem;
    }
    
    .card-content p {
        font-size: 0.85rem;
    }
    
    .card-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: auto;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .card-actions .btn {
        width: 100%;
        max-width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 50px; /* Curved format for mobile */
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        text-align: center;
        margin: 0 auto;
        transition: all 0.3s ease;
    }
    
    .card-actions .btn-primary {
        background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
        color: white;
        border: none;
        box-shadow: 0 2px 8px rgba(45, 90, 39, 0.3);
    }
    
    .card-actions .btn-primary:hover {
        background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(45, 90, 39, 0.4);
    }
    
    .card-actions .btn-outline {
        background: white;
        color: var(--primary-green);
        border: 2px solid var(--primary-green);
        box-shadow: 0 2px 8px rgba(45, 90, 39, 0.1);
    }
    
    .card-actions .btn-outline:hover {
        background: var(--primary-green);
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(45, 90, 39, 0.3);
    }
    
    .card-actions .wishlist-btn {
        width: 100%;
        height: 45px;
        border-radius: 50px; /* Curved format for mobile */
        background: #f8f9fa;
        color: #666;
        border: 1px solid #ddd;
    }
    
    .card-actions .wishlist-btn:hover {
        background: var(--primary-green);
        color: white;
        border-color: var(--primary-green);
    }
    
    .card-features {
        margin-bottom: 0.75rem;
    }
}

/* Additional mobile optimizations for product cards on smaller screens */
@media (max-width: 480px) {
    .card-actions {
        gap: 0.5rem;
    }
    
    .card-actions .btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        min-height: 42px;
    }
    
    .card-actions .btn-primary {
        background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
        color: white;
        border: none;
        box-shadow: 0 2px 6px rgba(45, 90, 39, 0.3);
    }
    
    .card-actions .btn-primary:hover {
        background: linear-gradient(135deg, var(--accent-green), var(--primary-green));
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(45, 90, 39, 0.4);
    }
    
    .card-actions .btn-outline {
        background: white;
        color: var(--primary-green);
        border: 2px solid var(--primary-green);
        box-shadow: 0 2px 6px rgba(45, 90, 39, 0.1);
    }
    
    .card-actions .btn-outline:hover {
        background: var(--primary-green);
        color: white;
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(45, 90, 39, 0.3);
    }
}

/* Very small screens optimization for product cards */
@media (max-width: 360px) {
    .card-actions .btn {
        padding: 0.5rem 0.6rem;
        font-size: 0.8rem;
        min-height: 40px;
        letter-spacing: 0.5px;
    }
}

/* Ensure product card buttons are always centered on all devices */
@media (max-width: 768px) {
    .product-card {
        text-align: center;
    }
    
    .card-actions {
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .card-actions .btn {
        transition: all 0.3s ease;
        cursor: pointer;
        text-align: center;
    }
    
    .card-actions .btn:active {
        transform: translateY(1px);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }
    
    .feature {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Ensure 4 cards per row on larger screens */
@media (min-width: 1200px) {
    .new-arrivals-grid {
        grid-template-columns: repeat(4, 1fr); /* Force 4 columns on large screens */
        gap: 1.5rem;
    }
}

/* Responsive Layout Improvements for New Arrivals */
@media (max-width: 1200px) and (min-width: 900px) {
    .container {
        max-width: 98vw;
        padding: 0 2vw;
    }
    
    .new-arrivals-grid {
        grid-template-columns: repeat(4, 1fr); /* Force 4 columns on medium screens */
        gap: 1rem;
    }
}

@media (max-width: 900px) {
    .container {
        max-width: 98vw;
        padding: 0 2vw;
    }
    
    .new-arrivals-grid,
    .coming-soon-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Reduced min width for 4 cards on tablets */
        gap: 1.2rem; /* Reduced gap */
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5vw;
    }
    
    .new-arrivals-grid,
    .coming-soon-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* Reduced min width for better fit */
        gap: 0.8rem; /* Reduced gap */
    }
    
    .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
    
    .section-subtitle {
        font-size: clamp(0.9rem, 3vw, 1rem);
        max-width: 80vw;
        padding: 0 1vw;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1vw;
    }
    
    .new-arrivals-grid,
    .coming-soon-grid {
        grid-template-columns: 1fr;
        gap: 1vw;
    }
    
    .section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }
    
    .section-subtitle {
        font-size: clamp(0.8rem, 3.5vw, 0.95rem);
        max-width: 90vw;
        padding: 0 0.5vw;
    }
}
}

@media (max-width: 480px) {
    .card-image {
        height: 160px;
    }
    
    .card-content {
        padding: 1rem;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
}

/* Coming Soon Section */
/* Coming Soon Section - Updated */
.coming-soon {
    padding: 4.4rem 0;
    background: #EFF7F0; /* Light mint green background for elegant appearance */
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Coming Soon Section Headings - Unique Design */
.coming-soon .section-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Larger, more prominent title */
    font-weight: 700;
    color: #2d5a27;
    margin-bottom: 1.5rem;
    position: relative;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 4px rgba(45, 90, 39, 0.1);
    letter-spacing: -0.5px;
}

.coming-soon .section-title::before {
    content: '🌱';
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.6;
}

.coming-soon .section-title::after {
    content: '🌿';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.6;
}

.coming-soon .section-subtitle {
    text-align: center;
    font-size: clamp(1.2rem, 3vw, 1.6rem); /* Increased font size */
    font-weight: 500;
    color: #4a7c59;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.coming-soon .section-subtitle::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #4a7c59, transparent);
    border-radius: 2px;
}

/* Add subtle texture overlay for elegance */
.coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.coming-soon .container {
    max-width: 100vw !important;
    width: 100vw !important;
    padding: 0 2vw !important;
    margin: 0 !important;
    position: relative;
    z-index: 2; /* Ensure content appears above background effects */
}

/* Coming Soon Section - Updated */
.coming-soon {
    padding: 4.4rem 0;
    background: #EFF7F0; /* Light mint green background for elegant appearance */
    width: 100%;
}

.coming-soon .container {
    max-width: 100vw !important;
    width: 100vw !important;
    padding: 0 2vw !important;
    margin: 0 !important;
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid for coming soon cards */
    gap: 2rem; /* Fixed gap for consistency */
    margin-top: 3rem;
    justify-items: center;
    width: 100% !important;
    max-width: 100% !important;
}
/* Responsive design for Coming Soon cards */
@media (min-width: 1200px) {
    .coming-soon-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 1200px) and (min-width: 900px) {
    .coming-soon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    .coming-soon-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .coming-soon-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coming-soon-card {
        min-height: 350px;
    }
    
    .coming-soon-card .card-image-section {
        min-height: clamp(140px, 15vh, 180px);
        padding: clamp(0.8rem, 2vw, 1.2rem);
    }
    
    .coming-soon-card .card-image {
        height: clamp(110px, 14vh, 140px);
    }
    
    .coming-soon-card .card-content {
        padding: 1.2rem;
    }
    
    .coming-soon-card h3 {
        font-size: 1.1rem;
    }
    
    .coming-soon-card p {
        font-size: 0.8rem;
    }
    
    .coming-soon-card .price {
        font-size: 1.2rem;
    }
    
    .coming-soon-card .card-actions {
        gap: 0.5rem;
    }
    
    .coming-soon-card .notify-btn,
    .coming-soon-card .quick-view {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }
    
    /* Mobile responsive headings */
    .coming-soon .section-title::before,
    .coming-soon .section-title::after,
    .new-arrivals-section .section-header h2::before,
    .new-arrivals-section .section-header h2::after {
        display: none; /* Hide decorative elements on mobile */
    }
    
    .coming-soon .section-title,
    .new-arrivals-section .section-header h2 {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 1rem;
    }
    
    .coming-soon .section-subtitle {
        font-size: clamp(1rem, 4vw, 1.3rem);
        margin-bottom: 2rem;
    }
}

.coming-soon-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 2px dashed var(--accent-green);
    min-height: 400px; /* Ensure minimum height for better presence */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 400px; /* Limit maximum width for better proportions */
}

.coming-soon-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    justify-content: center;
}

.coming-soon-actions .btn {
    flex: 1;
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.coming-soon-actions .notify-btn {
    background: transparent;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
}

.coming-soon-actions .notify-btn:hover {
    background: var(--primary-green);
    color: white;
}

.coming-soon-actions .quick-view {
    background: var(--primary-green);
    border: 2px solid var(--primary-green);
    color: white;
}

.coming-soon-actions .quick-view:hover {
    background: #1e3d1a;
    border-color: #1e3d1a;
}

.coming-soon-image {
    height: clamp(150px, 18vh, 220px); /* Responsive height for all devices */
    background: linear-gradient(135deg, var(--sage-green), var(--accent-green));
    border-radius: clamp(8px, 0.8vw, 12px); /* Responsive border-radius */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    overflow: visible; /* Changed from default to visible to prevent cropping */
    padding: clamp(0.4rem, 1vw, 0.75rem); /* Responsive padding */
}

.coming-soon-image i {
    font-size: 4rem; /* Increased icon size for better visual impact */
}

/* Coming Soon image styling to prevent cropping */
.coming-soon-image img {
    object-fit: contain !important; /* Force contain to prevent cropping */
    object-position: center;
    max-width: 100%;
    max-height: 100%;
    background: transparent;
    border-radius: clamp(8px, 0.8vw, 12px); /* Responsive border-radius */
}

.arrival-countdown {
    position: absolute;
    bottom: clamp(0.5rem, 1.5vh, 0.75rem);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: clamp(0.3rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.8rem);
    border-radius: clamp(6px, 0.6vw, 10px);
    font-size: clamp(0.7rem, 1.5vw, 0.9rem);
}

.coming-soon-item h4 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.coming-soon-item p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.notify-btn {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

/* Coming Soon Card - Updated to match second image format */
.coming-soon-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: none !important; /* Remove any border that might cause black lines */
    outline: none !important; /* Remove any outline that might cause black lines */
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 380px; /* Compact height for better proportions */
}

/* Ensure no black borders on any coming soon card elements */
.coming-soon-card * {
    border: none !important;
    outline: none !important;
}

/* Reset any browser default styles that might cause black borders */
.coming-soon-card img,
.coming-soon-card button,
.coming-soon-card div,
.coming-soon-card span,
.coming-soon-card h3,
.coming-soon-card p {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Remove any focus rings or outlines that might appear as black borders */
.coming-soon-card *:focus,
.coming-soon-card *:focus-visible,
.coming-soon-card *:active {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.coming-soon-card:focus,
.coming-soon-card:focus-within,
.coming-soon-card:active {
    border: none !important;
    outline: none !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08) !important;
}

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

/* Coming Soon card image section - Light green background */
.coming-soon-card .card-image-section {
    background: #8CBF8C; /* Light green background matching second image */
    border-radius: 16px 16px 0 0;
    padding: 20px;
    min-height: 180px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-card .card-image {
    width: 100%;
    height: clamp(120px, 15vh, 160px); /* Responsive height for all devices */
    border-radius: clamp(10px, 1vw, 14px); /* Responsive border-radius */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible; /* Changed from hidden to visible to prevent cropping */
    padding: clamp(0.4rem, 1vw, 0.75rem); /* Responsive padding */
}

.coming-soon-card .card-image i {
    font-size: 3rem;
    color: #2d5a27;
}

.coming-soon-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Changed from cover to contain to prevent cropping */
    object-position: center;
    border-radius: clamp(10px, 1vw, 14px); /* Responsive border-radius */
    transition: transform 0.3s ease;
    background: #f8f9fa; /* Light background for better image visibility */
}

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

/* Coming Soon card content - White background */
.coming-soon-card .card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 0 0 16px 16px;
}

.coming-soon-card h3 {
    color: #2d5a27;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
}

.coming-soon-card p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Coming Soon pricing */
.coming-soon-card .card-pricing {
    margin-bottom: 1.5rem;
}

.coming-soon-card .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d5a27;
}

/* Coming Soon card actions */
.coming-soon-card .card-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

.coming-soon-card .notify-btn {
    flex: 1;
    background: #2d5a27;
    color: white;
    border: none !important;
    outline: none !important;
    padding: 0.75rem 1rem;
    border-radius: 50px; /* Curved format */
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(45, 90, 39, 0.2);
}

.coming-soon-card .notify-btn:focus,
.coming-soon-card .notify-btn:active,
.coming-soon-card .notify-btn:focus-visible {
    border: none !important;
    outline: none !important;
    box-shadow: 0 2px 8px rgba(45, 90, 39, 0.2) !important;
}

.coming-soon-card .notify-btn:hover {
    background: #1e3d1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4);
}

.coming-soon-card .quick-view {
    flex: 1;
    background: white;
    color: #2d5a27;
    border: 2px solid #2d5a27 !important;
    outline: none !important;
    padding: 0.75rem 1rem;
    border-radius: 50px; /* Curved format */
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 2px 8px rgba(45, 90, 39, 0.1);
}

.coming-soon-card .quick-view:focus,
.coming-soon-card .quick-view:active,
.coming-soon-card .quick-view:focus-visible {
    border: 2px solid #2d5a27 !important;
    outline: none !important;
    box-shadow: 0 2px 8px rgba(45, 90, 39, 0.1) !important;
}

.coming-soon-card .quick-view:hover {
    background: #2d5a27;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 39, 0.4);
}

/* Responsive design for Coming Soon cards */
@media (max-width: 768px) {
    .coming-soon-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .coming-soon-card .card-image {
        height: clamp(140px, 16vh, 180px);
    }
    
    .coming-soon-card .card-content {
        padding: 1.25rem;
    }
    
    .coming-soon-card h3 {
        font-size: 1.2rem;
    }
    
    .coming-soon-card .product-description {
        -webkit-line-clamp: 2;
        min-height: 2.5rem;
        font-size: 0.85rem;
    }
    
    .coming-soon-card .card-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .coming-soon-card .notify-btn,
    .coming-soon-card .quick-view {
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
    }
    
    .coming-soon-card .feature-tags {
        margin-bottom: 0.75rem;
    }
    
    .coming-soon-card .feature-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .coming-soon-card .card-image {
        height: clamp(120px, 15vh, 160px);
    }
    
    .coming-soon-card .card-content {
        padding: 1rem;
    }
    
    .coming-soon-card h3 {
        font-size: 1.1rem;
    }
    
    .coming-soon-card .price {
        font-size: 1.3rem;
    }
}

/* Contact Page Styles */
.contact-section {
    padding: 4.4rem 0; /* Increased from 4rem 0 */
    background: var(--cream-white);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.contact-form-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact-form-section p {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
}

.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
}

/* Quick View Side Panel Styles */
.quick-view-panel {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transition: right 0.3s ease-in-out;
    overflow-y: auto;
    overflow-x: hidden;
}

.quick-view-panel.open {
    right: 0;
}

.quick-view-panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quick-view-panel-overlay.show {
    opacity: 1;
    visibility: visible;
}

.panel-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(139, 195, 74, 0.3); /* Light green border */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #A5D6A7, #C8E6C9); /* Light green gradient background */
    position: sticky;
    top: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(139, 195, 74, 0.2); /* Light green shadow for depth */
}

.panel-title {
    font-size: 1.4rem; /* Increased from 1.2rem */
    font-weight: 700; /* Increased from 600 to 700 for bolder text */
    color: #2E7D32; /* Dark green text for better contrast on light background */
    margin: 0;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5); /* Light shadow for dark text */
    letter-spacing: 0.02em; /* Added slight letter spacing for better readability */
    /* Removed background, padding, border, and box-shadow for clean text appearance */
}

.panel-close {
    background: rgba(46, 125, 50, 0.2); /* Semi-transparent dark green background */
    border: 1px solid rgba(46, 125, 50, 0.4); /* Dark green border */
    font-size: 1.5rem;
    color: #2E7D32; /* Dark green color for better contrast */
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.panel-close:hover {
    background: rgba(46, 125, 50, 0.3); /* More opaque on hover */
    color: #1B5E20; /* Darker green on hover */
    transform: scale(1.1); /* Slight scale effect on hover */
}

.panel-content {
    padding: 1.5rem;
}

.panel-image {
    width: 100%;
    min-height: 250px;
    max-height: 400px;
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.panel-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
    z-index: 1;
}

.panel-image:hover::before {
    opacity: 1;
}

.panel-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.panel-image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 15px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

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

.panel-image::after {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
    pointer-events: none;
}

.panel-image:hover::after {
    opacity: 0.8;
}

.panel-image i {
    font-size: 4rem;
    color: white;
}

.panel-info h2 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.panel-rating {
    margin-bottom: 1rem;
}

.panel-rating i {
    color: #f39c12;
    margin-right: 0.2rem;
}

.panel-rating span {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.panel-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.panel-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.panel-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.panel-actions .btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.panel-actions .btn-primary {
    background: var(--primary-green);
    color: white;
    border: none;
}

.panel-actions .btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 90, 39, 0.3);
}

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

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

.panel-details {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
}

.panel-details h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}
.panel-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.panel-details li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-light);
    display: flex;
    align-items: center;
}

.panel-details li:last-child {
    border-bottom: none;
}

.panel-details li::before {
    content: "✓";
    color: var(--primary-green);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

/* Mobile Responsiveness for Side Panel */
@media (max-width: 768px) {
    .quick-view-panel {
        width: 100%;
        right: -100%;
    }
    
    .panel-header {
        padding: 1rem;
    }
    
    .panel-content {
        padding: 1rem;
    }
    
    .panel-image {
        min-height: 220px;
        max-height: 300px;
    }
    
    .panel-actions {
        flex-direction: column;
    }
    
    .panel-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .panel-image {
        min-height: 180px;
        max-height: 250px;
    }
    
    .panel-info h2 {
        font-size: 1.3rem;
    }
    
    .panel-price {
        font-size: 1.5rem;
    }
}

/* Services Horizontal Slider Styles */
.services-slider-container {
    position: relative;
    margin: 3rem 0;
    overflow: visible;
    padding: 0 80px; /* Increased padding to prevent arrow overlap */
    z-index: 2;
}

.services-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    overflow: hidden;
}

.services-slider {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    overflow: visible;
    gap: 1.5rem;
}

.service-card {
    flex: 0 0 calc((100% - 3rem) / 3);
    min-width: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.slider-nav:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: translateY(-50%);
}

.slider-nav:disabled:hover {
    background: white;
    color: var(--primary-green);
    transform: translateY(-50%);
}

.slider-nav-prev {
    left: 15px; /* Moved further from cards to prevent overlap */
}

.slider-nav-next {
    right: 15px; /* Moved further from cards to prevent overlap */
}

.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--sage-green);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--accent-green);
    transform: scale(1.2);
}

.indicator:hover {
    background: var(--light-green);
}

/* Service Detail Overlay Styles */
.service-detail-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.service-detail-overlay.show {
    opacity: 1;
    visibility: visible;
}

.service-detail-panel {
    position: fixed;
    top: 0;
    right: -500px;
    width: 500px;
    height: 100vh;
    background: white;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    z-index: 1001;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.service-detail-panel.open {
    right: 0;
}

.service-panel-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    position: relative;
    z-index: 1;
}

.service-panel-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: relative;
}

.service-panel-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-panel-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.service-panel-content {
    padding: 1.5rem;
}

.service-panel-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.service-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-green), var(--sage-green));
    border-radius: 15px;
}

.service-panel-info h2 {
    font-size: 1.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.service-panel-tags {
    margin-bottom: 1rem;
}

.service-panel-tags .service-tag {
    background: var(--warm-beige);
    color: var(--primary-green);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-right: 0.5rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.service-panel-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-panel-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
}

.service-panel-actions {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.service-panel-actions .btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-panel-actions .btn-primary {
    background: var(--primary-green);
    color: white;
    border: none;
}

.service-panel-actions .btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 90, 39, 0.3);
}

.service-panel-actions .btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.service-panel-actions .btn-secondary:hover {
    background: var(--primary-green);
    color: white;
}

.service-panel-features {
    border-top: 1px solid var(--border-light);
    padding-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-panel-features h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-panel-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-panel-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.service-panel-features li:last-child {
    border-bottom: none;
}

.service-panel-features li:hover {
    color: var(--primary-green);
    padding-left: 0.25rem;
}

.service-panel-features li i {
    color: var(--accent-green);
    font-size: 0.9rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.service-panel-features li:hover i {
    color: var(--primary-green);
    transform: scale(1.1);
}

.service-panel-contact {
    background: var(--warm-beige);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1.5rem;
}

.service-panel-contact h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-align: center;
}

.service-panel-contact p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-panel-contact i {
    color: var(--accent-green);
    width: 20px;
}

/* Responsive Design for Services */
@media (max-width: 768px) {
    .services-slider-container {
        padding: 0 60px; /* Reduced padding for smaller screens */
    }
    
    .service-card {
        flex: 0 0 calc((100% - 1.5rem) / 2);
        border: 2px solid rgba(45, 90, 39, 0.2);
    }
    
    .slider-nav {
        width: 45px;
        height: 45px;
    }
    
    .slider-nav-prev {
        left: 8px; /* Adjust position for smaller screens */
    }
    
    .slider-nav-next {
        right: 8px; /* Adjust position for smaller screens */
    }
    
    .service-detail-panel {
        width: 100%;
        right: -100%;
    }
    
    .service-panel-header {
        padding: 1rem;
    }
    
    .service-panel-content {
        padding: 1rem;
    }
    
    .service-panel-image {
        height: 250px; /* Increased for better visibility */
    }
    
    .service-panel-actions {
        flex-direction: column;
    }
    
    .service-panel-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-slider-container {
        padding: 0 30px; /* Minimal padding for mobile */
    }
    
    .service-card {
        flex: 0 0 100%;
        border: 2px solid rgba(45, 90, 39, 0.2);
    }
    
    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    .slider-nav-prev {
        left: 5px; /* Minimal offset for mobile */
    }
    
    .slider-nav-next {
        right: 5px; /* Minimal offset for mobile */
    }
    
    .service-panel-image {
        height: 200px;
    }
    
    .service-panel-info h2 {
        font-size: 1.3rem;
    }
    
    .service-panel-price {
        font-size: 1.5rem;
    }
}

/* Modal Styles */
.success-modal,
.error-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease;
    position: relative;
}

.modal-content.success {
    border-top: 4px solid #27ae60;
}

.modal-content.error {
    border-top: 4px solid #e74c3c;
}

.success-icon,
.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-icon {
    color: #27ae60;
}

.error-icon {
    color: #e74c3c;
}

.modal-content h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.close-modal {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.close-modal:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(45, 90, 39, 0.3);
}

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

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

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

.char-counter {
    text-align: right;
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: 0.25rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px var(--shadow-light);
    transition: transform 0.3s ease;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.method-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.contact-social {
    margin-top: 0;
    text-align: center;
}

.contact-social .social-links {
    justify-content: center;
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    padding: 3rem 0;
    background: var(--warm-beige);
    border-bottom: 2px solid rgba(45, 90, 39, 0.1); /* Add subtle border for separation */
    margin-bottom: 2rem; /* Add bottom margin for footer separation */
    position: relative; /* For proper positioning */
}

.map-container {
    margin-top: 0;
}

.map-iframe-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.map-iframe-container iframe {
    width: 100%;
    height: 440px; /* Increased from 400px */
    border: none;
    display: block;
}

.map-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cream-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    flex-wrap: wrap;
    gap: 2rem;
}

.map-address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
    min-width: 300px;
}

.map-address i {
    color: var(--accent-green);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.map-address h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.map-address p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.map-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
}

.map-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.map-btn i {
    font-size: 1rem;
}
/* Responsive design for map section */
@media (max-width: 768px) {
    .map-info {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        margin-top: 0; /* Removed spacing from map */
        padding: 1.5rem; /* Adjusted padding for mobile */
        background: white; /* Ensure white background */
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    
    .map-address {
        justify-content: center;
        margin-bottom: 1.5rem; /* Add spacing between address and buttons */
    }
    
    .map-address i {
        font-size: 1.3rem; /* Slightly smaller icon for mobile */
    }
    
    .map-address h4 {
        font-size: 1.1rem; /* Adjusted font size for mobile */
    }
    
    .map-address p {
        font-size: 0.95rem; /* Adjusted font size for mobile */
    }
    
    .map-actions {
        justify-content: center;
        flex-direction: column; /* Stack buttons vertically on mobile */
        gap: 0.75rem; /* Reduced gap for mobile */
    }
    
    .map-btn {
        width: 100%; /* Full width buttons on mobile */
        justify-content: center;
        padding: 0.8rem 1rem; /* Adjusted padding for mobile */
        font-size: 0.9rem; /* Adjusted font size for mobile */
    }
    
    .map-iframe-container iframe {
        height: 330px; /* Increased from 300px */
    }
}

/* FAQ Section */
.faq-section {
    padding: 4.4rem 0; /* Increased from 4rem 0 */
    background: var(--cream-white);
    margin-top: 0; /* Removed top margin */
    border-top: none; /* Removed top border */
}

.faq-grid {
    display: grid;
    gap: 1rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px var(--shadow-light);
}

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

.faq-question:hover {
    background: var(--warm-beige);
}

.faq-question h4 {
    margin: 0;
    color: var(--primary-green);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

/* Repurposed Page Styles */
.repurposed-hero {
    padding: 4.4rem 0; /* Increased from 4rem 0 */
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 50%, var(--warm-beige) 100%);
    position: relative;
    overflow: hidden;
}

.repurposed-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(45, 90, 39, 0.03) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 70%, rgba(143, 188, 143, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.impact-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

.sustainability-icons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.icon-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-light);
}

.icon-item i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

/* Transformations Section */
.transformations-section {
    padding: 4.4rem 0; /* Increased from 4rem 0 */
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 50%, var(--warm-beige) 100%);
}

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

.transformation-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(45, 90, 39, 0.08);
    border: 1px solid rgba(143, 188, 143, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.transformation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(45, 90, 39, 0.15);
}

.transformation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

/* Removed transformation-type styles as they are no longer needed */

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: 1.5rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, #f8fdf8 0%, #f0f8f0 100%);
    border-radius: 12px;
    border: 1px solid rgba(143, 188, 143, 0.15);
    flex: 1;
}

.before, .after {
    text-align: center;
    padding: 0.8rem;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.before {
    background: rgba(255, 193, 7, 0.05);
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.after {
    background: rgba(40, 167, 69, 0.05);
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.before h4 {
    color: #d97706;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.after h4 {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.before .image-placeholder {
    background: #8FBC8F;
    color: #2d5a27;
}

.after .image-placeholder {
    background: #8FBC8F;
    color: #2d5a27;
}

.transformation-arrow {
    color: var(--primary-green);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    transition: transform 0.3s ease;
}

.transformation-arrow:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Removed transformation-details, process-steps, step, and environmental-impact styles as they are no longer needed */

/* Sustainability Story */
.sustainability-story {
    padding: 5rem 0;
    background: linear-gradient(135deg, #3a6b32 0%, #5a8c69 50%, #7ba67b 100%);
    position: relative;
    overflow: hidden;
}

.sustainability-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 70%, rgba(143, 188, 143, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.story-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.story-header .section-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.story-header .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.story-content {
    position: relative;
    z-index: 2;
}

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

.mission-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-green));
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.mission-card.featured {
    background: linear-gradient(135deg, #ffffff 0%, #f8fdf8 100%);
    border: 2px solid var(--primary-green);
    transform: scale(1.05);
}

.mission-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(45, 90, 39, 0.3);
}

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

.mission-card h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.mission-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.card-stats {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    border-radius: 12px;
    border: 1px solid rgba(45, 90, 39, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content h3 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(45, 90, 39, 0.4);
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(45, 90, 39, 0.5);
}

/* DIY Guide */
.diy-guide {
    padding: 4.4rem 0; /* Increased from 4rem 0 */
    background: var(--cream-white);
}

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

.diy-project {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    text-align: center;
}

.project-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.materials-list {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.materials-list li {
    padding: 0.25rem 0;
    color: var(--text-light);
}

.project-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Repurposed CTA */
.repurposed-cta {
    padding: 4.4rem 0; /* Increased from 4rem 0 */
    background: var(--text-dark);
    color: white;
    text-align: center;
}

.repurposed-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

/* Dynamic repurposed content styles */
.image-container {
    width: 100%;
    aspect-ratio: 1;
    max-width: 250px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background: #8FBC8F;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(45, 90, 39, 0.1);
    box-shadow: 0 3px 8px rgba(45, 90, 39, 0.1);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: white;
    border-radius: 12px;
}

.image-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 90, 39, 0.2);
}

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

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #8FBC8F;
    color: #2d5a27;
    text-align: center;
    padding: 1rem;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.image-placeholder span {
    font-size: 0.9rem;
    font-weight: 500;
}

.image-placeholder.transformed {
    background: #8FBC8F;
    color: #2d5a27;
}

.image-placeholder.transformed i {
    opacity: 1;
}

/* Loading and error states */
.no-data-message,
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
}

.no-data-message {
    color: var(--text-light);
}

.error-message {
    color: var(--error-color, #e74c3c);
}

.no-data-message i,
.error-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.error-message i {
    opacity: 1;
}
/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: 0;
        top: 100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: calc(100vh - 60px);
        text-align: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 -15px 35px rgba(0, 0, 0, 0.15);
        padding: 1rem 0;
        z-index: 999;
        backdrop-filter: blur(10px);
        border-radius: 20px 20px 0 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        transform: translateY(100%);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 3.1rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* About section image responsive adjustments */
    .image-placeholder {
        height: auto;
        min-height: 280px;
        max-height: 400px;
        aspect-ratio: 4/3;
        margin-top: 2rem;
        padding: 15px;
    }
    
    .image-placeholder img {
        width: 100%;
        height: 100%;
    }
    
    .products-grid:not(.products-section .products-grid) {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .plant-showcase {
        grid-template-columns: 1fr;
    }
    
    .filters-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .filter-categories {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0.5rem 0;
        gap: 0.75rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-green) transparent;
    }
    
    .filter-categories::-webkit-scrollbar {
        height: 4px;
    }
    
    .filter-categories::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .filter-categories::-webkit-scrollbar-thumb {
        background: var(--primary-green);
        border-radius: 2px;
    }
    
    .filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 7px 14px;
        font-size: 0.9rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    /* Mobile Pagination Styles */
    .pagination-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .pagination-numbers {
        order: -1;
        justify-content: center;
    }
    
    .pagination-number {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .pagination-btn {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
    }
    
    /* Mobile Article Styles */
    .news-article-simple {
        margin-bottom: 2rem;
    }
    
    .article-content-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .article-content-wrapper.image-right .article-image-section {
        order: 1;
    }
    
    .article-content-wrapper.image-right .article-text-section {
        order: 2;
    }
    
    .article-image-section {
        min-height: 200px;
        display: flex;
        align-items: stretch;
    }
    
    .article-text-section {
        padding: 1.5rem;
    }
    
    .article-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .article-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .article-meta {
        gap: 0.5rem;
        font-size: 0.85rem;
    }
    
    .article-category {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        margin-bottom: 1rem;
    }
    
    /* Mobile News Intro Styles */
    .intro-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }
    
    .service-card-header {
        padding: 1.25rem 1.25rem 0.8rem 1.25rem;
    }
    
    .service-card-body {
        padding: 0 1.25rem 0.6rem 1.25rem;
    }
    
    .service-card-footer {
        padding: 0.8rem 1.25rem 1.25rem 1.25rem;
    }
    
    .service-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .service-btn {
        min-width: auto;
        width: 100%;
    }
    
    .service-title {
        font-size: 1.5rem;
    }
    
    
    .service-image {
        height: 250px; /* Increased for better visibility on tablet */
        padding: 0; /* Ensure no padding on tablet */
    }
    
    .service-image img,
    .service-image .service-uploaded-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 15px 15px 0 0 !important;
    }
    
    .service-price-badge {
        top: 12px;
        right: 12px;
        padding: 0.6rem 1.2rem;
        min-width: 80px;
        border-radius: 12px;
    }
    
    /* Arrow pseudo-elements removed for clean rounded badge design */
    
    .price-text {
        font-size: 1rem;
        letter-spacing: 0.6px;
    }
}

/* Additional responsive improvements for tablets */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .service-card {
        border-radius: 20px;
    }
    
    .service-card-header {
        padding: 1rem 1rem 0.6rem 1rem;
    }
    
    .service-card-body {
        padding: 0 1rem 0.5rem 1rem;
    }
    
    .service-card-footer {
        padding: 0.6rem 1rem 1rem 1rem;
    }
    
    .service-title {
        font-size: 1.4rem;
    }
    
    .service-description {
        font-size: 0.95rem;
        -webkit-line-clamp: 2;
    }
    
    
    .service-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .service-image {
        height: 200px; /* Increased for better visibility on mobile */
        padding: 0; /* Ensure no padding on mobile */
    }
    
    .service-image img,
    .service-image .service-uploaded-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        border-radius: 12px 12px 0 0 !important;
    }
    
    .service-price-badge {
        top: 10px;
        right: 10px;
        padding: 0.5rem 1rem;
        min-width: 70px;
        border-radius: 10px;
    }
    
    /* Arrow pseudo-elements removed for clean rounded badge design */
    
    .price-text {
        font-size: 0.9rem;
        letter-spacing: 0.4px;
        font-weight: 700;
    }
}
    
    .additional-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .cta-stats {
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .featured-text h2 {
        font-size: 2rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-blog .newsletter-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    /* Article Responsive Styles */
    .articles-container {
        padding: 1rem 0;
    }
    
    .news-article {
        margin-bottom: 1.5rem;
    }
    
    .article-image {
        height: 220px; /* Increased from 200px */
    }
    
    .article-body {
        padding: 1.5rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .article-content p {
        font-size: 1rem;
    }
    
    .article-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .article-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .article-meta {
        position: static;
        background: var(--warm-beige);
        margin: 1rem 0;
        padding: 0.75rem 1rem;
        border-radius: 8px;
        justify-content: center;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-image {
        height: 220px; /* Increased from 200px */
    }
    
    .modal-footer {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
    
    /* News Intro Responsive Styles */
    .intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .intro-text h2 {
        font-size: 2rem;
    }
    
    .intro-text p {
        font-size: 1.1rem;
    }
    
    .intro-stats {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
    }
    
    .stat-item {
        flex: 1;
        padding: 1rem;
    }
    
    .stat-item:hover {
        transform: translateY(-6px) scale(1.03);
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* Pagination Responsive Styles */
    .pagination-controls {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }
    
    .pagination-numbers {
        gap: 0.25rem;
    }
    
    .pagination-number {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }
    
    .pagination-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    /* Article Responsive Styles - Tablet */
    .articles-container {
        padding: 1rem 0;
    }
    
    .news-article-simple {
        margin-bottom: 2.5rem;
    }
    
    .article-content-wrapper {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .article-content-wrapper.image-right .article-image-section {
        order: 1;
    }
    
    .article-content-wrapper.image-right .article-text-section {
        order: 2;
    }
    
    .article-image-section {
        min-height: 250px;
        display: flex;
        align-items: stretch;
    }
    
    .article-text-section {
        padding: 2rem;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .article-content p {
        font-size: 1.05rem;
    }
    
    .article-meta {
        gap: 1rem;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem 1.5rem;
    }
    
    .modal-header h2 {
        font-size: 1.6rem;
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-image {
        height: 250px;
    }
    
    .modal-footer {
        padding: 1rem 1.5rem 1.5rem 1.5rem;
        flex-direction: row;
    }
    
    .modal-footer .btn {
        flex: 1;
    }
}


@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    /* About section image mobile adjustments */
    .image-placeholder {
        height: auto;
        min-height: 250px;
        max-height: 350px;
        aspect-ratio: 4/3;
        margin-top: 1.5rem;
        padding: 12px;
    }
    
    .image-placeholder img {
        width: 100%;
        height: 100%;
    }
       /* Repurposed section responsive styles */
       .before-after {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
        font-size: 2.5rem;
    }
    
    .image-container {
        aspect-ratio: 1;
        max-width: 200px;
    }
    
    .transformation-card {
        min-height: 280px;
        padding: 1.2rem;
    }
    
    /* Sustainability Story Mobile */
    .story-header .section-title {
        font-size: 2.2rem;
    }
    
    .story-header .section-subtitle {
        font-size: 1rem;
    }
    
    .mission-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .mission-card {
        padding: 2rem 1.5rem;
    }
    
    .mission-card.featured {
        transform: none;
    }
    
    .mission-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .card-icon i {
        font-size: 1.5rem;
    }
    
    .cta-section {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .btn-large {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

/* Image Lightbox Styles */
.image-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.image-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.image-lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    z-index: 10001;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: white;
    transform: scale(1.1);
}

.lightbox-image-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-width: 100%;
    max-height: 80vh;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}
.lightbox-caption {
    margin-top: 20px;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

/* Product image clickable styles */
.product-image {
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }
    
    .lightbox-close {
        top: -40px;
        right: 0;
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        padding: 8px 16px;
    }
}

/* Gardening and Plant Care Page Styles */
.gardening-header, .plant-care-header {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.gardening-header .header-content, .plant-care-header .header-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.gardening-header h1, .plant-care-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.gardening-header p, .plant-care-header p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

}

/* Services Overview */
.services-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
    font-family: 'Playfair Display', serif;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* Process Section */
.gardening-process {
    padding: 80px 0;
    background: white;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 70px; /* Increased from 60px */
    height: 70px; /* Increased from 60px */
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem; /* Increased from 1.5rem */
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-content h3 {
    font-size: 1.5rem; /* Increased from 1.3rem */
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 1.1rem; /* Added larger font size */
}

.process-arrow {
    color: var(--accent-green);
    font-size: 1.8rem; /* Increased from 1.5rem */
    margin: 0 1rem;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Care Tips Section */
.care-tips {
    padding: 80px 0;
    background: white;
}

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

.tip-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.tip-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tip-card ul {
    list-style: none;
    padding: 0;
}

.tip-card ul li {
    padding: 0.3rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.2rem;
}

.tip-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-green);
    font-weight: bold;
}

/* Care Packages */
.care-packages {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.package-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    transform: scale(1.05);
    border: 3px solid var(--accent-green);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.package-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    color: white;
}

.package-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.package-price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.package-price span {
    font-size: 1rem;
    opacity: 0.8;
}

.package-content {
    padding: 2rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.package-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.package-features li i {
    color: var(--accent-green);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gardening-header h1, .plant-care-header h1 {
        font-size: 2.5rem;
    }
    
    .gardening-header p, .plant-care-header p {
        font-size: 1.1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Dynamic Services Styles */
.category-section {
    margin-bottom: 4rem;
}

.category-section:last-child {
    margin-bottom: 2rem;
}

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

.category-header h3 {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.category-header h3 i {
    font-size: 2rem;
    color: var(--accent-green);
}

.category-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    margin-bottom: 1rem;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-green);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-tags .tag {
    background: linear-gradient(135deg, #2d5a27, #4a7c59);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 6px rgba(45, 90, 39, 0.3);
}

/* Admin Panel Enhancements */
.admin-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.admin-list-header h3 {
    margin: 0;
    color: var(--primary-green);
    font-size: 1.2rem;
}

#addServiceBtn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Status badges in admin table */
.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-badge.active {
    background: #27ae60;
    color: white;
}

.status-badge.inactive {
    background: #e74c3c;
    color: white;
}

/* Tags display in admin table */
.admin-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.admin-tag {
    background: #f0f0f0;
    padding: 0.125rem 0.5rem;
    border-radius: 8px;
    font-size: 0.7rem;
    color: var(--text-light);
}

/* Form enhancements */
.form-group label {
    font-weight: 500;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    display: block;
}

.form-group input[type="text"],
.form-group input[type="url"],
.form-group textarea,
.form-group select {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 2px rgba(139, 195, 74, 0.2);
}

/* Responsive admin panel */
@media (max-width: 768px) {
    .admin-list-header {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    #addServiceBtn {
        width: 100%;
        justify-content: center;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-tags {
        justify-content: flex-start;
        position: absolute;
        top: 8px;
        left: 8px;
        gap: 0.3rem;
    }
    
    .service-tag {
        font-size: 0.7rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Customer Reviews Section */
.customer-reviews {
    background: linear-gradient(135deg, var(--warm-beige) 0%, var(--cream-white) 100%);
    padding: 4.4rem 0; /* Increased from 4rem 0 */
}

.customer-reviews .section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-green);
}

/* Top Reviews Grid */
.top-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-light);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.review-content {
    margin-bottom: 1.5rem;
}

.review-content p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.review-rating {
    color: #ffc107;
    font-size: 1.1rem;
}

.review-rating i {
    margin-right: 2px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.author-info h5 {
    color: var(--primary-green);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* No Reviews Message */
.no-reviews-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 2px dashed var(--border-light);
}

.no-reviews-message i {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.no-reviews-message h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}
.no-reviews-message p {
    color: var(--text-light);
    font-size: 1rem;
}
/* Review Submission Form */
.review-submission {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--border-light);
    max-width: 600px;
    margin: 0 auto;
}

.review-submission h3 {
    text-align: center;
    color: var(--primary-green);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Star Rating Input */
.rating-input {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-direction: row; /* Normal order 1-5 */
    justify-content: center;
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input label {
    cursor: pointer;
    font-size: 1.8rem;
    color: #ddd;
    transition: all 0.2s ease;
    margin: 0;
    padding: 4px;
    user-select: none;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    min-height: 32px;
}

.rating-input label:hover {
    transform: scale(1.1);
    background-color: rgba(255, 193, 7, 0.1);
}

/* When hovering over a label, highlight it and all previous labels */
.rating-input label:hover,
.rating-input label:hover ~ label {
    color: #ffc107;
}

/* When a radio is checked, highlight it and all previous labels */
.rating-input input[type="radio"]:checked ~ label {
    color: #ffc107;
}

/* When a radio is checked, also highlight the label itself */
.rating-input input[type="radio"]:checked + label {
    color: #ffc107;
}

/* Active state for better feedback */
.rating-input label:active {
    transform: scale(0.95);
}

/* Form Submit Button */
.review-form .btn {
    align-self: center;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.review-form .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-medium);
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    animation: slideIn 0.3s ease;
}

.notification-success {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
}

.notification-error {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
}

.notification-info {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
}

.notification-content i {
    font-size: 1.2rem;
}

.notification-content span {
    flex: 1;
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.notification-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.notification.fade-out {
    animation: slideOut 0.3s ease forwards;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Review System Mobile Styles */
@media (max-width: 768px) {
    .top-reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-submission {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .rating-input {
        justify-content: center;
        gap: 6px;
    }
    
    .rating-input label {
        font-size: 1.8rem;
        min-width: 28px;
        min-height: 28px;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .review-submission {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .review-submission h3 {
        font-size: 1.5rem;
    }
    
    .review-card {
        padding: 1rem;
    }
    
    .review-content p {
        font-size: 0.9rem;
    }
    
    .rating-input label {
        font-size: 1.5rem;
        min-width: 24px;
        min-height: 24px;
    }
}

/* Plant News page theming */
.plant-news-page {
    background: #eef6f1; /* deeper soft green tint for clearer contrast */
}
.plant-news-page .page-header {
    background: linear-gradient(180deg, #e5f1ea 0%, #eef6f1 100%);
}
.plant-news-page .news-intro {
    background: #eef6f1;
}
/* Removed conflicting background - using main articles-section styling */
.plant-news-page .articles-container .news-article-simple,
.plant-news-page .articles-container .news-article-card {
    background: #ffffff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    border: 1px solid rgba(76,114,89,0.08);
}

/* News article card background enhancement */
.plant-news-page .news-article-simple .article-content-wrapper {
    background: linear-gradient(180deg, #fffaf0 0%, #f2fbf6 100%); /* light cream -> light green */
    border-radius: 18px;
}
.plant-news-page .news-article-simple .article-text-section {
    background: transparent;
}

/* Stronger overrides for Plant News page background */
body.plant-news-page {
	background: #e8f4ee !important; /* soft green */
}
/* Removed conflicting transparent background - using main articles-section styling */
/* In case containers impose white background */
.plant-news-page .container {
	background: transparent !important;
}
/* Give the article wrapper a subtle panel tint so it stands out on the green page */
.plant-news-page .news-article-simple .article-content-wrapper {
	background: #fffaf0 !important; /* light cream */
	border-radius: 18px;
	box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

/* Revert Plant News page backgrounds to default */
body.plant-news-page {
	background: #ffffff !important;
}
/* Removed conflicting inherit background - using main articles-section styling */
.plant-news-page .news-article-simple .article-content-wrapper {
	background: #ffffff !important;
}

/* Plant News hero banner - green theme */
.plant-news-page .page-header {
	background: #2f5f38 !important; /* solid deep green matching reference */
	background-image: none !important;
	color: #ffffff !important;
}
.plant-news-page .page-header h1,
.plant-news-page .page-header p,
.plant-news-page .page-header .breadcrumb,
.plant-news-page .page-header .breadcrumb a,
.plant-news-page .page-header .breadcrumb span,
.plant-news-page .page-header i {
	color: #ffffff !important;
	opacity: 0.95;
}
.plant-news-page .page-header .breadcrumb a:hover {
	text-decoration: underline;
	opacity: 1;
}

/* Plant News: Modern Horizontal Card Design */
.plant-news-page .news-article-simple {
	margin: 24px 0;
	background: transparent;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.plant-news-page .news-article-simple .article-content-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	background: #ffffff;
	border-radius: 20px;
	border: 1px solid rgba(45, 90, 39, 0.08);
	box-shadow: 
		0 8px 32px rgba(17, 36, 24, 0.08),
		0 2px 8px rgba(17, 36, 24, 0.04);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
	max-width: 100%;
	margin: 0 auto;
	min-height: 280px;
}

.plant-news-page .news-article-simple .article-content-wrapper::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, #2d5a27, #4a7c59, #6b8e23);
	border-radius: 20px 20px 0 0;
	z-index: 2;
}

.plant-news-page .news-article-simple .article-content-wrapper:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: 
		0 20px 60px rgba(17, 36, 24, 0.15),
		0 8px 24px rgba(17, 36, 24, 0.08);
	border-color: rgba(45, 90, 39, 0.15);
}

/* Image Section - Horizontal Layout */
.plant-news-page .news-article-simple .article-image-section {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 0;
	overflow: hidden;
	background: linear-gradient(135deg, #f0f8f0, #e8f4e8);
}

.plant-news-page .news-article-simple .article-image {
	width: 100%;
	height: 100%;
	border-radius: 0;
	overflow: hidden;
	position: relative;
}

.plant-news-page .news-article-simple .article-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.plant-news-page .news-article-simple .article-content-wrapper:hover .article-image img {
	transform: scale(1.08);
}

/* Category Badge - Removed */

/* Text Section - Horizontal Layout */
.plant-news-page .news-article-simple .article-text-section {
	background: transparent;
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 16px;
}

/* Title Styling - Horizontal */
.plant-news-page .news-article-simple .article-title {
	font-family: 'Playfair Display', serif;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.3;
	margin: 0;
	color: #1a2e1f;
	letter-spacing: -0.01em;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

/* Content Description - Horizontal */
.plant-news-page .news-article-simple .article-content p {
	color: #4a5c4e;
	line-height: 1.6;
	margin: 0;
	font-size: 15px;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	max-height: 4.5em;
}

/* Meta Information - Horizontal Bar */
.plant-news-page .news-article-simple .article-meta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	background: linear-gradient(135deg, #f8f9f5, #f0f8f0);
	border-radius: 12px;
	padding: 12px 16px;
	color: #3d5a47;
	font-size: 13px;
	font-weight: 500;
	border: 1px solid rgba(45, 90, 39, 0.08);
	margin-top: auto;
}

.plant-news-page .news-article-simple .article-meta i {
	color: #2d5a27;
	font-size: 14px;
}

/* Read More Button - Horizontal */
.plant-news-page .news-article-simple .read-more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 14px 20px;
	border-radius: 12px;
	background: linear-gradient(135deg, #2d5a27, #3f7a3a);
	color: #ffffff;
	font-weight: 600;
	font-size: 14px;
	border: none;
	cursor: pointer;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 4px 16px rgba(45, 90, 39, 0.2);
	text-decoration: none;
	align-self: flex-start;
	margin-top: 8px;
}

.plant-news-page .news-article-simple .read-more:hover {
	background: linear-gradient(135deg, #3f7a3a, #2d5a27);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(45, 90, 39, 0.3);
}

.plant-news-page .news-article-simple .read-more:active { 
	transform: translateY(0px); 
}

.plant-news-page .news-article-simple .read-more i {
	font-size: 13px;
	transition: transform 0.3s ease;
}

.plant-news-page .news-article-simple .read-more:hover i {
	transform: translateX(3px);
}

/* Article Quick View Panel Styles */
.panel-date {
	color: #6b8e23;
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 1rem;
	padding: 0.5rem 1rem;
	background: linear-gradient(135deg, #f0f8f0, #e8f4e8);
	border-radius: 8px;
	border-left: 4px solid #6b8e23;
}

.panel-description {
	line-height: 1.7;
	font-size: 1rem;
	color: #4a5c4e;
	margin-bottom: 1.5rem;
	max-height: none;
	overflow: visible;
	white-space: normal;
}

.panel-actions .btn {
	width: 100%;
	justify-content: center;
}

/* Responsive Design for Horizontal News Cards */
@media (max-width: 1200px) {
	.plant-news-page .articles-container {
		padding: 3rem 1.5rem;
		gap: 28px;
	}
	
	.plant-news-page .news-article-simple .article-content-wrapper {
		min-height: 260px;
	}
}

@media (max-width: 900px) {
	.plant-news-page .articles-container {
		padding: 2rem 1rem;
		gap: 24px;
	}
	
	.plant-news-page .news-article-simple .article-content-wrapper {
		grid-template-columns: 1fr;
		gap: 0;
		min-height: auto;
	}
	
	.plant-news-page .news-article-simple .article-image-section {
		height: 200px;
	}
	
	.plant-news-page .news-article-simple .article-text-section {
		padding: 20px;
		gap: 14px;
	}
	
	.plant-news-page .news-article-simple .article-title {
		font-size: 22px;
	}
	
	.plant-news-page .news-article-simple .article-content p {
		font-size: 14px;
		-webkit-line-clamp: 3;
	}
}

@media (max-width: 600px) {
	.plant-news-page .articles-container {
		padding: 2rem 1rem;
		gap: 20px;
	}
	
	.plant-news-page .news-article-simple .article-content-wrapper {
		border-radius: 16px;
	}
	
	.plant-news-page .news-article-simple .article-image-section {
		height: 180px;
	}
	
	.plant-news-page .news-article-simple .article-text-section {
		padding: 16px;
		gap: 12px;
	}
	
	.plant-news-page .news-article-simple .article-title {
		font-size: 20px;
		-webkit-line-clamp: 2;
	}
	
	.plant-news-page .news-article-simple .article-content p {
		font-size: 13px;
		-webkit-line-clamp: 2;
	}
	
	.plant-news-page .news-article-simple .article-meta {
		padding: 10px 12px;
		font-size: 12px;
	}
	
	.plant-news-page .news-article-simple .read-more {
		padding: 12px 16px;
		font-size: 13px;
	}
	
	/* Article category styling removed */
}

/* Removed conflicting green background - using main articles-section styling */
.plant-news-page .news-intro h2,
.plant-news-page .news-intro p,
.plant-news-page .news-intro .stat-number,
.plant-news-page .news-intro .stat-label {
	color: #ffffff !important;
	opacity: 0.95;
}
/* Keep cards readable on green */
.plant-news-page .articles-section .articles-container .news-article-simple,
.plant-news-page .articles-section .articles-container .news-article-card {
	background: #ffffff !important;
}

/* Removed conflicting inherit background - using main articles-section styling */
/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN SYSTEM
   ======================================== */

/* Extra Large Screens (1400px and up) */
@media (min-width: 1400px) {
    .container {
        max-width: 95vw; /* Use viewport width instead of fixed pixels */
        padding: 0 2.5vw; /* Use viewport width for padding */
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1.4rem;
    }
    
    .about-content {
        justify-content: end;
        margin: 0 auto;
        margin-left: auto;
        margin-right: 0;
        max-width: 1200px;
    }
}

/* Large Screens (1200px to 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .container {
        max-width: 95vw; /* Use viewport width instead of fixed pixels */
        padding: 0 2vw; /* Use viewport width for padding */
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
    
    .about-content {
        justify-content: end;
        margin: 0 auto;
        margin-left: auto;
        margin-right: 0;
        max-width: 1000px;
    }
}

/* Desktop/Tablet Large (1024px to 1199px) */
@media (max-width: 1199px) and (min-width: 1024px) {
    .container {
        max-width: 95vw; /* Use viewport width instead of fixed pixels */
        padding: 0 2vw; /* Use viewport width for padding */
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .nav-container {
        padding: 0 1.5rem;
    }
    
    .products-grid:not(.products-section .products-grid) {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* Tablet (912px to 1023px) */
@media (max-width: 1023px) and (min-width: 912px) {
    .container {
        max-width: 95vw; /* Use viewport width instead of fixed pixels */
        padding: 0 2vw; /* Use viewport width for padding */
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1.15rem;
    }
    
    .nav-container {
        padding: 0 1.25rem;
    }
    
    .products-grid:not(.products-section .products-grid) {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-content {
        gap: 2rem;
        justify-content: end;
        margin: 0 auto;
        margin-left: auto;
        margin-right: 0;
        max-width: 800px;
    }
    
    .hero-content {
        gap: 3rem;
    }
}

/* Tablet Portrait (768px to 911px) */
@media (max-width: 911px) and (min-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .products-grid:not(.products-section .products-grid) {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-content {
        gap: 1.5rem;
        justify-content: end;
        margin: 0 auto;
        margin-left: auto;
        margin-right: 0;
        max-width: 700px;
    }
    
    .hero-content {
        gap: 2.5rem;
    }
    
    .cta h2 {
        font-size: 2.5rem;
    }
    
    .cta p {
        font-size: 1.2rem;
    }
}

/* Mobile Large (600px to 767px) */
@media (max-width: 767px) and (min-width: 600px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.9rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 0 1rem;
    }
    
    .products-grid:not(.products-section .products-grid) {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        align-items: center;
        justify-items: center;
    }
    
    .footer-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-section:first-child {
        margin-left: 0;
        margin-bottom: 0;
    }
    
    .footer-section h3 {
        text-align: center;
        margin-bottom: 1rem;
        font-size: 1.2rem;
        font-weight: 600;
    }
    
    .footer-section ul li a {
        font-size: 1rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .footer-section ul {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section ul li {
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
        align-items: center;
        gap: 1rem;
        margin: 1rem auto 0 auto;
    }
    
    .contact-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info p {
        text-align: center;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
    
    /* Ensure social media icons are centered in hero section */
    .hero .social-links {
        justify-content: center !important;
        align-items: center !important;
        margin: 1rem auto 0 auto !important;
        display: flex !important;
        width: 100% !important;
    }
    
    /* Force all hero content to be centered */
    .hero {
        text-align: center !important;
    }
    
    .hero-content {
        text-align: center !important;
    }
    
    /* Mobile hero centering duplicate removed */
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .cta h2 {
        font-size: 2.2rem;
    }
    
    .cta p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    
    /* Plant showcase - removed duplicate (already handled in 768px breakpoint) */
    
    .about-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature {
        justify-content: center;
    }
    
    /* Featured Products Button Center Alignment */
    .featured-products .text-center {
        text-align: center !important;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .featured-products .text-center .btn {
        margin: 0 auto;
        display: block;
    }
    
    /* New Arrivals Hero Text Center Alignment */
    .new-arrivals-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .new-arrivals-hero .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .new-arrivals-hero .hero-text h2 {
        text-align: center;
    }
    
    .new-arrivals-hero .hero-text p {
        text-align: center;
    }
    
    .arrival-stats {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    
    }
}

/* Mobile Medium (425px to 599px) */
@media (max-width: 599px) and (min-width: 425px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero-title {
        font-size: 2.6rem;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .nav-container {
        padding: 0 0.75rem;
    }
    
    .products-grid:not(.products-section .products-grid) {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        align-items: center;
        justify-items: center;
    }
    
    .footer-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .footer-section:first-child {
        margin-left: 0;
        margin-bottom: 0;
    }
    
    .footer-section h3 {
        text-align: center;
        margin-bottom: 0.75rem;
        font-size: 1.15rem;
        font-weight: 600;
    }
    
    .footer-section ul li a {
        font-size: 0.95rem;
    }
    
    .contact-info p {
        font-size: 0.95rem;
    }
    
    .footer-section ul {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section ul li {
        text-align: center;
        margin-bottom: 0.4rem;
    }
    
    .social-links {
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        margin: 0.75rem auto 0 auto;
    }
    
    .contact-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info p {
        text-align: center;
        margin-bottom: 0.4rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.4rem;
        font-size: 0.9rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.25rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    /* Hero styles - only center on mobile (already handled in base 768px media query above) */
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 280px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    
    /* Plant showcase - removed duplicate */
    
    .about-features {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .feature {
        justify-content: center;
        padding: 0.75rem;
    }
    
    .image-placeholder {
        height: auto;
        min-height: 200px;
        max-height: 300px;
        aspect-ratio: 4/3;
        margin-top: 1.5rem;
        padding: 10px;
    }
    
    .footer-section:first-child {
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    /* Featured Products Button Center Alignment */
    .featured-products .text-center {
        text-align: center !important;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .featured-products .text-center .btn {
        margin: 0 auto;
        display: block;
    }
    
    /* New Arrivals Hero Text Center Alignment */
    .new-arrivals-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .new-arrivals-hero .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .new-arrivals-hero .hero-text h2 {
        text-align: center;
    }
    
    .new-arrivals-hero .hero-text p {
        text-align: center;
    }
    
    .arrival-stats {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    
    }
}
/* Mobile Small (375px to 424px) */
@media (max-width: 424px) and (min-width: 375px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 2.0rem;
    }
    
    .section-title {
        font-size: 2.1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .products-grid:not(.products-section .products-grid) {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        align-items: center;
        justify-items: center;
    }
    
    .footer-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }
    
    .footer-section:first-child {
        margin-left: 0;
        margin-bottom: 0;
    }
    
    .footer-section h3 {
        text-align: center;
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .contact-info p {
        font-size: 0.9rem;
    }
    
    .footer-section ul {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section ul li {
        text-align: center;
        margin-bottom: 0.3rem;
    }
    
    .social-links {
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        margin: 0.5rem auto 0 auto;
    }
    
    .contact-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info p {
        text-align: center;
        margin-bottom: 0.3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.3rem;
        font-size: 0.85rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.25rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
    
    /* Ensure social media icons are centered in hero section */
    .hero .social-links {
        justify-content: center !important;
        align-items: center !important;
        margin: 1rem auto 0 auto !important;
        display: flex !important;
        width: 100% !important;
    }
    
    /* Force all hero content to be centered */
    .hero {
        text-align: center !important;
    }
    
    .hero-content {
        text-align: center !important;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta p {
        font-size: 0.95rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }
    
    .plant-showcase {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .about-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .feature {
        justify-content: center;
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .image-placeholder {
        height: auto;
        min-height: 180px;
        max-height: 250px;
        aspect-ratio: 4/3;
        margin-top: 1rem;
        padding: 8px;
    }
    
    .footer-section:first-child {
        margin-bottom: 0.75rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.25rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    /* Featured Products Button Center Alignment */
    .featured-products .text-center {
        text-align: center !important;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .featured-products .text-center .btn {
        margin: 0 auto;
        display: block;
    }
    
    /* New Arrivals Hero Text Center Alignment */
    .new-arrivals-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .new-arrivals-hero .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .new-arrivals-hero .hero-text h2 {
        text-align: center;
    }
    
    .new-arrivals-hero .hero-text p {
        text-align: center;
    }
    
    .arrival-stats {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    
    }
}

/* Mobile Extra Small (320px to 374px) */
@media (max-width: 374px) {
    .container {
        padding: 0 0.5rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .products-grid:not(.products-section .products-grid) {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        align-items: center;
        justify-items: center;
    }
    
    .footer-section {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }
    
    .footer-section:first-child {
        margin-left: 0;
        margin-bottom: 0;
    }
    
    .footer-section h3 {
        text-align: center;
        margin-bottom: 0.4rem;
        font-size: 1.05rem;
        font-weight: 600;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
    
    .contact-info p {
        font-size: 0.85rem;
    }
    
    .footer-section ul {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-section ul li {
        text-align: center;
        margin-bottom: 0.25rem;
    }
    
    .social-links {
        justify-content: center;
        align-items: center;
        gap: 0.4rem;
        margin: 0.4rem auto 0 auto;
    }
    
    .contact-info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-info p {
        text-align: center;
        margin-bottom: 0.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.25rem;
        font-size: 0.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.75rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
    
    /* Ensure social media icons are centered in hero section */
    .hero .social-links {
        justify-content: center !important;
        align-items: center !important;
        margin: 1rem auto 0 auto !important;
        display: flex !important;
        width: 100% !important;
    }
    
    /* Force all hero content to be centered */
    .hero {
        text-align: center !important;
    }
    
    .hero-content {
        text-align: center !important;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .cta h2 {
        font-size: 1.6rem;
    }
    
    .cta p {
        font-size: 0.9rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .btn {
        padding: 6px 12px;
        font-size: 0.85rem;
        width: 100%;
        max-width: 220px;
    }
    
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.3rem; }
    h3 { font-size: 1.1rem; }
    
    .plant-showcase {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .about-features {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .feature {
        justify-content: center;
        padding: 0.5rem;
        font-size: 0.85rem;
    }
    
    .image-placeholder {
        height: auto;
        min-height: 160px;
        max-height: 220px;
        aspect-ratio: 4/3;
        margin-top: 0.75rem;
        padding: 6px;
    }
    
    .footer-section:first-child {
        margin-bottom: 0.5rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.5rem;
    }
    
    .footer-section h3 {
        font-size: 1rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.25rem;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        font-size: 0.8rem;
    }
}

/* ========================================
   ENHANCED MOBILE NAVIGATION
   ======================================== */

/* Enhanced Mobile Navigation Styles */
body.nav-open {
    overflow: hidden;
}

body.nav-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 998;
    animation: fadeIn 0.4s ease;
}

/* Mobile navigation slide animations */
@keyframes slideUpIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Mobile Navigation Enhancements */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
    }
    
    .hamburger .bar {
        width: 25px;
        height: 3px;
        background-color: var(--primary-green);
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        left: 0;
        top: 100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        height: calc(100vh - 60px);
        text-align: center;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
        padding: 2rem 0;
        z-index: 999;
        backdrop-filter: blur(10px);
        border-radius: 20px 20px 0 0;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
        transform: translateY(100%);
    }
    
    .nav-menu.active {
        transform: translateY(0);
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-menu.active li:nth-child(7) { transition-delay: 0.4s; }
    .nav-menu.active li:nth-child(8) { transition-delay: 0.45s; }
    .nav-menu.active li:nth-child(9) { transition-delay: 0.5s; }
    
    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
        display: block;
        width: 100%;
        border-radius: 12px;
        margin: 0.25rem 0.75rem;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu .nav-link:hover {
        background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
        color: white;
        transform: translateX(5px);
    }
    
    .nav-menu .nav-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s;
    }
    
    .nav-menu .nav-link:hover::before {
        left: 100%;
    }
    
    .dropdown-content {
        position: static;
        background: var(--warm-beige);
        box-shadow: none;
        border-radius: 6px;
        margin-top: 0.25rem;
        padding: 0.25rem 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown-content.active {
        max-height: 250px;
        overflow-y: auto;
    }
    
    .dropdown-content a {
        padding: 0.4rem 0.75rem;
        font-size: 0.9rem;
        margin: 0.1rem 0.5rem;
        border-radius: 4px;
        transition: all 0.2s ease;
    }
    
    .dropdown-content a:hover {
        background: var(--primary-green);
        color: white;
    }
    
    /* Custom scrollbar for mobile dropdown */
    .dropdown-content::-webkit-scrollbar {
        width: 6px;
    }
    
    .dropdown-content::-webkit-scrollbar-track {
        background: var(--warm-beige);
        border-radius: 3px;
    }
    
    .dropdown-content::-webkit-scrollbar-thumb {
        background: var(--accent-green);
        border-radius: 3px;
        transition: background 0.3s ease;
    }
    
    .dropdown-content::-webkit-scrollbar-thumb:hover {
        background: var(--primary-green);
    }
    
    /* Firefox scrollbar styling for mobile dropdown */
    .dropdown-content {
        scrollbar-width: thin;
        scrollbar-color: var(--accent-green) var(--warm-beige);
    }
    
    /* Enhanced mobile dropdown scrolling */
    .dropdown-content {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    /* Mobile dropdown container improvements */
    .nav-menu .dropdown {
        position: relative;
    }
    
    .nav-menu .dropdown .dropdown-content {
        position: static;
        background: var(--warm-beige);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        margin: 0.5rem 1rem;
        padding: 0.5rem 0;
        border: 1px solid var(--border-light);
    }
    
    /* Mobile dropdown animation improvements */
    .dropdown-content {
        transform: translateY(-10px);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .dropdown-content.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    /* Mobile dropdown scroll indicators */
    .dropdown-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 20px;
        background: linear-gradient(to bottom, var(--warm-beige), transparent);
        pointer-events: none;
        z-index: 1;
    }
    
    .dropdown-content::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 20px;
        background: linear-gradient(to top, var(--warm-beige), transparent);
        pointer-events: none;
        z-index: 1;
    }
    
    /* Scroll indicator for mobile navigation */
    .nav-menu::-webkit-scrollbar {
        width: 4px;
    }
    
    .nav-menu::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .nav-menu::-webkit-scrollbar-thumb {
        background: var(--primary-green);
        border-radius: 2px;
    }
    
    .nav-menu::-webkit-scrollbar-thumb:hover {
        background: var(--secondary-green);
    }
}

/* ========================================
   RESPONSIVE IMAGES AND MEDIA
   ======================================== */

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Product images */
.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .product-image img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .product-image img {
        height: 160px;
    }
}

/* Hero background images */
.hero-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ========================================
   RESPONSIVE FORMS AND INPUTS
   ======================================== */

@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px;
        width: 100%;
        box-sizing: border-box;
        border-radius: 8px;
        border: 1px solid var(--border-light);
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-form {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-info-item {
        margin-bottom: 1.5rem;
    }
    
    /* Contact Form Section Center Alignment */
    .contact-form-section h2 {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .contact-form-section p {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .map-container {
        height: 300px;
        margin-top: 0;
    }
    
    /* Hide FAQ Section on Mobile */
    .faq-section {
        display: none !important; /* Hide FAQ section on mobile */
    }
    
    /* Map Section Mobile Spacing */
    .map-section {
        margin-bottom: 0; /* Removed separation on mobile */
        padding: 2.5rem 0; /* Adjusted padding for mobile */
        position: relative;
        z-index: 1; /* Ensure map section stays below footer */
    }
    
    /* Footer Mobile Spacing */
    .footer {
        margin-top: 0; /* Removed separation on mobile */
        padding: 20px 0 10px; /* Reduced padding for mobile */
        position: relative;
        z-index: 10; /* Ensure footer stays above map section */
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1rem;
        margin: 0 0.25rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    /* Contact Form Section Center Alignment */
    .contact-form-section h2 {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .contact-form-section p {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        padding: 10px;
        font-size: 15px;
    }
    
    textarea {
        min-height: 120px;
    }
    
    .map-container {
        height: 250px;
    }
    
    /* Map Section Small Mobile Spacing */
    .map-section {
        margin-bottom: 0; /* Removed separation for small mobile */
        padding: 2rem 0; /* Adjusted padding for small mobile */
        position: relative;
        z-index: 1; /* Ensure map section stays below footer */
    }
    
    /* Map Info Small Mobile Styles */
    .map-info {
        margin-top: 1.5rem; /* Reduced spacing for small mobile */
        padding: 1.25rem; /* Reduced padding for small mobile */
    }
    
    .map-address {
        margin-bottom: 1.25rem; /* Reduced spacing for small mobile */
    }
    
    .map-address i {
        font-size: 1.2rem; /* Smaller icon for small mobile */
    }
    
    .map-address h4 {
        font-size: 1rem; /* Smaller heading for small mobile */
    }
    
    .map-address p {
        font-size: 0.9rem; /* Smaller text for small mobile */
    }
    
    .map-actions {
        gap: 0.5rem; /* Reduced gap for small mobile */
    }
    
    .map-btn {
        padding: 0.7rem 0.9rem; /* Reduced padding for small mobile */
        font-size: 0.85rem; /* Smaller font for small mobile */
    }
    
    /* Footer Small Mobile Spacing */
    .footer {
        margin-top: 0; /* Removed separation for small mobile */
        padding: 35px 0 20px; /* Adjusted padding for small mobile */
        position: relative;
        z-index: 10; /* Ensure footer stays above map section */
    }
}

/* ========================================
   RESPONSIVE TABLES
   ======================================== */

@media (max-width: 768px) {
    table {
        font-size: 0.9rem;
    }
    
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table-responsive table {
        min-width: 600px;
    }
}

/* ========================================
   RESPONSIVE PRODUCT GRIDS
   ======================================== */

/* Products Section - 3 columns layout */
@media (max-width: 1200px) {
    .products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 1000px;
    }
}

@media (max-width: 900px) {
    .products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        max-width: 800px;
    }
}

@media (max-width: 600px) {
    .products-section .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
}

/* General products grid (for other sections) */
@media (max-width: 1200px) {
    .products-grid:not(.products-section .products-grid) {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 900px) {
    .products-grid:not(.products-section .products-grid) {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (max-width: 600px) {
    .products-grid:not(.products-section .products-grid) {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ========================================
   RESPONSIVE FILTERS AND SEARCH
   ======================================== */

@media (max-width: 768px) {
    .filters-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .filter-categories {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0.5rem 0;
        gap: 0.75rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-green) transparent;
    }
    
    .filter-categories::-webkit-scrollbar {
        height: 4px;
    }
    
    .filter-categories::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .filter-categories::-webkit-scrollbar-thumb {
        background: var(--primary-green);
        border-radius: 2px;
    }
    
    .filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 7px 14px;
        font-size: 0.9rem;
    }
    
    .filter-category {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .search-container {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .search-input {
        width: 100%;
        padding: 0.75rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .filter-categories {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0.5rem 0;
        gap: 0.75rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: var(--primary-green) transparent;
    }
    
    .filter-categories::-webkit-scrollbar {
        height: 4px;
    }
    
    .filter-categories::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .filter-categories::-webkit-scrollbar-thumb {
        background: var(--primary-green);
        border-radius: 2px;
    }
    
    .filter-btn {
        flex-shrink: 0;
        white-space: nowrap;
        padding: 6px 12px;
        font-size: 0.85rem;
        min-width: auto;
    }
    
    /* Small mobile search box spacing */
    .search-box i {
        left: 22px;
        font-size: 1.2rem;
    }
    
    .search-box input {
        padding: 16px 15px 16px 60px;
        font-size: 16px;
        border-radius: 20px;
    }
    
    .search-box input::placeholder {
        font-size: 1rem;
    }
    
    .search-input {
        padding: 0.6rem;
        font-size: 0.95rem;
    }
}

/* ========================================
   RESPONSIVE PAGINATION
   ======================================== */

@media (max-width: 768px) {
    .pagination-controls {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .pagination-numbers {
        order: -1;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .pagination-number {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .pagination-btn {
        width: 100%;
        max-width: 200px;
        justify-content: center;
        padding: 0.75rem 1rem;
    }
}

@media (max-width: 480px) {
    .pagination-number {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .pagination-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* ========================================
   RESPONSIVE MODALS AND OVERLAYS
   ======================================== */

@media (max-width: 768px) {
    .modal {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .modal-content {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .quick-view-panel {
        width: 100%;
        right: -100%;
        left: auto;
    }
    
    .quick-view-panel.open {
        right: 0;
    }
}

/* ========================================
   RESPONSIVE CART AND CHECKOUT
   ======================================== */

@media (max-width: 768px) {
    .cart-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cart-items {
        order: 1;
    }
    
    .cart-summary {
        order: 2;
        position: sticky;
        bottom: 0;
        background: white;
        padding: 1rem;
        border-top: 1px solid var(--border-light);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }
    
    .cart-item-image {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .cart-item-details {
        width: 100%;
        text-align: center;
    }
    
    .cart-item-controls {
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }
    
    
    .btn-whatsapp {
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: white;
        border: none;
        box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
    }
    
    .btn-whatsapp:hover {
        background: linear-gradient(135deg, #128C7E, #075E54);
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    
}
/* Additional mobile optimizations for smaller screens */
@media (max-width: 480px) {
    
    
    .btn-whatsapp {
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: white;
        border: none;
        box-shadow: 0 2px 6px rgba(37, 211, 102, 0.3);
    }
    
    .btn-whatsapp:hover {
        background: linear-gradient(135deg, #128C7E, #075E54);
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(37, 211, 102, 0.4);
    }
}
/* Ensure buttons are always centered on all devices */
@media (max-width: 768px) {
    .cart-summary {
        position: sticky;
        bottom: 0;
        background: white;
        border-top: 2px solid var(--primary-green);
        z-index: 100;
        padding: 1rem;
        text-align: center;
    }
    
    .checkout-buttons {
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .checkout-buttons .btn {
        transition: all 0.3s ease;
        cursor: pointer;
        text-align: center;
    }
    
    .checkout-buttons .btn:active {
        transform: translateY(1px);
        box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    }
}

    .quantity-controls {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .quantity-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .quantity-input {
        width: 50px;
        text-align: center;
        font-size: 0.9rem;
    }
    
    
}

@media (max-width: 480px) {
    .cart-item {
        padding: 0.75rem;
    }
    
    .cart-item-image {
        max-width: 150px;
    }
    
    .cart-item-title {
        font-size: 1rem;
    }
    
    .cart-item-price {
        font-size: 0.9rem;
    }
    
    .quantity-btn {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .quantity-input {
        width: 40px;
        font-size: 0.8rem;
    }
    
    .remove-item {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
    
    .cart-summary {
        padding: 0.75rem;
    }
    
    .summary-row {
        font-size: 0.9rem;
    }
    
    .total-row {
        font-size: 1.1rem;
    }
}

/* ========================================
   RESPONSIVE UTILITIES
   ======================================== */

/* Hide on mobile */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
}

/* Hide on desktop */
@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}

/* Text alignment utilities */
@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center !important;
    }
    
    .text-left-mobile {
        text-align: left !important;
    }
}

/* Spacing utilities for mobile */
@media (max-width: 768px) {
    .mb-mobile-1 { margin-bottom: 0.5rem !important; }
    .mb-mobile-2 { margin-bottom: 1rem !important; }
    .mb-mobile-3 { margin-bottom: 1.5rem !important; }
    .mb-mobile-4 { margin-bottom: 2rem !important; }
    
    .mt-mobile-1 { margin-top: 0.5rem !important; }
    .mt-mobile-2 { margin-top: 1rem !important; }
    .mt-mobile-3 { margin-top: 1.5rem !important; }
    .mt-mobile-4 { margin-top: 2rem !important; }
}

/* ========================================
   PERFORMANCE OPTIMIZATIONS
   ======================================== */

/* Reduce animations on mobile for better performance */
@media (max-width: 768px) {
    * {
        animation-duration: 0.3s !important;
        transition-duration: 0.3s !important;
    }
    
    .floating-leaves {
        display: none; /* Hide floating animations on mobile */
    }
    
    /* Mobile search box spacing improvements */
    .search-box i {
        left: 20px;
        font-size: 1.1rem;
    }
    
    .search-box input {
        padding: 14px 15px 14px 55px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    .search-box input::placeholder {
        font-size: 1rem;
    }
    
    /* Force hero content to be perfectly centered on mobile */
    .hero {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .hero-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 20px !important;
    }
    
    .hero-title,
    .hero-subtitle,
    .hero-description {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        display: block !important;
    }
    
    .hero .social-links {
        justify-content: center !important;
        align-items: center !important;
        margin: 1rem auto 0 auto !important;
        display: flex !important;
        width: 100% !important;
    }
    
    /* Center any logo or brand elements in hero */
    .hero .logo,
    .hero .brand,
    .hero .footer-logo,
    .hero .hero-logo {
        text-align: center !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
    }
    
    /* Center all text content in hero */
    .hero * {
        text-align: center !important;
    }
    
    /* Override any left alignment */
    .hero .text-left,
    .hero .align-left {
        text-align: center !important;
    }
    
    /* New Arrivals Hero Text Center Alignment */
    .new-arrivals-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .new-arrivals-hero .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .new-arrivals-hero .hero-text h2 {
        text-align: center;
    }
    
    .new-arrivals-hero .hero-text p {
        text-align: center;
    }
    
    .arrival-stats {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    
    /* Featured Products Button Center Alignment */
    .featured-products .text-center {
        text-align: center !important;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .featured-products .text-center .btn {
        margin: 0 auto;
        display: block;
    }
    
    /* New Arrivals Hero Text Center Alignment */
    .new-arrivals-hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .new-arrivals-hero .hero-text {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .new-arrivals-hero .hero-text h2 {
        text-align: center;
    }
    
    .new-arrivals-hero .hero-text p {
        text-align: center;
    }
    
    .arrival-stats {
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    
    }
}

/* ========================================
   ACCESSIBILITY IMPROVEMENTS
   ======================================== */

/* Ensure touch targets are at least 44px */
@media (max-width: 768px) {
    .btn,
    .nav-link,
    .hamburger {
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary,
    .btn-secondary {
        border: 2px solid currentColor;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
    .navbar,
    .hamburger,
    .footer,
    .btn,
    .floating-leaves {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
        color: black;
        background: white;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    h1, h2, h3, h4, h5, h6 {
        color: black;
        page-break-after: avoid;
    }
    
    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }
}

/* Enhanced Footer Mobile Responsiveness */
@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        text-align: center;
        align-items: center;
        justify-items: center;
    }
    
    /* Logo and tagline section */
    .footer-section:first-child {
        padding: 2rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .footer-section:first-child p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        max-width: 90%;
        text-align: center;
    }
    
    .social-links {
        gap: 1.5rem;
        margin-top: 0;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    
    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Links sections - group them together */
    .footer-section:not(:first-child):not(:last-child) {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--light-green);
        text-align: center;
        width: 100%;
    }
    
    .footer-section ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .footer-section ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .footer-section ul li a {
        font-size: 1rem;
        padding: 0.5rem 0;
        display: block;
        width: 100%;
        text-align: center;
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-section ul li a:hover {
        color: var(--light-green);
    }
    
    /* Contact info section */
    .footer-section:last-child {
        padding: 1.5rem 0;
        border-bottom: none;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.75rem;
        width: 100%;
    }
    
    .contact-info p {
        font-size: 1rem;
        margin: 0;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .contact-info i {
        color: var(--light-green);
        font-size: 1rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        width: 100%;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 1.5rem 0 1rem;
    }
    
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
        text-align: center;
        align-items: center;
        justify-items: center;
    }
    
    /* Logo and tagline section */
    .footer-section:first-child {
        padding: 1.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .footer-section:first-child p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1rem;
        max-width: 90%;
        text-align: center;
    }
    
    .social-links {
        gap: 1rem;
        margin-top: 0;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Links sections */
    .footer-section:not(:first-child):not(:last-child) {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
        color: var(--light-green);
        text-align: center;
        width: 100%;
    }
    
    .footer-section ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .footer-section ul li {
        margin: 0;
        width: 100%;
        text-align: center;
    }
    
    .footer-section ul li a {
        font-size: 0.95rem;
        padding: 0.4rem 0;
        display: block;
        width: 100%;
        text-align: center;
        color: #ccc;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .footer-section ul li a:hover {
        color: var(--light-green);
    }
    
    /* Contact info section */
    .footer-section:last-child {
        padding: 1rem 0;
        border-bottom: none;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        width: 100%;
    }
    
    .contact-info p {
        font-size: 0.95rem;
        margin: 0;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .contact-info i {
        color: var(--light-green);
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        width: 100%;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin: 0;
        text-align: center;
    }
}

/* Repurposed Transformations Styles */
.transformations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.transformation-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transformation-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.transformation-header {
    padding: 1.5rem 1.5rem 1rem;
    text-align: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.transformation-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-green);
    margin: 0 0 0.5rem 0;
}


.before-after {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1rem;
}

.before, .after {
    flex: 1;
    text-align: center;
}

.image-container {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

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

.image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border: 2px dashed #dee2e6;
}
.image-placeholder.transformed {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    color: var(--primary-green);
}

.image-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.image-placeholder span {
    font-size: 0.9rem;
    text-align: center;
    padding: 0 1rem;
}
.before h4, .after h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}
.before h4 {
    color: #6c757d;
}

.after h4 {
    color: var(--primary-green);
}

.transformation-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    box-shadow: 0 4px 16px rgba(45, 90, 39, 0.3);
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .transformations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .before-after {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .transformation-arrow {
        transform: rotate(90deg);
    }
    
}

@media (max-width: 480px) {
    .transformation-header {
        padding: 1rem;
    }
    
    .before-after {
        padding: 1rem;
    }
    
    .image-container img,
    .image-placeholder {
        height: 150px;
    }
    
}