@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

:root {
    --primary: #5D6E5C;
    --secondary: #A8B5A0;
    --accent: #8B7355;
    --dark: #2C3E2D;
    --light: #F5F3EF;
    --cream: #E8E4DC;
    --text: #3A3A3A;
    --white: #FFFFFF;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Nunito Sans', sans-serif
}

html {
    scroll-behavior: smooth;
    font-size: 15px
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--light);
    line-height: 1.6;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark)
}

h1 {
    font-size: 2.4rem
}

h2 {
    font-size: 1.9rem
}

h3 {
    font-size: 1.4rem
}

p {
    font-size: 0.95rem;
    margin-bottom: 0.8rem
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

ul {
    list-style: none
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1rem
}

.btn {
    display: inline-block;
    padding: 0.7rem 1.6rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none
}

.btn-primary {
    background: var(--primary);
    color: var(--white)
}

.btn-primary:hover {
    background: var(--dark);
    transform: translateY(-2px)
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary)
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white)
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem
}

.section-title h2 {
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--accent)
}

.section-title p {
    color: #666;
    max-width: 500px;
    margin: 0.8rem auto 0
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease
}

header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: var(--shadow)
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark)
}

.logo span {
    color: var(--primary)
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;

}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    margin: 3px 0;
    transition: all 0.3s ease
}



.nav-close {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    cursor: pointer;
    z-index: 1101;
}

.nav-close::before,
.nav-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

.nav-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.nav-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-close:hover::before,
.nav-close:hover::after {
    background: var(--primary);
}

nav ul {
    display: flex;
    gap: 1.5rem;
    align-items: center
}

nav a {
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 0;
    position: relative;
    color: var(--dark)
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease
}

nav a:hover::after,
nav a.active::after {
    width: 100%
}

.header-hidden {
    transform: translateY(-100%)
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
    padding-top: 80px
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.hero-text h1 {
    margin-bottom: 1rem
}

.hero-text h1 span {
    color: var(--primary)
}

.hero-text p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.hero-image {
    position: relative
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow)
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary);
    border-radius: 20px;
    z-index: -1
}

.features {
    padding: 4rem 0;
    background: var(--white)
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.feature-card {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: var(--light)
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

.feature-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.8rem
}

.feature-card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem
}

.feature-card p {
    font-size: 0.8rem;
    color: #666
}

.about-section {
    padding: 4rem 0;
    background: var(--light)
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.about-image {
    position: relative
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow)
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--primary);
    color: var(--white);
    padding: 1.2rem;
    border-radius: 15px;
    text-align: center
}

.about-badge span {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading)
}

.about-badge small {
    font-size: 0.7rem
}

.about-text h2 {
    margin-bottom: 1rem
}

.about-text p {
    color: #555
}

.about-list {
    margin: 1rem 0 1.5rem
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    font-size: 0.9rem
}

.about-list i {
    color: var(--primary);
    font-size: 0.9rem
}

.services {
    padding: 4rem 0;
    background: var(--white)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.service-card {
    background: var(--light);
    border-radius: 15px;
    padding: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: height 0.3s ease
}

.service-card:hover::before {
    height: 100%
}

.service-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px)
}

.service-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem
}

.service-card h3 {
    margin-bottom: 0.5rem
}

.service-card p {
    font-size: 0.85rem;
    color: #666
}

.gallery-section {
    padding: 4rem 0;
    background: var(--cream)
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease
}

.gallery-item:hover img {
    transform: scale(1.08)
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease
}

.gallery-item:hover::after {
    opacity: 1
}

.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: var(--white);
    text-align: center
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 0.8rem
}

.cta-section p {
    max-width: 500px;
    margin: 0 auto 1.5rem;
    opacity: 0.9
}

.products-section {
    padding: 4rem 0;
    background: var(--light)
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.product-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease
}

.product-card:hover {
    transform: translateY(-5px)
}

.product-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.product-info {
    padding: 1.2rem
}

.product-info h3 {
    margin-bottom: 0.4rem;
    font-size: 1.1rem
}

.product-info p {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 0.8rem
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading)
}

.testimonials {
    padding: 4rem 0;
    background: var(--white)
}

.testimonials-slider {
    max-width: 700px;
    margin: 0 auto
}

.testimonial-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 15px;
    text-align: center
}

.testimonial-card p {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--dark)
}

.testimonial-card .location {
    font-size: 0.8rem;
    color: #888
}

.process-section {
    padding: 4rem 0;
    background: var(--light)
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem
}

.process-step {
    text-align: center;
    position: relative
}

.process-step::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--secondary);
    z-index: 0
}

.process-step:last-child::after {
    display: none
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1
}

.process-step h3 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem
}

.process-step p {
    font-size: 0.8rem;
    color: #666
}

.contact-section {
    padding: 4rem 0;
    background: var(--cream)
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem
}

.contact-info {
    background: var(--primary);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 1.5rem
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.2rem;
    align-items: flex-start
}

.contact-item i {
    font-size: 1.2rem;
    margin-top: 0.2rem
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem
}

.contact-item strong {
    display: block;
    margin-bottom: 0.2rem
}

.map-container {
    margin-top: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    height: 180px
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow)
}

.contact-form h3 {
    margin-bottom: 1.5rem
}

.form-group {
    margin-bottom: 1rem
}

.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.85rem;
    font-weight: 600
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s ease
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary)
}

.form-group textarea {
    min-height: 100px;
    resize: vertical
}

.checkbox-group {
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin-bottom: 1rem
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--primary)
}

.checkbox-group label {
    font-size: 0.8rem;
    color: #666
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 2rem 0 1rem
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem
}

.footer-about .logo {
    color: var(--white);
    margin-bottom: 0.8rem;
    display: inline-block
}

.footer-about p {
    font-size: 0.8rem;
    opacity: 0.8;
    max-width: 280px
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    color: var(--secondary)
}

.footer-links ul li {
    margin-bottom: 0.4rem
}

.footer-links a {
    font-size: 0.8rem;
    opacity: 0.8;
    transition: opacity 0.3s ease
}

.footer-links a:hover {
    opacity: 1
}

.footer-contact p {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 0.3rem
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem
}

.footer-bottom p {
    font-size: 0.75rem;
    opacity: 0.7
}

.policy-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap
}

.policy-links a {
    font-size: 0.75rem;
    opacity: 0.7;
    transition: opacity 0.3s ease
}

.policy-links a:hover {
    opacity: 1
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease
}

.privacy-popup.show {
    transform: translateY(0)
}

.privacy-popup-content {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap
}

.privacy-popup p {
    font-size: 0.8rem;
    margin: 0;
    flex: 1
}

.privacy-popup-buttons {
    display: flex;
    gap: 0.5rem
}

.privacy-popup .btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem
}

.page-header {
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
    padding: 6rem 0 3rem;
    text-align: center
}

.page-header h1 {
    margin-bottom: 0.5rem
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #666
}

.breadcrumb a:hover {
    color: var(--primary)
}

.breadcrumb span {
    color: var(--primary)
}

.page-content {
    padding: 3rem 0
}

.page-content p {
    margin-bottom: 1rem
}

.page-content h2 {
    margin: 1.5rem 0 0.8rem
}

.page-content h3 {
    margin: 1.2rem 0 0.6rem
}

.page-content ul {
    margin: 0.8rem 0 1rem 1.5rem
}

.page-content ul li {
    margin-bottom: 0.4rem;
    font-size: 0.9rem
}

.page-content ul li::before {
    content: '•';
    color: var(--primary);
    margin-right: 0.5rem
}

.error-page,
.thankyou-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 1rem
}

.error-page h1,
.thankyou-page h1 {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 0.5rem
}

.error-page p,
.thankyou-page p {
    max-width: 400px;
    margin-bottom: 1.5rem
}

.main-full {
    min-height: calc(100vh - 180px);
    display: flex;
    flex-direction: column;
    justify-content: center
}

.design-intro {
    padding: 3rem 0;
    background: var(--white)
}

.design-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center
}

.design-image img {
    border-radius: 15px
}

.benefits-section {
    padding: 3rem 0;
    background: var(--light)
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem
}

.benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary)
}

.benefit-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0.3rem
}

.benefit-item p {
    font-size: 0.8rem;
    color: #666;
    margin: 0
}

.planter-types {
    padding: 3rem 0;
    background: var(--white)
}

.planter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.planter-card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center
}

.planter-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem
}

.planter-card h3 {
    margin-bottom: 0.5rem
}

.planter-card p {
    font-size: 0.85rem;
    color: #666
}

.team-section {
    padding: 3rem 0;
    background: var(--white)
}

.team-intro {
    max-width: 700px;
    margin: 0 auto 2rem;
    text-align: center
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.value-card {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center
}

.value-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.8rem
}

.value-card h3 {
    margin-bottom: 0.4rem
}

.value-card p {
    font-size: 0.85rem;
    color: #666
}

.stats-section {
    padding: 3rem 0;
    background: var(--cream)
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.3rem
}

.stat-item p {
    font-size: 0.85rem;
    color: #666
}

.contact-hero {
    padding: 5rem 0 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
    text-align: center
}

.contact-hero h1 {
    color: var(--white);
    margin-bottom: 0.5rem
}

.contact-hero p {
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto
}

.contact-main {
    padding: 3rem 0;
    background: var(--light)
}

@media(max-width:992px) {
    .hero-content {
        grid-template-columns: 1fr
    }

    .hero-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .about-image {
        max-width: 450px;
        margin: 0 auto
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr)
    }

    .process-step::after {
        display: none
    }

    .contact-wrapper {
        grid-template-columns: 1fr
    }

    .footer-content {
        grid-template-columns: 1fr 1fr
    }

    .design-grid {
        grid-template-columns: 1fr
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:768px) {
    html {
        font-size: 14px
    }

    h1 {
        font-size: 2rem
    }

    h2 {
        font-size: 1.6rem
    }

    .nav-toggle {
        display: flex
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: var(--white);
        padding: 4rem 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1)
    }

    nav.active {
        right: 0
    }

    nav.active .nav-close {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem
    }

    .features-grid {
        grid-template-columns: 1fr
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .gallery-grid {
        grid-template-columns: 1fr
    }

    .products-grid {
        grid-template-columns: 1fr
    }

    .planter-grid {
        grid-template-columns: 1fr
    }

    .benefits-list {
        grid-template-columns: 1fr
    }

    .footer-content {
        grid-template-columns: 1fr
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center
    }

    .privacy-popup-content {
        flex-direction: column;
        text-align: center
    }
}

@media(max-width:480px) {
    html {
        font-size: 13px
    }

    .container {
        padding: 0 0.8rem
    }

    .hero {
        padding-top: 60px
    }

    .hero-buttons {
        flex-direction: column
    }

    .hero-image::before {
        display: none
    }

    .about-badge {
        position: static;
        margin-top: 1rem
    }

    .process-steps {
        grid-template-columns: 1fr
    }

    .values-grid {
        grid-template-columns: 1fr
    }

    .stats-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:320px) {
    html {
        font-size: 12px
    }

    .btn {
        padding: 0.6rem 1.2rem
    }

    .header-inner {
        padding: 0.8rem 0
    }
}