:root {
    --color-bg-light: #fdfaf6;
    --color-bg-cream: #f6efe7;
    --color-card-border: #ede4d8;
    --color-text-dark: #2d3832;
    --color-text-muted: #66726b;
    --color-primary-green: #375950;
    --color-primary-hover: #26423a;
    --color-footer-bg: #29443c;
    --color-footer-text: #e1e9e5;
}

* {
    box-sizing: border-box;
}

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

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

/* --- HERO BÖLÜMÜ --- */
.hero-faq {
    background-color: var(--color-bg-cream);
    padding: 70px 0 45px;
}

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

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 600;
    color: var(--color-primary-green);
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.hero-desc {
    font-size: clamp(1rem, 1.3vw, 1.12rem);
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 440px;
    margin: 0;
}

.hero-vibe-img {
    display: flex;
    justify-content: flex-end;
}

    .hero-vibe-img img {
        width: 100%;
        max-width: 600px;
        height: 320px;
        object-fit: cover;
        border-radius: 28px;
        box-shadow: 0 15px 35px rgba(60, 50, 40, 0.07);
        display: block;
    }

/* --- DALGA GEÇİŞİ --- */
.wave-separator {
    background-color: var(--color-bg-cream);
    line-height: 0;
    margin-bottom: -1px;
}

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

/* --- AKORDİYON (FAQ) ALANI --- */
.faq-section {
    background: linear-gradient(rgba(253, 250, 246, 0.85), rgba(253, 250, 246, 0.85)), url('/img/arkaplan.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 50px 0 60px;
}

.faq-wrapper {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.90);
    border: 1px solid var(--color-card-border);
    border-radius: 35px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    backdrop-filter: blur(4px);
}

    .faq-item:hover {
        border-color: #d8c8b6;
        box-shadow: 0 6px 20px rgba(55, 89, 80, 0.05);
        background-color: rgba(255, 255, 255, 0.98);
    }

.faq-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 28px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 500;
    color: var(--color-text-dark);
    outline: none;
}

.faq-icon {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-text-dark);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    margin-left: 15px;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    padding: 0 28px;
    color: var(--color-text-muted);
    font-size: 0.94rem;
    line-height: 1.65;
}

.faq-item.active .faq-body {
    padding-bottom: 22px;
}

/* --- ALT EL YAZILI MOTİVASYON ALANI --- */
.quote-section {
    background: linear-gradient(rgba(253, 250, 246, 0.85), rgba(253, 250, 246, 0.85)), url('/img/arkaplan.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0 70px;
    position: relative;
}

.quote-organic-card {
    max-width: 680px;
    margin: 0 auto;
    background: rgba(248, 238, 228, 0.95);
    border-radius: 70px 90px 80px 100px / 80px 90px 70px 80px;
    padding: 50px 30px;
    text-align: center;
    position: relative;
    backdrop-filter: blur(4px);
}

.quote-phrase {
    font-family: 'Caveat', cursive;
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    line-height: 1.25;
    color: var(--color-primary-green);
    margin: 0;
}

.quote-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.quote-line {
    width: 140px;
    height: 2px;
    background: radial-gradient(circle, rgba(55,89,80,0.5) 0%, rgba(55,89,80,0) 100%);
}

.leaf-icon {
    width: 34px;
    height: 34px;
    stroke: var(--color-primary-green);
    fill: none;
    stroke-width: 1.5;
    opacity: 0.75;
}

/* --- RESPONSIVE DÜZENLEMELER --- */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-desc {
        margin: 0 auto;
    }

    .hero-vibe-img {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq-header {
        padding: 16px 20px;
        font-size: 0.92rem;
    }

    .faq-body {
        padding: 0 20px;
    }

    .quote-organic-card {
        border-radius: 40px;
        padding: 35px 20px;
    }
}

@media (max-width: 576px) {
    .hero-faq {
        padding: 45px 0 30px;
    }

    .hero-vibe-img img {
        height: 240px;
    }

    .faq-section {
        padding: 30px 0 45px;
    }

    .faq-item {
        border-radius: 26px;
    }

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

    .footer-links {
        gap: 16px;
    }
}
