/* =========================
   HERO
========================= */
.bestil-hero {
    margin-top: 90px;
    padding: 80px 20px;
    background: var(--blue-light);
    text-align: center;
}

.bestil-hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.bestil-hero p {
    font-size: 20px;
    color: #444;
}

/* =========================
   FORM SECTION
========================= */
.bestil-form-section {
    padding: 60px 0 100px;
}

.bestil-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.bestil-form h2 {
    font-size: 26px;
    margin: 30px 0 20px;
    color: var(--blue);
}

/* GRID */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    grid-column: 1 / -1;
}

/* INPUTS */
label {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 600;
}

input, textarea {
    padding: 14px;
    border: 1px solid #d0d7e2;
    border-radius: 8px;
    font-size: 16px;
    background: #f9fbff;
    transition: 0.2s;
}

input:focus, textarea:focus {
    border-color: var(--blue);
    background: white;
    outline: none;
}

/* FILE INPUT */
input[type="file"] {
    padding: 10px;
    background: #eef4ff;
}

/* REQUIRED NOTE */
.required-note {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

/* SUBMIT BUTTON */
.submit-btn {
    margin-top: 30px;
    padding: 16px 40px;
    background: var(--blue);
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.submit-btn:hover {
    background: var(--blue-dark);
}

/* MOBILE */
@media (max-width: 900px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .bestil-form {
        padding: 25px;
    }
}
