/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00856E;
    --secondary-color: #FDB4E5;
    --accent-color: #D745A8;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    position: relative;
    background-color: #fafbfc;
    background-image: url('data:image/svg+xml;utf8,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="plantPattern" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="25" fill="%23e8f5f3" opacity="0.4"/><path d="M100 180 Q80 140 60 160 Q40 180 30 170 Q20 160 30 150 Q40 140 50 150 Q60 160 70 150 Q80 140 100 180" fill="%23b8e6db" opacity="0.3"/><path d="M150 180 Q170 140 190 160 Q210 180 220 170 Q230 160 220 150 Q210 140 200 150 Q190 160 180 150 Q170 140 150 180" fill="%23b8e6db" opacity="0.3"/><path d="M50 50 Q45 30 55 25 Q65 20 70 35 Q75 50 60 55 Q45 60 50 50" fill="%23d4f4e8" opacity="0.35"/><path d="M150 50 Q145 30 155 25 Q165 20 170 35 Q175 50 160 55 Q145 60 150 50" fill="%23d4f4e8" opacity="0.35"/><ellipse cx="100" cy="40" rx="8" ry="12" fill="%23fdb4e5" opacity="0.25" transform="rotate(45 100 40)"/><ellipse cx="20" cy="80" rx="6" ry="10" fill="%23fdb4e5" opacity="0.2" transform="rotate(-30 20 80)"/><ellipse cx="180" cy="80" rx="6" ry="10" fill="%23fdb4e5" opacity="0.2" transform="rotate(30 180 80)"/><path d="M100 100 Q95 90 100 85 Q105 90 100 100 M100 100 Q105 110 100 115 Q95 110 100 100" fill="%2300856e" opacity="0.15"/></pattern></defs><rect width="100%" height="100%" fill="url(%23plantPattern)"/></svg>');
    background-attachment: fixed;
    background-size: 400px 400px;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - 250px);
    max-height: calc(100vh - 250px);
    background-image: url('data:image/svg+xml;utf8,<svg width="1200" height="200" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 200" preserveAspectRatio="none"><path d="M0,100 Q150,50 300,100 T600,100 T900,100 T1200,100 L1200,200 L0,200 Z" fill="%23b8e6db" opacity="0.15"/><path d="M0,120 Q200,80 400,120 T800,120 T1200,120 L1200,200 L0,200 Z" fill="%23d4f4e8" opacity="0.12"/><path d="M0,140 Q250,100 500,140 T1000,140 L1200,140 L1200,200 L0,200 Z" fill="%23e8f5f3" opacity="0.1"/></svg>');
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: top center;
    z-index: 0;
    pointer-events: none;
    animation: waveMove 20s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-50px);
    }
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg width="1200" height="20" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 20" preserveAspectRatio="none"><path d="M0,10 Q150,5 300,10 T600,10 T900,10 T1200,10 L1200,20 L0,20 Z" fill="%23b8e6db" opacity="0.3"/></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: -1;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo img {
    width: 40px;
    height: 40px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #006b59 100%);
    background-image: url('../image/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-image: url('data:image/svg+xml;utf8,<svg width="1200" height="120" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,60 Q150,25 300,60 T600,60 T900,60 T1200,60 L1200,120 L0,120 Z" fill="%23b8e6db" opacity="0.6"/><path d="M0,70 Q200,35 400,70 T800,70 T1200,70 L1200,120 L0,120 Z" fill="%23d4f4e8" opacity="0.5"/><path d="M0,80 Q250,45 500,80 T1000,80 L1200,80 L1200,120 L0,120 Z" fill="%23e8f5f3" opacity="0.4"/></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 5;
    animation: waveAnimation 8s ease-in-out infinite;
}

@keyframes waveAnimation {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-30px);
    }
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="600" height="600" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="heroPlantPattern" x="0" y="0" width="600" height="600" patternUnits="userSpaceOnUse"><path d="M300 550 Q250 450 200 480 Q150 510 120 480 Q90 450 100 420 Q110 390 140 405 Q170 420 200 395 Q230 370 300 550" fill="%23ffffff" opacity="0.12"/><path d="M150 150 Q130 130 145 115 Q160 100 175 120 Q190 140 170 155 Q150 170 150 150" fill="%23ffffff" opacity="0.1"/><path d="M450 150 Q470 130 455 115 Q440 100 425 120 Q410 140 430 155 Q450 170 450 150" fill="%23ffffff" opacity="0.1"/><circle cx="300" cy="180" r="25" fill="%23ffffff" opacity="0.08"/><ellipse cx="180" cy="280" rx="20" ry="30" fill="%23ffffff" opacity="0.07" transform="rotate(-20 180 280)"/><ellipse cx="420" cy="280" rx="20" ry="30" fill="%23ffffff" opacity="0.07" transform="rotate(20 420 280)"/><path d="M300 380 Q295 370 300 365 Q305 370 300 380 M300 380 Q305 390 300 395 Q295 390 300 380" fill="%23ffffff" opacity="0.06"/><path d="M100 200 Q80 180 95 165 Q110 150 125 175 Q140 200 115 215 Q90 230 100 200" fill="%23ffffff" opacity="0.09"/><path d="M500 200 Q520 180 505 165 Q490 150 475 175 Q460 200 485 215 Q510 230 500 200" fill="%23ffffff" opacity="0.09"/></pattern></defs><rect width="100%" height="100%" fill="url(%23heroPlantPattern)"/></svg>');
    background-size: 800px 800px;
    background-position: center;
    opacity: 0.8;
    z-index: 1;
}

.hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-image: url('data:image/svg+xml;utf8,<svg width="1200" height="120" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,60 Q150,25 300,60 T600,60 T900,60 T1200,60 L1200,120 L0,120 Z" fill="%23b8e6db" opacity="0.6"/><path d="M0,70 Q200,35 400,70 T800,70 T1200,70 L1200,120 L0,120 Z" fill="%23d4f4e8" opacity="0.5"/><path d="M0,80 Q250,45 500,80 T1000,80 L1200,80 L1200,120 L0,120 Z" fill="%23e8f5f3" opacity="0.4"/></svg>');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    z-index: 5;
    animation: waveAnimation 8s ease-in-out infinite;
}

@keyframes waveAnimation {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-30px);
    }
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 133, 110, 0.7);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--white);
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-image: url('data:image/svg+xml;utf8,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><path d="M100 180 Q70 140 50 160 Q30 180 20 165 Q10 150 25 135 Q40 120 55 140 Q70 160 85 140 Q100 120 100 180" fill="%23ffffff" opacity="0.15"/><circle cx="100" cy="40" r="12" fill="%23ffffff" opacity="0.12"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: -1;
}

.hero-content::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background-image: url('data:image/svg+xml;utf8,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><path d="M100 20 Q130 60 150 40 Q170 20 180 35 Q190 50 175 65 Q160 80 145 60 Q130 40 115 60 Q100 80 100 20" fill="%23ffffff" opacity="0.15"/><circle cx="100" cy="160" r="12" fill="%23ffffff" opacity="0.12"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.6;
    z-index: -1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(215, 69, 168, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="300" height="300" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="featurePattern" x="0" y="0" width="300" height="300" patternUnits="userSpaceOnUse"><path d="M150 280 Q120 220 90 250 Q60 280 40 260 Q20 240 35 220 Q50 200 70 215 Q90 230 110 210 Q130 190 150 280" fill="%23d4f4e8" opacity="0.25"/><path d="M50 50 Q30 30 45 20 Q60 10 70 25 Q80 40 65 50 Q50 60 50 50" fill="%23b8e6db" opacity="0.2"/><path d="M250 50 Q270 30 255 20 Q240 10 230 25 Q220 40 235 50 Q250 60 250 50" fill="%23b8e6db" opacity="0.2"/><circle cx="150" cy="80" r="15" fill="%23fdb4e5" opacity="0.15"/><ellipse cx="80" cy="120" rx="10" ry="15" fill="%23fdb4e5" opacity="0.12" transform="rotate(-25 80 120)"/><ellipse cx="220" cy="120" rx="10" ry="15" fill="%23fdb4e5" opacity="0.12" transform="rotate(25 220 120)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23featurePattern)"/></svg>');
    background-size: 450px 450px;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.features > .container {
    position: relative;
    z-index: 1;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 90 Q35 70 25 80 Q15 90 10 75 Q5 60 15 50 Q25 40 35 55 Q45 70 50 90" fill="%23d4f4e8" opacity="0.4"/><circle cx="50" cy="20" r="6" fill="%23fdb4e5" opacity="0.3"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 133, 110, 0.2);
}

.feature-card:hover::before {
    opacity: 0.7;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    stroke: var(--accent-color);
    stroke-width: 2;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
}

/* Progress Section */
.progress-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.progress-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="240" height="240" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="progressPattern" x="0" y="0" width="240" height="240" patternUnits="userSpaceOnUse"><path d="M120 220 Q95 185 75 200 Q55 215 38 198 Q21 181 30 163 Q39 145 55 158 Q71 171 88 156 Q105 141 120 220" fill="%23e0f5f0" opacity="0.24"/><path d="M44 44 Q31 31 40 22 Q49 13 58 25 Q67 37 55 46 Q43 55 44 44" fill="%23d4f4e8" opacity="0.2"/><path d="M196 44 Q209 31 200 22 Q191 13 182 25 Q173 37 185 46 Q197 55 196 44" fill="%23d4f4e8" opacity="0.2"/><circle cx="120" cy="72" r="10" fill="%23fdb4e5" opacity="0.13"/><ellipse cx="68" cy="104" rx="7" ry="11" fill="%23fdb4e5" opacity="0.11" transform="rotate(-18 68 104)"/><ellipse cx="172" cy="104" rx="7" ry="11" fill="%23fdb4e5" opacity="0.11" transform="rotate(18 172 104)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23progressPattern)"/></svg>');
    background-size: 380px 380px;
    opacity: 0.42;
    z-index: 0;
    pointer-events: none;
}

.progress-section > .container {
    position: relative;
    z-index: 1;
}

.progress-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.progress-grid {
    display: grid;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.progress-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    font-weight: 600;
}

.progress-value {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    width: 0;
    transition: width 1.5s ease;
    border-radius: 10px;
}

/* Assortment Section */
.assortment-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

.assortment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="250" height="250" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="assortmentPattern" x="0" y="0" width="250" height="250" patternUnits="userSpaceOnUse"><path d="M125 230 Q95 190 70 210 Q45 230 25 210 Q5 190 20 170 Q35 150 55 165 Q75 180 95 160 Q115 140 125 230" fill="%23c8e8de" opacity="0.2"/><path d="M40 40 Q25 25 35 15 Q45 5 55 20 Q65 35 50 45 Q35 55 40 40" fill="%23a8dcc8" opacity="0.18"/><path d="M210 40 Q225 25 215 15 Q205 5 195 20 Q185 35 200 45 Q215 55 210 40" fill="%23a8dcc8" opacity="0.18"/><circle cx="125" cy="70" r="12" fill="%23fdb4e5" opacity="0.12"/><ellipse cx="70" cy="110" rx="8" ry="12" fill="%23fdb4e5" opacity="0.1" transform="rotate(-20 70 110)"/><ellipse cx="180" cy="110" rx="8" ry="12" fill="%23fdb4e5" opacity="0.1" transform="rotate(20 180 110)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23assortmentPattern)"/></svg>');
    background-size: 400px 400px;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.assortment-section > .container {
    position: relative;
    z-index: 1;
}

.assortment-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.plant-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.plant-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.plant-card::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: 60px;
    height: 60px;
    background-image: url('data:image/svg+xml;utf8,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M30 55 Q22 45 18 50 Q14 55 12 47 Q10 39 16 43 Q22 47 26 42 Q30 37 30 55" fill="%23b8e6db" opacity="0.3"/><circle cx="30" cy="15" r="4" fill="%23fdb4e5" opacity="0.25"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.plant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 133, 110, 0.2);
}

.plant-image {
    width: 100%;
    height: 250px;
    background: #e0e0e0;
    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);
}

.plant-info {
    padding: 25px;
}

.plant-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.plant-type {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
}

.plant-info > p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.plant-care {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.plant-care span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.plant-care svg {
    width: 16px;
    height: 16px;
    stroke: var(--primary-color);
    stroke-width: 2;
}

.plant-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="230" height="230" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="comparisonPattern" x="0" y="0" width="230" height="230" patternUnits="userSpaceOnUse"><path d="M115 210 Q92 178 74 191 Q56 204 41 189 Q26 174 33 158 Q40 142 54 153 Q68 164 81 151 Q94 138 115 210" fill="%23dcefe8" opacity="0.22"/><path d="M42 42 Q30 30 38 22 Q46 14 54 25 Q62 36 51 44 Q40 52 42 42" fill="%23d0eee4" opacity="0.19"/><path d="M188 42 Q200 30 192 22 Q184 14 176 25 Q168 36 179 44 Q190 52 188 42" fill="%23d0eee4" opacity="0.19"/><circle cx="115" cy="69" r="9" fill="%23fdb4e5" opacity="0.12"/><ellipse cx="66" cy="100" rx="6" ry="10" fill="%23fdb4e5" opacity="0.1" transform="rotate(-17 66 100)"/><ellipse cx="164" cy="100" rx="6" ry="10" fill="%23fdb4e5" opacity="0.1" transform="rotate(17 164 100)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23comparisonPattern)"/></svg>');
    background-size: 370px 370px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.comparison-section > .container {
    position: relative;
    z-index: 1;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.table-wrapper {
    overflow-x: auto;
    margin-top: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    min-width: 700px;
}

.comparison-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.comparison-table th,
.comparison-table td {
    padding: 15px 20px;
    text-align: left;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
    background: var(--bg-light);
}

.badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-easy {
    background: #d4edda;
    color: #155724;
}

.badge-medium {
    background: #fff3cd;
    color: #856404;
}

.badge-yes {
    background: #d4edda;
    color: #155724;
}

.badge-no {
    background: #f8d7da;
    color: #721c24;
}

/* Planters Section */
.planters-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.planters-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="270" height="270" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="plantersPattern" x="0" y="0" width="270" height="270" patternUnits="userSpaceOnUse"><path d="M135 250 Q105 210 80 230 Q55 250 35 230 Q15 210 25 190 Q35 170 52 185 Q69 200 87 180 Q105 160 135 250" fill="%23d8f0e8" opacity="0.21"/><path d="M47 47 Q32 32 42 22 Q52 12 62 26 Q72 40 59 50 Q46 60 47 47" fill="%23cce6dc" opacity="0.18"/><path d="M223 47 Q238 32 228 22 Q218 12 208 26 Q198 40 211 50 Q224 60 223 47" fill="%23cce6dc" opacity="0.18"/><circle cx="135" cy="76" r="11" fill="%23fdb4e5" opacity="0.12"/><ellipse cx="78" cy="112" rx="8" ry="12" fill="%23fdb4e5" opacity="0.1" transform="rotate(-19 78 112)"/><ellipse cx="192" cy="112" rx="8" ry="12" fill="%23fdb4e5" opacity="0.1" transform="rotate(19 192 112)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23plantersPattern)"/></svg>');
    background-size: 410px 410px;
    opacity: 0.48;
    z-index: 0;
    pointer-events: none;
}

.planters-section > .container {
    position: relative;
    z-index: 1;
}

.planters-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.planters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.planter-card {
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.planter-card::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    background-image: url('data:image/svg+xml;utf8,<svg width="50" height="50" xmlns="http://www.w3.org/2000/svg"><path d="M25 45 Q19 38 16 42 Q13 46 11 40 Q9 34 13 38 Q17 42 20 37 Q23 32 25 45" fill="%23c8e8de" opacity="0.35"/><circle cx="25" cy="12" r="3" fill="%23fdb4e5" opacity="0.28"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.planter-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.planter-image {
    width: 100%;
    height: 200px;
    background: #e0e0e0;
    overflow: hidden;
}

.planter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.planter-info {
    padding: 25px;
}

.planter-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.planter-info > p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.planter-features {
    list-style: none;
    padding: 0;
}

.planter-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
}

.planter-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Phytodesign Section */
.phytodesign-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

.phytodesign-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="280" height="280" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="phytodesignPattern" x="0" y="0" width="280" height="280" patternUnits="userSpaceOnUse"><path d="M140 260 Q110 220 85 240 Q60 260 40 240 Q20 220 30 200 Q40 180 55 195 Q70 210 85 190 Q100 170 140 260" fill="%23d0eee4" opacity="0.22"/><path d="M45 45 Q30 30 40 20 Q50 10 60 25 Q70 40 55 50 Q40 60 45 45" fill="%23b8e6db" opacity="0.18"/><path d="M235 45 Q250 30 240 20 Q230 10 220 25 Q210 40 225 50 Q240 60 235 45" fill="%23b8e6db" opacity="0.18"/><circle cx="140" cy="75" r="14" fill="%23fdb4e5" opacity="0.13"/><ellipse cx="75" cy="115" rx="9" ry="13" fill="%23fdb4e5" opacity="0.11" transform="rotate(-22 75 115)"/><ellipse cx="205" cy="115" rx="9" ry="13" fill="%23fdb4e5" opacity="0.11" transform="rotate(22 205 115)"/><path d="M140 140 Q135 130 140 125 Q145 130 140 140 M140 140 Q145 150 140 155 Q135 150 140 140" fill="%2300856e" opacity="0.12"/></pattern></defs><rect width="100%" height="100%" fill="url(%23phytodesignPattern)"/></svg>');
    background-size: 420px 420px;
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
}

.phytodesign-section > .container {
    position: relative;
    z-index: 1;
}

.phytodesign-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.phytodesign-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 50px;
}

.phytodesign-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    background: #e0e0e0;
    border-radius: 15px;
    overflow: hidden;
}

.phytodesign-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phytodesign-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="210" height="210" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="faqPattern" x="0" y="0" width="210" height="210" patternUnits="userSpaceOnUse"><path d="M105 190 Q83 162 68 175 Q53 188 40 175 Q27 162 34 147 Q41 132 53 142 Q65 152 75 139 Q85 126 105 190" fill="%23dcefe8" opacity="0.23"/><path d="M39 39 Q28 28 35 21 Q42 14 49 24 Q56 34 46 41 Q36 48 39 39" fill="%23d0eee4" opacity="0.2"/><path d="M171 39 Q182 28 175 21 Q168 14 161 24 Q154 34 164 41 Q174 48 171 39" fill="%23d0eee4" opacity="0.2"/><circle cx="105" cy="66" r="8" fill="%23fdb4e5" opacity="0.13"/><ellipse cx="63" cy="95" rx="6" ry="9" fill="%23fdb4e5" opacity="0.11" transform="rotate(-16 63 95)"/><ellipse cx="147" cy="95" rx="6" ry="9" fill="%23fdb4e5" opacity="0.11" transform="rotate(16 147 95)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23faqPattern)"/></svg>');
    background-size: 340px 340px;
    opacity: 0.43;
    z-index: 0;
    pointer-events: none;
}

.faq-section > .container {
    position: relative;
    z-index: 1;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.accordion {
    max-width: 900px;
    margin: 50px auto 0;
}

.accordion-item {
    background: var(--bg-light);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(0, 133, 110, 0.05);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    stroke: var(--primary-color);
    stroke-width: 2;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding: 0 25px 20px;
    color: var(--text-light);
    line-height: 1.8;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #006b59 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="190" height="190" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="ctaPattern" x="0" y="0" width="190" height="190" patternUnits="userSpaceOnUse"><path d="M95 170 Q78 145 66 155 Q54 165 44 153 Q34 141 39 129 Q44 117 53 124 Q62 131 69 120 Q76 109 95 170" fill="%23ffffff" opacity="0.08"/><path d="M33 33 Q24 24 30 18 Q36 12 42 20 Q48 28 40 33 Q32 38 33 33" fill="%23ffffff" opacity="0.07"/><path d="M157 33 Q166 24 160 18 Q154 12 148 20 Q142 28 150 33 Q158 38 157 33" fill="%23ffffff" opacity="0.07"/><circle cx="95" cy="58" r="7" fill="%23ffffff" opacity="0.06"/><ellipse cx="56" cy="82" rx="5" ry="8" fill="%23ffffff" opacity="0.05" transform="rotate(-15 56 82)"/><ellipse cx="134" cy="82" rx="5" ry="8" fill="%23ffffff" opacity="0.05" transform="rotate(15 134 82)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23ctaPattern)"/></svg>');
    background-size: 300px 300px;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
}

.cta-section > .container {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: #aaa;
    padding: 60px 0 30px;
    position: relative;
    z-index: 100;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--text-dark);
    z-index: -1;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: bold;
    font-size: 1.1rem;
}

.footer-logo img {
    width: 35px;
    height: 35px;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    position: relative;
    z-index: 1;
}

/* Consultation Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #006b59 100%);
    color: var(--white);
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="180" height="180" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="pageHeaderPattern" x="0" y="0" width="180" height="180" patternUnits="userSpaceOnUse"><path d="M90 160 Q75 140 65 148 Q55 156 47 146 Q39 136 43 127 Q47 118 53 123 Q59 128 64 119 Q69 110 90 160" fill="%23ffffff" opacity="0.09"/><path d="M31 31 Q24 24 29 19 Q34 14 39 21 Q44 28 37 32 Q30 36 31 31" fill="%23ffffff" opacity="0.08"/><path d="M149 31 Q156 24 151 19 Q146 14 141 21 Q136 28 143 32 Q150 36 149 31" fill="%23ffffff" opacity="0.08"/><circle cx="90" cy="55" r="6" fill="%23ffffff" opacity="0.07"/><ellipse cx="54" cy="76" rx="4" ry="7" fill="%23ffffff" opacity="0.06" transform="rotate(-14 54 76)"/><ellipse cx="126" cy="76" rx="4" ry="7" fill="%23ffffff" opacity="0.06" transform="rotate(14 126 76)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23pageHeaderPattern)"/></svg>');
    background-size: 290px 290px;
    opacity: 0.55;
    z-index: 0;
    pointer-events: none;
}

.page-header > .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.tips-section {
    padding: 80px 0;
    position: relative;
}

.tips-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="220" height="220" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="tipsPattern" x="0" y="0" width="220" height="220" patternUnits="userSpaceOnUse"><path d="M110 200 Q85 165 65 180 Q45 195 28 178 Q11 161 20 145 Q29 129 45 140 Q61 151 75 133 Q89 115 110 200" fill="%23d4f4e8" opacity="0.23"/><path d="M38 38 Q26 26 34 18 Q42 10 50 22 Q58 34 46 42 Q34 50 38 38" fill="%23c8e8de" opacity="0.19"/><path d="M182 38 Q194 26 186 18 Q178 10 170 22 Q162 34 174 42 Q186 50 182 38" fill="%23c8e8de" opacity="0.19"/><circle cx="110" cy="68" r="9" fill="%23fdb4e5" opacity="0.14"/><ellipse cx="62" cy="98" rx="6" ry="10" fill="%23fdb4e5" opacity="0.12" transform="rotate(-19 62 98)"/><ellipse cx="158" cy="98" rx="6" ry="10" fill="%23fdb4e5" opacity="0.12" transform="rotate(19 158 98)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23tipsPattern)"/></svg>');
    background-size: 360px 360px;
    opacity: 0.45;
    z-index: 0;
    pointer-events: none;
}

.tips-section > .container {
    position: relative;
    z-index: 1;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.tip-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 133, 110, 0.2);
}

.tip-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.tip-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="260" height="260" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="contactPattern" x="0" y="0" width="260" height="260" patternUnits="userSpaceOnUse"><path d="M130 240 Q100 200 75 220 Q50 240 30 220 Q10 200 20 180 Q30 160 50 175 Q70 190 90 170 Q110 150 130 240" fill="%23c8e8de" opacity="0.2"/><path d="M42 42 Q28 28 38 18 Q48 8 58 23 Q68 38 53 48 Q38 58 42 42" fill="%23b8e6db" opacity="0.17"/><path d="M218 42 Q232 28 222 18 Q212 8 202 23 Q192 38 207 48 Q222 58 218 42" fill="%23b8e6db" opacity="0.17"/><circle cx="130" cy="72" r="11" fill="%23fdb4e5" opacity="0.12"/><ellipse cx="72" cy="108" rx="7" ry="11" fill="%23fdb4e5" opacity="0.1" transform="rotate(-21 72 108)"/><ellipse cx="188" cy="108" rx="7" ry="11" fill="%23fdb4e5" opacity="0.1" transform="rotate(21 188 108)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23contactPattern)"/></svg>');
    background-size: 390px 390px;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.contact-section > .container {
    position: relative;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
    stroke-width: 2;
}

.contact-details h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.map-container {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

/* Form Styles */
.form-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="180" height="180" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="formPattern" x="0" y="0" width="180" height="180" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="18" fill="%23f0f9f7" opacity="0.35"/><path d="M90 160 Q78 130 65 145 Q52 160 43 152 Q34 144 40 130 Q46 116 53 123 Q60 130 70 118 Q80 106 90 160" fill="%23e8f5f3" opacity="0.28"/><path d="M45 45 Q40 33 46 28 Q52 23 58 34 Q64 45 54 48 Q44 51 45 45" fill="%23d4f4e8" opacity="0.22"/><circle cx="90" cy="36" r="5" fill="%23fdb4e5" opacity="0.18"/></pattern></defs><rect width="100%" height="100%" fill="url(%23formPattern)"/></svg>');
    background-size: 320px 320px;
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.form-section > .container {
    position: relative;
    z-index: 1;
}

.form-container {
    max-width: 600px;
    margin: 50px auto 0;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    text-align: center;
}

.form-submit .btn {
    min-width: 200px;
}

/* Success Page */
.success-section {
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.success-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="successPattern" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="20" fill="%23e8f5f3" opacity="0.3"/><path d="M100 180 Q85 145 70 160 Q55 175 45 165 Q35 155 42 142 Q49 129 58 138 Q67 147 78 135 Q89 123 100 180" fill="%23d4f4e8" opacity="0.25"/><path d="M50 50 Q45 35 52 30 Q59 25 65 38 Q71 51 60 55 Q49 59 50 50" fill="%23c8e8de" opacity="0.2"/><circle cx="100" cy="40" r="6" fill="%23fdb4e5" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23successPattern)"/></svg>');
    background-size: 350px 350px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.success-content {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: checkmark 0.8s ease-in-out;
}

@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-icon svg {
    width: 50px;
    height: 50px;
    stroke: var(--white);
    stroke-width: 3;
}

.success-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.success-content > p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.success-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 40px auto;
    max-width: 100%;
}

.detail-box {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.detail-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 133, 110, 0.2);
}

.detail-box svg {
    width: 50px;
    height: 50px;
    stroke: var(--primary-color);
    stroke-width: 2;
    margin-bottom: 15px;
}

.detail-box h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.detail-box p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-light);
}

.detail-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.detail-box a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.success-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px auto;
    width: 100%;
}

.success-footer {
    margin: 50px auto 0;
    padding-top: 40px;
    border-top: 2px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
}

.success-footer h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.next-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 100%;
    margin: 0 auto;
}

.next-steps .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.next-steps .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 133, 110, 0.15);
}

.step-num {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.next-steps .step p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .success-content h1 {
        font-size: 2rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
    }

    .success-icon svg {
        width: 40px;
        height: 40px;
    }

    .success-details {
        grid-template-columns: 1fr;
    }

    .success-actions {
        flex-direction: column;
        align-items: center;
    }

    .success-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .next-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .success-content h1 {
        font-size: 1.75rem;
    }

    .success-content > p {
        font-size: 1rem;
    }

    .success-icon {
        width: 70px;
        height: 70px;
    }

    .success-icon svg {
        width: 35px;
        height: 35px;
    }
}

/* Policy Pages */
.policy-section {
    padding: 80px 0;
    position: relative;
}

.policy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="policyPattern" x="0" y="0" width="200" height="200" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="20" fill="%23e8f5f3" opacity="0.3"/><path d="M100 180 Q85 145 70 160 Q55 175 45 165 Q35 155 42 142 Q49 129 58 138 Q67 147 78 135 Q89 123 100 180" fill="%23d4f4e8" opacity="0.25"/><path d="M50 50 Q45 35 52 30 Q59 25 65 38 Q71 51 60 55 Q49 59 50 50" fill="%23c8e8de" opacity="0.2"/><circle cx="100" cy="40" r="6" fill="%23fdb4e5" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23policyPattern)"/></svg>');
    background-size: 350px 350px;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.policy-section > .container {
    position: relative;
    z-index: 1;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.policy-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

.policy-content p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.policy-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 15px;
}

.policy-content ul li {
    margin-bottom: 8px;
    color: var(--text-light);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 15px 0;
        width: 100%;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .feature-grid,
    .plant-grid,
    .planters-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .phytodesign-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-section h2,
    .assortment-section h2,
    .planters-section h2,
    .phytodesign-section h2,
    .faq-section h2,
    .progress-section h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #006b59 100%);
    color: var(--white);
    padding: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid var(--secondary-color);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: var(--secondary-color);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-banner-text a:hover {
    color: var(--white);
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.cookie-btn-accept {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.cookie-btn-accept:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(215, 69, 168, 0.3);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-btn-decline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.cookie-btn-settings {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid transparent;
}

.cookie-btn-settings:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--white);
}

/* Extra Small Mobile (320px) */
@media (max-width: 375px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-banner {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
    
    .feature-card,
    .plant-card,
    .tip-card {
        padding: 20px;
    }
    
    .comparison-section h2,
    .assortment-section h2,
    .planters-section h2,
    .phytodesign-section h2,
    .faq-section h2,
    .progress-section h2 {
        font-size: 1.75rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto 15px;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-banner-text {
        text-align: center;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 100px;
    }
}