:root {
    --primary-color: #4a7c59;
    --primary-dark: #3d6649;
    --primary-light: #6b9b7a;
    --secondary-color: #d4a574;
    --secondary-dark: #c49464;
    --accent-color: #8b5a2b;
    --text-dark: #2c3e2d;
    --text-medium: #5a6b5c;
    --text-light: #8a9a8c;
    --bg-light: #f8faf8;
    --bg-cream: #faf7f2;
    --bg-green: #e8f0e8;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(74, 124, 89, 0.08);
    --shadow-md: 0 4px 16px rgba(74, 124, 89, 0.12);
    --shadow-lg: 0 8px 32px rgba(74, 124, 89, 0.16);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Quicksand', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: 2.4rem; }
h2 { font-size: 1.8rem; }
h3 { font-size: 1.3rem; }

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.site-header.hidden {
    transform: translateY(-100%);
}

.site-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
}

.logo i {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 6px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--white);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.menu-toggle.active .hamburger {
    background: transparent;
}

.menu-toggle.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.menu-toggle.active .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.section-header {
    margin-bottom: 35px;
}

.section-header.centered {
    text-align: center;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: calc(100vh - 60px);
}

.hero-content {
    padding-right: 20px;
}

.hero-tag {
    display: inline-block;
    background: var(--bg-green);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.hero p {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 25px;
    line-height: 1.7;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.features {
    background: var(--bg-cream);
    padding: 60px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.showcase {
    padding: 70px 0;
}

.showcase .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.showcase-content h2 {
    margin-bottom: 15px;
}

.showcase-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.showcase-list {
    margin-bottom: 25px;
}

.showcase-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.showcase-list i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.showcase-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.services {
    background: var(--primary-color);
    padding: 60px 0;
}

.services .section-tag {
    color: var(--secondary-color);
}

.services .section-header h2 {
    color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 25px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.service-item h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.service-item p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    line-height: 1.6;
}

.testimonials {
    padding: 60px 0;
    background: var(--bg-light);
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 30px;
    align-items: center;
}

.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.testimonial-content i {
    color: var(--primary-light);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.testimonial-content p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--bg-green);
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.testimonial-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: auto;
}

.content-grid-text {
    max-width: 800px;
    margin: 0 auto;
}

.content-text-full h2 {
    margin-bottom: 15px;
    text-align: center;
}

.content-text-full p {
    color: var(--text-medium);
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.7;
    text-align: center;
}

.products {
    padding: 60px 0;
    background: var(--bg-cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.product-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.product-icon i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.product-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.product-card p {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.author-location {
    font-size: 0.8rem;
    color: var(--text-light);
}

.cta {
    background: linear-gradient(135deg, var(--bg-green) 0%, var(--bg-cream) 100%);
    padding: 50px 0;
}

.cta-content {
    text-align: center;
    max-width: 550px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 12px;
}

.cta-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 50px 0 40px;
    text-align: center;
}

.page-hero .hero-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--secondary-color);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.page-hero-alt {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--accent-color) 100%);
}

.page-hero-contact {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.page-hero-policy {
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-dark) 100%);
    padding: 40px 0 30px;
}

.content-section {
    padding: 60px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.content-section.reverse .content-grid {
    direction: rtl;
}

.content-section.reverse .content-grid > * {
    direction: ltr;
}

.content-text h2 {
    margin-bottom: 15px;
}

.content-text p {
    color: var(--text-medium);
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.content-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.design-principles {
    background: var(--bg-cream);
    padding: 60px 0;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.principle-card {
    background: var(--white);
    padding: 25px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.principle-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.principle-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.principle-icon i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.principle-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.principle-card p {
    font-size: 0.8rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.plant-guide {
    padding: 60px 0;
}

.plant-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.plant-category {
    background: var(--bg-green);
    padding: 25px;
    border-radius: var(--radius-lg);
}

.plant-category h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.plant-category h3 i {
    color: var(--primary-color);
}

.plant-category ul li {
    padding: 6px 0;
    font-size: 0.85rem;
    color: var(--text-dark);
    border-bottom: 1px dashed var(--primary-light);
}

.plant-category ul li:last-child {
    border-bottom: none;
}

.cta-section {
    padding: 50px 0;
    background: var(--bg-light);
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.cta-box .btn-primary {
    background: var(--secondary-color);
    color: var(--text-dark);
}

.cta-box .btn-primary:hover {
    background: var(--secondary-dark);
}

.tips-section {
    padding: 60px 0;
    background: var(--bg-cream);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tip-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.tip-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary-color);
}

.tip-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    opacity: 0.5;
    margin-bottom: 10px;
}

.tip-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.tip-card p {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.balcony-ideas {
    padding: 60px 0;
}

.ideas-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.idea-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.idea-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.idea-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.idea-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.idea-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.idea-content p {
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-section {
    padding: 60px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 35px;
    border-radius: var(--radius-xl);
    color: var(--white);
}

.contact-intro h2 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 1.6rem;
}

.contact-intro p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;

}

.contact-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon i {
    font-size: 1rem;
    color: var(--secondary-color);
}

.contact-text h3 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    line-height: 1.5;
}

.contact-form-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.form-header h2 {
    margin-bottom: 8px;
    font-size: 1.5rem;
}

.form-header p {
    color: var(--text-medium);
    font-size: 0.85rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e0e5e1;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
    accent-color: var(--primary-color);
}

.checkbox-group label {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-medium);
    line-height: 1.5;
}

.checkbox-group label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.map-section {
    padding: 50px 0;
    background: var(--bg-cream);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    display: block;
}

.policy-content {
    padding: 50px 0;
}

.policy-text {
    max-width: 850px;
    margin: 0 auto;
}

.policy-text h2 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.policy-text h3 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.policy-text p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 12px;
}

.policy-text ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.policy-text ul li {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 6px;
    position: relative;
    padding-left: 15px;
}

.policy-text ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.thankyou-main,
.error-main {
    min-height: calc(100vh - 60px - 180px);
    display: flex;
    align-items: center;
}

.thankyou-section,
.error-section {
    padding: 50px 0;
    width: 100%;
}

.thankyou-content,
.error-content {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.thankyou-icon,
.error-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.thankyou-icon i,
.error-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.thankyou-content h1 {
    font-size: 1.8rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.thankyou-content p {
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.thankyou-details {
    background: var(--bg-green);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    margin-bottom: 25px;
}

.thankyou-details p {
    font-size: 0.85rem;
    margin-bottom: 0;
    color: var(--text-dark);
}

.thankyou-details i {
    color: var(--primary-color);
    margin-right: 6px;
}

.error-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

.error-content h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.error-content h2 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.error-content p {
    color: var(--text-medium);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.error-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.site-footer {
    background: var(--text-dark);
    color: var(--white);
    padding-top: 40px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.footer-logo i {
    color: var(--secondary-color);
}

.footer-brand p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-contact i {
    color: var(--secondary-color);
    width: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    padding: 15px 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-content p i {
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.cookie-content p a {
    color: var(--secondary-color);
    text-decoration: underline;
}

#acceptCookies {
    background: var(--secondary-color);
    color: var(--text-dark);
}

#acceptCookies:hover {
    background: var(--secondary-dark);
}

@media (max-width: 1024px) {
    .features-grid,
    .principles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .plant-categories,
    .tips-grid,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }
    
    .testimonial-image {
        display: none;
    }
    
    .testimonials-slider {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-dark);
        padding: 15px 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: var(--transition);
    }
    
    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav a {
        display: block;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 15px;
        min-height: auto;
    }
    
    .hero-content {
        padding-right: 0;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .features-grid,
    .principles-grid,
    .services-grid,
    .plant-categories,
    .tips-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-wrapper {
        grid-template-columns: 1fr;
    }
    
    .testimonial-image {
        order: -1;
    }
    
    .showcase .container,
    .content-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-section.reverse .content-grid {
        direction: ltr;
    }
    
    .footer-main {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .error-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .header-container {
        padding: 10px 12px;
    }
    
    .logo span {
        font-size: 1.1rem;
    }
    
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .feature-card,
    .principle-card,
    .tip-card,
    .contact-info-card,
    .contact-form-card,
    .thankyou-content,
    .error-content {
        padding: 20px 15px;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .idea-item {
        flex-direction: column;
        text-align: center;
    }
    
    .idea-icon {
        margin: 0 auto;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .policy-text {
        padding: 0 5px;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 12px;
    }
    
    .hero h1 {
        font-size: 1.7rem;
    }
    
    .btn {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .footer-links {
        gap: 12px;
    }
}