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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --primary-green: #16a34a;
    --secondary-green: #22c55e;
    --light-green: #dcfce7;
    --dark-green: #15803d;
    --sage-green: #84cc16;
    --mint-green: #10b981;
    --forest-green: #166534;
    --white: #ffffff;
    --gray-light: #f9fafb;
    --gray-medium: #6b7280;
    --gray-dark: #374151;
}

/* Botanical Borders */
.botanical-border-top {
    height: 8px;
    background: linear-gradient(90deg, var(--sage-green), var(--secondary-green), var(--mint-green));
    position: relative;
}

.botanical-border-bottom {
    height: 8px;
    background: linear-gradient(90deg, var(--mint-green), var(--secondary-green), var(--sage-green));
    position: relative;
}

.botanical-border-header {
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green), var(--primary-green));
}

.botanical-border-footer-top {
    height: 4px;
    background: linear-gradient(90deg, var(--sage-green), var(--secondary-green), var(--mint-green));
}

/* Top Bar */
.top-bar {
    background: var(--dark-green);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span,
.top-bar-right span {
    margin-right: 20px;
}

.top-bar-left i,
.top-bar-right i {
    margin-right: 5px;
    color: var(--sage-green);
}

.social-links a {
    color: white;
    margin-left: 10px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--sage-green);
}

/* Marquee Section */
.marquee-section {
    background: var(--primary-green);
    color: white;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    margin-right: 50px;
    font-weight: 500;
}

@keyframes marquee {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Main Header */
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* .navbar {
    padding: 15px 0;
} */

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--dark-green);
}

.logo-icon {
    position: relative;
    margin-right: 10px;
}

.logo-icon i {
    font-size: 32px;
    color: var(--primary-green);
    transition: color 0.3s ease;
}

.logo-pulse {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 12px;
    height: 12px;
    background: var(--sage-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.logo:hover .logo-icon i,
.logo:hover .logo-text {
    color: var(--dark-green);
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-dark);
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text .highlight {
    color: var(--sage-green);
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background: var(--sage-green);
    color: var(--dark-green);
}

.btn-primary:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-primary i,
.btn-secondary i {
    margin-right: 8px;
}

/* Hero Image */
.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.floating-icon {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: var(--sage-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    font-size: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Page Banners */
.page-banner {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

/* Quick Services Section */
.quick-services {
    padding: 80px 0;
    background: white;
}

.quick-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 60px;
}

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

.service-card {
    background: linear-gradient(135deg, var(--light-green) 0%, #f0fdf4 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--sage-green), var(--secondary-green), var(--mint-green));
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--dark-green);
    transform: scale(1.1);
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Vision Section */
.vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-green) 0%, #f0fdf4 100%);
}

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vision-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vision-content h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 20px;
}

.vision-content p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

.vision-points {
    list-style: none;
    margin-bottom: 30px;
}

.vision-points li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--gray-dark);
}

.vision-points i {
    color: var(--primary-green);
    margin-right: 15px;
    font-size: 18px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-green) 0%, #dcfce7 100%);
    text-align: center;
}

.stats-section h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: 60px;
}

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

.stat-card {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 32px;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 10px;
}

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

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.values-section h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}

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

.value-card {
    background: linear-gradient(135deg, var(--light-green) 0%, #f0fdf4 100%);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.value-card p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    text-align: center;
    position: relative;
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.mission-section > p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.mission-quote {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.mission-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

/* Services Detailed */
.services-section {
    padding: 80px 0;
    background: white;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.service-detailed-card {
    background: linear-gradient(135deg, var(--light-green) 0%, #f0fdf4 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

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

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

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

.service-icon-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.service-icon-overlay i {
    font-size: 24px;
    color: var(--primary-green);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.4rem;
    color: var(--dark-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-content p {
    color: var(--gray-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--gray-dark);
}

.service-features i {
    color: var(--primary-green);
    margin-right: 10px;
    font-size: 14px;
}

.btn-service {
    width: 100%;
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Process Section */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-green) 0%, #dcfce7 100%);
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}

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

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

.step-number {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.process-step h3 {
    font-size: 1.2rem;
    color: var(--dark-green);
    margin-bottom: 10px;
    font-weight: 600;
}

.process-step p {
    color: var(--gray-medium);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Gallery Styles */
.filter-section {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid var(--light-green);
}

.filter-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

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

.search-box i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-medium);
}

.search-box input {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid var(--light-green);
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.filter-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

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

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Plants Gallery */
.plants-gallery {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-green) 0%, #f0fdf4 100%);
}

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

.plant-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.plant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

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

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

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: white;
}

.category-badge.rare { background: #dc2626; }
.category-badge.fruit { background: #ea580c; }
.category-badge.medicinal { background: #7c3aed; }
.category-badge.indoor { background: #059669; }
.category-badge.flowering { background: #db2777; }

.plant-info {
    padding: 25px;
}

.plant-info h3 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 5px;
    font-weight: 600;
}

.scientific-name {
    font-style: italic;
    color: var(--gray-medium);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.plant-description {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.plant-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: var(--light-green);
    color: var(--dark-green);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-plant {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-plant:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Contact Styles */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

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

.contact-info-card {
    background: linear-gradient(135deg, var(--light-green) 0%, #f0fdf4 100%);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-green);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    background: var(--dark-green);
    transform: scale(1.1);
}

.contact-icon i {
    font-size: 32px;
    color: white;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    color: var(--dark-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-details p {
    color: var(--gray-medium);
    margin-bottom: 5px;
}

.contact-action {
    background: var(--primary-green);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.contact-action:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-green) 0%, #dcfce7 100%);
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.form-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 2rem;
    color: var(--dark-green);
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--dark-green);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--light-green);
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

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

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Map Card */
.map-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.map-card h2 {
    font-size: 2rem;
    color: var(--dark-green);
    margin-bottom: 30px;
}

.map-placeholder {
    background: linear-gradient(135deg, var(--light-green) 0%, #dcfce7 100%);
    height: 250px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

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

.map-content i {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.map-content p {
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 5px;
}

.map-content span {
    color: var(--gray-medium);
    font-size: 0.9rem;
}

.quick-contact {
    margin-bottom: 30px;
}

.quick-contact h3 {
    color: var(--dark-green);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.quick-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--light-green);
    border-radius: 10px;
    margin-bottom: 15px;
}

.quick-contact-item i {
    color: var(--primary-green);
    font-size: 18px;
}

.quick-contact-item p,
.quick-contact-item span {
    color: var(--dark-green);
    font-weight: 500;
    margin: 0;
}

.response-time {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    padding: 20px;
    border-radius: 15px;
    color: white;
}

.response-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.response-title {
    font-weight: 600;
    margin-bottom: 5px;
}

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

.response-content i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: linear-gradient(135deg, var(--light-green) 0%, #f0fdf4 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
    color: var(--dark-green);
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-item {
    position: absolute;
    font-size: 24px;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.floating-item.leaf-1 { top: 15%; left: 10%; color: var(--primary-green); animation-delay: 0s; }
.floating-item.fruit-1 { top: 25%; right: 15%; animation-delay: 1s; }
.floating-item.leaf-2 { top: 45%; left: 20%; color: var(--sage-green); animation-delay: 2s; }
.floating-item.fruit-2 { top: 35%; right: 25%; animation-delay: 3s; }
.floating-item.leaf-3 { top: 65%; left: 15%; color: var(--mint-green); animation-delay: 4s; }
.floating-item.fruit-3 { top: 75%; right: 20%; animation-delay: 5s; }
.floating-item.leaf-4 { top: 85%; left: 25%; color: var(--primary-green); animation-delay: 6s; }
.floating-item.fruit-4 { bottom: 15%; right: 10%; animation-delay: 7s; }

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Floating Contacts */
.floating-contacts {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-contact {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.floating-contact.whatsapp { background: #25d366; }
.floating-contact.phone { background: #007bff; }
.floating-contact.location { background: #dc3545; }

.floating-contact:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gray-dark);
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.floating-contact:hover .tooltip {
    opacity: 1;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--dark-green) 100%);
    color: white;
    position: relative;
}

.footer-content {
    padding: 80px 0 40px;
}

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

.footer-section h3 {
    color: var(--sage-green);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo .logo-icon {
    margin-right: 10px;
}

.footer-logo .logo-icon i {
    font-size: 28px;
    color: var(--sage-green);
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: 700;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.link-dot {
    width: 6px;
    height: 6px;
    background: var(--sage-green);
    border-radius: 50%;
    margin-right: 10px;
    transition: background 0.3s ease;
}

.footer-links a:hover .link-dot {
    background: white;
}

.contact-info {
    space-y: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--sage-green);
    font-size: 18px;
    margin-top: 2px;
}

.contact-item p,
.contact-item span {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-decoration {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0.1;
}

.decoration-leaf-1 {
    font-size: 8rem;
    color: white;
    transform: rotate(15deg);
}

.decoration-leaf-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 6rem;
    color: white;
    transform: rotate(-15deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar-left,
    .top-bar-right {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .marquee-content span {
        margin-right: 30px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-grid,
    .vision-grid,
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1,
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-detailed {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plants-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .floating-contacts {
        right: 15px;
    }
    
    .floating-contact {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .filter-controls {
        align-items: stretch;
    }
    
    .filter-buttons {
        justify-content: stretch;
    }
    
    .filter-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero-text h1,
    .banner-content h1 {
        font-size: 2rem;
    }
    
    .stats-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-item {
        font-size: 18px;
    }
    
    .service-detailed-card {
        min-width: auto;
    }
    
    .plants-grid {
        grid-template-columns: 1fr;
    }
    
    .plant-card {
        min-width: auto;
    }
}

/* Animation Classes */
.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out;
}

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

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

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

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }

.p-10 { padding: 10px; }
.p-20 { padding: 20px; }
.p-30 { padding: 30px; }

.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.rounded { border-radius: 5px; }
.rounded-lg { border-radius: 10px; }
.rounded-xl { border-radius: 15px; }
.rounded-2xl { border-radius: 20px; }
.rounded-full { border-radius: 50%; }

.shadow-sm { box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); }
.shadow { box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
.shadow-lg { box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); }
.shadow-xl { box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); }


/* Fix the Hero Banner spacing and stacking */
.hero-banner {

  margin-bottom: 80px;     /* 👈 Pushes next section down */
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Lower the z-index of bottom border so it doesn’t overlap cards */
.botanical-border-bottom {
  position: relative;
  z-index: 0;
}

/* Ensure service cards stay above everything */
.quick-services {
  position: relative;
  z-index: 2;
}

img {
  opacity: 1 !important;
}
