/* ============ DEĞİŞKENLER ============ */
:root {
    --green: #2e9e3f;
    --green-dark: #1f7a34;
    --green-deep: #15532a;
    --gold: #b89243;
    --gold-dark: #a8823a;
    --duayen-green-1: #2c4d39;
    --duayen-green-2: #16291d;
    --ink: #14201a;
    --ink-2: #1c2a23;
    --text: #3a4641;
    --muted: #6e7a74;
    --line: #e8ede9;
    --light: #f4f7f5;
    --mint: #e9f9ef;
    --cream: #faf8f4;
    --white: #ffffff;
    --radius: 18px;
    --radius-sm: 12px;
    --shadow-sm: 0 6px 20px rgba(20, 32, 26, 0.06);
    --shadow: 0 18px 50px rgba(20, 32, 26, 0.1);
    --shadow-lg: 0 30px 70px rgba(20, 32, 26, 0.16);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1180px;
}

/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    line-height: 1.65;
    background: var(--white);
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
section { scroll-margin-top: 130px; }

@media (max-width: 768px) {
    section { scroll-margin-top: 24px; }
}

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ============ BUTONLAR ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: max-content;
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.02em;
    line-height: 1;
    padding: 5px 18px 5px 5px;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.btn::before {
    content: "↗";
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    flex: 0 0 32px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    font-style: normal;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
}
.btn--sm {
    gap: 8px;
    padding: 4px 14px 4px 4px;
    font-size: 0.78rem;
}
.btn--sm::before {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    font-size: 0.75rem;
}
.btn--primary {
    background: #e2b15b;
    color: #111;
}
.btn--primary:hover { background: #d4a34a; color: #111; }
.btn--ghost { background: transparent; color: #fff; }
.btn--ghost::before { background: #fff; color: #111; }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.btn--white {
    background: #fff;
    color: #111;
}
.btn--white::before { background: #e2b15b; color: #111; }
.btn--block {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 8px 20px 8px 8px;
    font-size: 0.95rem;
}
.btn--block::before {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
}
.btn--gold {
    background: #e2b15b;
    color: #111;
}
.btn--gold:hover {
    background: #d4a34a;
    color: #111;
}
.btn--gold::before { background: #fff; color: #111; }
.btn--ghost-dark {
    background: #14201a;
    color: #fff;
}
.btn--ghost-dark::before {
    background: #e2b15b;
    color: #111;
}
.btn--ghost-dark:hover {
    background: #1c2e24;
    color: #fff;
}

/* ============ BÖLÜM BAŞLIKLARI ============ */
.section__head { text-align: center; max-width: 680px; margin: 0 auto 3.4rem; }
.section__eyebrow {
    display: inline-block;
    color: var(--green);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 0.85rem;
    position: relative;
    padding-left: 30px;
}
.section__eyebrow::before {
    content: "";
    position: absolute;
    left: 0; top: 50%;
    width: 22px; height: 2px;
    background: var(--green);
    transform: translateY(-50%);
}
.section__head { text-align: center; }
.section__head .section__eyebrow { padding-left: 0; }
.section__head .section__eyebrow::before { display: none; }
.section__title {
    font-size: clamp(1.85rem, 4vw, 2.65rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.01em;
}
.section__desc { color: var(--muted); margin-top: 1rem; font-size: 1.05rem; }
.section__head--light .section__title { color: #fff; }
.section__head--light .section__desc { color: rgba(255, 255, 255, 0.75); }

/* ============ ÜST BAR ============ */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 210;
    background: transparent;
    color: var(--text);
    font-size: 0.85rem;
    padding: 9px 0;
    transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.topbar.scrolled {
    background: var(--ink);
    color: #c3ccc6;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar__tag { color: var(--muted); }
.topbar.scrolled .topbar__tag { color: #9fb0a7; }
.topbar__right { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.topbar__item { display: inline-flex; align-items: center; gap: 7px; transition: color 0.2s; }
.topbar__item:hover { color: var(--green); }
.topbar__item svg { color: var(--green); }
.topbar__social { display: flex; align-items: center; gap: 0.4rem; }
.tsoc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(20, 32, 26, 0.16);
    color: var(--ink);
    transition: background 0.2s var(--ease), color 0.2s, border-color 0.2s;
}
.tsoc svg { display: block; }
.tsoc:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}
.topbar.scrolled .tsoc {
    border-color: rgba(255, 255, 255, 0.22);
    color: #d5ddd8;
}
.topbar.scrolled .tsoc:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

/* ============ HEADER ============ */
.header {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 200;
    background: transparent;
    box-shadow: none;
    transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}
.header__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    padding: 14px 0;
    gap: 0.75rem 1rem;
}
.header__logo {
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    display: block;
    cursor: pointer;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}
.header__logo:hover { opacity: 0.8; transform: translateY(-1px); }
.header__logo img { height: 46px; width: auto; display: block; pointer-events: none; }
.header__actions { display: flex; align-items: center; gap: 0.75rem; justify-self: end; }
.header__join { font-size: 0.78rem; }

/* --- Header sosyal ikonlar --- */
.header__social { display: flex; align-items: center; gap: 0.55rem; }
.hsoc {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(20, 32, 26, 0.18);
    background: transparent;
    color: var(--ink);
    transition: background 0.25s var(--ease), color 0.25s, border-color 0.25s, transform 0.25s;
}
.hsoc svg { display: block; }
.hsoc:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    transform: translateY(-3px);
}

.nav__list { display: flex; gap: 2px; justify-content: center; flex-wrap: nowrap; }
.nav__join-mobile { display: none; }
.nav__link {
    display: block;
    padding: 0.55rem 0.85rem;
    font-weight: 500;
    font-size: 0.93rem;
    color: var(--ink-2);
    border-radius: 100px;
    position: relative;
    transition: color 0.2s, background 0.2s;
}
.nav__link::after {
    content: "";
    position: absolute;
    left: 50%; bottom: 3px;
    width: 0; height: 2px;
    background: var(--green);
    transform: translateX(-50%);
    transition: width 0.3s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--green-dark); }
.nav__link:hover::after, .nav__link.active::after { width: 20px; }

body.header-overlay .nav__link { color: var(--ink-2); }
body.header-overlay .nav__link:hover,
body.header-overlay .nav__link.active { color: var(--green-dark); }
body.header-overlay .nav__link::after { background: var(--green); }
body.header-overlay .nav__toggle span { background: var(--ink); }
body.header-overlay .hsoc {
    border-color: rgba(20, 32, 26, 0.18);
    color: var(--ink);
}
body.header-overlay .hsoc:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}
body.header-overlay .topbar { color: var(--text); }
body.header-overlay .topbar__tag { color: var(--muted); }
body.header-overlay .topbar__item:hover { color: var(--green-dark); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: 0.3s; }
.nav__close { display: none; }
.nav__contact { display: none; }

.nav__item { position: relative; list-style: none; }
.nav__parent { display: flex; align-items: center; }
.nav__caret {
    display: none;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-left: auto;
    border: none;
    background: rgba(20, 32, 26, 0.06);
    border-radius: 10px;
    color: var(--ink);
    cursor: pointer;
    flex-shrink: 0;
}
.nav__caret svg { display: block; transition: transform 0.25s var(--ease); }
.nav__item--drop.is-open .nav__caret svg { transform: rotate(180deg); }
.nav__item--drop {
    padding-bottom: 14px;
    margin-bottom: -14px;
}
.nav__sub {
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 260px;
    margin: 0;
    padding: 0.45rem;
    list-style: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(6px);
    transition: opacity 0.18s var(--ease), transform 0.18s var(--ease), visibility 0s linear 0.12s;
    z-index: 40;
}
.nav__sub::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 18px;
}
.nav__item--drop:hover > .nav__sub,
.nav__item--drop:focus-within > .nav__sub {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(6px);
    transition-delay: 0s;
}
.nav__sub a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    padding: 0.55rem 0.55rem 0.55rem 0.9rem;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--ink-2);
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}
.nav__sub a::after {
    content: "";
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    background-color: currentColor;
    opacity: 0.5;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M13 6l6 6-6 6'/%3E%3C/svg%3E") no-repeat center / 16px 16px;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M13 6l6 6-6 6'/%3E%3C/svg%3E") no-repeat center / 16px 16px;
}
.nav__sub a:hover::after,
.nav__sub a.is-current::after {
    opacity: 1;
}
.nav__sub a:hover,
.nav__sub a.is-current {
    background: var(--mint);
    color: var(--green-dark);
}

@media (min-width: 769px) {
    .nav {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        width: auto;
        height: auto;
        transform: none;
        background: transparent;
        box-shadow: none;
        padding: 0;
        z-index: auto;
        display: block;
        justify-self: center;
        min-width: 0;
    }
    .nav__close,
    .nav__contact { display: none !important; }
    .mobilenav { display: none !important; }
}

@media (max-width: 1180px) {
    .header__social { display: none; }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .header__inner {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            "logo actions"
            "nav nav";
        padding-bottom: 6px;
    }
    .header__logo { grid-area: logo; }
    .header .nav { grid-area: nav; width: 100%; }
    .header__actions { grid-area: actions; }
    body.page-inner { padding-top: 148px; }
}

@media (max-width: 1024px) {
    .nav__link { padding: 0.5rem 0.55rem; font-size: 0.82rem; }
}

/* ============ MOBİL ALT NAV ============ */
.mobilenav {
    display: none;
}

/* ============ HERO / VİDEO ============ */
.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: 100vh;
    min-height: 420px;
    background: #000;
    overflow: hidden;
    margin-bottom: 0;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 220px;
    background: linear-gradient(
        to bottom,
        var(--mint) 0%,
        rgba(233, 249, 239, 0.92) 28%,
        rgba(233, 249, 239, 0.55) 58%,
        rgba(233, 249, 239, 0.15) 82%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
}
body:not(.header-overlay) .hero::before {
    opacity: 0;
}
.hero__slides { position: absolute; inset: 0; z-index: 0; }
.hero__slide {
    position: absolute; inset: 0;
    opacity: 1;
}
.hero__slide.active { opacity: 1; }
.hero__video {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Hero scroll cue */
.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 1.75rem;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    transform: translateX(-50%);
    color: #fff;
    text-decoration: none;
    opacity: 1;
    transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
    pointer-events: auto;
}
.hero__scroll.is-hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
    pointer-events: none;
}
.hero__scroll-text {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
    opacity: 0.92;
}
.hero__scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: heroScrollFloat 2.4s ease-in-out infinite;
}
.hero__scroll-line {
    width: 1px;
    height: 34px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.85));
    border-radius: 1px;
}
.hero__scroll-arrow {
    margin-top: -2px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
    opacity: 0.95;
}
@keyframes heroScrollFloat {
    0%, 100% { transform: translateY(0); opacity: 0.85; }
    50% { transform: translateY(7px); opacity: 1; }
}

/* ============ HAKKIMIZDA ============ */
.about {
    position: relative;
    padding: 7rem 0 5rem;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, var(--cream) 65%, var(--cream) 100%);
}
.about::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 70% at 0% 50%, rgba(233, 249, 239, 0.45), transparent 70%),
        radial-gradient(circle at 85% 20%, rgba(184, 146, 67, 0.05), transparent 40%);
    pointer-events: none;
}
.about::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(to bottom, transparent, var(--cream));
    z-index: 1;
    pointer-events: none;
}
.about__visual {
    position: absolute;
    top: 0;
    right: 0;
    width: min(62vw, 920px);
    height: 100%;
    z-index: 0;
    pointer-events: none;
}
.about__visual img,
.about__visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
    transition: transform 0.15s linear, opacity 0.9s var(--ease);
    -webkit-mask-image:
        linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.25) 16%, #000 40%),
        linear-gradient(to bottom, #000 0%, #000 68%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
        linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.25) 16%, #000 40%),
        linear-gradient(to bottom, #000 0%, #000 68%, transparent 100%);
    mask-composite: intersect;
}
.about__visual-img--night {
    position: absolute;
    inset: 0;
    opacity: 0;
}
.about__visual-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(125deg, rgba(255,255,255,0.4) 0%, transparent 40%, transparent 65%, rgba(250,248,244,0.5) 100%);
}
.about__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: 480px;
}
.about__content {
    max-width: 560px;
    padding: 2rem 0;
}
.about__eyebrow {
    display: block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.76rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
}
.about__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.85rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.18;
    margin: 0;
}
.about__divider {
    display: block;
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--green));
    margin: 1.15rem 0 1.4rem;
    border-radius: 2px;
}
.about__lead {
    color: var(--text);
    font-size: 1.06rem;
    line-height: 1.75;
    margin-bottom: 1.8rem;
}
.about__lead p { margin: 0 0 0.85em; }
.about__lead p:last-child { margin-bottom: 0; }
.about__lead ul { margin: 0 0 0.85em; padding-left: 1.15rem; }
.about__lead li { margin-bottom: 0.35em; }
.about__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 1.2rem;
    margin-bottom: 0;
    list-style: none;
}
.about__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-weight: 500;
    color: var(--ink-2);
    font-size: 0.94rem;
    padding: 0.75rem 0.85rem;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: var(--radius-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.about__list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(20, 32, 26, 0.07);
}
.about__check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    border-radius: 50%;
    margin-top: 1px;
}

/* ============ HİZMETLER ============ */
.services {
    padding: 4rem 0 5rem;
    margin-top: -1px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}
.services::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 90% 45% at 50% 0%, rgba(233, 249, 239, 0.55), transparent 65%);
    pointer-events: none;
}
.services::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #fff);
    pointer-events: none;
}
.services .container { position: relative; z-index: 1; }
.services__head { text-align: center; margin-bottom: 3rem; }
.services__eyebrow {
    display: block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.76rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.services__title {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
}
.services__divider {
    display: block;
    width: 52px;
    height: 2px;
    background: var(--gold);
    margin: 1.15rem auto 0;
    border-radius: 2px;
}
.services__carousel-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 -12px;
}
.services__carousel {
    flex: 1;
    overflow: hidden;
    padding: 0.5rem 0 1rem;
    container-type: inline-size;
}
.services__track {
    display: flex;
    align-items: stretch;
    gap: 1.5rem;
    transition: transform 0.65s var(--ease);
    will-change: transform;
}
.service-card {
    flex: 0 0 calc((100cqw - 4.5rem) / 4);
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(20, 32, 26, 0.12);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
    background: transparent;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(20, 32, 26, 0.18);
}
.service-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    flex-shrink: 0;
    background: #f0f4f1;
}
.service-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease);
}
.service-card:hover .service-card__image img { transform: scale(1.05); }
.service-card__bar {
    background: linear-gradient(135deg, var(--green-dark), var(--green));
    padding: 0.65rem 0.75rem;
    height: 72px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-card__label {
    margin: 0;
    padding: 0;
    text-align: center;
    color: #fff;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1.28;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    word-break: break-word;
    hyphens: auto;
}
.service-card--logo .service-card__image img {
    object-fit: contain;
    background: linear-gradient(145deg, #1a3028, #0f1f18);
    padding: 1.6rem;
}
.services__arrow {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: background 0.25s, color 0.25s, transform 0.25s, border-color 0.25s;
}
.services__arrow:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
    transform: scale(1.06);
}
.services__arrow:disabled {
    opacity: 0.35;
    cursor: default;
    transform: none;
}

/* Mobil hizmetler alt kontrol */
.services__mobile-foot {
    display: none;
}

/* ============ HABERLER & BLOG ============ */
.blog {
    position: relative;
    padding: 4rem 0 5.5rem;
    margin-top: -1px;
    background: #fff;
    overflow: hidden;
}
.blog::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 130px;
    background: linear-gradient(to bottom, var(--cream), #fff);
    pointer-events: none;
}
.blog::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--mint));
    pointer-events: none;
}
.blog > .container { position: relative; z-index: 1; }
.blog__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.blog-card {
    display: flex; flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.blog-card__media {
    position: relative;
    aspect-ratio: 16 / 10;
    display: flex; align-items: flex-end;
    padding: 1.1rem;
    background: linear-gradient(135deg, var(--green), var(--green-deep));
    overflow: hidden;
}
.blog-card:nth-child(2) .blog-card__media { background: linear-gradient(135deg, #3aa94c, var(--green-dark)); }
.blog-card:nth-child(3) .blog-card__media { background: linear-gradient(135deg, var(--duayen-green-1), var(--duayen-green-2)); }
.blog-card__media::before {
    content: ""; position: absolute; inset: 0;
    background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.05) 0 12px, transparent 12px 24px);
}
.blog-card__photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.blog-card__media--photo::before {
    background: linear-gradient(to top, rgba(15, 28, 20, 0.45), rgba(15, 28, 20, 0.08) 55%, transparent);
    background-image: none;
}
.blog-card__icon { position: absolute; top: 1.1rem; right: 1.1rem; color: rgba(255, 255, 255, 0.85); }
.blog-card__cat {
    position: relative; z-index: 1;
    display: inline-flex; align-items: center;
    background: rgba(255, 255, 255, 0.95);
    color: var(--green-dark);
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.4rem 0.95rem; border-radius: 100px;
}
.blog-card__body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__date {
    display: inline-flex; align-items: center; gap: 0.45rem;
    font-size: 0.82rem; color: var(--muted); margin-bottom: 0.7rem;
}
.blog-card__date svg { color: var(--green); }
.blog-card__title { font-size: 1.18rem; font-weight: 700; color: var(--ink); line-height: 1.38; margin-bottom: 0.7rem; }
.blog-card__excerpt { color: var(--muted); font-size: 0.95rem; line-height: 1.65; margin-bottom: 1.3rem; flex: 1; }
.blog-card__more {
    align-self: flex-start;
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--green-dark); font-weight: 600; font-size: 0.92rem;
    transition: gap 0.3s var(--ease), color 0.3s;
}
.blog-card__more:hover { gap: 0.8rem; color: var(--green); }

/* ============ BÜLTEN ============ */
.newsletter {
    margin-top: 3rem;
    background: linear-gradient(135deg, var(--ink), var(--ink-2));
    border-radius: var(--radius);
    padding: 2.4rem 2.8rem;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
    box-shadow: 0 20px 50px rgba(20, 32, 26, 0.14);
}
.newsletter__text h3 { color: #fff; font-size: 1.45rem; font-weight: 700; margin-bottom: 0.3rem; }
.newsletter__text p { color: rgba(255, 255, 255, 0.7); font-size: 0.97rem; }
.newsletter__form { display: flex; gap: 0.7rem; flex: 1; min-width: 280px; max-width: 460px; }
.newsletter__form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: #fff; font-family: inherit; font-size: 0.95rem;
}
.newsletter__form input::placeholder { color: rgba(255, 255, 255, 0.55); }
.newsletter__form input:focus { outline: none; border-color: var(--green); background: rgba(255, 255, 255, 0.12); }
.newsletter__feedback { text-align: center; color: var(--green-dark); font-weight: 600; margin-top: 1rem; min-height: 1.2rem; }

/* ============ NEDEN BİZ ============ */
.why {
    position: relative;
    padding: 4.5rem 0 5.5rem;
    margin-top: -1px;
    background: linear-gradient(180deg, var(--mint) 0%, #f2f6f4 50%, #ecefe9 100%);
    overflow: hidden;
}
.why::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 85% 55% at 50% 0%, rgba(233, 249, 239, 0.65), transparent 62%),
        radial-gradient(circle at 12% 85%, rgba(46, 158, 63, 0.08), transparent 45%);
    pointer-events: none;
}
.why::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--light));
    pointer-events: none;
}
.why > .container { position: relative; z-index: 1; }
.why__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; margin-bottom: 3rem; }
.why__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 2.2rem 2.5rem;
    background: #fff;
    border: 1px solid rgba(46, 158, 63, 0.12);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}
.why__cta-text h3 {
    font-size: clamp(1.35rem, 2.5vw, 1.75rem);
    font-weight: 700;
    color: var(--green-deep);
    margin-bottom: 0.45rem;
}
.why__cta-text p {
    max-width: 620px;
    color: var(--muted);
    font-size: 0.97rem;
}
.why__cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    flex-shrink: 0;
}
.why-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.why-card:hover {
    transform: translateY(-6px);
    background: #fff;
    border-color: rgba(46, 158, 63, 0.45);
    box-shadow: var(--shadow);
}
.why-card__icon {
    width: 60px; height: 60px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(46, 158, 63, 0.16), rgba(31, 122, 52, 0.1));
    color: var(--green-dark);
    margin-bottom: 1.3rem;
    transition: background 0.3s, color 0.3s;
}
.why-card:hover .why-card__icon {
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
}
.why-card h3 { font-size: 1.12rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--ink); }
.why-card p { color: var(--muted); font-size: 0.93rem; }

/* ============ TEKLİF FORMU ============ */
.quote {
    position: relative;
    padding: 4.5rem 0 5.5rem;
    background: var(--light);
    overflow: hidden;
}
.quote::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to bottom, transparent, #e4e8e5);
    pointer-events: none;
}
.quote > .container { position: relative; z-index: 1; }
.quote__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3.5rem; align-items: start; }
.quote__info .section__title { margin: 0.4rem 0 1rem; }
.quote__sub { color: var(--muted); margin-bottom: 2rem; }
.quote__contact { display: grid; gap: 1.3rem; }
.quote__contact li { display: flex; gap: 0.9rem; align-items: flex-start; color: var(--text); font-size: 0.97rem; }
.quote__contact svg { color: var(--green); flex-shrink: 0; margin-top: 3px; }
.quote__contact a:hover { color: var(--green-dark); }

.quote__form { background: #fff; padding: 2.5rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { margin-bottom: 1.2rem; display: flex; flex-direction: column; }
.form-group label { font-weight: 500; font-size: 0.88rem; margin-bottom: 0.5rem; color: var(--ink); }
.form-group input, .form-group textarea, .form-group select {
    font-family: inherit; font-size: 1rem;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    background: var(--light);
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    resize: vertical;
}
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236e7a74' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.4rem;
    cursor: pointer;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    outline: none; background: #fff;
    border-color: var(--green);
    box-shadow: 0 0 0 4px rgba(46, 158, 63, 0.12);
}
.form-group input[type="file"] {
    padding: 0.55rem 0.7rem;
    background: #fff;
    cursor: pointer;
}
.form-feedback { text-align: center; margin-top: 1rem; font-weight: 600; color: var(--green-dark); min-height: 1.2rem; }

/* ============ İÇ SAYFA / İNSAN KAYNAKLARI ============ */
body.page-inner {
    padding-top: 110px;
}
.page-hero {
    position: relative;
    padding: 2.4rem 0 2.2rem;
    background: linear-gradient(135deg, var(--duayen-green-1), var(--duayen-green-2));
    overflow: hidden;
}
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 88% 20%, rgba(184, 146, 67, 0.22), transparent 42%),
        radial-gradient(circle at 8% 80%, rgba(46, 158, 63, 0.18), transparent 46%);
    pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__eyebrow {
    display: block;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.76rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    margin-bottom: 0.55rem;
}
.page-hero h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 0.55rem;
}
.page-hero p {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
    margin: 0;
}

.contact-visual {
    position: relative;
    min-height: min(68vh, 680px);
    background: #0c1410;
    overflow: hidden;
}
.contact-visual img {
    width: 100%;
    height: min(68vh, 680px);
    object-fit: cover;
    object-position: center 22%;
    display: block;
}
.contact-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(8, 14, 12, 0.82) 0%, rgba(8, 14, 12, 0.18) 42%, rgba(8, 14, 12, 0.28) 100%);
    pointer-events: none;
}
.contact-visual__copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    padding: 0 0 2.8rem;
}
.contact-visual__copy h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(2.2rem, 4.5vw, 3.3rem);
    color: #fff;
    margin: 0 0 0.45rem;
}
.contact-visual__copy p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}
.contact-map {
    width: 100%;
    height: 340px;
    border: 0;
    border-radius: var(--radius);
    margin-top: 1.8rem;
    filter: grayscale(0.15);
}
.contact-banner {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}
.contact-banner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center 22%;
    display: block;
}
.contact-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 14, 12, 0.82) 0%, rgba(8, 14, 12, 0.35) 55%, rgba(8, 14, 12, 0.12) 100%);
}
.contact-banner__copy {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    color: #fff;
}
.contact-banner__copy h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    margin: 0 0 0.6rem;
}
.contact-banner__copy p {
    max-width: 460px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 1.4rem;
}

.hr {
    padding: 4rem 0 5rem;
    background: linear-gradient(180deg, var(--cream) 0%, #fff 55%, var(--light) 100%);
    position: relative;
}
.hr__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
    gap: 2.6rem;
    align-items: start;
}
.hr__intro {
    margin-bottom: 2.2rem;
}
.hr__intro h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.55rem, 2.6vw, 2rem);
    color: var(--ink);
    margin: 0 0 0.35rem;
}
.hr__intro-sub {
    color: var(--gold-dark);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    margin-bottom: 1.15rem;
}
.hr__policy {
    display: grid;
    gap: 0.7rem;
}
.hr__policy li {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    color: var(--ink-2);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}
.hr__policy-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: #fff;
    margin-top: 1px;
}
.hr__jobs-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
    margin: 2rem 0 1rem;
}
.hr__jobs {
    display: grid;
    gap: 0.75rem;
}
.job-card {
    width: 100%;
    text-align: left;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 1rem 1.15rem;
    cursor: pointer;
    font-family: inherit;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}
.job-card:hover,
.job-card.is-active {
    transform: translateY(-2px);
    border-color: rgba(46, 158, 63, 0.45);
    box-shadow: var(--shadow);
}
.job-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.28rem;
}
.job-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
}
.job-card__tag {
    flex-shrink: 0;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--mint);
    padding: 0.22rem 0.55rem;
    border-radius: 100px;
}
.job-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}
.hr__form {
    background: #fff;
    padding: 2.2rem 2.2rem 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    position: sticky;
    top: 128px;
}
.hr__form h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.55rem;
    color: var(--ink);
    margin: 0 0 0.35rem;
}
.hr__form-lead {
    color: var(--muted);
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}

.blog__actions {
    display: flex;
    justify-content: center;
    margin: 2.4rem 0 0;
}
.blog-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 2.6rem 1.4rem;
    text-align: center;
    color: var(--muted);
    background: #fff;
    border: 1px dashed var(--line);
    border-radius: 14px;
    font-size: 1.05rem;
    font-weight: 500;
}
.page-content {
    padding: 3.6rem 0 5rem;
    background: linear-gradient(180deg, var(--cream) 0%, #fff 48%, var(--light) 100%);
}
.page-content__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.7fr);
    gap: 2.6rem;
    align-items: start;
}
.page-prose {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.2rem 2.4rem;
    box-shadow: var(--shadow-sm);
}
.page-prose h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(1.45rem, 2.4vw, 1.9rem);
    color: var(--ink);
    margin: 0 0 1rem;
}
.page-prose h3 {
    font-size: 1.12rem;
    color: var(--ink);
    margin: 1.6rem 0 0.7rem;
}
.page-prose p {
    color: var(--text);
    margin-bottom: 1rem;
    font-size: 1.02rem;
    line-height: 1.8;
}
.page-prose ul {
    display: grid;
    gap: 0.65rem;
    margin: 1.1rem 0 1.4rem;
}
.page-prose li {
    position: relative;
    padding-left: 1.35rem;
    color: var(--ink-2);
    font-weight: 500;
}
.page-prose li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
}
.page-visual {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.4rem;
    box-shadow: var(--shadow);
}
.page-visual img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}
.page-side {
    position: sticky;
    top: 128px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.4rem 1.35rem;
    box-shadow: var(--shadow-sm);
}
.page-side h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--ink);
    margin: 0 0 0.9rem;
}
.page-side a {
    display: block;
    padding: 0.62rem 0.7rem;
    border-radius: 10px;
    color: var(--ink-2);
    font-size: 0.9rem;
    font-weight: 500;
}
.page-side a:hover,
.page-side a.is-current {
    background: var(--mint);
    color: var(--green-dark);
}
.page-cta {
    margin-top: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.docs-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.1rem;
    margin: 1.4rem 0 0.4rem;
}
.docs-card {
    margin: 0;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.docs-card__img {
    display: block;
    position: relative;
    aspect-ratio: 4 / 3;
    background: #f4f1ea;
    cursor: zoom-in;
}
.docs-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.docs-card figcaption {
    padding: 0.75rem 0.85rem 0.9rem;
}
.docs-card figcaption strong {
    display: block;
    font-size: 0.92rem;
    color: var(--ink);
}
.docs-card figcaption span {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8rem;
    color: var(--text);
}
.docs-card__zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(20, 32, 26, 0.72);
    color: #fff;
    pointer-events: none;
}
.doc-zoom {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.4rem;
    background: rgba(10, 16, 14, 0.88);
    backdrop-filter: blur(8px);
}
.doc-zoom[hidden] { display: none !important; }
.doc-zoom__img {
    max-width: min(1100px, 94vw);
    max-height: min(86vh, 900px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    background: #fff;
}
.doc-zoom__cap {
    position: absolute;
    left: 50%;
    bottom: 1.1rem;
    transform: translateX(-50%);
    max-width: 90vw;
    color: #fff;
    font-size: 0.92rem;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}
.doc-zoom__close,
.doc-zoom__nav {
    position: absolute;
    border: 0;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    display: grid;
    place-items: center;
}
.doc-zoom__close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.7rem;
    line-height: 1;
}
.doc-zoom__nav {
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
}
.doc-zoom__nav--prev { left: 14px; }
.doc-zoom__nav--next { right: 14px; }
.doc-zoom__close:hover,
.doc-zoom__nav:hover { background: var(--gold); }
.doc-zoom__nav[hidden] { display: none !important; }
body.doc-zoom-open { overflow: hidden; }
@media (max-width: 768px) {
    .doc-zoom { padding: 3.4rem 0.5rem 3.8rem; }
    .doc-zoom__img { max-height: 72vh; }
    .doc-zoom__nav { width: 38px; height: 38px; }
    .doc-zoom__nav--prev { left: 6px; }
    .doc-zoom__nav--next { right: 6px; }
    .doc-zoom__close { top: 10px; right: 10px; width: 40px; height: 40px; }
}
.article {
    max-width: 760px;
    margin: 0 auto;
}
.article__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.8rem 1.1rem;
    margin-bottom: 1.4rem;
    color: var(--muted);
    font-size: 0.9rem;
}
.article__meta svg { color: var(--green); }
.svc-grid,
.blog-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
}
.svc-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    color: inherit;
    transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}
.svc-card img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: cover;
}
.svc-card__body { padding: 1.2rem 1.25rem 1.35rem; }
.svc-card h3 {
    font-size: 1.08rem;
    color: var(--ink);
    margin: 0 0 0.45rem;
}
.svc-card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}
a.service-card {
    color: inherit;
    text-decoration: none;
}
.blog-card--hijyen .blog-card__media { background: linear-gradient(135deg, var(--green), var(--green-deep)); }
.blog-card--beslenme .blog-card__media { background: linear-gradient(135deg, #3aa94c, var(--green-dark)); }
.blog-card--catering .blog-card__media { background: linear-gradient(135deg, var(--duayen-green-1), var(--duayen-green-2)); }
.blog-card--uretim .blog-card__media { background: linear-gradient(135deg, #2c6b45, #163826); }
.blog-card--guvenlik .blog-card__media { background: linear-gradient(135deg, #3d7a4a, #1a3d28); }
.blog-card--ramazan .blog-card__media { background: linear-gradient(135deg, #c9a24f, #6b4e1e); }

/* ============ FOOTER ============ */
.footer {
    position: relative;
    margin-top: -1px;
    background: linear-gradient(180deg, #e4e8e5 0%, #eef1ef 25%, #e2e6e3 100%);
    color: var(--text);
    padding-top: 4.5rem;
    overflow: hidden;
}
.footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(233, 249, 239, 0.45), transparent 58%),
        radial-gradient(circle at 90% 90%, rgba(46, 158, 63, 0.07), transparent 45%);
    pointer-events: none;
}
.footer .container { position: relative; z-index: 1; }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
.footer__logo { height: 52px; width: auto; margin-bottom: 1.2rem; }
.footer__about { font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.4rem; color: var(--muted); }
.footer__social { display: flex; gap: 0.7rem; }
.footer__social a {
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(20, 32, 26, 0.06); color: var(--ink); border-radius: 50%;
    transition: background 0.25s, transform 0.25s, color 0.25s;
}
.footer__social a:hover { background: var(--green); color: #fff; transform: translateY(-3px); }
.footer__title { color: var(--ink); font-size: 1.05rem; margin-bottom: 1.2rem; }
.footer__links li, .footer__contact li { margin-bottom: 0.7rem; font-size: 0.92rem; color: var(--muted); }
.footer__links a:hover, .footer__contact a:hover { color: var(--green-dark); padding-left: 4px; transition: padding 0.2s; }
.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.45;
}
.footer__contact li::before {
    content: "";
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    margin-top: 1px;
    border-radius: 50%;
    background-color: #e2b15b;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 16px;
}
.footer__contact li:nth-child(1)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
}
.footer__contact li:nth-child(2)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6 19.79 19.79 0 0 1-3.07-8.67A2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.36 1.9.7 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.34 1.85.57 2.81.7A2 2 0 0 1 22 16.92z'/%3E%3C/svg%3E");
}
.footer__contact li:nth-child(3)::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='m22 7-10 5L2 7'/%3E%3C/svg%3E");
}
.footer__contact a:hover { padding-left: 0; }
.footer__alt-logo {
    display: block;
    margin-top: 1.15rem;
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.footer__bottom { border-top: 1px solid rgba(20, 32, 26, 0.1); padding: 1.4rem 0; text-align: center; font-size: 0.87rem; color: var(--muted); }

/* ============ GECE MODU TOGGLE ============ */
.theme-toggle {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9980;
    color: #fff;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    box-shadow: 0 10px 28px rgba(184, 146, 67, 0.45);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.35s var(--ease);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    overflow: hidden;
}
.theme-toggle:hover { transform: scale(1.08); }
.theme-toggle__icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.45s var(--ease), opacity 0.35s var(--ease);
}
.theme-toggle__icon--sun {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}
.theme-toggle__icon--moon {
    opacity: 0;
    transform: rotate(-70deg) scale(0.5);
}
[data-theme="dark"] .theme-toggle {
    background: linear-gradient(135deg, #2a3f68, #1a2848);
    box-shadow: 0 10px 28px rgba(60, 90, 160, 0.45);
}
[data-theme="dark"] .theme-toggle__icon--sun {
    opacity: 0;
    transform: rotate(70deg) scale(0.5);
}
[data-theme="dark"] .theme-toggle__icon--moon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}
@keyframes themeGlow {
    0%, 100% { box-shadow: 0 10px 28px rgba(184, 146, 67, 0.45); }
    50% { box-shadow: 0 10px 36px rgba(184, 146, 67, 0.62); }
}
.theme-toggle { animation: themeGlow 3s ease-in-out infinite; }
[data-theme="dark"] .theme-toggle {
    animation-name: themeGlowDark;
}
@keyframes themeGlowDark {
    0%, 100% { box-shadow: 0 10px 28px rgba(60, 90, 160, 0.4); }
    50% { box-shadow: 0 10px 36px rgba(100, 140, 220, 0.55); }
}

/* ============ REVEAL ANİMASYON ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
    .service-card { flex: 0 0 calc((100cqw - 3rem) / 3); }
}

@media (max-width: 992px) {
    .about {
        display: flex;
        flex-direction: column;
        padding-top: 3.8rem;
    }
    .about__visual {
        position: relative;
        order: 0;
        width: 100%;
        height: 300px;
        margin-bottom: 0;
    }
    .about__visual img {
        -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 88%, transparent 100%);
        mask-image: linear-gradient(to bottom, transparent 0%, #000 20%, #000 88%, transparent 100%);
    }
    .about__inner { order: 1; min-height: 0; }
    .about__content { max-width: none; padding: 2rem 0 0; }
    .why__grid { grid-template-columns: repeat(2, 1fr); }
    .blog__grid { grid-template-columns: repeat(2, 1fr); }
    .blog-card:nth-child(3) { grid-column: 1 / -1; }
    .blog-card:nth-child(3) .blog-card__media { aspect-ratio: 21 / 6; }
    .quote__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hr__layout { grid-template-columns: 1fr; gap: 2.2rem; }
    .hr__form { position: static; }
    .page-content__grid { grid-template-columns: 1fr; }
    .page-side { position: static; }
    .svc-grid,
    .blog-list { grid-template-columns: repeat(2, 1fr); }
    .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    body {
        padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    }
    body.page-inner {
        padding-top: 0;
    }

    /* --- Üst bar & header gizle --- */
    .topbar,
    .header {
        display: none !important;
    }

    /* --- Mobil alt nav (floating pill) --- */
    .mobilenav {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
        z-index: 9999;
        width: 100%;
        padding: 0 1rem;
        background: transparent;
        border: none;
        box-shadow: none;
        pointer-events: none;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    .mobilenav__dock {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.2rem;
        width: fit-content;
        max-width: 100%;
        margin: 0 auto;
        padding: 0.42rem 0.5rem;
        background: rgba(255, 255, 255, 0.98);
        border: 1px solid rgba(20, 32, 26, 0.08);
        border-radius: 999px;
        box-shadow:
            0 10px 36px rgba(20, 32, 26, 0.14),
            0 2px 8px rgba(20, 32, 26, 0.06);
        -webkit-backdrop-filter: blur(14px);
        backdrop-filter: blur(14px);
        pointer-events: auto;
        touch-action: manipulation;
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
    }
    .mobilenav__item {
        display: block;
        position: relative;
        z-index: 1;
        border: none;
        background: none;
        padding: 0;
        margin: 0;
        cursor: pointer;
        text-decoration: none;
        color: var(--muted);
        font-family: inherit;
        -webkit-tap-highlight-color: rgba(46, 158, 63, 0.12);
        touch-action: manipulation;
        -webkit-appearance: none;
        appearance: none;
    }
    .mobilenav__pill {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        min-height: 44px;
        min-width: 44px;
        padding: 0.5rem 0.72rem;
        border-radius: 999px;
        pointer-events: none;
        transition:
            gap 0.38s var(--ease),
            padding 0.38s var(--ease),
            background 0.32s var(--ease),
            color 0.32s var(--ease);
    }
    .mobilenav__svg {
        flex-shrink: 0;
        display: block;
    }
    .mobilenav__text {
        display: block;
        max-width: 0;
        opacity: 0;
        overflow: hidden;
        white-space: nowrap;
        font-size: 0.82rem;
        font-weight: 600;
        letter-spacing: 0.01em;
        transition:
            max-width 0.38s var(--ease),
            opacity 0.28s var(--ease),
            margin 0.38s var(--ease);
    }
    .mobilenav__item.is-active .mobilenav__pill {
        gap: 0.45rem;
        padding: 0.5rem 0.95rem 0.5rem 0.72rem;
    }
    .mobilenav__item.is-active .mobilenav__text {
        max-width: 88px;
        opacity: 1;
    }
    .mobilenav__item[data-nav="home"].is-active .mobilenav__pill {
        background: rgba(46, 158, 63, 0.14);
        color: var(--green-dark);
    }
    .mobilenav__item[data-nav="search"].is-active .mobilenav__pill {
        background: rgba(184, 146, 67, 0.16);
        color: var(--gold-dark);
    }
    .mobilenav__item[data-nav="menu"].is-active .mobilenav__pill {
        background: rgba(46, 158, 63, 0.1);
        color: var(--green-dark);
    }
    .mobilenav__item:active .mobilenav__pill {
        transform: scale(0.97);
    }

    /* --- Mobil arama paneli --- */
    .mobile-search {
        position: fixed;
        inset: 0;
        z-index: 9500;
        pointer-events: none;
        display: none;
    }
    .mobile-search.is-open {
        display: block;
        pointer-events: auto;
    }
    .mobile-search__backdrop {
        position: absolute;
        inset: 0;
        background: rgba(20, 32, 26, 0.42);
        opacity: 0;
        transition: opacity 0.32s var(--ease);
    }
    .mobile-search.is-open .mobile-search__backdrop {
        opacity: 1;
    }
    .mobile-search__panel {
        position: absolute;
        left: 1rem;
        right: 1rem;
        bottom: calc(5.5rem + env(safe-area-inset-bottom, 0px));
        background: #fff;
        border-radius: 18px;
        padding: 0.85rem 0.9rem 0.65rem;
        box-shadow: 0 16px 48px rgba(20, 32, 26, 0.2);
        transform: translateY(16px);
        opacity: 0;
        transition: transform 0.36s var(--ease), opacity 0.32s var(--ease);
    }
    .mobile-search.is-open .mobile-search__panel {
        transform: translateY(0);
        opacity: 1;
    }
    .mobile-search__head {
        display: flex;
        align-items: center;
        gap: 0.55rem;
        padding-bottom: 0.65rem;
        border-bottom: 1px solid var(--line);
        color: var(--muted);
    }
    .mobile-search__head input {
        flex: 1;
        min-width: 0;
        border: none;
        outline: none;
        font: inherit;
        font-size: 0.95rem;
        color: var(--ink);
        background: transparent;
    }
    .mobile-search__head input::placeholder { color: #9aa5a0; }
    .mobile-search__close {
        border: none;
        background: rgba(20, 32, 26, 0.06);
        width: 30px;
        height: 30px;
        border-radius: 50%;
        font-size: 1.35rem;
        line-height: 1;
        color: var(--ink);
        cursor: pointer;
        flex-shrink: 0;
    }
    .mobile-search__list {
        list-style: none;
        margin: 0;
        padding: 0.45rem 0 0;
        max-height: min(42vh, 280px);
        overflow-y: auto;
    }
    .mobile-search__list li + li { margin-top: 0.2rem; }
    .mobile-search__list a,
    .mobile-search__empty {
        display: block;
        padding: 0.72rem 0.55rem;
        border-radius: 12px;
        font-size: 0.92rem;
        color: var(--ink-2);
    }
    .mobile-search__list a:active {
        background: var(--mint);
    }
    .mobile-search__empty {
        color: var(--muted);
        font-size: 0.88rem;
        text-align: center;
        padding: 1rem 0.5rem;
    }

    /* --- Mobil menü (alt sheet) --- */
    .nav {
        position: fixed;
        top: auto;
        bottom: calc(5.75rem + env(safe-area-inset-bottom, 0px));
        left: 0.75rem;
        right: 0.75rem;
        width: auto;
        max-width: none;
        height: auto;
        max-height: min(78vh, 640px);
        background: #fff;
        box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.18);
        padding: 1.25rem 1.25rem 1.5rem;
        border-radius: 20px;
        transform: translateY(calc(100% + 2rem));
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            transform 0.4s var(--ease),
            opacity 0.32s var(--ease),
            visibility 0.32s var(--ease);
        z-index: 9000;
        display: none;
        flex-direction: column;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav.open {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .nav__list { flex-direction: column; gap: 0.3rem; }
    .nav__join-mobile { display: list-item; }
    .nav__item--drop:hover > .nav__sub,
    .nav__item--drop:focus-within > .nav__sub {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
    }
    .nav__parent { width: 100%; }
    .nav__parent .nav__link { flex: 1; }
    .nav__caret { display: inline-flex; }
    .nav__item--drop {
        padding-bottom: 0;
        margin-bottom: 0;
    }
    .nav__sub {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        min-width: 0;
        width: 100%;
        margin: 0.15rem 0 0.35rem;
        padding: 0.2rem 0 0.2rem 0.7rem;
        border: none;
        box-shadow: none;
        background: transparent;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        display: none;
        transition: none;
    }
    .nav__sub::before { display: none; }
    .nav__item--drop.is-open .nav__sub { display: block; }
    .nav__sub a {
        white-space: normal;
        padding: 0.62rem 0.55rem 0.62rem 0.85rem;
        font-size: 0.95rem;
        background: rgba(46, 158, 63, 0.06);
        margin-bottom: 0.28rem;
    }
    .nav__link {
        padding: 0.95rem 1rem;
        border-radius: 12px;
        font-size: 1.05rem;
        display: flex;
        align-items: center;
    }
    .nav__link::after { display: none; }
    .nav__link.active {
        background: linear-gradient(135deg, rgba(46,158,63,0.12), rgba(31,122,52,0.06));
        color: var(--green-dark);
    }
    .nav__contact {
        margin-top: auto;
        padding-top: 1.25rem;
        border-top: 1px solid var(--line);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    .nav__contact a {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        font-size: 0.95rem;
        color: var(--muted);
    }
    .nav__contact svg { color: var(--green); }
    .nav__toggle { display: none !important; }
    .nav__close {
        display: block;
        position: absolute;
        top: 0.85rem;
        right: 1rem;
        font-size: 2rem;
        line-height: 1;
        background: none;
        border: none;
        color: var(--ink);
        cursor: pointer;
    }
    .nav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        display: none;
        transition: 0.3s;
        z-index: 8990;
    }
    .nav-backdrop.show {
        display: block;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    /* --- Hero video tam ekran --- */
    .hero {
        aspect-ratio: auto;
        min-height: 100svh;
        max-height: none;
        background: #000;
    }
    .hero::before { display: none; }
    .hero::after {
        content: "";
        position: absolute;
        inset: auto 0 0;
        height: 38%;
        background: linear-gradient(
            to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.18) 45%,
            rgba(0, 0, 0, 0.52) 100%
        );
        z-index: 3;
        pointer-events: none;
    }
    .hero__video { object-fit: cover; }
    .hero__scroll {
        bottom: calc(6.5rem + env(safe-area-inset-bottom, 0px));
        z-index: 5;
    }

    /* --- Bölüm boşlukları --- */
    .about, .services, .why, .quote, .hr, .page-content { padding: 3.8rem 0; }
    .contact-visual,
    .contact-visual img { height: 46vh; min-height: 280px; }
    .contact-banner img { height: 300px; }
    .contact-map { height: 240px; }
    .section__head { margin-bottom: 2.4rem; }

    /* --- About --- */
    .about__inner { gap: 2.8rem; }
    .about__list { grid-template-columns: 1fr; }

    /* --- Hizmetler: mobil özel tasarım --- */
    .services {
        padding: 3.4rem 0 3.2rem;
        background: linear-gradient(180deg, var(--cream) 0%, #fff 100%);
    }
    .services__head { margin-bottom: 1.75rem; }
    .services__title { font-size: 2rem; }
    .services__carousel-wrap {
        margin: 0 -24px;
        gap: 0;
        padding: 0;
        display: block;
    }
    .services__arrow { display: none !important; }
    .services__carousel {
        width: 100%;
        padding: 0.35rem 1.25rem 0.25rem;
        overflow: hidden;
        min-height: 380px;
    }
    .services__track {
        gap: 0.85rem;
        counter-reset: service-mobile;
        align-items: stretch;
    }
    .service-card {
        flex: 0 0 calc(100vw - 3.5rem);
        width: calc(100vw - 3.5rem);
        max-width: calc(100vw - 3.5rem);
        min-height: 360px;
        position: relative;
        border-radius: 22px;
        box-shadow:
            0 20px 50px rgba(20, 32, 26, 0.16),
            0 4px 14px rgba(20, 32, 26, 0.08);
        scroll-snap-align: center;
        counter-increment: service-mobile;
        transition: box-shadow 0.45s var(--ease);
        opacity: 1;
        transform: none;
    }
    .service-card.reveal {
        opacity: 1;
        transform: none;
    }
    .service-card.is-current {
        transform: scale(1);
        box-shadow:
            0 24px 56px rgba(20, 32, 26, 0.2),
            0 6px 18px rgba(20, 32, 26, 0.1);
    }
    .service-card::after {
        content: counter(service-mobile, decimal-leading-zero);
        position: absolute;
        top: 0.9rem;
        left: 0.9rem;
        z-index: 3;
        min-width: 2rem;
        padding: 0.28rem 0.55rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.92);
        color: var(--green-dark);
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-align: center;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    }
    .service-card::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        border: 1px solid rgba(255, 255, 255, 0.22);
        z-index: 2;
        pointer-events: none;
    }
    .service-card__image {
        width: 100%;
        aspect-ratio: 4 / 4.6;
        min-height: 360px;
        border-radius: 22px;
    }
    .service-card__image img {
        transform: none;
    }
    .service-card__bar {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        height: auto;
        min-height: 0;
        padding: 3.6rem 1.15rem 1.15rem;
        background: linear-gradient(
            to top,
            rgba(15, 31, 24, 0.94) 0%,
            rgba(15, 31, 24, 0.72) 42%,
            rgba(15, 31, 24, 0.18) 72%,
            transparent 100%
        );
        border-radius: 0 0 22px 22px;
    }
    .service-card__label {
        font-size: 1.12rem;
        text-align: left;
        line-height: 1.3;
        -webkit-line-clamp: 2;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    }
    .service-card--logo .service-card__image {
        aspect-ratio: 4 / 4.2;
    }
    .service-card--logo .service-card__image img {
        object-fit: cover;
        padding: 0;
        background: #0f1f18;
    }
    .services__mobile-foot {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.85rem;
        margin-top: 1.1rem;
        padding: 0 1.5rem 0.25rem;
    }
    .services__dots {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        flex-wrap: wrap;
    }
    .services__dot {
        width: 7px;
        height: 7px;
        padding: 0;
        border: none;
        border-radius: 999px;
        background: rgba(20, 32, 26, 0.16);
        cursor: pointer;
        transition:
            width 0.32s var(--ease),
            background 0.32s var(--ease),
            opacity 0.32s var(--ease);
    }
    .services__dot.is-active {
        width: 26px;
        background: linear-gradient(90deg, var(--green), var(--green-dark));
    }
    .services__counter {
        margin: 0;
        font-size: 0.72rem;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--muted);
    }

    /* --- Bülten düzeltme --- */
    .newsletter {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 1.75rem 1.15rem;
        margin-top: 2.5rem;
        gap: 1.25rem;
    }
    .newsletter__text h3 { font-size: 1.25rem; }
    .newsletter__form {
        display: flex;
        flex-direction: column;
        width: 100%;
        min-width: 0;
        max-width: 100%;
        gap: 0.75rem;
    }
    .newsletter__form input {
        width: 100%;
        flex: none;
        box-sizing: border-box;
    }
    .newsletter__form .btn {
        width: 100%;
        justify-content: center;
    }

    .why__grid { grid-template-columns: 1fr; }
    .blog__grid { grid-template-columns: 1fr; }
    .blog-card:nth-child(3) .blog-card__media { aspect-ratio: 16 / 10; }
    .form-row { grid-template-columns: 1fr; }
    .quote__form,
    .hr__form { padding: 1.6rem; }
    .page-prose { padding: 1.5rem 1.2rem; }
    .page-visual img { height: 210px; }
    .svc-grid,
    .blog-list { grid-template-columns: 1fr; }

    /* --- Why CTA --- */
    .why__cta {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    .why__cta-actions { justify-content: center; width: 100%; }
    .why__cta-actions .btn { width: 100%; }

    /* --- Footer --- */
    .footer { padding-top: 3.2rem; }
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 1.8rem 1.5rem; }
    .footer__brand { grid-column: 1 / -1; text-align: center; }
    .footer__brand .footer__social { justify-content: center; }
    .footer__logo { margin-left: auto; margin-right: auto; }

    /* --- WhatsApp --- */
    .whatsapp-float,
    .theme-toggle {
        width: 50px;
        height: 50px;
        bottom: calc(96px + env(safe-area-inset-bottom, 0px));
        right: 14px;
    }
}

@media (max-width: 480px) {
    .footer__inner { grid-template-columns: 1fr; text-align: center; }
    .footer__brand { text-align: center; }
    .footer__social { justify-content: center; }
    .footer__contact { display: inline-block; text-align: left; }
}

/* ============ GECE MODU ============ */
[data-theme="dark"] {
    --ink: #e6f0ea;
    --ink-2: #d2e4d8;
    --text: #b4c5bb;
    --muted: #84988d;
    --line: #24362d;
    --light: #17241e;
    --mint: #122018;
    --cream: #0e1713;
    --white: #101915;
    --shadow-sm: 0 6px 20px rgba(0, 0, 0, 0.35);
    --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 30px 70px rgba(0, 0, 0, 0.55);
    color-scheme: dark;
}

[data-theme="dark"] body {
    background: #0a100e;
    color: var(--text);
}

[data-theme="dark"] .topbar {
    background: #0f1814;
    border-bottom-color: rgba(255, 255, 255, 0.06);
}
[data-theme="dark"] .topbar__item,
[data-theme="dark"] .topbar__tag { color: var(--muted); }
[data-theme="dark"] .tsoc {
    border-color: rgba(255, 255, 255, 0.22);
    color: #d5ddd8;
}
[data-theme="dark"] .tsoc:hover {
    background: var(--green);
    border-color: var(--green);
    color: #fff;
}

[data-theme="dark"] .header.scrolled {
    background: rgba(10, 16, 14, 0.96);
}
[data-theme="dark"] body.header-overlay .header {
    background: transparent;
}

[data-theme="dark"] .about {
    background: linear-gradient(180deg, #0e1713 0%, #0a100e 65%, #0a100e 100%);
}
[data-theme="dark"] .about::before {
    background:
        radial-gradient(ellipse 50% 70% at 0% 50%, rgba(46, 158, 63, 0.08), transparent 70%),
        radial-gradient(circle at 85% 20%, rgba(184, 146, 67, 0.06), transparent 40%);
}
[data-theme="dark"] .about::after {
    background: linear-gradient(to bottom, transparent, #0a100e);
}
[data-theme="dark"] .about__visual-img--day { opacity: 0; }
[data-theme="dark"] .about__visual-img--night { opacity: 1; }
[data-theme="dark"] .about__visual-shine {
    background: linear-gradient(125deg, rgba(46, 158, 63, 0.06) 0%, transparent 45%, rgba(20, 32, 26, 0.15) 100%);
}
[data-theme="dark"] .about__list li {
    background: rgba(21, 32, 25, 0.72);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text);
    backdrop-filter: none;
}
[data-theme="dark"] .about__list li:hover {
    background: rgba(26, 40, 32, 0.9);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

[data-theme="dark"] .services {
    background: linear-gradient(180deg, #0a100e 0%, #0e1713 100%);
}
[data-theme="dark"] .services::before {
    background: radial-gradient(ellipse 90% 45% at 50% 0%, rgba(46, 158, 63, 0.08), transparent 65%);
}
[data-theme="dark"] .services::after {
    background: linear-gradient(to bottom, transparent, #0e1713);
}

[data-theme="dark"] .blog {
    background: #0a100e;
}
[data-theme="dark"] .blog::before {
    background: linear-gradient(to bottom, #0e1713, #0a100e);
    opacity: 1;
}
[data-theme="dark"] .blog::after {
    background: linear-gradient(to bottom, transparent, #0e1713);
    opacity: 1;
}
[data-theme="dark"] .why::before {
    background:
        radial-gradient(ellipse 85% 55% at 50% 0%, rgba(46, 158, 63, 0.1), transparent 62%),
        radial-gradient(circle at 12% 85%, rgba(46, 158, 63, 0.05), transparent 45%);
    opacity: 1;
}
[data-theme="dark"] .why::after {
    background: linear-gradient(to bottom, transparent, #0a100e);
    opacity: 1;
}
[data-theme="dark"] .quote::before {
    opacity: 0.2;
}
[data-theme="dark"] .quote::after {
    background: linear-gradient(to bottom, transparent, #0c1410);
    opacity: 1;
}

[data-theme="dark"] .why {
    background: linear-gradient(180deg, #0e1713 0%, #0a100e 100%);
}
[data-theme="dark"] .quote {
    background: #0a100e;
}

[data-theme="dark"] .blog-card,
[data-theme="dark"] .why-card,
[data-theme="dark"] .quote__form,
[data-theme="dark"] .why__cta {
    background: #152019;
    border-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: none;
}
[data-theme="dark"] .why__cta-text h3 {
    color: var(--ink);
}
[data-theme="dark"] .why__cta-text p {
    color: var(--muted);
}
[data-theme="dark"] .why-card:hover {
    background: #1a2a22;
    border-color: rgba(46, 158, 63, 0.25);
}
[data-theme="dark"] .why-card h3 {
    color: var(--ink);
}
[data-theme="dark"] .blog-card__body {
    background: #152019;
}
[data-theme="dark"] .blog-card__title {
    color: var(--ink);
}
[data-theme="dark"] .blog-empty {
    background: #152019;
    border-color: rgba(255, 255, 255, 0.12);
    color: var(--muted);
}
[data-theme="dark"] .newsletter {
    background: linear-gradient(135deg, #122018, #0f1814);
}
[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea,
[data-theme="dark"] .form-group select,
[data-theme="dark"] .newsletter__form input {
    background: #0f1814;
    border-color: var(--line);
    color: var(--ink);
}
[data-theme="dark"] .form-group input:focus,
[data-theme="dark"] .form-group textarea:focus,
[data-theme="dark"] .form-group select:focus,
[data-theme="dark"] .newsletter__form input:focus {
    background: #152019;
}
[data-theme="dark"] .form-group input[type="file"] {
    background: #0f1814;
}

[data-theme="dark"] .nav__sub {
    background: #152019;
    border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .nav__sub a { color: var(--ink-2); }
[data-theme="dark"] .nav__sub a:hover,
[data-theme="dark"] .nav__sub a.is-current {
    background: rgba(46, 158, 63, 0.14);
    color: #8fd9a0;
}
[data-theme="dark"] .page-content {
    background: linear-gradient(180deg, #0e1713 0%, #0a100e 100%);
}
[data-theme="dark"] .page-prose,
[data-theme="dark"] .page-side,
[data-theme="dark"] .svc-card {
    background: #152019;
    border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .docs-card { background: #152019; border-color: rgba(255, 255, 255, 0.08); }
[data-theme="dark"] .docs-card__img { background: #101714; }
[data-theme="dark"] .doc-zoom__img { background: #101714; }
[data-theme="dark"] .page-prose h2,
[data-theme="dark"] .page-prose h3,
[data-theme="dark"] .page-side h3,
[data-theme="dark"] .svc-card h3 {
    color: var(--ink);
}
[data-theme="dark"] .hr {
    background: linear-gradient(180deg, #0e1713 0%, #0a100e 100%);
}
[data-theme="dark"] .hr__intro h2,
[data-theme="dark"] .hr__jobs-title,
[data-theme="dark"] .hr__form h2,
[data-theme="dark"] .job-card h3 {
    color: var(--ink);
}
[data-theme="dark"] .hr__policy li,
[data-theme="dark"] .job-card,
[data-theme="dark"] .hr__form {
    background: #152019;
    border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .job-card:hover,
[data-theme="dark"] .job-card.is-active {
    background: #1a2a22;
    border-color: rgba(46, 158, 63, 0.28);
}
[data-theme="dark"] .job-card__tag {
    background: rgba(46, 158, 63, 0.16);
    color: #8fd9a0;
}

[data-theme="dark"] .footer {
    background: linear-gradient(180deg, #0c1410 0%, #0a100e 100%);
    color: var(--text);
}
[data-theme="dark"] .footer::before {
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(46, 158, 63, 0.1), transparent 58%),
        radial-gradient(circle at 90% 90%, rgba(46, 158, 63, 0.05), transparent 45%);
}
[data-theme="dark"] .footer__bottom {
    border-top-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .footer__social a {
    background: rgba(255, 255, 255, 0.06);
    color: var(--ink);
}

[data-theme="dark"] .footer__logo {
    filter: brightness(0) invert(1);
    opacity: 0.92;
}
[data-theme="dark"] .footer__links a:hover,
[data-theme="dark"] .footer__contact a:hover {
    color: #8fd9a0;
}

[data-theme="dark"] .mobilenav__dock {
    background: rgba(16, 25, 21, 0.96);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.45);
}
[data-theme="dark"] .mobilenav__item { color: var(--muted); }
[data-theme="dark"] .mobilenav__item.is-active .mobilenav__text { color: var(--ink); }

[data-theme="dark"] .nav.open,
[data-theme="dark"] .mobile-search__panel {
    background: #152019;
    color: var(--text);
}
[data-theme="dark"] .mobile-search__head {
    border-bottom-color: var(--line);
    color: var(--muted);
}
[data-theme="dark"] .services__dot {
    background: rgba(255, 255, 255, 0.15);
}

[data-theme="dark"] .section__title,
[data-theme="dark"] .about__title,
[data-theme="dark"] .services__title,
[data-theme="dark"] .footer__title,
[data-theme="dark"] .about__lead {
    color: var(--ink);
}
[data-theme="dark"] .section__desc,
[data-theme="dark"] .section__eyebrow,
[data-theme="dark"] .about__eyebrow,
[data-theme="dark"] .services__eyebrow {
    color: var(--gold);
}
[data-theme="dark"] .newsletter__feedback {
    color: #8fd9a0;
}
[data-theme="dark"] .form-feedback {
    color: #8fd9a0;
}
[data-theme="dark"] .btn--ghost-dark {
    background: #1a2a22;
    color: #fff;
}
[data-theme="dark"] .btn--ghost-dark:hover {
    background: #22352b;
    color: #fff;
}
