.fc-order-section {
    padding: 60px 0 100px;
    background: #f8fafc;
}

.fc-order-form {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
}

.fc-order-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.fc-order-form .form-row.full {
    grid-template-columns: 1fr;
}

.fc-order-form .form-row.hidden {
    display: none;
}

.fc-order-form label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a2a3a;
    margin-bottom: 8px;
}

.fc-order-form label .required {
    color: #e74c3c;
}

.fc-order-form input,
.fc-order-form select,
.fc-order-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    color: #1a2a3a;
    background: #fafafa;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.fc-order-form input:focus,
.fc-order-form select:focus,
.fc-order-form textarea:focus {
    outline: none;
    border-color: #0E5AB7;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(14, 90, 183, 0.08);
}

.fc-order-form textarea {
    resize: vertical;
    min-height: 100px;
}

.fc-order-form .field-group {
    background: #f8fafc;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    border: 2px solid #e5e7eb;
    display: none;
}

.fc-order-form .field-group.active {
    display: block;
}

.fc-order-form .field-group-title {
    font-size: 16px;
    font-weight: 700;
    color: #0E5AB7;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fc-order-form .field-group-title i {
    font-size: 20px;
}

.fc-order-submit {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #fff;
    border: none;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 10px;
}

.fc-order-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}

.fc-order-submit i {
    font-size: 24px;
}

@media (max-width: 768px) {
    .fc-order-form {
        padding: 24px;
    }

    .fc-order-form .form-row {
        grid-template-columns: 1fr;
    }
}