/* =====================================================================
   REKA AGRO — v3  |  Bootstrap 5 uyumlu marka teması
   Renk Paleti: #38B43E · #63C468 · #AFE0AF
   Grid & responsive: Bootstrap  |  İkonlar: Bootstrap Icons
   Bu dosya bootstrap.min.css'ten SONRA yüklenir; marka görünümü buradan gelir.
   ===================================================================== */

/* ─── Tasarım Değişkenleri ─────────────────────────────────────────── */
:root {
    --c1: #38B43E;
    --c2: #63C468;
    --c3: #AFE0AF;
    --c-dark: #1A5920;
    --c-deep: #0D3810;
    --c-pale: #EBF6EB;
    --c-pale2: #F4FBF4;
    --ink: #0F2810;
    --body: #3C5B3E;
    --muted: #698A6B;
    --white: #FFFFFF;
    --line: #CCE8CC;
    --shadow-xs: 0 1px 6px rgba(12, 56, 14, .06);
    --shadow-sm: 0 3px 14px rgba(12, 56, 14, .08);
    --shadow: 0 8px 32px rgba(12, 56, 14, .11);
    --shadow-lg: 0 20px 56px rgba(12, 56, 14, .15);
    --radius: 10px;
    --radius-lg: 16px;
    --maxw: 1200px;
    --header-h: 104px;
    --ff-head: "Poppins", system-ui, "Segoe UI", sans-serif;
    --ff-body: "Inter", system-ui, "Segoe UI", Roboto, sans-serif;
    --t: .26s ease;
}

/* ─── Temel ─────────────────────────────────────────────────────────── */
html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
    font-family: var(--ff-body);
    color: var(--body);
    background: var(--white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

h1, h2, h3, h4 {
    font-family: var(--ff-head);
    color: var(--ink);
    line-height: 1.2;
    font-weight: 700;
}

/* Bootstrap'in .container genişliğini marka ölçüsüne sabitle */
.container {
    max-width: var(--maxw);
    padding-inline: 24px;
}

/* ─── Butonlar (Bootstrap .btn üzerine marka görünümü) ──────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    padding: .78em 1.65em;
    border-radius: 6px;
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .25px;
    transition: all var(--t);
    white-space: nowrap;
    cursor: pointer;
    border: 0;
}

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

    .btn:active {
        transform: translateY(0);
    }

.btn--lg {
    padding: .92em 2.1em;
    font-size: 1.02rem;
}

.btn--block {
    width: 100%;
}

.btn--primary,
.btn--gold {
    background: var(--c1);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(56, 180, 62, .32);
}

    .btn--primary:hover,
    .btn--gold:hover {
        background: var(--c-dark);
        color: var(--white);
        box-shadow: 0 8px 26px rgba(56, 180, 62, .42);
    }

.btn--outline {
    background: transparent;
    color: var(--c1);
    border: 2px solid var(--c1);
}

    .btn--outline:hover {
        background: var(--c1);
        color: var(--white);
    }

.btn--ghost {
    background: rgba(255,255,255,.13);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.42);
    backdrop-filter: blur(6px);
}

    .btn--ghost:hover {
        background: rgba(255,255,255,.24);
        color: #fff;
    }

/* ─── Bölüm Başlıkları ──────────────────────────────────────────────── */
.section-head {
    max-width: 740px;
    margin-bottom: 52px;
}

.section-head--center {
    margin-inline: auto;
    text-align: center;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-head);
    font-weight: 600;
    font-size: .76rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--c1);
    margin-bottom: 14px;
}

    .kicker::before {
        content: "";
        display: block;
        flex: none;
        width: 28px;
        height: 2.5px;
        background: var(--c1);
        border-radius: 2px;
    }

.section-head--center .kicker {
    justify-content: center;
}

    .section-head--center .kicker::before {
        display: none;
    }

.kicker--light {
    color: var(--c3);
}

    .kicker--light::before {
        background: var(--c3);
    }

.section-head h2 {
    font-size: clamp(1.65rem, 3.2vw, 2.5rem);
    margin-bottom: 16px;
    letter-spacing: -.3px;
}

.section-head p {
    font-size: 1.06rem;
    color: var(--body);
}

/* ─── ÜST BAR ───────────────────────────────────────────────────────── */
.topbar {
    background: var(--c-deep);
    color: rgba(255,255,255,.7);
    font-size: .84rem;
}

.topbar__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 16px;
    min-height: 40px;
    flex-wrap: wrap;
}

.topbar__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color var(--t);
}

    .topbar__item i {
        font-size: .92rem;
    }

    .topbar__item:hover {
        color: #fff;
    }

.topbar__item--brand {
    color: #fff;
    font-weight: 600;
}

.topbar__lang {
    display: inline-flex;
    gap: 6px;
    color: rgba(255,255,255,.48);
}

    .topbar__lang a[aria-current="true"] {
        color: var(--c3);
        font-weight: 600;
    }

    .topbar__lang a:hover {
        color: var(--c3);
    }

/* ─── HEADER / BOOTSTRAP NAVBAR ─────────────────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--t);
}

    .header.is-stuck {
        box-shadow: 0 4px 20px rgba(12, 56, 14, .10);
    }

    .header .navbar {
        padding: 0;
        min-height: var(--header-h);
    }

.navbar-brand.brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.brand__logo {
    height: 84px;
    width: auto;
    display: block;
}

.brand__logo--footer {
    filter: brightness(0) invert(1);
    opacity: .9;
}

.navbar .navbar-nav {
    align-items: center;
    gap: 2px;
}

.navbar .nav-link {
    position: relative;
    font-family: var(--ff-head);
    font-weight: 500;
    font-size: .93rem;
    color: var(--body);
    padding: 10px 15px;
    border-radius: 6px;
    transition: color var(--t), background var(--t);
}

    .navbar .nav-link::after {
        content: "";
        position: absolute;
        left: 15px;
        right: 15px;
        bottom: 5px;
        height: 2px;
        background: var(--c1);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform var(--t);
    }

    .navbar .nav-link:hover {
        color: var(--c-dark);
    }

        .navbar .nav-link:hover::after {
            transform: scaleX(1);
        }

    .navbar .nav-link.active {
        color: var(--c1);
        font-weight: 600;
    }

        .navbar .nav-link.active::after {
            transform: scaleX(1);
        }

.navbar .btn--gold {
    margin-left: 10px;
}

.navbar-toggler {
    border: 0;
    padding: 4px 8px;
    font-size: 1.8rem;
    color: var(--c-dark);
    line-height: 1;
    box-shadow: none !important;
}

/* ─── HERO ──────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    min-height: clamp(580px, 88vh, 860px);
    display: flex;
    align-items: center;
    color: #fff;
}

.hero__media {
    position: absolute;
    inset: -6%;
    z-index: -2;
    background-color: var(--c-deep);
    background-image: url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    animation: kenburns 26s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes kenburns {
    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.14) translate(-2%, -1.5%);
    }
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(110deg, rgba(13,56,16,.90) 0%, rgba(22,80,28,.80) 48%, rgba(10,40,12,.86) 100%);
}

.hero__inner {
    padding: 108px 0 110px;
    max-width: 820px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ff-head);
    font-weight: 600;
    letter-spacing: 3px;
    font-size: .77rem;
    color: var(--c3);
    margin-bottom: 26px;
}

    .hero__eyebrow::before {
        content: "";
        display: inline-block;
        flex: none;
        width: 32px;
        height: 2px;
        background: var(--c2);
    }

.hero__title {
    font-size: clamp(2.2rem, 5.6vw, 3.9rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -.5px;
    margin-bottom: 22px;
    line-height: 1.12;
}

    .hero__title span {
        color: var(--c2);
    }

.hero__lead {
    font-size: clamp(1rem, 1.9vw, 1.18rem);
    color: rgba(255,255,255,.88);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 1;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.3);
    color: #fff;
    font-size: 1.35rem;
    animation: bob 2.4s ease-in-out infinite;
}

@keyframes bob {
    0%,100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(9px);
    }
}

/* ─── DEĞERLER ──────────────────────────────────────────────────────── */
.values {
    padding: 92px 0;
    background: var(--white);
}

.value-card {
    height: 100%;
    background: var(--c-pale2);
    border: 1px solid var(--line);
    border-top: 3px solid var(--c1);
    border-radius: var(--radius);
    padding: 40px 30px;
    transition: transform var(--t), box-shadow var(--t);
}

    .value-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
    }

.value-card__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--c1);
    margin-bottom: 22px;
    color: #fff;
    font-size: 1.55rem;
}

.value-card h3 {
    font-size: 1.22rem;
    margin-bottom: 10px;
}

/* ─── İSTATİSTİKLER ─────────────────────────────────────────────────── */
.stats {
    padding: 58px 0;
    position: relative;
    overflow: hidden;
    background: var(--c1);
}

    .stats::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, var(--c-dark) 0%, var(--c1) 50%, var(--c2) 100%);
        background-size: 300% 300%;
        animation: bgPan 14s ease infinite;
    }

@keyframes bgPan {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

.stats::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

.stats .container {
    position: relative;
    z-index: 1;
}

.stat {
    text-align: center;
    padding: 10px 24px;
    border-right: 1px solid rgba(255,255,255,.18);
}

.stat__num {
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: clamp(2.2rem, 4.5vw, 3.2rem);
    color: #fff;
    line-height: 1;
}

.stat__label {
    margin-top: 8px;
    font-size: .91rem;
    color: rgba(255,255,255,.78);
    font-family: var(--ff-head);
}

/* ─── ÜRÜNLER ───────────────────────────────────────────────────────── */
.products {
    padding: 96px 0;
    background: var(--c-pale2);
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xs);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg);
        border-color: var(--c2);
    }

.product-card__art {
    height: 206px;
    overflow: hidden;
    position: relative;
    background: var(--c-pale);
}

    .product-card__art img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s ease;
    }

.product-card:hover .product-card__art img {
    transform: scale(1.06);
}

.product-card__art::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,40,12,.38), transparent 60%);
}

.product-card__body {
    padding: 20px 22px 26px;
    flex: 1 1 auto;
}

.product-card__tag {
    display: inline-block;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: var(--c-dark);
    background: var(--c3);
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.product-card__body h3 {
    font-size: 1.28rem;
    margin-bottom: 6px;
}

.product-card__body p {
    font-size: .95rem;
    color: var(--body);
}

/* ─── ÜRÜN KATEGORİ BLOKLARI (Ürünler sayfası) ──────────────────────── */
.cat-block {
    margin-top: 64px;
    scroll-margin-top: calc(var(--header-h) + 20px);
}

    .cat-block:first-of-type {
        margin-top: 8px;
    }

.cat-head {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px 28px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}

    .cat-head::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -1px;
        width: 64px;
        height: 3px;
        border-radius: 3px;
        background: linear-gradient(90deg, var(--c1), var(--c2));
    }

.cat-head__text {
    max-width: 760px;
}

.cat-head__kicker {
    display: inline-block;
    font-family: var(--ff-head);
    font-size: .74rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--c1);
    margin-bottom: 8px;
}

.cat-head__text h2 {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    margin-bottom: 8px;
}

.cat-head__text p {
    margin: 0;
    color: var(--muted);
    font-size: .98rem;
}

.cat-head__count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    font-family: var(--ff-head);
    font-size: .82rem;
    font-weight: 600;
    color: var(--c-dark);
    background: var(--c-pale);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 16px;
    white-space: nowrap;
}

    .cat-head__count i {
        color: var(--c1);
        font-size: .95rem;
    }

@media (max-width: 575.98px) {
    .cat-block {
        margin-top: 44px;
    }

    .cat-head {
        margin-bottom: 24px;
    }
}

/* ─── HAKKIMIZDA ────────────────────────────────────────────────────── */
.about {
    padding: 96px 0;
    background: var(--white);
}

.about__media {
    position: relative;
}

.about__frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 5 / 4;
    background: var(--c-pale);
}

    .about__frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.about__badge {
    position: absolute;
    right: -16px;
    bottom: -22px;
    background: var(--c1);
    color: #fff;
    border-radius: var(--radius);
    padding: 20px 26px;
    text-align: center;
    box-shadow: var(--shadow);
}

    .about__badge strong {
        display: block;
        font-family: var(--ff-head);
        font-size: 2rem;
        font-weight: 800;
        line-height: 1;
    }

    .about__badge span {
        font-size: .78rem;
        font-weight: 600;
        opacity: .88;
    }

.about__content h2 {
    font-size: clamp(1.6rem, 3.2vw, 2.4rem);
    margin: 14px 0 18px;
}

.about__content p {
    margin-bottom: 14px;
}

.about__list {
    display: grid;
    gap: 13px;
    margin: 24px 0 32px;
}

    .about__list li {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 500;
        color: var(--ink);
    }

    .about__list span {
        display: grid;
        place-items: center;
        width: 24px;
        height: 24px;
        flex: none;
        border-radius: 50%;
        background: var(--c1);
        color: #fff;
        font-size: .8rem;
    }

/* ─── NEDEN BİZ ─────────────────────────────────────────────────────── */
.why {
    padding: 96px 0;
    background: var(--c-pale2);
}

.feature {
    height: 100%;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

    .feature:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
        border-color: var(--c2);
    }

.feature__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--c-pale);
    margin-bottom: 18px;
    color: var(--c1);
    font-size: 1.4rem;
    transition: background var(--t), color var(--t);
}

.feature:hover .feature__icon {
    background: var(--c1);
    color: #fff;
}

.feature h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.feature p {
    font-size: .94rem;
}

/* ─── SÜREÇ ─────────────────────────────────────────────────────────── */
.process {
    padding: 96px 0;
    background: var(--white);
}

.process__steps {
    position: relative;
}

    .process__steps::before {
        content: "";
        position: absolute;
        top: 33px;
        left: 12.5%;
        right: 12.5%;
        height: 2px;
        background: var(--c3);
        z-index: 0;
    }

.step {
    position: relative;
    z-index: 1;
    height: 100%;
    background: var(--c-pale2);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 0 22px 30px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}

    .step:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
        border-color: var(--c2);
    }

.step__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 66px;
    height: 66px;
    margin: -33px auto 22px;
    border-radius: 50%;
    background: var(--c1);
    color: #fff;
    font-family: var(--ff-head);
    font-weight: 800;
    font-size: 1.35rem;
    box-shadow: 0 6px 20px rgba(56,180,62,.32);
    border: 4px solid var(--white);
    transition: background var(--t);
}

.step:hover .step__num {
    background: var(--c-dark);
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.step p {
    font-size: .93rem;
    color: var(--body);
}

/* ─── CTA BANNER ────────────────────────────────────────────────────── */
.cta {
    padding: 72px 0;
    background: var(--c-pale2);
}

.cta__inner {
    background: linear-gradient(115deg, var(--c-dark) 0%, var(--c1) 58%, var(--c2) 100%);
    border-radius: var(--radius-lg);
    padding: 52px clamp(28px, 5vw, 68px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

    .cta__inner::before {
        content: "";
        position: absolute;
        right: -80px;
        top: -80px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(255,255,255,.07);
    }

    .cta__inner::after {
        content: "";
        position: absolute;
        left: -40px;
        bottom: -40px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(0,0,0,.06);
    }

    .cta__inner h2 {
        color: #fff;
        font-size: clamp(1.4rem, 3vw, 2rem);
        margin-bottom: 8px;
        max-width: 560px;
        position: relative;
        z-index: 1;
    }

    .cta__inner p {
        color: rgba(255,255,255,.84);
        max-width: 520px;
        position: relative;
        z-index: 1;
    }

.cta .btn--gold {
    background: #fff;
    color: var(--c-dark);
    box-shadow: 0 6px 20px rgba(0,0,0,.18);
    position: relative;
    z-index: 1;
}

    .cta .btn--gold:hover {
        background: var(--c3);
        color: var(--c-dark);
    }

/* ─── İLETİŞİM ──────────────────────────────────────────────────────── */
.contact {
    padding: 96px 0;
    background: var(--white);
}

.contact__info {
    display: grid;
    gap: 22px;
}

.contact__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__ico {
    width: 48px;
    height: 48px;
    flex: none;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--c1);
    color: #fff;
    font-size: 1.25rem;
}

.contact__item h3 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.contact__item p, .contact__item a {
    color: var(--body);
}

    .contact__item a:hover {
        color: var(--c1);
    }

.contact__form {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

/* Spam honeypot — ekranda ve okuyucuda görünmez; sadece botlar doldurur */
.hp-field {
    position: absolute !important;
    left: -9999px !important;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* Gönderim sırasında buton kilidi */
.contact__form.is-sending button[type="submit"] {
    opacity: .7;
    pointer-events: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact__form label {
    display: block;
    margin-bottom: 16px;
}

    .contact__form label span {
        display: block;
        font-size: .83rem;
        font-weight: 600;
        color: var(--ink);
        margin-bottom: 6px;
    }

.contact__form input, .contact__form select, .contact__form textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--line);
    border-radius: var(--radius);
    background: var(--c-pale2);
    color: var(--ink);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color var(--t), box-shadow var(--t);
}

    .contact__form input:focus, .contact__form select:focus, .contact__form textarea:focus {
        outline: none;
        border-color: var(--c1);
        box-shadow: 0 0 0 3px rgba(56,180,62,.14);
        background: var(--white);
    }

.contact__form textarea {
    resize: vertical;
}

.form-note {
    font-size: .8rem;
    color: var(--muted);
    margin-top: 12px;
    text-align: center;
}

/* ─── FOOTER ────────────────────────────────────────────────────────── */
.footer {
    background: var(--c-dark);
    color: rgba(255,255,255,.65);
    padding-top: 72px;
}

.footer__grid {
    padding-bottom: 52px;
}

.footer__col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 18px;
    font-family: var(--ff-head);
    font-weight: 600;
}

.footer__col ul {
    display: grid;
    gap: 10px;
    font-size: .94rem;
}

.footer__col a {
    transition: color var(--t);
}

    .footer__col a:hover {
        color: var(--c3);
    }

.footer__col--brand p {
    margin: 16px 0 22px;
    font-size: .94rem;
    max-width: 300px;
    line-height: 1.65;
}

.footer__social {
    display: flex;
    gap: 10px;
}

    .footer__social a {
        width: 40px;
        height: 40px;
        display: grid;
        place-items: center;
        border-radius: 8px;
        background: rgba(255,255,255,.1);
        color: #fff;
        font-size: 1.05rem;
        transition: background var(--t), transform var(--t);
    }

        .footer__social a:hover {
            background: var(--c1);
            transform: translateY(-3px);
        }

.footer__contact li {
    margin-bottom: 10px;
    font-size: .94rem;
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,.10);
    padding: 22px 0;
    font-size: .87rem;
    color: rgba(255,255,255,.42);
}

.footer__bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.footer__legal a:hover {
    color: var(--c3);
}

.footer__credit {
    border-top: 1px solid rgba(255,255,255,.07);
    padding: 16px 0;
    text-align: center;
}

.footer__credit-logo {
    height: 32px;
    width: auto;
    opacity: .55;
    transition: opacity var(--t);
    display: inline-block;
}

.footer__credit a:hover .footer__credit-logo {
    opacity: .9;
}

/* ─── YUKARI GİT ────────────────────────────────────────────────────── */
.to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1040;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--c1);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(56,180,62,.40);
    border: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--t);
}

    .to-top.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .to-top:hover {
        background: var(--c-dark);
    }

/* ─── SCROLL REVEAL ─────────────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.2,.6,.2,1), transform .7s cubic-bezier(.2,.6,.2,1);
}

.reveal--left {
    transform: translateX(-36px);
}

.reveal--right {
    transform: translateX(36px);
}

.reveal--scale {
    transform: scale(.94);
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    z-index: 1050;
    background: linear-gradient(90deg, var(--c1), var(--c2));
    transition: width .12s linear;
}

/* ─── RESPONSIVE (Bootstrap dışı ince ayarlar) ─────────────────────── */
@media (max-width: 991.98px) {
    /* Bootstrap navbar açılır menü — marka görünümü */
    .header .navbar-collapse {
        padding-bottom: 12px;
    }

    .navbar .navbar-nav {
        align-items: stretch;
        gap: 0;
        padding-top: 8px;
    }

    .navbar .nav-item {
        border-bottom: 1px solid var(--line);
    }

        .navbar .nav-item:last-child {
            border-bottom: 0;
        }

    .navbar .nav-link {
        padding: 13px 6px;
        font-size: 1.04rem;
    }

        .navbar .nav-link::after {
            display: none;
        }

    .navbar .btn--gold {
        margin: 12px 0 4px;
        width: 100%;
    }

    .process__steps::before {
        display: none;
    }

    .about__media {
        max-width: 500px;
        margin-inline: auto;
    }
}

@media (max-width: 767.98px) {
    :root {
        --header-h: 80px;
    }

    .topbar__item--brand {
        display: none;
    }

    .topbar__meta {
        gap: 14px;
    }

    .topbar__inner {
        justify-content: center;
    }

    .brand__logo {
        height: 60px;
    }

    .values, .products, .about, .why, .process, .contact {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .section-head {
        margin-bottom: 36px;
    }

    .hero__inner {
        padding: 82px 0 90px;
    }

    .cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat {
        border-right: 0;
    }
}

@media (max-width: 575.98px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .about__badge {
        right: 10px;
        bottom: -16px;
        padding: 14px 18px;
    }

    .hero__actions .btn {
        flex: 1 1 auto;
        text-align: center;
    }

    .footer__bottom-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        scroll-behavior: auto !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
