:root {

    --yellow: #f5c518;
    --yellow-dark: #dba700;

    --bg: #ececec;
    --card: #ffffff;

    --text: #111;
    --muted: #666;

    --radius: 20px;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {

    font-family: Inter, sans-serif;
    background: var(--bg);
    color: var(--text);

}

.honeypot {
    display: none;
}

.container {

    width: min(900px, calc(100% - 40px));
    margin: auto;

}

.page-header {

    padding: 80px 0 40px;
    text-align: center;

}

.page-header h1 {

    font-size: 3rem;
    margin-bottom: 15px;

}

.page-header p {

    color: var(--muted);

}

.back-btn {

    display: inline-block;
    margin-bottom: 25px;

    font-weight: 700;

    color: #111;

}

.repair-section {

    padding-bottom: 80px;

}

.repair-form {

    background: white;

    padding: 35px;

    border-radius: 24px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

}

.form-intro {

    margin-bottom: 24px;

}

.form-intro h2 {

    font-size: 1.5rem;
    margin-bottom: 8px;

}

.form-intro p {

    color: var(--muted);
    line-height: 1.6;

}

.form-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-bottom: 15px;

}

input,
select,
textarea {

    width: 100%;

    padding: 15px;

    border: 1px solid #ddd;

    border-radius: 14px;

    font-family: inherit;

}

label {

    display: block;
    font-weight: 700;
    font-size: .95rem;

}

label input,
label select,
label textarea {

    margin-top: 8px;

}

textarea {

    resize: vertical;

    margin-bottom: 15px;

}

.submit-btn {

    width: 100%;

    padding: 16px;

    border: none;

    border-radius: 14px;

    background: var(--yellow);

    font-weight: 700;

    cursor: pointer;

    font-size: 1rem;

}

.success {

    margin-top: 20px;
    color: green;

}

.error {

    margin-top: 20px;
    color: red;

}

.footer {
    background: #111;
    color: white;
    padding: 56px 0;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(220px, 1.2fr) minmax(220px, .9fr) minmax(220px, .9fr);
    gap: 28px;
    align-items: start;
}

.footer-logo {
    font-size: 1.7rem;
    font-weight: 800;
}

.footer-logo span {
    color: var(--yellow);
}

.footer p {
    color: #bbb;
    margin-top: 10px;
    line-height: 1.6;
}

.footer-contact,
.footer-links {
    display: grid;
    gap: 10px;
}

.footer-contact h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.footer-contact a,
.footer-contact span,
.footer-links a {
    color: #ddd;
    line-height: 1.5;
    text-decoration: none;
}

@media(max-width:768px) {

    .form-grid {

        grid-template-columns: 1fr;

    }

    .page-header h1 {

        font-size: 2.2rem;

    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

}
