/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d5016;
    --secondary-green: #4a7c2a;
    --light-green: #6b9f3d;
    --accent-green: #8bc34a;
    --pale-green: #c8e6c9;
    --dark-green: #1a3009;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --cream: #f5f5f0;
    --shadow: rgba(45, 80, 22, 0.1);
    --shadow-hover: rgba(45, 80, 22, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--cream);
    overflow-x: hidden;
    position: relative;
}

/* Plant Background Animation */
.plant-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 50%, #a5d6a7 100%);
    opacity: 0.3;
    pointer-events: none;
}

.plant-background::before,
.plant-background::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 195, 74, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.plant-background::before {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.plant-background::after {
    bottom: 10%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Navigation */
.main-nav {
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 1200px) {
    .nav-container {
        padding: 1.2rem 3rem;
        gap: 4rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2rem;
    animation: grow 2s infinite ease-in-out;
}

@keyframes grow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin-left: auto;
}

@media (min-width: 1200px) {
    .nav-menu {
        gap: 2.5rem;
    }
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0.8rem;
    transition: color 0.3s ease;
    display: inline-block;
}

@media (min-width: 1200px) {
    .nav-menu a {
        padding: 0.6rem 1rem;
    }
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-green);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-green);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
}

.hero-text {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-green);
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--secondary-green);
    position: relative;
    display: inline-block;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 15px;
    background: var(--pale-green);
    z-index: -1;
    border-radius: 3px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    height: 500px;
    animation: fadeInRight 1s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.floating-plant {
    position: absolute;
    width: 150px;
    height: 150px;
    background: var(--accent-green);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.6;
    animation: floatPlant 6s infinite ease-in-out;
}

.plant-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.plant-2 {
    top: 50%;
    right: 10%;
    animation-delay: 2s;
    width: 120px;
    height: 120px;
}

.plant-3 {
    bottom: 10%;
    left: 30%;
    animation-delay: 4s;
    width: 100px;
    height: 100px;
}

@keyframes floatPlant {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -30px) rotate(5deg); }
    66% { transform: translate(-15px, 20px) rotate(-5deg); }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--primary-green);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--primary-green);
    margin: 0.5rem auto;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid var(--primary-green);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    color: var(--dark-green);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
    border-radius: 2px;
}

/* Features Section */
.features-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--pale-green) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--accent-green) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-color: var(--accent-green);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Gallery Section */
.gallery-section {
    background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(45, 80, 22, 0.9), transparent);
    color: var(--white);
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Quick Links Section */
.quick-links-section {
    background: var(--white);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.link-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: inherit;
    border: 2px solid var(--pale-green);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 195, 74, 0.1), transparent);
    transition: left 0.5s ease;
}

.link-card:hover::before {
    left: 100%;
}

.link-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.link-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.link-card:hover .link-icon {
    transform: scale(1.2) rotate(5deg);
}

.link-card h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.link-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    flex-grow: 1;
}

.link-arrow {
    font-size: 1.5rem;
    color: var(--accent-green);
    transition: transform 0.3s ease;
    display: inline-block;
}

.link-card:hover .link-arrow {
    transform: translateX(10px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.page-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
}

/* Plants Section */
.plants-section {
    padding: 5rem 0;
}

.plant-category {
    margin-bottom: 4rem;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--pale-green);
}

.plants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.plant-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.plant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-hover);
    border-color: var(--accent-green);
}

.plant-image-wrapper {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.plant-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.plant-card:hover .plant-image-wrapper img {
    transform: scale(1.1);
}

.plant-content {
    padding: 2rem;
}

.plant-content h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plant-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.plant-details {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--pale-green);
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
}

.detail-value {
    color: var(--text-light);
    text-align: right;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.tip-card {
    background: linear-gradient(135deg, var(--pale-green) 0%, var(--white) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--accent-green);
}

.tip-card h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Content Section */
.content-section {
    padding: 5rem 0;
}

.content-block {
    margin-bottom: 4rem;
}

.content-block h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--primary-green);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--pale-green);
}

.content-block h3 {
    color: var(--secondary-green);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.content-block p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-block ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-block li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--pale-green);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: var(--accent-green);
    box-shadow: 0 10px 30px var(--shadow);
    transform: translateY(-3px);
}

.info-card h3 {
    color: var(--primary-green);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Soil Mix */
.soil-mix {
    background: linear-gradient(135deg, var(--pale-green) 0%, var(--white) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2rem 0;
}

.soil-mix h3 {
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-align: center;
}

.mix-components {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.component {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.component:hover {
    transform: scale(1.05);
}

.component-percent {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.component-name {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-green);
    margin-bottom: 0.5rem;
}

.component p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Tips List */
.tips-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.tip-item {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--accent-green);
    transition: all 0.3s ease;
}

.tip-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px var(--shadow);
}

.tip-number {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.tip-content h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.tip-content p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Watering Schedule */
.watering-schedule {
    margin: 2rem 0;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.schedule-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--pale-green);
    transition: all 0.3s ease;
}

.schedule-item:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.schedule-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.schedule-item h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.schedule-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Fertilizer Types */
.fertilizer-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.fertilizer-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--pale-green) 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--pale-green);
    transition: all 0.3s ease;
}

.fertilizer-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.fertilizer-card h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.fertilizer-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Maintenance Grid */
.maintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.maintenance-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid var(--accent-green);
    transition: all 0.3s ease;
}

.maintenance-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.maintenance-item h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.maintenance-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Seasonal Tips */
.seasonal-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.seasonal-tip {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--secondary-green);
    transition: all 0.3s ease;
}

.seasonal-tip:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px var(--shadow);
}

.seasonal-tip h4 {
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.seasonal-tip p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Seasons Section */
.seasons-section {
    padding: 5rem 0;
}

.season-card {
    background: var(--white);
    border-radius: 20px;
    margin-bottom: 3rem;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.3s ease;
}

.season-card:hover {
    box-shadow: 0 15px 40px var(--shadow-hover);
    transform: translateY(-5px);
}

.season-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-green) 100%);
    color: var(--white);
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.season-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
}

.season-icon {
    font-size: 3rem;
    animation: rotate 3s infinite linear;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.season-content {
    padding: 2.5rem;
}

.season-content h3 {
    color: var(--primary-green);
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
}

.season-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.season-content li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Calendar Section */
.calendar-section {
    margin-top: 4rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.calendar-month {
    background: linear-gradient(135deg, var(--white) 0%, var(--pale-green) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--pale-green);
    transition: all 0.3s ease;
}

.calendar-month:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.calendar-month h4 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.calendar-month p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 5rem 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-green);
    margin: 2rem 0 1rem;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.about-text li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--pale-green);
    text-align: center;
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.info-box h3 {
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.info-box p {
    color: var(--text-light);
}

.contact-note {
    background: var(--pale-green);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-note p {
    color: var(--text-dark);
    margin: 0;
}

.contact-note a {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
}

.contact-note a:hover {
    text-decoration: underline;
}

/* Privacy Section */
.privacy-section {
    padding: 5rem 0;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-green);
    margin: 2rem 0 1rem;
}

.privacy-text h2:first-child {
    margin-top: 0;
}

.privacy-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.privacy-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.privacy-text li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--pale-green) 100%);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow);
    border: 2px solid var(--pale-green);
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    text-align: center;
}

.form-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--pale-green);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(139, 195, 74, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 10px;
    display: none;
}

.form-message.success {
    background: var(--pale-green);
    color: var(--primary-green);
    border: 2px solid var(--accent-green);
    display: block;
}

.form-message.error {
    background: #ffebee;
    color: #c62828;
    border: 2px solid #ef5350;
    display: block;
}

/* Footer */
.main-footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent-green);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-green);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 80%;
        max-width: 350px;
        height: 100vh;
        padding: 5rem 2rem 2rem;
        box-shadow: 5px 0 30px var(--shadow-hover);
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        opacity: 0;
        overflow-y: auto;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
        opacity: 1;
    }

    .nav-menu li {
        width: 100%;
        margin-bottom: 0.5rem;
        opacity: 0;
        transform: translateX(-30px);
        animation: slideInMenu 0.4s ease forwards;
    }

    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.3s; }
    .nav-menu.active li:nth-child(6) { animation-delay: 0.35s; }
    .nav-menu.active li:nth-child(7) { animation-delay: 0.4s; }

    @keyframes slideInMenu {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
        width: 100%;
    }

    .nav-menu a:hover {
        background: var(--pale-green);
        transform: translateX(5px);
    }

    .nav-menu a::after {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    /* Overlay for mobile menu - will be created via JS */
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 998;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        pointer-events: all;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-form-wrapper h2 {
        font-size: 1.75rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .features-grid,
    .gallery-grid,
    .links-grid {
        grid-template-columns: 1fr;
    }

    .plants-grid {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .contact-form-section {
        padding: 3rem 0;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }

    .contact-form-wrapper h2 {
        font-size: 1.5rem;
    }

    .form-description {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    .logo-icon {
        font-size: 1.5rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .contact-form-wrapper h2 {
        font-size: 1.3rem;
    }

    .btn {
        width: 100%;
        padding: 1rem;
    }
}

