 /* Global Styles */
        :root {
            --primary-green: #2e7d32;
            --light-green: #81c784;
            --dark-green: #1b5e20;
            --cream: #f1f8e9;
            --brown: #5d4037;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: var(--cream);
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--primary-green);
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color: var(--dark-green);
            transform: translateY(-2px);
        }
        
        section {
            padding: 60px 0;
        }
        
        h2 {
            text-align: center;
            margin-bottom: 40px;
            color: var(--dark-green);
            font-size: 2.2rem;
            position: relative;
        }
        
        h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background-color: var(--light-green);
            margin: 15px auto;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            margin-right: 10px;
        }
        
        .logo h1 {
            color: var(--primary-green);
            font-size: 1.5rem;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--brown);
            font-weight: 600;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--primary-green);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            color: var(--primary-green);
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            height: 100vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 80px;
        }
        
        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        /* About Section */
        .about {
            background-color: white;
        }
        
        .about-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Plants Section */
        .plants {
            background-color: var(--cream);
        }
        
        .plant-categories {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .plant-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        
        .plant-card:hover {
            transform: translateY(-10px);
        }
        
        .plant-image {
            height: 200px;
            overflow: hidden;
        }
        
        .plant-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .plant-card:hover .plant-image img {
            transform: scale(1.1);
        }
        
        .plant-info {
            padding: 20px;
        }
        
        .plant-info h3 {
            color: var(--primary-green);
            margin-bottom: 10px;
        }
        
        /* Services Section */
        .services {
            background-color: white;
        }
        
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 8px;
            background-color: var(--cream);
            transition: all 0.3s;
        }
        
        .service-card:hover {
            background-color: var(--light-green);
            color: white;
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        
        .service-card:hover .service-icon {
            color: white;
        }
        
        .service-card h3 {
            margin-bottom: 15px;
        }
        
        /* Gallery Section */
        .gallery {
            background-color: var(--cream);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 15px;
        }
        
        .gallery-item {
            height: 200px;
            overflow: hidden;
            border-radius: 8px;
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        /* Contact Section */
        .contact {
            background-color: white;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .contact-info h3 {
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-details div {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .contact-details i {
            margin-right: 15px;
            color: var(--primary-green);
            font-size: 1.2rem;
        }
        
        .map {
            height: 250px;
            border-radius: 8px;
            overflow: hidden;
            margin-top: 20px;
        }
        
        .map iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }
        
        .contact-form textarea {
            height: 150px;
            resize: vertical;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-green);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }
        
        .footer-logo {
            margin-bottom: 20px;
        }
        
        .footer-logo h2 {
            color: white;
            text-align: left;
            margin-bottom: 0;
        }
        
        .footer-logo h2::after {
            display: none;
        }
        
        .footer-links h3 {
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links ul li {
            margin-bottom: 10px;
        }
        
        .footer-links ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links ul li a:hover {
            color: white;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--light-green);
            transform: translateY(-3px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #ddd;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .about-text, .about-image {
                flex: none;
                width: 100%;
            }
            
            .about-image {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: white;
                flex-direction: column;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
            }
            
            nav ul.show {
                display: flex;
            }
            
            nav ul li {
                margin: 0;
                text-align: center;
                padding: 10px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            section {
                padding: 40px 0;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
        }





        /* About Page Hero */
        .about-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            height: 60vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 80px;
        }
        
        .about-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .about-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        /* Our Story Section */
        .our-story {
            background-color: white;
        }
        
        .story-content {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .story-text {
            flex: 1;
        }
        
        .story-text h3 {
            color: var(--primary-green);
            margin-bottom: 20px;
            font-size: 1.8rem;
        }
        
        .story-text p {
            margin-bottom: 20px;
        }
        
        .story-image {
            flex: 1;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .story-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .story-image:hover img {
            transform: scale(1.05);
        }
        
        /* Mission Section */
        .our-mission {
            background-color: var(--cream);
        }
        
        .mission-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .mission-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s;
        }
        
        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .mission-icon {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        
        .mission-card h3 {
            margin-bottom: 15px;
            color: var(--dark-green);
        }
        
        /* Team Section */
        .our-team {
            background-color: white;
        }
        
        .team-members {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .team-member {
            text-align: center;
        }
        
        .member-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 5px solid var(--light-green);
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .team-member h3 {
            color: var(--primary-green);
            margin-bottom: 5px;
        }
        
        .team-member p {
            color: var(--brown);
            font-style: italic;
        }
        
        /* Values Section */
        .our-values {
            background-color: var(--cream);
        }
        
        .values-list {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .value-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
        }
        
        .value-icon {
            font-size: 1.5rem;
            color: var(--primary-green);
            margin-right: 20px;
            margin-top: 5px;
        }
        
        .value-content h3 {
            color: var(--dark-green);
            margin-bottom: 10px;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .story-content {
                flex-direction: column;
            }
            
            .story-text, .story-image {
                flex: none;
                width: 100%;
            }
            
            .story-image {
                margin-top: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 2.5rem;
            }
            
            section {
                padding: 40px 0;
            }
        }
        
        @media (max-width: 576px) {
            .about-hero h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
        }
		
	
		
		 /* Services Hero */
        .services-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../img/services_banner.jpg') no-repeat center center/cover;
            height: 50vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 80px;
        }
        
        .services-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .services-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        /* Main Services Section */
        .main-services {
            background-color: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background-color: var(--cream);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-image {
            height: 200px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-size: 1.5rem;
        }
        
        .service-content p {
            margin-bottom: 20px;
        }
        
        /* Service Features */
        .service-features {
            background-color: var(--cream);
        }
        
        .features-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            text-align: center;
            transition: all 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        
        /* Process Section */
        .our-process {
            background-color: white;
        }
        
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 30px;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .process-step {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        
        .step-number {
            background-color: var(--primary-green);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-weight: bold;
            margin-top: 5px;
        }
        
        .step-content {
            flex: 1;
        }
        
        /* Testimonials */
        .testimonials {
            background-color: var(--cream);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .testimonial-card {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }
        
        .testimonial-text::before {
            content: '"';
            font-size: 3rem;
            color: var(--light-green);
            position: absolute;
            left: -15px;
            top: -15px;
            opacity: 0.3;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-image {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info h4 {
            color: var(--primary-green);
            margin-bottom: 5px;
        }
        
        /* CTA Section */
        .service-cta {
            background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(27, 94, 32, 0.9)), url('https://images.unsplash.com/photo-1483794344563-d27a8d18014e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 80px 20px;
        }
        
        .service-cta h2 {
            color: white;
        }
        
        .service-cta h2::after {
            background-color: white;
        }
        
        .service-cta .btn {
            background-color: white;
            color: var(--primary-green);
        }
        
        .service-cta .btn:hover {
            background-color: var(--cream);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .services-hero h1 {
                font-size: 2.5rem;
            }
            
            section {
                padding: 40px 0;
            }
            
            .process-step {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }
        
        @media (max-width: 576px) {
            .services-hero h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
        }
		
		
		.gallery-item {
		height: 350px;
		}   
		
        /* Gallery Hero */
        .gallery-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1585320806297-9794b3e4eeae?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            height: 50vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 80px;
        }
        
        .gallery-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .gallery-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        /* Gallery Filters */
        .gallery-filters {
            background-color: white;
            padding: 20px 0;
            position: sticky;
            top: 80px;
            z-index: 100;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }
        
        .filter-container {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-btn {
            padding: 8px 20px;
            background-color: var(--cream);
            border: 1px solid var(--light-green);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .filter-btn:hover,
        .filter-btn.active {
            background-color: var(--primary-green);
            color: white;
            border-color: var(--primary-green);
        }
        
        /* Gallery Grid */
        .gallery-grid {
            background-color: var(--cream);
        }
        
        .grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        
        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .gallery-image {
            height: 350px;
            overflow: hidden;
        }
        
        .gallery-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover .gallery-image img {
            transform: scale(1.1);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
            color: white;
            padding: 20px;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .gallery-item:hover .gallery-caption {
            transform: translateY(0);
        }
        
        .gallery-caption h3 {
            color: white;
            margin-bottom: 5px;
        }
        
        /* Gallery Categories */
        .gallery-categories {
            background-color: white;
        }
        
        .category-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .category-card {
            text-align: center;
            padding: 30px 20px;
            border-radius: 8px;
            background-color: var(--cream);
            transition: all 0.3s;
        }
        
        .category-card:hover {
            background-color: var(--light-green);
            color: white;
        }
        
        .category-icon {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 20px;
        }
        
        .category-card:hover .category-icon {
            color: white;
        }
        
        /* CTA Section */
        .gallery-cta {
            background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(27, 94, 32, 0.9)), url('https://images.unsplash.com/photo-1525947088131-b701cd0f6dc3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 80px 20px;
        }
        
        .gallery-cta h2 {
            color: white;
        }
        
        .gallery-cta h2::after {
            background-color: white;
        }
        
        .gallery-cta .btn {
            background-color: white;
            color: var(--primary-green);
        }
        
        .gallery-cta .btn:hover {
            background-color: var(--cream);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .gallery-hero h1 {
                font-size: 2.5rem;
            }
            
            section {
                padding: 40px 0;
            }
            
            .grid-container {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 576px) {
            .gallery-hero h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .filter-container {
                justify-content: flex-start;
            }
        }
		
		
/* Contact Hero */
        .contact-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../../img/contact.jpg') no-repeat center center/cover;
            height: 55vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 80px;
        }
        
        .contact-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .contact-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        /* Contact Main */
        .contact-main {
            background-color: white;
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .contact-info {
            margin-bottom: 40px;
        }
        
        .contact-details {
            margin-bottom: 30px;
        }
        
        .contact-details div {
            display: flex;
            align-items: flex-start;
        }
        
        .contact-icon {
            font-size: 1.2rem;
            color: var(--primary-green);
            margin-right: 15px;
            margin-top: 3px;
        }
        
        .contact-text h4 {
            margin-bottom: 5px;
            color: var(--dark-green);
        }
        
        .map-container {
            height: 300px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            margin-top: 20px;
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .contact-form {
            background-color: var(--cream);
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--brown);
        }
        
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-green);
        }
        
        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        
        /* Business Hours */
        .business-hours {
            background-color: var(--cream);
        }
        
        .hours-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 20px;
        }
        
        .hours-table tr:nth-child(even) {
            background-color: rgba(129, 199, 132, 0.1);
        }
        
        .hours-table th,
        .hours-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #ddd;
        }
        
        .hours-table th {
            background-color: var(--primary-green);
            color: white;
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: white;
        }
        
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            background-color: var(--cream);
            padding: 15px 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--dark-green);
        }
        
        .faq-question:hover {
            background-color: var(--light-green);
            color: white;
        }
        
        .faq-answer {
            padding: 20px;
            display: none;
        }
        
        .faq-answer.show {
            display: block;
        }
        
        /* CTA Section */
        .contact-cta {
            background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(27, 94, 32, 0.9)), url('https://images.unsplash.com/photo-1483794344563-d27a8d18014e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 80px 20px;
        }
        
        .contact-cta h2 {
            color: white;
        }
        
        .contact-cta h2::after {
            background-color: white;
        }
        
        .contact-cta p {
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .contact-cta .btn {
            background-color: white;
            color: var(--primary-green);
        }
        
        .contact-cta .btn:hover {
            background-color: var(--cream);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .contact-hero h1 {
                font-size: 2.5rem;
            }
            
            section {
                padding: 40px 0;
            }
        }
        
        @media (max-width: 576px) {
            .contact-hero h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
        }
		
		
		
/* Plants Hero */
        .plants-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1525947088131-b701cd0f6dc3?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            height: 50vh;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            margin-top: 80px;
        }
        
        .plants-hero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .plants-hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        /* Plant Categories */
        .plant-categories {
            background-color: white;
        }
        
        .category-tabs {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }
        
        .category-tab {
            padding: 10px 25px;
            background-color: var(--cream);
            border: 1px solid var(--light-green);
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: 600;
        }
        
        .category-tab:hover,
        .category-tab.active {
            background-color: var(--primary-green);
            color: white;
            border-color: var(--primary-green);
        }
        
        /* Plant Grid */
        .plant-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .plant-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
        }
        
        .plant-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .plant-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .plant-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .plant-card:hover .plant-image img {
            transform: scale(1.1);
        }
        
        .plant-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--primary-green);
            color: white;
            padding: 5px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .plant-info {
            padding: 20px;
        }
        
        .plant-info h3 {
            font-size: 1.4rem;
            margin-bottom: 10px;
        }
        
        .plant-scientific {
            color: var(--brown);
            font-style: italic;
            margin-bottom: 10px;
            display: block;
        }
        
        .plant-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .plant-feature {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
        }
        
        .plant-feature i {
            color: var(--primary-green);
            margin-right: 5px;
            font-size: 0.8rem;
        }
        
        .plant-price {
            font-weight: 600;
            color: var(--dark-green);
            font-size: 1.2rem;
            margin: 15px 0;
        }
        
        /* Plant Care Tips */
        .plant-care {
            background-color: var(--cream);
        }
        
        .care-tips {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .care-tip {
            background-color: white;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .care-tip h4 {
            color: var(--primary-green);
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .care-tip h4 i {
            margin-right: 10px;
        }
        
        /* Seasonal Plants */
        .seasonal-plants {
            background-color: white;
        }
        
        /* CTA Section */
        .plants-cta {
            background: linear-gradient(rgba(46, 125, 50, 0.9), rgba(27, 94, 32, 0.9)), url('https://images.unsplash.com/photo-1483794344563-d27a8d18014e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
            padding: 80px 20px;
        }
        
        .plants-cta h2 {
            color: white;
        }
        
        .plants-cta h2::after {
            background-color: white;
        }
        
        .plants-cta .btn {
            background-color: white;
            color: var(--primary-green);
        }
        
        .plants-cta .btn:hover {
            background-color: var(--cream);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .plants-hero h1 {
                font-size: 2.5rem;
            }
            
            section {
                padding: 40px 0;
            }
            
            .plant-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
        }
        
        @media (max-width: 576px) {
            .plants-hero h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            .category-tabs {
                justify-content: flex-start;
            }
        }

 /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-container {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            width: 90%;
            max-width: 500px;
            max-height: 90vh;
            overflow-y: auto;
            transform: translateY(-20px);
            transition: transform 0.3s ease;
        }
        
        .modal-overlay.active .modal-container {
            transform: translateY(0);
        }
        
        .modal-header {
            background-color: var(--primary-green);
            color: white;
            padding: 20px;
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .modal-header h3 {
            color: white;
            margin: 0;
        }
        
        .modal-close {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 5px;
        }
        
        .modal-body {
            padding: 25px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--brown);
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-green);
        }
        
        .form-group textarea {
            height: 120px;
            resize: vertical;
        }
        
        .modal-footer {
            padding: 0 25px 25px;
            text-align: right;
        }
        
        .submit-btn {
            background-color: var(--primary-green);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .submit-btn:hover {
            background-color: var(--dark-green);
        }
        
        /* Success Message */
        .success-message {
            display: none;
            text-align: center;
            padding: 30px;
        }
        
        .success-message i {
            color: var(--primary-green);
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .success-message h3 {
            color: var(--dark-green);
            margin-bottom: 15px;
        }