:root {
    --green-900: #10281f;
    --green-700: #27694e;
    --green-500: #6fa06b;
    --clay: #b56f3f;
    --moss: #e5eddc;
    --cream: #f3f0e7;
    --paper: #ffffff;
    --ink: #1d2520;
    --muted: #657166;
    --line: rgba(29, 37, 32, 0.12);
    --shadow: 0 24px 70px rgba(16, 40, 31, 0.18);
    --radius: 8px;
    --nav-height: 86px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background:
        radial-gradient(circle at top left, rgba(111, 160, 107, 0.2), transparent 28rem),
        linear-gradient(180deg, #f8f6ef 0%, var(--cream) 42%, #edf2e8 100%);
    color: var(--ink);
    font-family: "Montserrat", Arial, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 20;
    width: 100%;
    background: rgba(16, 40, 31, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.nav-container {
    width: min(1180px, calc(100% - 32px));
    min-height: var(--nav-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--paper);
    font-weight: 800;
    text-decoration: none;
}

.logo-img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
}

.logo span {
    font-size: 1rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    border-radius: 999px;
    padding: 0 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.93rem;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--paper);
}

.call-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--clay);
    color: var(--paper);
    padding: 0 22px;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(181, 111, 63, 0.28);
    transition: transform 0.2s ease, background 0.2s ease;
}

.call-button:hover {
    background: #cf7d45;
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--green-900);
}

.hero {
    position: relative;
    min-height: 92vh;
    padding: calc(var(--nav-height) + 72px) 5% 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--paper);
    overflow: hidden;
}

.home-hero {
    background:
        linear-gradient(110deg, rgba(16, 40, 31, 0.94) 0%, rgba(16, 40, 31, 0.68) 44%, rgba(181, 111, 63, 0.24) 100%),
        url("arka-plan.jpg") center/cover;
}

.hero-content {
    width: min(980px, 100%);
}

.eyebrow {
    color: var(--green-500);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero .eyebrow,
.page-header .eyebrow,
.cta-section .eyebrow {
    color: #d7e8c7;
}

h1,
h2,
h3 {
    line-height: 1.1;
}

.hero h1 {
    max-width: 900px;
    font-size: clamp(2.35rem, 5.5vw, 5.25rem);
    letter-spacing: 0;
}

.hero p {
    max-width: 720px;
    margin-top: 22px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.12rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 0 24px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--green-700);
    color: var(--paper);
}

.btn-primary:hover {
    background: var(--green-900);
}

.btn-light {
    background: var(--paper);
    color: var(--green-900);
}

.btn-secondary {
    background: var(--clay);
    color: var(--paper);
}

.hero-panel {
    position: absolute;
    right: 5%;
    bottom: 42px;
    width: min(520px, 90%);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background: rgba(16, 40, 31, 0.58);
    backdrop-filter: blur(12px);
}

.hero-panel div {
    padding: 18px;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-panel div:last-child {
    border-right: 0;
}

.hero-panel strong,
.hero-panel span {
    display: block;
}

.hero-panel strong {
    font-size: 1.6rem;
}

.hero-panel span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.82rem;
}

.section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 88px 0;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-heading h2,
.section-copy h2,
.contact-info h2 {
    color: var(--green-900);
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-copy p,
.contact-info p {
    margin-top: 18px;
    color: var(--muted);
}

.intro-section {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 56px;
    align-items: center;
}

.section-media img {
    width: 100%;
    aspect-ratio: 4 / 5;
    border: 10px solid var(--paper);
    border-radius: 26px 8px 26px 8px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.text-link {
    display: inline-flex;
    margin-top: 24px;
    color: var(--green-700);
    font-weight: 800;
    text-decoration: none;
}

.process-section,
.featured-projects,
.project-section {
    width: 100%;
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
}

.process-grid,
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.process-step,
.service-card,
.faq-list details,
.contact-form {
    border: 1px solid var(--line);
    border-radius: 20px 8px 20px 8px;
    background: var(--paper);
}

.process-step {
    padding: 28px;
}

.process-step span,
.service-card span {
    color: var(--clay);
    font-size: 0.82rem;
    font-weight: 800;
}

.process-step h3,
.service-card h3 {
    margin-top: 16px;
    color: var(--green-900);
}

.process-step p,
.service-card p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.95rem;
}

.services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card {
    min-height: 230px;
    padding: 30px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-6px) rotate(-0.4deg);
}

.featured-grid,
.gallery-container {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.featured-grid article,
.project-card {
    position: relative;
    overflow: hidden;
    min-height: 380px;
    border-radius: 26px 8px 26px 8px;
    background: var(--green-900);
}

.featured-grid img,
.project-img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    opacity: 0.88;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.featured-grid article:hover img,
.project-card:hover .project-img {
    opacity: 0.72;
    transform: scale(1.05);
}

.featured-grid div,
.project-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 28px;
    color: var(--paper);
    background: linear-gradient(to top, rgba(7, 18, 12, 0.9), rgba(7, 18, 12, 0));
}

.featured-grid span,
.project-info span {
    color: #d7e8c7;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.featured-grid h3,
.project-info h2 {
    margin-top: 8px;
    font-size: 1.35rem;
}

.project-info p {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.78);
}

.center-action {
    margin-top: 28px;
    text-align: center;
}

.faq-section {
    max-width: 900px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-list details {
    padding: 22px 24px;
}

.faq-list summary {
    color: var(--green-900);
    font-weight: 800;
    cursor: pointer;
}

.faq-list p {
    margin-top: 12px;
    color: var(--muted);
}

.cta-section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border-radius: 28px 8px 28px 8px;
    background:
        linear-gradient(135deg, rgba(16, 40, 31, 0.96), rgba(39, 105, 78, 0.9)),
        url("biz kimiz.jpg") center/cover;
    color: var(--paper);
    padding: 42px;
}

.cta-section h2 {
    max-width: 760px;
    font-size: clamp(2rem, 4vw, 3.4rem);
}

.site-footer {
    background: #0c1813;
    color: var(--paper);
    padding: 64px 5% 24px;
}

.footer-content {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;
}

.footer-content h3 {
    margin-bottom: 14px;
}

.footer-content p,
.footer-content a {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.68);
    text-decoration: none;
}

.footer-content a:hover {
    color: var(--paper);
}

.footer-bottom {
    width: min(1180px, 100%);
    margin: 38px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
}

.page-header {
    min-height: 500px;
    padding: calc(var(--nav-height) + 86px) 5% 86px;
    display: grid;
    align-content: end;
    color: var(--paper);
}

.projects-hero {
    background: linear-gradient(105deg, rgba(16, 40, 31, 0.92), rgba(16, 40, 31, 0.48), rgba(181, 111, 63, 0.18)), url("havuzlu-villa-1024x544.jpg") center/cover;
}

.contact-hero {
    background: linear-gradient(105deg, rgba(16, 40, 31, 0.92), rgba(16, 40, 31, 0.5), rgba(181, 111, 63, 0.2)), url("arka-plan.jpg") center/cover;
}

.design-hero {
    background: linear-gradient(105deg, rgba(16, 40, 31, 0.92), rgba(16, 40, 31, 0.48), rgba(181, 111, 63, 0.2)), url("çim ekimi/çim8.jpg") center/cover;
}

.irrigation-hero {
    background: linear-gradient(105deg, rgba(16, 40, 31, 0.92), rgba(16, 40, 31, 0.48), rgba(181, 111, 63, 0.2)), url("sulama/WhatsApp Image 2026-04-16 at 13.09.19.jpg") center/cover;
}

.care-hero {
    background: linear-gradient(105deg, rgba(16, 40, 31, 0.92), rgba(16, 40, 31, 0.5), rgba(181, 111, 63, 0.2)), url("bakım/bakım5.jpg") center/cover;
}

.hardscape-hero {
    background: linear-gradient(105deg, rgba(16, 40, 31, 0.92), rgba(16, 40, 31, 0.48), rgba(181, 111, 63, 0.2)), url("sert peyzaj/sert8.jpg") center/cover;
}

.survey-hero {
    background: linear-gradient(105deg, rgba(16, 40, 31, 0.92), rgba(16, 40, 31, 0.5), rgba(181, 111, 63, 0.28)), url("harita arka plan2.jpeg") center/cover;
}

.page-header h1 {
    max-width: 900px;
    font-size: clamp(2.4rem, 5vw, 5rem);
}

.page-header p:not(.eyebrow) {
    max-width: 760px;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.filter-btn {
    min-height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    color: var(--green-900);
    padding: 0 18px;
    font-weight: 800;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--green-900);
    color: var(--paper);
}

.project-card.is-hidden {
    display: none;
}

.contact-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 36px;
    align-items: start;
}

.contact-list {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-list a {
    display: grid;
    gap: 3px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    padding: 18px;
    text-decoration: none;
}

.contact-list span,
.contact-list small {
    color: var(--muted);
}

.contact-list strong {
    color: var(--green-900);
}

.contact-form {
    display: grid;
    gap: 18px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    gap: 8px;
}

.form-row label {
    color: var(--green-900);
    font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fbfaf7;
    color: var(--ink);
    font: inherit;
    padding: 13px 14px;
    outline: none;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    border-color: var(--green-700);
    box-shadow: 0 0 0 3px rgba(75, 139, 98, 0.16);
}

.form-submit {
    width: 100%;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 42px;
    align-items: start;
}

.detail-points {
    display: grid;
    gap: 12px;
}

.detail-points article {
    display: grid;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    padding: 22px;
}

.detail-points strong {
    color: var(--green-900);
    font-size: 1.05rem;
}

.detail-points span {
    color: var(--muted);
}

.media-section {
    display: grid;
    gap: 22px;
}

.media-feature {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
}

.media-feature img,
.media-feature video {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.media-feature div {
    align-self: center;
    padding: 34px;
}

.media-feature span {
    color: var(--clay);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.media-feature h2 {
    margin-top: 10px;
    color: var(--green-900);
    font-size: clamp(1.7rem, 3vw, 2.6rem);
}

.media-feature p {
    margin-top: 14px;
    color: var(--muted);
}

.detail-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.detail-gallery img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    object-fit: cover;
}

.survey-intro {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 42px;
    align-items: center;
}

.survey-image {
    overflow: hidden;
    border: 10px solid var(--paper);
    border-radius: 26px 8px 26px 8px;
    background: var(--green-900);
    box-shadow: var(--shadow);
}

.survey-image img {
    width: 100%;
    aspect-ratio: 1.35 / 1;
    object-fit: cover;
}

.survey-services {
    width: 100%;
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
}

.survey-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.survey-list article {
    min-height: 230px;
    border: 1px solid var(--line);
    border-radius: 20px 8px 20px 8px;
    background: var(--paper);
    padding: 24px;
}

.survey-list span {
    color: var(--clay);
    font-size: 0.78rem;
    font-weight: 800;
}

.survey-list h3 {
    margin-top: 14px;
    color: var(--green-900);
    font-size: 1.12rem;
}

.survey-list p {
    margin-top: 12px;
    color: var(--muted);
    font-size: 0.94rem;
}

@media (max-width: 980px) {
    .process-grid,
    .featured-grid,
    .gallery-container,
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .intro-section,
    .contact-section,
    .service-detail,
    .survey-intro {
        grid-template-columns: 1fr;
    }

    .survey-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-panel {
        position: static;
        margin-top: 42px;
    }
}

@media (max-width: 760px) {
    :root {
        --nav-height: 74px;
    }

    .nav-container {
        min-height: var(--nav-height);
    }

    .logo-img {
        width: 48px;
        height: 48px;
    }

    .logo span {
        max-width: 170px;
        font-size: 0.9rem;
        line-height: 1.15;
    }

    .menu-toggle {
        display: block;
        background: rgba(255, 255, 255, 0.08);
    }

    .nav-links {
        position: absolute;
        top: var(--nav-height);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: var(--green-900);
        padding: 10px;
        box-shadow: var(--shadow);
    }

    .call-button {
        min-height: 40px;
        padding: 0 18px;
    }

    .site-nav.menu-open .nav-links {
        display: flex;
    }

    .nav-links a {
        justify-content: center;
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--nav-height) + 56px);
    }

    .hero-panel,
    .process-grid,
    .services-grid,
    .featured-grid,
    .gallery-container,
    .media-feature,
    .survey-list,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .detail-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .media-feature img,
    .media-feature video {
        min-height: 260px;
    }

    .hero-panel div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    }

    .hero-panel div:last-child {
        border-bottom: 0;
    }

    .section {
        padding: 64px 0;
    }

    .section-media img {
        aspect-ratio: 4 / 3;
    }

    .featured-grid article,
    .project-card,
    .featured-grid img,
    .project-img {
        min-height: 320px;
    }

    .cta-section {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px;
    }

    .page-header {
        min-height: 420px;
    }

    .contact-form {
        padding: 22px;
    }
}
