﻿/* ══════════════════════════════════════════════
   GALLARDO GROUP — kurumprofili3.css
   Full mobile-responsive fix
   Keychain form sektorler4.css ile senkronize
   ══════════════════════════════════════════════ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    position: relative;
}

    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('photos/logo.png');
        background-size: 40% auto;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.03;
        z-index: -1;
        pointer-events: none;
    }


/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.hero-banner {
    position: relative;
    height: 60vh;
    min-height: 380px;
    max-height: 580px;
    background: linear-gradient(135deg, #0b326d 0%, #14417d 100%);
    overflow: hidden;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11,50,109,.9) 0%, rgba(20,65,125,.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 2rem 1.5rem;
    width: 100%;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInUp 0.8s ease-out both;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 680px;
    animation: fadeInUp 1s ease-out both;
    line-height: 1.6;
}


/* ══════════════════════════════════════
   STATS SECTION
══════════════════════════════════════ */
.stats-section {
    background: white;
    padding: 3.5rem 1.5rem;
    margin-top: -70px;
    position: relative;
    z-index: 10;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 2.25rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(11,50,109,.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(11,50,109,.1);
}

    .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(11,50,109,.15);
    }

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: #0b326d;
    margin-bottom: 0.4rem;
    line-height: 1;
}

.stat-label {
    font-size: .9rem;
    color: #555;
    font-weight: 500;
    line-height: 1.4;
}


/* ══════════════════════════════════════
   ABOUT SECTION
══════════════════════════════════════ */
.about-section {
    padding: 5rem 1.5rem;
    background: white;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    background: rgba(11,50,109,.1);
    color: #0b326d;
    padding: .45rem 1.4rem;
    border-radius: 25px;
    font-size: .82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #0b326d;
    margin-bottom: .9rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.05rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

    .about-text p {
        font-size: .98rem;
        color: #555;
        line-height: 1.82;
    }

.about-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,.1);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4f8;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
    transition: transform 0.6s ease;
}

.about-image-container:hover .about-image {
    transform: scale(1.04);
}


/* ══════════════════════════════════════
   VISION MISSION SECTION
══════════════════════════════════════ */
.vision-mission-section {
    padding: 5rem 1.5rem;
    background: white;
}

.vision-mission-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 3rem;
}

.vm-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem 2.5rem;
    border-radius: 4px;
    box-shadow: 0 10px 35px rgba(11,50,109,.1);
    transition: all 0.4s ease;
    border-top: 4px solid #0b326d;
    border-left: 4px solid rgba(11,50,109,.2);
    position: relative;
    overflow: hidden;
}

    .vm-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 0;
        background: linear-gradient(180deg, #0b326d, #14417d);
        transition: height 0.4s ease;
    }

    .vm-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 48px rgba(11,50,109,.16);
    }

        .vm-card:hover::before {
            height: 100%;
        }

.vm-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0b326d;
    margin-bottom: 1.75rem;
    letter-spacing: -.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
    line-height: 1.2;
}

    .vm-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 56px;
        height: 3px;
        background: linear-gradient(90deg, #0b326d, #14417d);
        border-radius: 2px;
    }

.vm-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.9;
    text-align: justify;
}


/* ══════════════════════════════════════
   VALUES SECTION
══════════════════════════════════════ */
.values-section {
    padding: 5rem 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.25rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, #0b326d, #14417d);
        transform: scaleX(0);
        transition: transform 0.4s ease;
    }

    .value-card:hover::before {
        transform: scaleX(1);
    }

    .value-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 14px 38px rgba(11,50,109,.15);
    }

.value-icon {
    width: 66px;
    height: 66px;
    background: linear-gradient(135deg, rgba(11,50,109,.1), rgba(20,65,125,.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, #0b326d, #14417d);
    transform: rotate(5deg);
}

.value-icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
    transition: filter 0.3s ease;
}

.value-card:hover .value-icon img {
    filter: brightness(0) invert(1);
}

.value-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: .65rem;
}

.value-description {
    font-size: .93rem;
    color: #666;
    line-height: 1.72;
}


/* ══════════════════════════════════════
   KEYCHAIN FORM
══════════════════════════════════════ */
:root {
    --navy: #0b326d;
    --navy-dark: #071e45;
    --gold: #c8a84b;
    --gold-lt: #e4c97e;
    --gold-dk: #8a6d2f;
    --kc-text: #1a1a2e;
    --muted: #6b7280;
}

.kc-section {
    position: relative;
    padding: 5rem 1.5rem 7rem;
    background: linear-gradient(160deg, #071e45 0%, var(--navy) 55%, #0d3a80 100%);
    overflow: hidden;
}

    .kc-section::before {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
        background: radial-gradient(ellipse 55% 45% at 15% 25%, rgba(200,168,75,.13) 0%, transparent 60%), radial-gradient(ellipse 45% 55% at 85% 75%, rgba(200,168,75,.09) 0%, transparent 60%);
        animation: bgPulse 9s ease-in-out infinite alternate;
    }

@keyframes bgPulse {
    0% {
        opacity: .5
    }

    100% {
        opacity: 1
    }
}

.kc-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.kc-dust {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

    .kc-dust span {
        position: absolute;
        border-radius: 50%;
        background: rgba(200,168,75,.18);
        animation: dustFloat var(--d,12s) ease-in-out infinite var(--dl,0s);
    }

@keyframes dustFloat {
    0%,100% {
        transform: translateY(0) scale(1);
        opacity: .4
    }

    50% {
        transform: translateY(-55px) scale(1.3);
        opacity: .85
    }
}

.kc-eyebrow {
    position: relative;
    z-index: 2;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-lt);
    text-align: center;
    margin-bottom: .4rem;
    opacity: .85;
}

.kc-heading {
    position: relative;
    z-index: 2;
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.15;
}

    .kc-heading em {
        color: var(--gold);
        font-style: normal;
    }

/* ── DESKTOP: Anahtarlık solda, form sağda ── */
.kc-stage {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 110px;
}

.kc-ring-wrap {
    position: relative;
    z-index: 20;
    width: 180px;
    height: 180px;
    margin: 0 auto -58px;
    filter: drop-shadow(0 16px 44px rgba(0,0,0,.55));
    animation: ringBob 4.8s ease-in-out infinite;
    transform-origin: center top;
}

@keyframes ringBob {
    0%,100% {
        transform: rotate(-1.2deg);
    }

    50% {
        transform: rotate(1.2deg) translateY(-11px);
    }
}

.kc-ring-shine {
    position: absolute;
    top: 14%;
    left: 18%;
    width: 38%;
    height: 22%;
    background: radial-gradient(ellipse, rgba(255,255,255,.45) 0%, transparent 70%);
    border-radius: 50%;
    animation: shineFlicker 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shineFlicker {
    0%,100% {
        opacity: .55
    }

    50% {
        opacity: 1
    }
}

/* ── DESKTOP: inline gizle, absolute göster ── */
.kc-key-assembly--inline {
    display: none;
}

.kc-key-assembly--absolute {
    position: absolute;
    top: 0;
    left: -10px;
    z-index: 25;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: assemblyBob 4.8s ease-in-out infinite;
    transform-origin: center top;
}

.kc-heading-row {
    display: block;
}

@keyframes assemblyBob {
    0%,100% {
        transform: rotate(-1.2deg);
    }

    50% {
        transform: rotate(1.2deg) translateY(-11px);
    }
}

.kc-connector {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #f0d87a, #8a6d2f);
    box-shadow: 0 3px 10px rgba(0,0,0,.45), inset 0 1px 3px rgba(255,255,255,.4);
    flex-shrink: 0;
}

.kc-chain {
    width: 10px;
    height: 32px;
    background: linear-gradient(to bottom, #e0c060 0%, #c8a84b 20%, #f0d87a 40%, #c8a84b 60%, #e0c060 80%, #c8a84b 100%);
    border-radius: 5px;
    box-shadow: 2px 0 4px rgba(0,0,0,.3), -1px 0 3px rgba(255,255,255,.15);
    flex-shrink: 0;
}

.kc-key-svg {
    width: 72px;
    flex-shrink: 0;
    filter: drop-shadow(5px 8px 18px rgba(0,0,0,.55));
    animation: keyPendulum 4.8s ease-in-out infinite;
    transform-origin: 36px 0;
}

@keyframes keyPendulum {
    0%,100% {
        transform: rotate(-8deg);
    }

    25% {
        transform: rotate(10deg);
    }

    75% {
        transform: rotate(-4deg);
    }
}

.kc-card {
    position: relative;
    z-index: 10;
    background: #fff;
    border-radius: 26px;
    padding: 5.5rem 2.5rem 2.5rem;
    box-shadow: 0 40px 90px rgba(0,0,0,.38), 0 0 0 1.5px rgba(200,168,75,.22), inset 0 1px 0 rgba(255,255,255,.85);
    animation: cardSway 4.8s ease-in-out infinite;
    transform-origin: top center;
    overflow: hidden;
}

@keyframes cardSway {
    0%,100% {
        transform: rotate(-.5deg);
    }

    50% {
        transform: rotate(.5deg) translateY(4px);
    }
}

.kc-card::before,
.kc-card::after {
    content: '';
    position: absolute;
    top: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%, #ddb84a, #7a5d20);
    box-shadow: 0 2px 5px rgba(0,0,0,.35), inset 0 1px 2px rgba(255,255,255,.3);
}

.kc-card::before {
    left: 24px;
}

.kc-card::after {
    right: 24px;
}

.kc-pierce-shadow {
    position: absolute;
    top: 112px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 14px;
    background: linear-gradient(to bottom, rgba(0,0,0,.16), transparent);
    border-radius: 0 0 50% 50%;
    pointer-events: none;
    z-index: 25;
}

.kc-form-title {
    font-size: 1.45rem;
    font-weight: 700;
    color: var(--navy-dark);
    text-align: center;
    margin-bottom: .3rem;
    line-height: 1.3;
}

.kc-form-sub {
    text-align: center;
    color: var(--muted);
    font-size: .85rem;
    margin-bottom: 1.75rem;
    line-height: 1.55;
}

.kc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

    .kc-grid .fw {
        grid-column: 1 / -1;
    }

.kc-field {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

    .kc-field label {
        font-size: .7rem;
        font-weight: 600;
        color: var(--navy);
        text-transform: uppercase;
        letter-spacing: .9px;
    }

.kc-input {
    padding: .78rem 1rem;
    border: 2px solid #e6eaf3;
    border-radius: 11px;
    font-family: inherit;
    font-size: max(.92rem, 16px);
    color: var(--kc-text);
    background: #f7f9fc;
    transition: border-color .25s, box-shadow .25s, background .25s;
    outline: none;
    width: 100%;
    -webkit-appearance: none;
}

    .kc-input:focus {
        border-color: var(--gold);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(200,168,75,.13);
    }

textarea.kc-input {
    resize: none;
    min-height: 96px;
    font-size: .92rem;
}

select.kc-input {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230b326d' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 2.5rem;
}

.kc-checks {
    margin-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .65rem;
}

.kc-check-row {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.55;
    cursor: pointer;
}

    .kc-check-row input[type="checkbox"] {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
        accent-color: var(--navy);
        margin-top: 2px;
        cursor: pointer;
    }

    .kc-check-row a {
        color: var(--navy);
        font-weight: 600;
        text-decoration: underline;
    }

.kc-error {
    color: #dc3545;
    font-size: .78rem;
    margin-top: .2rem;
    display: block;
}

.kc-btn {
    margin-top: 1.6rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--navy) 0%, #14417d 100%);
    color: #fff;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 600;
    letter-spacing: .8px;
    text-transform: uppercase;
    border: none;
    border-radius: 13px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 6px 20px rgba(11,50,109,.35);
    -webkit-appearance: none;
    touch-action: manipulation;
}

    .kc-btn::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(200,168,75,.28) 0%, transparent 55%);
        opacity: 0;
        transition: opacity .3s;
    }

    .kc-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(11,50,109,.5);
    }

        .kc-btn:hover::after {
            opacity: 1;
        }

    .kc-btn:active {
        transform: translateY(0);
    }

.modal-content {
    padding: 2rem;
    max-height: 80vh;
    overflow-y: auto;
}

    .modal-content h4 {
        color: var(--navy);
        font-size: 1.6rem;
        margin-bottom: 1.4rem;
        font-weight: 700;
        line-height: 1.2;
    }

    .modal-content h5 {
        color: var(--navy);
        font-size: 1.2rem;
        margin: 1.75rem 0 .85rem;
        font-weight: 600;
    }

    .modal-content p {
        margin-bottom: .9rem;
        line-height: 1.82;
        color: #555;
    }

    .modal-content ul {
        margin: .85rem 0 1.4rem 1.6rem;
        line-height: 1.82;
    }

    .modal-content li {
        margin-bottom: .65rem;
    }

    .modal-content strong {
        font-weight: 700;
        color: #1a1a1a;
    }


/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ══════════════════════════════════════
   TABLET (max 1024px)
══════════════════════════════════════ */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-image-container {
        max-width: 480px;
        margin: 0 auto;
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vm-card {
        padding: 2.5rem 2rem;
    }

    .vm-title {
        font-size: 1.75rem;
    }
}


/* ══════════════════════════════════════
   MOBİL (max 768px)
══════════════════════════════════════ */
@media (max-width: 768px) {
    /* --- HERO --- */
    .hero-banner {
        height: auto;
        min-height: 300px;
        padding-top: 80px;
        padding-bottom: 2.5rem;
    }

    .hero-title {
        font-size: 2.1rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* --- STATS --- */
    .stats-section {
        margin-top: -40px;
        padding: 3rem 1.25rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-card {
        padding: 1.75rem 1rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: .82rem;
    }

    /* --- ABOUT --- */
    .about-section {
        padding: 4rem 1.25rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .section-description {
        font-size: .95rem;
    }

    /* --- VISION MISSION --- */
    .vision-mission-section {
        padding: 4rem 1.25rem;
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .vm-card {
        padding: 2rem 1.5rem;
        border-left: none;
        border-top: 4px solid #0b326d;
        border-radius: 8px;
    }

    .vm-title {
        font-size: 1.55rem;
        margin-bottom: 1.4rem;
    }

    .vm-text {
        font-size: .95rem;
        line-height: 1.82;
    }

    /* --- VALUES --- */
    .values-section {
        padding: 4rem 1.25rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .value-card {
        padding: 1.75rem 1.5rem;
    }

    /* --- KEYCHAIN FORM --- */
    .kc-section {
        padding: 4rem 1.25rem 5.5rem;
        overflow: hidden;
    }

    .kc-eyebrow {
        text-align: center;
        margin-bottom: .5rem;
    }

    .kc-heading-row {
        display: block;
        margin-bottom: 2.5rem;
        position: relative;
        z-index: 2;
    }

    /* Inline anahtar: sol kenara sabit */
    .kc-key-assembly--inline {
        display: flex;
        position: absolute;
        left: 0;
        top: 0;
        flex-direction: column;
        align-items: center;
        width: 56px;
        z-index: 30;
        animation: assemblyBob 4.8s ease-in-out infinite;
        transform-origin: center top;
    }

        .kc-key-assembly--inline .kc-key-svg {
            width: 50px;
        }

        .kc-key-assembly--inline .kc-connector {
            width: 16px;
            height: 16px;
        }

        .kc-key-assembly--inline .kc-chain {
            width: 8px;
            height: 22px;
        }

    /* Absolute anahtarı gizle */
    .kc-key-assembly--absolute {
        display: none !important;
    }

    .kc-heading {
        text-align: center;
        margin-bottom: 0;
        font-size: clamp(1.35rem, 5vw, 1.9rem);
    }

    .kc-container {
        position: relative;
    }

    .kc-stage {
        padding-left: 0;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .kc-ring-wrap {
        width: 130px;
        height: 130px;
        margin: 0 auto -44px;
        position: relative;
        z-index: 20;
    }

    .kc-card {
        padding: 5rem 1.75rem 2.5rem;
        border-radius: 22px;
        width: 100%;
    }

    .kc-form-title {
        font-size: 1.25rem;
    }

    .kc-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

        .kc-grid .fw {
            grid-column: 1 / -1;
        }

    body::before {
        background-size: 65% auto;
    }
}


/* ══════════════════════════════════════
   KÜÇÜK MOBİL (max 480px)
══════════════════════════════════════ */
@media (max-width: 480px) {
    /* --- HERO --- */
    .hero-banner {
        padding-top: 72px;
        min-height: 260px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: .9rem;
    }

    /* --- STATS --- */
    .stats-section {
        margin-top: -30px;
        padding: 2.5rem 1rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: .85rem;
    }

    .stat-card {
        padding: 1.4rem .85rem;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 1.9rem;
    }

    .stat-label {
        font-size: .76rem;
    }

    /* --- ABOUT / VALUES / VM --- */
    .about-section, .values-section, .vision-mission-section {
        padding: 3.5rem 1rem;
    }

    .section-title {
        font-size: 1.65rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .vm-card {
        padding: 1.75rem 1.25rem;
    }

    .vm-title {
        font-size: 1.35rem;
        margin-bottom: 1.2rem;
    }

    .vm-text {
        font-size: .9rem;
    }

    /* --- KEYCHAIN FORM --- */
    .kc-section {
        padding: 3.5rem 1rem 5rem;
    }

    .kc-ring-wrap {
        width: 110px;
        height: 110px;
        margin: 0 auto -38px;
    }

    .kc-key-assembly--inline {
        width: 46px;
    }

        .kc-key-assembly--inline .kc-key-svg {
            width: 44px;
        }

    .kc-card {
        padding: 4.5rem 1.25rem 2.25rem;
        border-radius: 18px;
    }

    .kc-form-title {
        font-size: 1.1rem;
    }

    .kc-form-sub {
        font-size: .8rem;
    }

    .kc-grid {
        grid-template-columns: 1fr;
    }

        .kc-grid .fw {
            grid-column: 1;
        }

    body::before {
        background-size: 85% auto;
    }
}


/* ══════════════════════════════════════
   ÇOK KÜÇÜK (max 360px)
══════════════════════════════════════ */
@media (max-width: 360px) {
    .hero-banner {
        padding-top: 68px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: .85rem;
    }

    .stats-container {
        grid-template-columns: 1fr 1fr;
        gap: .65rem;
    }

    .stat-card {
        padding: 1.2rem .7rem;
    }

    .stat-number {
        font-size: 1.65rem;
    }

    .stat-label {
        font-size: .72rem;
    }

    .section-title {
        font-size: 1.45rem;
    }

    .vm-title {
        font-size: 1.2rem;
    }

    .vm-text {
        font-size: .88rem;
    }

    .kc-ring-wrap {
        width: 96px;
        height: 96px;
        margin: 0 auto -32px;
    }

    .kc-key-assembly--inline {
        width: 40px;
    }

        .kc-key-assembly--inline .kc-key-svg {
            width: 38px;
        }

    .kc-card {
        padding: 3.8rem 1rem 1.75rem;
    }

    .kc-form-title {
        font-size: 1rem;
    }
}
