﻿/* ========== Root / Genel ========== */






/* ========== HERO / MOCK ========== */
.hero {
    padding: 0px 0 0px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: end;
}

.hero__art {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.mock {
    width: 420px;
    max-width: 100%;
    background: linear-gradient(180deg, #f3f6ff, #ffffff);
    border: 1px solid #e6ecff;
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 18px;
    position: relative;
    overflow: hidden;
}

    .mock::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -60px;
        width: 220px;
        height: 220px;
        background: radial-gradient(circle, rgba(63,134,211,.35), transparent 65%);
    }

.mock__screen {
    height: 18px;
    background: var(--blue);
    border-radius: 12px;
    margin-bottom: 14px;
}

.mock__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mock__card {
    height: 110px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e9eef8;
    position: relative;
}

    .mock__card::before,
    .mock__card::after {
        content: "";
        position: absolute;
        left: 14px;
        right: 14px;
        height: 10px;
        border-radius: 6px;
    }

    .mock__card::before {
        top: 16px;
        background: linear-gradient(90deg, #cfe3ff, #f2f7ff);
    }

    .mock__card::after {
        top: 36px;
        background: linear-gradient(90deg, #e9f2ff, #f7fbff);
    }

/* ========== SECTION LABEL ========== */
.section-label {
    margin-top: 24px;
    padding-top: 14px;
    font-weight: 700;
    color: var(--text);
    border-top: 1px solid var(--border);
}

/* ========== MAP ========== */
.map {
    margin-top: 20px;
    height: 360px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    background: #f3f4f6;
}

    .map iframe {
        width: 100%;
        height: 100%;
        border: 0;
    }

/* ========== INFO ========== */
.info {
    padding: 32px 0 10px;
}

.info__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--blue);
    margin-bottom: 10px;
}

.info__text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text);
}

    .info__text .muted {
        color: var(--muted);
    }

/* ========== FORM ========== */
.form-wrap {
    padding: 20px 0 50px;
}

.form-title {
    text-align: center;
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 16px;
}

form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .field label {
        font-size: 12px;
        font-weight: 700;
        color: var(--muted);
    }

.input,
.textarea {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    outline: none;
    transition: .15s ease;
}

    .input:focus,
    .textarea:focus {
        border-color: rgba(63,134,211,.6);
        box-shadow: 0 0 0 4px rgba(63,134,211,.12);
    }

.textarea {
    min-height: 120px;
    resize: vertical;
}

/* ========== CHECKBOXES ========== */
.checks {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.check {
    display: flex;
    gap: 10px;
    font-size: 12px;
    line-height: 1.6;
    color: #374151;
}

    .check input {
        margin-top: 3px;
    }

/* ========== FORM ACTIONS ========== */
.form-actions {
    margin-top: 18px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}






/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .hero__art {
        justify-content: center;
    }

    .map {
        height: 280px;
    }
}
