/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

/* Header and Navigation */
.navbar {
    background-color: #3d3d3d;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    width: 120px;
    height: 50px;
    object-fit: contain;
}



.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    color: #7CB342;
}

/* Hamburger menu for mobile */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main content */
main {
    margin-top: 80px;
    margin-bottom: 0;
    padding: 0;
    flex: 1;
}

/* Hero section */
.hero {
    background-image: url('./images/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    min-height: calc(100vh - 80px);
    z-index: 2;
}

.hero-content {
    grid-column: 1;
    z-index: 3;
    position: relative;
    transform: translate(100px, -50px);
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #7CB342;
    color: white;
    border: 2px solid #7CB342;
    width: 200px;
}

.btn-primary:hover {
    background-color: #689F38;
    border-color: #689F38;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #fff;
    color: #333;
    border: 2px solid #fff;
    width: 200px;
}

.btn-secondary:hover {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}



/* Page header for other pages */
.page-header {
    background-color: #0F0F0F;
    color: white;
    padding: 0;
    text-align: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header .container,
.content .container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
}

/* Contact page header */
.contact-header {
    margin: 0;
    padding: 0;
    line-height: 0;
}

.contact-header-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    padding: 0;
    border: none;
}

/* Content sections */
.content {
    background-color: #ffffff;
    padding: 40px 0;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Google Form wrapper */
.form-wrapper {
    position: relative;
    display: inline-block;
    width: 800px;
    height: 540px;
    overflow: hidden;
    background-color: white;
    border-radius: 8px;
}

/* Google Form styling */
.google-form {
    border: none;
    max-width: none;
    width: 800px;
    height: 688px;
    position: absolute;
    top: -170px;
    left: 0px;
    z-index: 1;
}

/* Bottom mask to hide Google Forms text */
.bottom-mask {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: white;
    z-index: 2;
}

/* Product images styling */
.product-image-main {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

/* About Us Page Styles */

/* Override main layout for about page tight connection */
.forest-section ~ .main-footer,
.about-content ~ .main-footer,
.workshop-section ~ .main-footer {
    margin-top: 0 !important;
}

/* About page main layout - similar to home page hero */
.forest-section,
.about-content,
.workshop-section {
    margin: 0;
}

/* Workshop section footer connection like home page */
.workshop-section + .partners-section + .main-footer {
    margin-top: 0 !important;
}

/* Forest Background Section */
.forest-section {
    background-image: url('./images/forest-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    color: white;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.forest-section h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.forest-section .green-title {
    font-size: 3rem;
    color: #7CB342;
    font-weight: bold;
    margin-bottom: 2rem;
}

.forest-section .intro-text {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    max-width: 1140px;
}

.forest-section .highlight-text {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    max-width: 1140px;
}

.forest-section .green-text {
    color: #7CB342;
    font-weight: bold;
}

.forest-section .description-text {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 1140px;
}

/* About Content Section */
.about-content {
    background-color: white;
    padding: 60px 0;
    color: #333;
}

.about-content .main-title {
    font-size: 2.5rem;
    color: #7CB342;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.3;
}

.about-content .section-subtitle {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 3rem;
}

.features-list li {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    color: #333;
}

.bottom-text {
    text-align: center;
    margin-top: 2rem;
}

.bottom-text .center-text {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.bottom-text .subtitle-text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.bottom-text .highlight-bottom {
    font-size: 1rem;
}

.green-link {
    color: #7CB342;
    text-decoration: underline;
}

/* Workshop Background Section */
.workshop-section {
    background-image: url('./images/workshop-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0 0 0;
    color: white;
    text-align: center;
    min-height: 728px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex: 1;
}

.workshop-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.workshop-section h3 {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.3;
}

/* Partners Section */
.partners-section {
    background-color: white;
    padding: 60px 20px 0 20px;
    text-align: center;
    margin: 0;
    border: none;
    line-height: 1;
    position: relative;
}

.partners-logos {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0;
    padding: 0;
    display: block;
    border: none;
}

/* Force tight connection between partners and footer */
.partners-section + .main-footer {
    margin-top: 0 !important;
    padding-top: 40px !important;
    border-top: none;
    position: relative;
    z-index: 1;
}

/* Complete seamless connection like home page */
.workshop-section + .partners-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Connect all sections seamlessly like home page */
.workshop-section,
.partners-section {
    margin: 0 !important;
    padding-bottom: 0 !important;
}

.partners-section {
    padding-top: 60px !important;
    margin-top: 0 !important;
}

/* Force zero gap between all sections */
.workshop-section + .partners-section + .main-footer {
    margin-top: 0 !important;
}

.content p {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
}

/* Footer */
.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 40px 0 0;
    margin: 0;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 80px;
    justify-content: space-between;
    align-items: start;
}

.footer-section {
    width: 100%;
}

.footer-section h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.btn-chat {
    background-color: #fff;
    color: #333;
    padding: 8px 18px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    margin: 1rem 0;
    transform: translateY(-10px);
}

.btn-chat:hover {
    background-color: #f0f0f0;
}

.availability,
.service-note,
.email-note {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 0;
}

.service-title {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.phone-number {
    color: #7CB342 !important;
    font-size: 1.1rem;
    font-weight: 600;
}

.email-link {
    color: #7CB342;
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 0.8rem;
}

.email-link:hover {
    color: #689F38;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 25px;
    padding: 15px 0;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    margin: 0;
}

/* Responsive design */
@media screen and (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #3d3d3d;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero {
        background-position: center center;
        background-size: cover;
        min-height: calc(100vh - 80px);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 40px 20px;
        min-height: calc(100vh - 80px);
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-content {
        grid-column: 1;
        max-width: 90%;
        margin: 0 auto;
        transform: translateY(-50px);
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
        padding: 0 20px;
    }

    .form-wrapper {
        width: 95%;
        height: 420px;
        max-width: 800px;
    }

    .google-form {
        width: 800px;
        height: 688px;
        top: -170px;
        left: 0px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media screen and (max-width: 480px) {
    .hero {
        padding: 40px 0;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }

    .hero {
        min-height: calc(100vh - 80px);
    }

    .hero-container {
        padding: 30px 15px;
        min-height: calc(100vh - 80px);
    }

    .page-header {
        padding: 40px 0;
        min-height: 150px;
    }

    .content {
        padding: 40px 0;
        min-height: 200px;
    }

    .form-wrapper {
        width: 95%;
        height: 370px;
        max-width: 95vw;
    }

    .google-form {
        width: 800px;
        height: 688px;
        top: -170px;
        left: -20px;
    }

    .main-footer {
        padding: 25px 0 0;
    }

    /* About Us Mobile Styles */
    .forest-section {
        padding: 60px 0;
        min-height: 400px;
    }

    .forest-section h1 {
        font-size: 2rem;
    }

    .forest-section .green-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .forest-section .intro-text,
    .forest-section .highlight-text,
    .forest-section .description-text {
        font-size: 1.125rem;
        max-width: 90%;
    }

    .about-content {
        padding: 40px 0;
    }

    .about-content .main-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    .about-content .section-subtitle {
        font-size: 1.2rem;
    }

    .workshop-section {
        padding: 60px 0 0 0;
        min-height: 546px;
        margin: 0 !important;
    }

    .partners-section {
        margin: 0 !important;
        padding-bottom: 0 !important;
    }

    .workshop-section h2 {
        font-size: 1.8rem;
    }

    .workshop-section h3 {
        font-size: 1.5rem;
    }

    .partners-section {
        padding: 40px 20px 0 20px;
        margin: 0;
        line-height: 1;
    }
}

@media screen and (max-width: 480px) {
    /* About Us Small Mobile Styles */
    .forest-section {
        padding: 40px 0;
        min-height: 350px;
    }

    .forest-section h1 {
        font-size: 1.6rem;
    }

    .forest-section .green-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .forest-section .intro-text,
    .forest-section .highlight-text,
    .forest-section .description-text {
        max-width: 95%;
    }

    .about-content .main-title {
        font-size: 1.5rem;
    }

    .workshop-section h2 {
        font-size: 1.5rem;
    }

    .workshop-section h3 {
        font-size: 1.3rem;
    }
} 