*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fff;
    color: #1a1a1a;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px #0001;
}
.logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 58px;
    width: auto;
    display: block;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}
.nav-links a {
    color: #2e7d32;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.2s;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}
.nav-links a.active, .nav-links a:hover {
    color: #388e3c;
    border-bottom: 2px solid #b2ff59;
}
.section {
    width: 100%;
    padding: 4rem 1rem 3rem 1rem;
}

.section-inner {
    max-width: 900px;
    margin: 0 auto;
}

.section h2 {
    text-align: center;
    font-size: clamp(1.7rem, 3.2vw, 2.35rem);
    line-height: 1.15;
    color: #2e7d32;
    letter-spacing: 0.01em;
    margin: 0 0 0.85rem 0;
}


.section-subtitle {
    text-align: center;
    max-width: 720px;
    margin: 0.5rem auto 1.5rem auto;
    color: #444;
    font-size: 1.1rem;
}
.home-section {
    position: relative;
    width: 100%;
    max-width: none;
    margin: 0;
    min-height: 60vh;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 2rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.8s ease-in-out;
}
.home-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(40, 87, 24, 0.45), rgba(40, 87, 24, 0.2));
    pointer-events: none;
    border-radius: 0;
}
.home-section .hero {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 4rem 1.5rem;
}

.hero-controls {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.1rem;
    pointer-events: none;
}

.hero-control {
    pointer-events: auto;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(8, 18, 10, 0.2);
    backdrop-filter: blur(4px);
    color: #fff;
    border-radius: 50%;
    padding: 0;
    font-size: 1.15rem;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.hero-control:hover,
.hero-control:focus-visible {
    background: rgba(8, 18, 10, 0.42);
    border-color: rgba(255, 255, 255, 0.75);
    transform: translateY(-1px);
}

.hero-control:disabled {
    opacity: 0.38;
    cursor: not-allowed;
    transform: none;
}
.green-hero {
    /* fallback color when images are not loaded */
    background: linear-gradient(120deg, #b2ff59 0%, #43a047 100%);
    color: #fff;
}
.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}
.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}
.cta-btn {
    background: #2e7d32;
    color: #fff;
    padding: 0.9rem 2.2rem;
    border: none;
    border-radius: 24px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 2px 8px #0001;
    transition: background 0.2s;
    text-decoration: none;
    display: inline-block;
}

.contact-card--form .cta-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    border-radius: 14px;
    text-align: center;
}
.cta-btn:hover {
    background: #388e3c;
}
.services-section {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 2rem;
}

.about-section {
    background: #f9f9f9;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 2rem;
}

.about-section .section-inner {
    max-width: 820px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text {
    min-width: 0;
}

.about-media {
    width: 100%;
    max-width: 340px;
    justify-self: end;
    align-self: center;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(46, 125, 50, 0.15);
    background: #fff;
}

.about-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
}

.about-subheading {
    max-width: 760px;
    margin: 0.25rem auto 1rem auto;
    text-align: left;
    color: #2e7d32;
    font-size: 1.55rem;
    line-height: 1.3;
    letter-spacing: 0.02em;
}

.about-section p {
    max-width: 760px;
    margin: 0.85rem auto;
    line-height: 1.8;
    text-align: left;
    color: #2a2a2a;
}

.about-checklist {
    list-style: none;
    padding: 0;
    margin: 1.4rem auto 0 auto;
    max-width: 760px;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.6rem 0;
    font-weight: 600;
    color: #2e7d32;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    background: #b2ff59;
    color: #1b5e20;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

@media (max-width: 700px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .about-media {
        max-width: 100%;
        justify-self: stretch;
    }

    .about-subheading {
        font-size: 1.3rem;
    }

    .about-media img {
        min-height: 240px;
    }
}

.gallery-section {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-group {
    display: block;
}

.gallery-group-title {
    margin: 0 0 0.85rem 0;
    color: #2e7d32;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.gallery-grid-inner {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.gallery-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.gallery-item img, .gallery-item video {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item-landscape {
    aspect-ratio: 16 / 9;
}

.gallery-item-portrait {
    aspect-ratio: 9 / 16;
}

.gallery-item-landscape img,
.gallery-item-landscape video,
.gallery-item-portrait img,
.gallery-item-portrait video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-section {
    background: #fff;
    border-radius: 0;
    box-shadow: none;
}
.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2rem 1.5rem;
    flex: 1 1 220px;
    max-width: 260px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.services-list .service-card:nth-child(1) {
    background: linear-gradient(180deg, #f4fbf3 0%, #ffffff 60%);
}

.services-list .service-card:nth-child(2) {
    background: linear-gradient(180deg, #f2f8ff 0%, #ffffff 60%);
}

.services-list .service-card:nth-child(3) {
    background: linear-gradient(180deg, #fffaf0 0%, #ffffff 60%);
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 0.9rem auto;
    display: grid;
    place-items: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    margin: 0 0 0.7rem 0;
    color: #1f6f2a;
    font-size: 1.3rem;
    line-height: 1.3;
    letter-spacing: 0.01em;
}

.service-card p {
    margin: 0;
    color: #2c2c2c;
    line-height: 1.75;
    font-size: 1.02rem;
}
form {
    margin-top: 0;
}

.contact-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.contact-card {
    flex: 1 1 320px;
    border-radius: 16px;
    padding: 1.8rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.contact-card--form {
    flex: 2 1 480px;
    background: #f9f9f9;
}

.contact-card--info {
    flex: 1 1 260px;
}

.contact-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}
label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}
input, textarea, select {
    width: 100%;
    padding: 0.7rem;
    border: 1px solid #bdbdbd;
    border-radius: 8px;
    font-size: 1rem;
    background: #fff;
    resize: vertical;
    appearance: none;
}

input:required, textarea:required, select:required {
    border-color: #388e3c;
}

label .required {
    color: #d32f2f;
    margin-left: 0.25rem;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6' fill='%23999'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 0.65rem;
    padding-right: 2.4rem;
}
button[type="submit"] {
    margin-top: 0.5rem;
}
.form-note {
    font-size: 0.95em;
    color: #888;
    margin-top: 1em;
}
footer {
    text-align: center;
    padding: 2rem 1rem 1rem 1rem;
    color: #fff;
    background: #2e7d32;
    font-size: 1rem;
}

footer p {
    margin: 0;
}
@media (max-width: 700px) {
    .services-list {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 480px;
    }

    .service-icon {
        width: 62px;
        height: 62px;
    }

    .section {
        padding: 2.5rem 0.5rem 2rem 0.5rem;
    }

    .navbar {
        flex-direction: column;
        gap: 0.7rem;
    }

    .logo img {
        height: 48px;
    }

    .hero-controls {
        padding: 0 0.5rem;
    }

    .hero-control {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .contact-grid {
        flex-direction: column;
    }

    .section h2 {
        font-size: clamp(1.45rem, 5.4vw, 1.95rem);
    }

        padding: 1rem 0.5rem;
    }
}
