:root {
    --color-bg-light: #fdfaf6;
    --color-bg-cream: #f6f0e6;
    --color-text-main: #2d3832;
    --color-text-muted: #6e7771;
    --color-primary-green: #375b51;
    --color-primary-hover: #26433b;
    --color-card-border: #ede4d8;
    --color-accent-sage: #8fa597;
}

* {
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg-light);
    color: var(--color-text-main);
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.container-custom {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* --- HERO (ÜST TANITIM ALANI) --- */
.hero-section {
    background-color: var(--color-bg-cream);
    padding: 80px 0 60px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: 50px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--color-primary-green);
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 2.2vw, 1.7rem);
    line-height: 1.35;
    font-weight: 500;
    color: var(--color-text-main);
    margin: 0 0 20px 0;
}

.hero-desc {
    font-size: clamp(0.95rem, 1.2vw, 1.05rem);
    line-height: 1.75;
    color: var(--color-text-muted);
    max-width: 520px;
    margin: 0 0 35px 0;
}

.btn-randevu {
    background-color: var(--color-primary-green);
    color: #ffffff;
    padding: 13px 30px;
    border-radius: 40px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(55, 91, 81, 0.15);
}

    .btn-randevu:hover {
        background-color: var(--color-primary-hover);
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(55, 91, 81, 0.25);
    }

    .btn-randevu svg {
        transition: transform 0.2s ease;
    }

    .btn-randevu:hover svg {
        transform: translateX(4px);
    }

.hero-img-box {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(71, 63, 50, 0.08);
    line-height: 0;
}

    .hero-img-box img {
        width: 100%;
        height: 100%;
        max-height: 550px;
        object-fit: cover;
        display: block;
    }

/* --- DALGALI GEÇİŞ BÖLÜMÜ --- */
.wave-divider {
    background-color: var(--color-bg-cream);
    line-height: 0;
    margin-bottom: -1px;
}

    .wave-divider svg {
        width: 100%;
        height: 50px;
        display: block;
    }

/* --- ÇALIŞMA ALANLARI --- */
.fields-section {
    background-color: var(--color-bg-light);
    padding: 40px 0 90px;
}

.fields-header {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.8vw, 2.3rem);
    color: var(--color-primary-green);
    margin: 0 0 45px 0;
}

/* 3 Sütunlu Masaüstü Izgara */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.field-card {
    background-color: #ffffff;
    border: 1px solid var(--color-card-border);
    border-radius: 22px;
    padding: 34px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    min-height: 155px;
}

    .field-card:hover {
        transform: translateY(-4px);
        border-color: #d8c6b2;
        box-shadow: 0 12px 30px rgba(55, 91, 81, 0.08);
    }

.field-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 14px;
    stroke: var(--color-primary-green);
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.9;
}

.field-title {
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--color-text-main);
    margin: 0;
    line-height: 1.4;
}

/* --- ALT ALINTI & SÜS DALI --- */
.quote-container {
    margin-top: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.quote-text {
    font-family: 'Caveat', cursive;
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    line-height: 1.25;
    color: var(--color-primary-green);
    margin-bottom: 8px;
}

.quote-botanical-art {
    width: 55px;
    height: 55px;
    stroke: var(--color-accent-sage);
    fill: none;
    stroke-width: 1.5;
    opacity: 0.85;
}

/* --- MOBİL VE TABLET UYUMLULUK (RESPONSIVE) --- */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-img-box {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .fields-header {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 50px 0 40px;
    }

    .fields-section {
        padding: 30px 0 60px;
    }

    .cards-grid {
        grid-template-columns: 1fr 1fr; /* Mobilde çift kolon korundu */
        gap: 12px;
    }

    .field-card {
        padding: 22px 12px;
        border-radius: 16px;
        min-height: 135px;
    }

    .field-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 10px;
    }

    .field-title {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .btn-randevu {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .wave-divider svg {
        height: 30px;
    }
}

